[package] authors = ["chevdor "] description = "A command line utility written in Rust to render templates from json|toml|yaml && ENV, using the tera templating engine" edition = "2021" license = "MIT" name = "teracli" readme = "README.md" version = "0.3.0" [features] default = [] fluent = ["fluent-templates"] [dependencies] clap = { version = "4", features = ["derive", "env", "unicode", "cargo"] } color-eyre = "0.6" env_logger = "0.10" fluent-templates = { version = "0.8", optional = true, default-features = false, features = ["tera"]} log = "0.4" serde = "1.0" serde_json = { version = "1.0", optional = false } serde_yaml = { version = "0.9", optional = false } tera = "1.19" toml = { version = "0.8", optional = false } [dev-dependencies] assert_cmd = "2.0" predicates = "3.0" [[bin]] name = "tera" path = "src/main.rs" [package.metadata.deb] assets = [["target/release/tera", "usr/bin/", "755"]] copyright = "2021, Wilfried Kopp aka. Chevdor " depends = "$auto" extended-description = """\ tera-ci offers powerful features related to your environment variables, allowing you to control the output **both** from the context data you pass but also from the ENV variables set on your system.""" license-file = ["LICENSE", "0"] maintainer = "Wilfried Kopp aka. Chevdor " priority = "optional" section = "utility" [profile.release] codegen-units = 1 lto = true opt-level = "z" panic = "abort"