[package]
edition = "2024"
name = "hcl2json"
version = "0.1.14"
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 = "CLI program for converting HCL to JSON"
documentation = "https://docs.rs/hcl2json/"
readme = "README.md"
keywords = [
"hcl",
"json",
"serialization",
]
categories = ["encoding"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/martinohmann/hcl-rs"
resolver = "2"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
all-features = true
[[bin]]
name = "hcl2json"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.clap]
version = "4.5.40"
features = ["derive"]
[dependencies.globset]
version = "0.4.16"
[dependencies.hcl-rs]
version = "0.19.5"
features = ["perf"]
[dependencies.rayon]
version = "1.10.0"
[dependencies.serde_json]
version = "1.0.140"
features = ["preserve_order"]
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.assert_cmd]
version = "2.0.17"
features = ["color"]
[dev-dependencies.predicates]
version = "3.1.3"