[package]
edition = "2021"
rust-version = "1.63"
name = "fyaml"
version = "0.5.0"
authors = ["Valentin Lab <valentin.lab@kalysto.org>"]
build = "build.rs"
exclude = [
"README.org",
".package.d/",
"autogen.sh",
".gitchangelog.rc",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings for libfyaml YAML parser with DOM navigation, path queries, and serde-compatible Value type"
documentation = "https://docs.rs/fyaml"
readme = "README.md"
keywords = [
"yaml",
"parser",
"libfyaml",
"serde",
"dom",
]
categories = [
"parsing",
"encoding",
]
license = "MIT"
repository = "https://github.com/0k/fyaml"
[lib]
name = "fyaml"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "editor_edge_cases"
path = "tests/editor_edge_cases.rs"
[[test]]
name = "emit_no_trailing_newline"
path = "tests/emit_no_trailing_newline.rs"
[[test]]
name = "emit_roundtrip"
path = "tests/emit_roundtrip.rs"
[[test]]
name = "error_coverage"
path = "tests/error_coverage.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "memory_safety"
path = "tests/memory_safety.rs"
[[test]]
name = "noderef_coverage"
path = "tests/noderef_coverage.rs"
[[test]]
name = "parser_edge_cases"
path = "tests/parser_edge_cases.rs"
[[test]]
name = "scalar_parsing_edge_cases"
path = "tests/scalar_parsing_edge_cases.rs"
[[test]]
name = "serde_coverage"
path = "tests/serde_coverage.rs"
[[test]]
name = "value_mutability"
path = "tests/value_mutability.rs"
[[test]]
name = "valueref_coverage"
path = "tests/valueref_coverage.rs"
[dependencies.fyaml-sys]
version = "=0.1.1-alpha.1"
[dependencies.indexmap]
version = "2.0"
features = ["serde"]
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
[dev-dependencies.indoc]
version = "2"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.trybuild]
version = "1.0"