[package]
edition = "2024"
name = "yaml_lib"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YAML library implementation."
homepage = "https://github.com/clockworkengineer/yaml"
documentation = "https://docs.rs/yaml_lib"
readme = "README.md"
license = "MIT"
repository = "https://github.com/clockworkengineer/yaml"
[features]
alloc = []
debug-anchors = []
debug-trace = []
default = [
"std",
"alloc",
"stringify",
"format-converters",
"file-io",
]
embedded = []
file-io = ["std"]
format-converters = ["stringify"]
parse-only = []
std = ["alloc"]
stringify = ["alloc"]
[lib]
name = "yaml_lib"
path = "src/lib.rs"
[[bin]]
name = "yaml_suite_quiet"
path = "src/bin/yaml_suite_quiet.rs"
[[example]]
name = "test_dk95_04"
path = "examples/test_dk95_04.rs"
[[test]]
name = "debug_td5n"
path = "tests/debug_td5n.rs"
[[test]]
name = "debug_unexpected_failures"
path = "tests/debug_unexpected_failures.rs"
[[test]]
name = "directive_validation_tests"
path = "tests/directive_validation_tests.rs"
[[test]]
name = "manual_debug"
path = "tests/manual_debug.rs"
[[test]]
name = "yaml_test_suite"
path = "tests/yaml_test_suite.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.log]
version = "0.4.28"
[dependencies.rand]
version = "0.9.2"
optional = true
[dependencies.regex]
version = "1.12.2"
[dev-dependencies.rand]
version = "0.9.2"