saphyr-serde/parser/Cargo.toml

27 lines
611 B
TOML
Raw Normal View History

2015-05-24 14:27:42 +08:00
[package]
name = "yaml-rust"
2020-06-01 21:02:16 +08:00
version = "0.4.5" # remember to update html_root_url
2015-05-24 14:27:42 +08:00
authors = ["Yuheng Chen <yuhengchen@sensetime.com>"]
2015-06-04 16:28:01 +08:00
homepage = "http://chyh1990.github.io/yaml-rust/"
2018-09-15 12:25:55 -07:00
documentation = "https://docs.rs/yaml-rust"
license = "MIT/Apache-2.0"
description = "The missing YAML 1.2 parser for rust"
2015-06-04 16:33:55 +08:00
repository = "https://github.com/chyh1990/yaml-rust"
2018-09-15 12:25:15 -07:00
readme = "README.md"
2020-05-27 14:19:22 +08:00
edition = "2018"
[dependencies]
2020-07-10 07:44:57 +02:00
linked-hash-map = "0.5.3"
2017-03-12 16:02:18 +00:00
[dev-dependencies]
2022-01-18 02:44:29 +03:00
libtest-mimic = "0.3.0"
2020-05-27 14:25:59 +08:00
quickcheck = "0.9"
2023-08-17 02:17:53 +02:00
[profile.release-lto]
inherits = "release"
lto = true
2022-01-18 02:44:29 +03:00
[[test]]
name = "yaml-test-suite"
harness = false