[dependencies]
[dev-dependencies.pretty_assertions_sorted]
version = "1.2.3"
[lib]
name = "yamp"
path = "src/lib.rs"
[package]
authors = ["sanjeevprasad"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parser-implementations", "config"]
description = "Yet Another Minimal Parser - A safe, predictable YAML parser that treats all values as strings"
documentation = "https://docs.rs/yamp"
edition = "2024"
exclude = ["sample_yamls/**", "test.yaml", ".gitignore"]
keywords = ["yaml", "parser", "safe", "string-only", "predictable"]
license = "MIT"
name = "yamp"
readme = "README.md"
repository = "https://github.com/sanjeevprasad/yamp"
version = "0.1.0"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "test_arrays"
path = "tests/test_arrays.rs"
[[test]]
name = "test_boolean_emit"
path = "tests/test_boolean_emit.rs"
[[test]]
name = "test_boolean_literals"
path = "tests/test_boolean_literals.rs"
[[test]]
name = "test_comments"
path = "tests/test_comments.rs"
[[test]]
name = "test_ergonomics"
path = "tests/test_ergonomics.rs"
[[test]]
name = "test_footguns"
path = "tests/test_footguns.rs"
[[test]]
name = "test_helper_methods"
path = "tests/test_helper_methods.rs"
[[test]]
name = "test_manual_construction"
path = "tests/test_manual_construction.rs"
[[test]]
name = "test_multiline_strings"
path = "tests/test_multiline_strings.rs"
[[test]]
name = "test_nested"
path = "tests/test_nested.rs"
[[test]]
name = "test_sample_yamls"
path = "tests/test_sample_yamls.rs"
[[test]]
name = "test_simple_types"
path = "tests/test_simple_types.rs"
[[test]]
name = "test_types"
path = "tests/test_types.rs"