[package]
edition = "2021"
rust-version = "1.70"
name = "ktav"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ktav — a plain configuration format. Three rules, zero indentation, zero quoting. Serde-native."
readme = "README.md"
keywords = [
"config",
"configuration",
"serde",
"minimal",
"plain",
]
categories = [
"config",
"parsing",
]
license = "MIT"
repository = "https://github.com/ktav-lang/rust"
[package.metadata.ktav]
spec-version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ktav"
path = "src/lib.rs"
[[example]]
name = "upstreams"
path = "examples/upstreams.rs"
[[test]]
name = "de"
path = "tests/de.rs"
[[test]]
name = "doc_example"
path = "tests/doc_example.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "ser"
path = "tests/ser.rs"
[[test]]
name = "spec_conformance"
path = "tests/spec_conformance.rs"
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[dependencies.bumpalo]
version = "3"
features = ["collections"]
[dependencies.compact_str]
version = "0.9"
features = ["serde"]
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.itoa]
version = "1"
[dependencies.rustc-hash]
version = "2"
[dependencies.ryu]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"arbitrary_precision",
]