saphyr-serde/parser/Cargo.toml

42 lines
875 B
TOML
Raw Normal View History

2015-05-24 06:27:42 +00:00
[package]
name = "saphyr-parser"
version = "0.0.1"
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/saphyr-parser"
keywords = [ "yaml", "parser", "deserialization" ]
categories = [ "encoding", "parser-implementations" ]
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/saphyr-rs/saphyr-parser"
2018-09-15 19:25:15 +00:00
readme = "README.md"
edition = "2021"
2024-03-30 18:39:53 +00:00
rust-version = "1.70.0"
2024-03-30 18:24:54 +00:00
[features]
debug_prints = []
[dependencies]
arraydeque = "0.5.1"
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"
2024-03-17 08:40:46 +00:00
quickcheck = "1.0"
yaml-rust2 = "0.8.0"
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"