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