saphyr-serde/saphyr/Cargo.toml
2024-03-19 15:26:16 +01:00

42 lines
809 B
TOML

[package]
name = "yaml-rust2"
version = "0.6.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"
[dependencies]
arraydeque = "0.5.1"
linked-hash-map = "0.5.3"
[dev-dependencies]
libtest-mimic = "0.3.0"
quickcheck = "0.9"
[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"