saphyr-serde/parser/Cargo.toml

46 lines
940 B
TOML
Raw Normal View History

2015-05-24 14:27:42 +08:00
[package]
name = "saphyr-parser"
2024-06-13 22:18:27 +02:00
version = "0.0.2"
2024-02-08 07:12:14 +01:00
authors = [
"Yuheng Chen <yuhengchen@sensetime.com>",
"Ethiraric <ethiraric@gmail.com>",
"David Aguilar <davvid@gmail.com>"
2024-02-08 07:12:14 +01:00
]
documentation = "https://docs.rs/saphyr-parser"
keywords = [ "yaml", "parser", "deserialization" ]
2024-04-02 23:06:08 +02:00
categories = [ "encoding", "parser-implementations", "parsing" ]
license = "MIT OR Apache-2.0"
2024-02-08 07:12:14 +01:00
description = "A fully YAML 1.2 compliant YAML parser"
repository = "https://github.com/saphyr-rs/saphyr-parser"
2018-09-15 12:25:15 -07:00
readme = "README.md"
edition = "2021"
2024-03-30 19:39:53 +01:00
rust-version = "1.70.0"
2024-03-30 19:24:54 +01:00
[features]
debug_prints = []
[dependencies]
arraydeque = "0.5.1"
2020-05-26 18:35:06 +08:00
hashlink = "0.8"
2017-03-12 16:02:18 +00:00
[dev-dependencies]
2022-01-18 02:44:29 +03:00
libtest-mimic = "0.3.0"
2024-03-17 01:40:46 -07:00
quickcheck = "1.0"
saphyr = "0.0.1"
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
[[bin]]
name = "dump_events"
path = "tools/dump_events.rs"
2024-04-16 17:31:06 +02:00
[[bin]]
name = "time_parse"
path = "tools/time_parse.rs"