2015-05-24 06:27:42 +00:00
|
|
|
[package]
|
2024-04-02 14:57:23 +00:00
|
|
|
name = "saphyr-parser"
|
|
|
|
version = "0.0.1"
|
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
|
|
|
]
|
2024-04-02 14:57:23 +00:00
|
|
|
documentation = "https://docs.rs/saphyr-parser"
|
|
|
|
keywords = [ "yaml", "parser", "deserialization" ]
|
2024-04-02 21:06:08 +00:00
|
|
|
categories = [ "encoding", "parser-implementations", "parsing" ]
|
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"
|
2024-04-02 14:57:23 +00:00
|
|
|
repository = "https://github.com/saphyr-rs/saphyr-parser"
|
2018-09-15 19:25:15 +00:00
|
|
|
readme = "README.md"
|
2024-03-17 07:49:13 +00:00
|
|
|
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 = []
|
2016-02-28 00:30:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-13 22:10:32 +00:00
|
|
|
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"
|
2024-04-02 21:08:39 +00:00
|
|
|
saphyr = "0.0.1"
|
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"
|