saphyr-serde/saphyr/Cargo.toml

44 lines
817 B
TOML
Raw Normal View History

2015-05-24 06:27:42 +00:00
[package]
2024-02-08 06:12:14 +00:00
name = "yaml-rust2"
2024-03-15 19:14:26 +00:00
version = "0.6.0"
2024-02-08 06:12:14 +00:00
authors = [
"Yuheng Chen <yuhengchen@sensetime.com>",
"Ethiraric <ethiraric@gmail.com>",
"David Aguilar <davvid@gmail.com>"
2024-02-08 06:12:14 +00:00
]
documentation = "https://docs.rs/yaml-rust2"
license = "MIT OR Apache-2.0"
2024-02-08 06:12:14 +00:00
description = "A fully YAML 1.2 compliant YAML parser"
repository = "https://github.com/Ethiraric/yaml-rust2"
2018-09-15 19:25:15 +00:00
readme = "README.md"
edition = "2021"
[dependencies]
arraydeque = "0.5.1"
encoding = "0.2"
2020-05-26 10:35:06 +00:00
hashlink = "0.8"
2017-03-12 16:02:18 +00:00
[dev-dependencies]
2022-01-17 23:44:29 +00:00
libtest-mimic = "0.3.0"
2020-05-27 06:25:59 +00:00
quickcheck = "0.9"
2023-08-17 00:17:53 +00:00
[profile.release-lto]
inherits = "release"
lto = true
2022-01-17 23:44:29 +00:00
[[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"
2024-03-15 16:34:39 +00:00
[[bin]]
name = "run_bench"
path = "tools/run_bench.rs"