diff options
Diffstat (limited to 'vendor/tinytemplate/Cargo.toml')
-rw-r--r-- | vendor/tinytemplate/Cargo.toml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/tinytemplate/Cargo.toml b/vendor/tinytemplate/Cargo.toml new file mode 100644 index 000000000..799556559 --- /dev/null +++ b/vendor/tinytemplate/Cargo.toml @@ -0,0 +1,41 @@ +# 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] +name = "tinytemplate" +version = "1.2.1" +authors = ["Brook Heisler <brookheisler@gmail.com>"] +description = "Simple, lightweight template engine" +readme = "README.md" +keywords = ["template", "html"] +categories = ["template-engine"] +license = "Apache-2.0 OR MIT" +repository = "https://github.com/bheisler/TinyTemplate" + +[[bench]] +name = "benchmarks" +harness = false +[dependencies.serde] +version = "1.0" + +[dependencies.serde_json] +version = "1.0" +[dev-dependencies.criterion] +version = "0.3" + +[dev-dependencies.serde_derive] +version = "1.0" +[badges.maintenance] +status = "passively-maintained" + +[badges.travis-ci] +repository = "bheisler/TinyTemplate" |