[package] name = "barnacle" version = "0.3.0" edition = "2021" authors = ["Bert JW Regeer "] license = "ISC" description = "A small tool to template a configuration file with environment variables before exec'ing into another binary" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0" clap = { version = "^4.0", features = ["derive", "env"] } minijinja = { version = "^0.23", features = ["source", "json", "urlencode"] } thiserror = "1.0"