2015-05-24 14:27:42 +08:00
|
|
|
[package]
|
2024-04-02 16:57:23 +02:00
|
|
|
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>",
|
2024-03-17 00:48:26 -07:00
|
|
|
"Ethiraric <ethiraric@gmail.com>",
|
|
|
|
"David Aguilar <davvid@gmail.com>"
|
2024-02-08 07:12:14 +01:00
|
|
|
]
|
2024-04-02 16:57:23 +02:00
|
|
|
documentation = "https://docs.rs/saphyr-parser"
|
|
|
|
keywords = [ "yaml", "parser", "deserialization" ]
|
2024-04-02 23:06:08 +02:00
|
|
|
categories = [ "encoding", "parser-implementations", "parsing" ]
|
2024-01-23 15:20:12 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2024-02-08 07:12:14 +01:00
|
|
|
description = "A fully YAML 1.2 compliant YAML parser"
|
2024-04-02 16:57:23 +02:00
|
|
|
repository = "https://github.com/saphyr-rs/saphyr-parser"
|
2018-09-15 12:25:15 -07:00
|
|
|
readme = "README.md"
|
2024-03-17 00:49:13 -07:00
|
|
|
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 = []
|
2016-02-27 16:30:13 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-13 23:10:32 +01:00
|
|
|
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"
|
2024-04-02 23:08:39 +02:00
|
|
|
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
|
2024-03-14 19:20:56 +01:00
|
|
|
|
|
|
|
[[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"
|