# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "templar" version = "0.5.0" authors = ["Phil Proctor "] exclude = [".github/**", "docs/**"] description = "Lightweight, fast, and powerful templating engine" documentation = "https://docs.rs/templar" readme = "../README.md" keywords = ["cli", "template", "templating", "handlebars", "jinja"] categories = ["template-engine"] license = "MIT/Apache-2.0" repository = "https://github.com/proctorlabs/templar" [package.metadata.deb] copyright = "2020, templar development team" depends = "$auto" extended-description = "Templar is a command for processing template files with a Jinja2 inspired syntax and using a variety of data sources as an input." license-file = ["LICENSE-MIT", "5"] maintainer = "Phil Proctor " priority = "optional" section = "utility" [lib] name = "templar" path = "src/lib.rs" [[bin]] name = "templar" path = "src/main.rs" required-features = ["bin"] [[bench]] name = "templar_benchmark" path = "benches/lib.rs" harness = false [dependencies.base64] version = "0.13" optional = true [dependencies.clap] version = "2.33" optional = true [dependencies.derive_more] version = "0.99" [dependencies.lazy_static] version = "1.4" [dependencies.parking_lot] version = "0.11" optional = true [dependencies.pest] version = "2.1" [dependencies.pest_derive] version = "2.1" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde-xml-rs] version = "0.4" optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.serde_yaml] version = "0.8" optional = true [dependencies.structopt] version = "0.3" optional = true [dependencies.templar_macros] version = "0.5.0" [dependencies.toml] version = "0.5" optional = true [dependencies.unstructured] version = "0.5.1" features = [] default_features = false [dev-dependencies.criterion] version = "0.3" [features] base64-extension = ["base64"] bin = ["clap", "structopt", "common-extensions"] common-extensions = ["serde-extensions", "base64-extension"] default = ["shared-context", "yaml-extension", "json-extension", "base64-extension"] experimental = [] full = ["serde-extensions", "base64-extension", "shared-context"] json-extension = ["serde", "serde_json"] serde-extensions = ["toml-extension", "xml-extension", "json-extension", "yaml-extension"] shared-context = ["parking_lot"] toml-extension = ["serde", "toml"] xml-extension = ["serde", "serde-xml-rs"] yaml-extension = ["serde", "serde_yaml"]