-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (39 loc) · 857 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
41
42
43
44
45
46
[package]
name = "rexpat"
authors = ["C2Rust"]
version = "0.0.0"
publish = false
edition = "2018"
autobins = false
license = "MIT"
repository = "https://github.com/immunant/rexpat"
description = "A libexpat compatible Rust crate"
[lib]
name = "rexpat"
crate-type = ["staticlib", "rlib", "cdylib"]
[[bin]]
path = "src/xmlwf/xmlwf.rs"
name = "xmlwf"
[[bin]]
path = "src/tests/runtests.rs"
name = "runtests"
[[bin]]
path = "src/tests/benchmark.rs"
name = "benchmark"
[[bench]]
path = "src/tests/benchmark.rs"
name = "benchmark"
harness = false
[dependencies]
libc = "0.2"
fallible_collections = "0.1.0"
wchar = { path = "deps/wchar", optional = true }
bencher = "0.1"
num-traits = "0.2"
num-derive = "0.2"
bumpalo = { version = "3.3", features = ["collections"] }
rental = "0.5"
[features]
unicode = []
unicode_wchar_t = ["wchar"]
mozilla = ["unicode"]