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>",
|
2024-03-17 07:48:26 +00:00
|
|
|
"Ethiraric <ethiraric@gmail.com>",
|
|
|
|
"David Aguilar <davvid@gmail.com>"
|
2024-02-08 06:12:14 +00:00
|
|
|
]
|
|
|
|
documentation = "https://docs.rs/yaml-rust2"
|
2024-01-23 14:20:12 +00:00
|
|
|
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"
|
2016-02-28 00:30:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-13 22:10:32 +00:00
|
|
|
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
|
2024-03-14 18:20:56 +00:00
|
|
|
|
|
|
|
[[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"
|