[package]
edition = "2021"
rust-version = "1.65.0"
name = "saphyr-parser"
version = "0.0.8"
authors = [
"Ethiraric <ethiraric@gmail.com>",
"David Aguilar <davvid@gmail.com>",
"Yuheng Chen <yuhengchen@sensetime.com>",
]
build = false
exclude = [
"/tests/yaml-test-suite",
"/documents",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fully YAML 1.2 compliant YAML library"
documentation = "https://docs.rs/saphyr"
readme = "README.md"
keywords = [
"yaml",
"parser",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/saphyr-rs/saphyr"
[lib]
name = "saphyr_parser"
path = "src/lib.rs"
[[bin]]
name = "dump_events"
path = "tools/dump_events.rs"
[[bin]]
name = "run_parser"
path = "tools/run_bench.rs"
[[bin]]
name = "time_parser"
path = "tools/time_parse.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[[test]]
name = "issues"
path = "tests/issues.rs"
[[test]]
name = "span"
path = "tests/span.rs"
[[test]]
name = "spec_test"
path = "tests/spec_test.rs"
[[test]]
name = "yaml-test-suite"
path = "tests/yaml-test-suite.rs"
harness = false
[dependencies.arraydeque]
version = "0.5.1"
default-features = false
[dependencies.thiserror]
version = "2.0.17"
default-features = false
[dev-dependencies.libtest-mimic]
version = "0.8.2"
[dev-dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.rustyline]
version = "17.0.2"
[features]
debug_prints = []