-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 889 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 889 Bytes
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
29
30
31
32
33
34
35
36
[package]
name = "xot"
version = "0.31.2"
edition = "2021"
license = "MIT"
description = "Full-featured XML tree library for Rust"
authors = ["Martijn Faassen <faassen@startifact.com>"]
homepage = "https://github.com/faassen/xot"
documentation = "https://docs.rs/xot"
repository = "https://github.com/faassen/xot"
readme = "README.md"
keywords = ["xml", "tree", "dom"]
[features]
proptest = ["dep:proptest"]
serde = ["dep:serde"]
icu = ["dep:icu"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
ahash = "^0.8.3"
indextree = "^4.7.2"
xmlparser = "^0.13.6"
proptest = { version = "1.0.0", optional = true }
encoding_rs = "^0.8.34"
xhtmlchardet = "2.2.0"
genawaiter = "0.99.1"
serde = { version = "~1", features = ["derive"], optional = true }
icu = { version = "~1", optional = true }
[dev-dependencies]
insta = { version = "1.21.2" }
rstest = "0.16.0"
proptest = "1.0.0"