-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathCargo.toml
28 lines (25 loc) · 854 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "roxmltree"
version = "0.20.0"
authors = ["Yevhenii Reizner <[email protected]>"]
keywords = ["xml", "parser", "tree", "dom"]
categories = ["parser-implementations"]
license = "MIT OR Apache-2.0"
description = "Represent an XML as a read-only tree."
repository = "https://github.com/RazrFalcon/roxmltree"
documentation = "https://docs.rs/roxmltree/"
readme = "README.md"
edition = "2021"
rust-version = "1.60"
[workspace]
members = ["benches"]
exclude = ["testing-tools"]
[features]
default = ["std", "positions"]
std = ["memchr/std"]
# Enables Nodes and Attributes position in the original document preserving.
# Increases memory usage by `Range<usize>` for each Node.
# Increases memory usage by `Range<usize>` + `u16` + `u8` for each Attribute.
positions = []
[dependencies]
memchr = { version = "2", default-features = false }