[package] name = "json2hcl" version = "0.1.0" edition = "2021" authors = ["Thomas Nicollet "] description = "Set of tools to go from HCL to JSON and vice versa" license = "MIT" [[bin]] name = "hcl2json" path = "src/hcl2json.rs" [[bin]] name = "json2hcl" path = "src/json2hcl.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1", features = ["derive"]} hcl-rs = "0.6.4" serde_json = "1" serde-transcode = "1.1.1"