forked from chyh1990/yaml-rust
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
49 lines (41 loc) · 977 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
47
48
49
[package]
name = "yaml-rust2"
version = "0.9.0"
authors = [
"Yuheng Chen <yuhengchen@sensetime.com>",
"Ethiraric <ethiraric@gmail.com>",
"David Aguilar <davvid@gmail.com>"
]
documentation = "https://docs.rs/yaml-rust2"
license = "MIT OR Apache-2.0"
description = "A fully YAML 1.2 compliant YAML parser"
repository = "https://github.com/Ethiraric/yaml-rust2"
readme = "README.md"
edition = "2021"
rust-version = "1.70.0"
[features]
default = [ "encoding" ]
debug_prints = []
encoding = [ "dep:encoding_rs" ]
[dependencies]
arraydeque = "0.5.1"
encoding_rs = { version = "0.8.33", optional = true }
hashlink = ">= 0.8, < 0.10"
[dev-dependencies]
libtest-mimic = "0.4.0"
quickcheck = "1.0"
[profile.release-lto]
inherits = "release"
lto = true
[[test]]
name = "yaml-test-suite"
harness = false
[[bin]]
name = "dump_events"
path = "tools/dump_events.rs"
[[bin]]
name = "time_parse"
path = "tools/time_parse.rs"
[[bin]]
name = "run_bench"
path = "tools/run_bench.rs"