quick-xml 0.28.1

High performance xml reader and writer
Documentation
[package]

name = "quick-xml"

version = "0.28.1"

description = "High performance xml reader and writer"

edition = "2018"



documentation = "https://docs.rs/quick-xml"

repository = "https://github.com/tafia/quick-xml"



keywords = ["xml", "serde", "parser", "writer", "html"]

categories = ["asynchronous", "encoding", "parsing", "parser-implementations"]

license = "MIT"

rust-version = "1.52"

include = ["src/*", "LICENSE-MIT.md", "README.md"]



[dependencies]

document-features = { version = "0.2", optional = true }

encoding_rs = { version = "0.8", optional = true }

serde = { version = "1.0.100", optional = true }

tokio = { version = "1.10", optional = true, default-features = false, features = ["io-util"] }

memchr = "2.1"

arbitrary = { version = "1.2.3", features = ["derive"], optional = true }



[dev-dependencies]

criterion = "0.4"

pretty_assertions = "1.3"

regex = "1"

# #[serde(other)] allowed not only inside field_identifier since 1.0.79

# serde does not follow semver in numbering and their dependencies, so we specifying patch here

serde_derive = { version = "1.0.79" }

serde-value = "0.7"

tokio = { version = "1.21", default-features = false, features = ["macros", "rt"] }

tokio-test = "0.4"



[lib]

bench = false



[[bench]]

name = "microbenches"

harness = false

path = "benches/microbenches.rs"



[[bench]]

name = "macrobenches"

harness = false

path = "benches/macrobenches.rs"



[features]

default = []



## Enables support for asynchronous reading from `tokio`'s IO-Traits by enabling

## [reading events] from types implementing [`tokio::io::AsyncBufRead`].

##

## [reading events]: crate::reader::Reader::read_event_into_async

async-tokio = ["tokio"]



## Enables support of non-UTF-8 encoded documents. Encoding will be inferred from

## the XML declaration if it will be found, otherwise UTF-8 is assumed.

##

## Currently, only ASCII-compatible encodings are supported, so, for example,

## UTF-16 will not work (therefore, `quick-xml` is not [standard compliant]).

##

## Thus, quick-xml supports all encodings of [`encoding_rs`] except these:

## - [UTF-16BE]

## - [UTF-16LE]

## - [ISO-2022-JP]

##

## You should stop to process document when one of that encoding will be detected,

## because generated events can be wrong and do not reflect a real document structure!

##

## Because there is only supported encodings that is not ASCII compatible, you can

## check for that to detect them:

##

## ```

## use quick_xml::events::Event;

## use quick_xml::reader::Reader;

##

## # fn to_utf16le_with_bom(string: &str) -> Vec<u8> {

## #     let mut bytes = Vec::new();

## #     bytes.extend_from_slice(&[0xFF, 0xFE]); // UTF-16 LE BOM

## #     for ch in string.encode_utf16() {

## #         bytes.extend_from_slice(&ch.to_le_bytes());

## #     }

## #     bytes

## # }

## let xml = to_utf16le_with_bom(r#"<?xml encoding='UTF-16'><element/>"#);

## let mut reader = Reader::from_reader(xml.as_ref());

## reader.trim_text(true);

##

## let mut buf = Vec::new();

## let mut unsupported = false;

## loop {

##     if !reader.decoder().encoding().is_ascii_compatible() {

##         unsupported = true;

##         break;

##     }

##     buf.clear();

##     match reader.read_event_into(&mut buf).unwrap() {

##         Event::Eof => break,

##         _ => {}

##     }

## }

## assert_eq!(unsupported, true);

## ```

## That restriction will be eliminated once issue [#158] is resolved.

##

## [standard compliant]: https://www.w3.org/TR/xml11/#charencoding

## [UTF-16BE]: encoding_rs::UTF_16BE

## [UTF-16LE]: encoding_rs::UTF_16LE

## [ISO-2022-JP]: encoding_rs::ISO_2022_JP

## [#158]: https://github.com/tafia/quick-xml/issues/158

encoding = ["encoding_rs"]



## Enables support for recognizing all [HTML 5 entities] in [`unescape`] and

## [`unescape_with`] functions. The full list of entities also can be found in

## <https://html.spec.whatwg.org/entities.json>.

##

## [HTML 5 entities]: https://dev.w3.org/html5/html-author/charref

## [`unescape`]: crate::escape::unescape

## [`unescape_with`]: crate::escape::unescape_with

escape-html = []



## This feature for a serde deserializer that enables support for deserializing

## lists where tags are overlapped with tags that do not correspond to the list.

##

## When this feature is enabled, the XML:

## ```xml

## <any-name>

##   <item/>

##   <another-item/>

##   <item/>

##   <item/>

## </any-name>

## ```

## could be deserialized to a struct:

## ```no_run

## # use serde::Deserialize;

## #[derive(Deserialize)]

## #[serde(rename_all = "kebab-case")]

## struct AnyName {

##   item: Vec<()>,

##   another_item: (),

## }

## ```

##

## When this feature is not enabled (default), only the first element will be

## associated with the field, and the deserialized type will report an error

## (duplicated field) when the deserializer encounters a second `<item/>`.

##

## Note, that enabling this feature can lead to high and even unlimited memory

## consumption, because deserializer should check all events up to the end of a

## container tag (`</any-name>` in that example) to figure out that there are no

## more items for a field. If `</any-name>` or even EOF is not encountered, the

## parsing will never end which can lead to a denial-of-service (DoS) scenario.

##

## Having several lists and overlapped elements for them in XML could also lead

## to quadratic parsing time, because the deserializer must check the list of

## events as many times as the number of sequence fields present in the schema.

##

## To reduce negative consequences, always [limit] the maximum number of events

## that [`Deserializer`] will buffer.

##

## This feature works only with `serialize` feature and has no effect if `serialize`

## is not enabled.

##

## [limit]: crate::de::Deserializer::event_buffer_size

## [`Deserializer`]: crate::de::Deserializer

overlapped-lists = []



## Enables serialization of some types using [`serde`]. Probably your rarely will

## need this feature enabled.

##

## This feature does NOT provide XML serializer or deserializer. You should use

## the `serialize` feature for that instead.

# Cannot name "serde" to avoid clash with dependency.

# "dep:" prefix only avalible from Rust 1.60

serde-types = ["serde/derive"]



## Enables support for [`serde`] serialization and deserialization. When this

## feature is enabled, quick-xml provides serializer and deserializer for XML.

##

## This feature does NOT enables serializaton of the types inside quick-xml.

## If you need that, use the `serde-types` feature.

serialize = ["serde"] # "dep:" prefix only avalible from Rust 1.60



[package.metadata.docs.rs]

# document all features

all-features = true

# defines the configuration attribute `docs_rs` to enable feature requirements

# See https://stackoverflow.com/questions/61417452

rustdoc-args = ["--cfg", "docs_rs"]



# Tests, benchmarks and examples doesn't included in package on crates.io,

# so we need to specify a path, otherwise `cargo package` complains



[[test]]

name = "encodings"

required-features = ["encoding"]

path = "tests/encodings.rs"



[[test]]

name = "serde_roundtrip"

required-features = ["serialize"]

path = "tests/serde_roundtrip.rs"



[[test]]

name = "serde-de"

required-features = ["serialize"]

path = "tests/serde-de.rs"



[[test]]

name = "serde-se"

required-features = ["serialize"]

path = "tests/serde-se.rs"



[[test]]

name = "serde-migrated"

required-features = ["serialize"]

path = "tests/serde-migrated.rs"



[[test]]

name = "serde-issues"

required-features = ["serialize"]

path = "tests/serde-issues.rs"



[[test]]

name = "async-tokio"

required-features = ["async-tokio"]

path = "tests/async-tokio.rs"



[[example]]

name = "read_nodes_serde"

required-features = ["serialize"]

path = "examples/read_nodes_serde.rs"