kdl-rs/Cargo.toml

25 lines
656 B
TOML

[package]
name = "kdl"
version = "5.0.0-alpha.1"
description = "Document-oriented KDL parser and API. Allows formatting/whitespace/comment-preserving parsing and modification of KDL text."
authors = ["Kat Marchán <kzm@zkat.tech>", "KDL Community"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://kdl.dev"
repository = "https://github.com/kdl-org/kdl-rs"
keywords = ["kdl", "document", "serialization", "config"]
edition = "2021"
[features]
default = ["span"]
span = []
[dependencies]
miette = "5.7.0"
nom = "7.1.1"
thiserror = "1.0.40"
[dev-dependencies]
miette = { version = "5.7.0", features = ["fancy"] }
pretty_assertions = "1.3.0"