[package]
edition = "2021"
rust-version = "1.60"
name = "libyaml-rs"
version = "0.3.0"
authors = [
"David Tolnay <dtolnay@gmail.com>",
"YAML Organization <noreply@yaml.org>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "libyaml transpiled to rust by c2rust"
documentation = "https://docs.rs/libyaml-rs"
readme = "README.md"
keywords = ["yaml"]
categories = [
"encoding",
"parser-implementations",
"no-std",
]
license = "MIT"
repository = "https://github.com/yaml/libyaml-rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[lib]
name = "libyaml_rs"
path = "src/lib.rs"
doc-scrape-examples = false
[[bin]]
name = "run-emitter-test-suite"
path = "src/bin/run-emitter-test-suite.rs"
[[bin]]
name = "run-parser-test-suite"
path = "src/bin/run-parser-test-suite.rs"
[[test]]
name = "test_emitter"
path = "tests/test_emitter.rs"
[[test]]
name = "test_parser"
path = "tests/test_parser.rs"
[[test]]
name = "test_parser_error"
path = "tests/test_parser_error.rs"
[dev-dependencies.pretty_assertions]
version = "1.0"