[package]
edition = "2021"
name = "hcl-edit"
version = "0.9.7"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
build = false
include = [
"CHANGELOG.md",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*",
"src/**/*",
"tests/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse and modify HCL while preserving comments and whitespace"
documentation = "https://docs.rs/hcl-edit/"
readme = "README.md"
keywords = ["hcl"]
categories = ["encoding"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/martinohmann/hcl-rs"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
all-features = true
[features]
default = []
perf = ["hcl-primitives/perf"]
[lib]
name = "hcl_edit"
path = "src/lib.rs"
[[example]]
name = "interpolation-unwrapping"
path = "examples/interpolation-unwrapping.rs"
test = true
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "regressions"
path = "tests/regressions.rs"
[[test]]
name = "spans"
path = "tests/spans.rs"
[dependencies.fnv]
version = "1.0"
[dependencies.hcl-primitives]
version = "0.1.12"
[dependencies.pratt]
version = "0.4.0"
[dependencies.vecmap-rs]
version = "0.2"
[dependencies.winnow]
version = "1.0"
[dev-dependencies.indoc]
version = "2.0"
[dev-dependencies.pretty_assertions]
version = "1.4"