[package]
edition = "2021"
rust-version = "1.70.0"
name = "saphyr-parser-bw"
version = "0.0.611"
authors = [
"Ethiraric <ethiraric@gmail.com>",
"David Aguilar <davvid@gmail.com>",
"Yuheng Chen <yuhengchen@sensetime.com>",
"Bourumir Wyngs <bourumir-wyngs@gmail.com>",
]
build = false
exclude = [
"/tests/yaml-test-suite",
"/documents",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Saphyr-parser with changes from Bourumir Wyngs to be used in serde-saphyr"
documentation = "https://docs.rs/saphyr-parser-bw/latest/saphyr_parser_bw"
readme = "README.md"
keywords = [
"yaml",
"parser",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bourumir-wyngs/saphyr"
[features]
debug_prints = []
[lib]
name = "saphyr_parser_bw"
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 = "block_scalar_indentation"
path = "tests/block_scalar_indentation.rs"
[[test]]
name = "block_scalar_keep"
path = "tests/block_scalar_keep.rs"
[[test]]
name = "borrowed_cow"
path = "tests/borrowed_cow.rs"
[[test]]
name = "closing_bracket"
path = "tests/closing_bracket.rs"
[[test]]
name = "comment_intercepts_line"
path = "tests/comment_intercepts_line.rs"
[[test]]
name = "document_markers"
path = "tests/document_markers.rs"
[[test]]
name = "empty_lines_an_chomping"
path = "tests/empty_lines_an_chomping.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[[test]]
name = "indentation"
path = "tests/indentation.rs"
[[test]]
name = "issues"
path = "tests/issues.rs"
[[test]]
name = "misplaced_flow_chars"
path = "tests/misplaced_flow_chars.rs"
[[test]]
name = "plain_scalar_indicators"
path = "tests/plain_scalar_indicators.rs"
[[test]]
name = "plain_tab"
path = "tests/plain_tab.rs"
[[test]]
name = "reserved_directive"
path = "tests/reserved_directive.rs"
[[test]]
name = "span"
path = "tests/span.rs"
[[test]]
name = "spec_test"
path = "tests/spec_test.rs"
[[test]]
name = "test_non_ascii"
path = "tests/test_non_ascii.rs"
[[test]]
name = "test_parser_stack"
path = "tests/test_parser_stack.rs"
[[test]]
name = "test_surrogates"
path = "tests/test_surrogates.rs"
[[test]]
name = "test_wide_non_ascii_position"
path = "tests/test_wide_non_ascii_position.rs"
[[test]]
name = "unclosed_flow"
path = "tests/unclosed_flow.rs"
[[test]]
name = "yaml-test-suite"
path = "tests/yaml-test-suite.rs"
harness = false
[dependencies.arraydeque]
version = "0.5.1"
default-features = false
[dependencies.smallvec]
version = ">= 1.0.0, < 1.16.0"
[dependencies.thiserror]
version = ">= 2.0.15, <= 2.0.18"
default-features = false
[dev-dependencies.libtest-mimic]
version = "0.8.1"
[dev-dependencies.miette]
version = "7.5.0"
features = ["fancy"]
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.rustyline]
version = "17.0.2"
[lints.rust]
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "deny"