[package] name = "kingfisher" version = "0.1.2" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://github.com/mongrov/kingfisher" repository = "https://github.com/mongrov/kingfisher" keywords = ["cli", "handlebar", "template", "hocon", "converter"] description = "fast template engine(s) with any config (hocon, json, json5, yaml, toml)" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] log = "0.4" env_logger = "0.10" clap = { version = "4.4", features = ["derive"] } # serializers serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.9" # template engine handlebars = "4.4" # formats (json, json5, yaml etc.,) config = "0.13" # special format hocon = "0.9.0" [[bin]] edition = "2021" name = "kf" path = "src/main.rs"