rustixml 0.3.1

Native iXML (Invisible XML) parser with left-recursion support - 76.9% spec conformance, works in Rust and WebAssembly
Documentation
[[bin]]
doc = false
name = "conformance_test"
path = "src/bin/native_conformance_runner.rs"

[[bin]]
doc = false
name = "ixml"
path = "src/bin/main.rs"

[[bin]]
doc = false
name = "rustixml"
path = "src/bin/ixml_cli.rs"

[dependencies.unicode-general-category]
version = "1.0"

[dev-dependencies.wasm-bindgen-test]
version = "0.3"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[features]
console_error_panic_hook = ["dep:console_error_panic_hook"]
default = []
ic-canister = []
wee_alloc = ["dep:wee_alloc"]

[lib]
crate-type = ["cdylib", "rlib"]
name = "rustixml"
path = "src/lib.rs"

[package]
authors = ["Alex Everitt <bigale@netzero.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing", "text-processing", "wasm"]
description = "Native iXML (Invisible XML) parser with left-recursion support - 76.9% spec conformance, works in Rust and WebAssembly"
documentation = "https://docs.rs/rustixml"
edition = "2021"
exclude = ["ixml_tests/", "target/", ".github/", ".git/", "*.log", "conformance_results*.txt"]
homepage = "https://github.com/bigale/rustixml"
keywords = ["parser", "xml", "ixml", "invisible-xml", "wasm"]
license = "MIT OR Apache-2.0"
name = "rustixml"
readme = "README.md"
repository = "https://github.com/bigale/rustixml"
version = "0.3.1"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3

[profile.release.package."*"]
opt-level = "z"

[target.'cfg(all(target_arch = "wasm32", not(feature = "ic-canister")))'.dependencies.console_error_panic_hook]
optional = true
version = "0.1"

[target.'cfg(all(target_arch = "wasm32", not(feature = "ic-canister")))'.dependencies.serde]
features = ["derive"]
version = "1.0"

[target.'cfg(all(target_arch = "wasm32", not(feature = "ic-canister")))'.dependencies.serde-wasm-bindgen]
version = "0.6"

[target.'cfg(all(target_arch = "wasm32", not(feature = "ic-canister")))'.dependencies.wasm-bindgen]
version = "0.2"

[target.'cfg(all(target_arch = "wasm32", not(feature = "ic-canister")))'.dependencies.wee_alloc]
optional = true
version = "0.4"