saphyr-serde/saphyr/Cargo.toml

38 lines
715 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"
version = "0.5.0"
authors = [
"Yuheng Chen <yuhengchen@sensetime.com>",
"Ethiraric <ethiraric@gmail.com>"
]
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"
2020-05-27 06:19:22 +00:00
edition = "2018"
[dependencies]
arraydeque = "0.5.1"
2020-07-10 05:44:57 +00:00
linked-hash-map = "0.5.3"
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"