-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 888 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
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "trashy-xml"
version = "0.12.0"
authors = ["Andreas Strømberg<[email protected]>"]
description = "Xml parser that does not stop parsing when encountering errors."
edition = "2021"
documentation = "https://docs.rs/trashy-xml"
repository = "https://github.com/Stromberg90/trashy-xml"
readme = "README.md"
keywords = ["xml", "parser"]
categories = ["parsing", "text-processing"]
license = "MIT"
include = [
"src/lib.rs",
"src/tokens.rs",
"src/lexer.rs",
"LICENSE",
"README.md",
]
[dependencies]
rustc-hash = "1.1.0"
mimalloc = { version = "0.1", default-features = false }
lazy_static = "1.4.0"
indexmap = "1.9.1"
fnv = "1.0.7"
[dev-dependencies]
proptest = "1.0.0"
criterion = { version = "0.4.0", features = ["html_reports"] }
[[bench]]
path = "benches/benchmarks.rs"
name = "benchmarks"
harness = false
[profile.bench]
debug = true