1[package]
2name = "roxmltree"
3version = "0.19.0"
4authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
5keywords = ["xml", "parser", "tree", "dom"]
6categories = ["parser-implementations"]
7license = "MIT OR Apache-2.0"
8description = "Represent an XML as a read-only tree."
9repository = "https://github.com/RazrFalcon/roxmltree"
10documentation = "https://docs.rs/roxmltree/"
11readme = "README.md"
12edition = "2021"
13rust-version = "1.60"
14
15[workspace]
16members = ["benches"]
17exclude = ["testing-tools"]
18
19[features]
20default = ["std", "positions"]
21std = []
22# Enables Nodes and Attributes position in the original document preserving.
23# Increases memory usage by `usize` for each Node and Attribute.
24positions = []
25