Skip to content

Commit 9760231

Browse files
jeffhuenclaude
andcommitted
Trim Hex description to 300-char limit, bump Cargo to v0.2.0
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 43fe6c9 commit 9760231

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/rusty_xml/builder.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ defprotocol RustyXML.Builder do
2121
@doc """
2222
Convert a term to an XML element structure suitable for `RustyXML.encode!/1`.
2323
"""
24-
@spec build(term()) :: RustyXML.XML.element() | String.t() | [RustyXML.XML.element() | String.t()]
24+
@spec build(term()) ::
25+
RustyXML.XML.element() | String.t() | [RustyXML.XML.element() | String.t()]
2526
def build(term)
2627
end
2728

mix.exs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ defmodule RustyXML.MixProject do
3030

3131
defp description do
3232
"""
33-
Ultra-fast XML parser and XPath 1.0 engine for Elixir, built from scratch as a
34-
Rust NIF with SIMD-accelerated zero-copy structural index. 100% W3C/OASIS XML
35-
Conformance (1089/1089 tests). 8-72x faster parsing, 89-100x less memory than
36-
SweetXml/xmerl. Drop-in replacement for both SweetXml and Saxy — one dependency
37-
replaces two with the ~x sigil, SAX handler callbacks, streaming, and XML encoding.
33+
Ultra-fast XML parser and XPath 1.0 engine for Elixir — a Rust NIF with
34+
SIMD-accelerated zero-copy structural index. 100% W3C/OASIS conformance
35+
(1089/1089). 8-72x faster, 89-100x less memory than SweetXml. Drop-in
36+
replacement for SweetXml and Saxy with sigils, SAX, streaming, and encoding.
3837
"""
3938
end
4039

native/rustyxml/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustyxml"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["Jeff Huen"]
55
edition = "2021"
66
rust-version = "1.91"

0 commit comments

Comments
 (0)