yaml_lib 0.2.0

YAML library implementation.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "yaml_lib"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YAML library implementation."
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"

[[test]]
name = "yaml_test_suite"
path = "tests/yaml_test_suite.rs"

[[test]]
name = "yaml_test_suite_integration"
path = "tests/yaml_test_suite_integration.rs"

[dependencies.base64]
version = "0.22.1"

[dependencies.log]
version = "0.4.28"

[dependencies.rand]
version = "0.10.0"
optional = true

[dependencies.regex]
version = "1.12.2"

[dev-dependencies.rand]
version = "0.10.0"