| # 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 are reading this file be aware that the original Cargo.toml |
| # will likely look very different (and much more reasonable). |
| # See Cargo.toml.orig for the original contents. |
| |
| [package] |
| edition = "2018" |
| rust-version = "1.63" |
| name = "tera" |
| version = "1.19.1" |
| authors = ["Vincent Prouillet <[email protected]>"] |
| include = [ |
| "/src/**/*", |
| "/LICENSE", |
| "/README.md", |
| "/CHANGELOG.md", |
| ] |
| description = "Template engine based on Jinja2/Django templates" |
| homepage = "http://keats.github.io/tera/" |
| readme = "README.md" |
| keywords = [ |
| "template", |
| "html", |
| "django", |
| "markup", |
| "jinja2", |
| ] |
| categories = ["template-engine"] |
| license = "MIT" |
| repository = "https://github.com/Keats/tera" |
| |
| [dependencies.chrono] |
| version = "0.4.23" |
| features = [ |
| "std", |
| "clock", |
| ] |
| optional = true |
| default-features = false |
| |
| [dependencies.chrono-tz] |
| version = "0.8" |
| optional = true |
| |
| [dependencies.globwalk] |
| version = "0.8.1" |
| |
| [dependencies.humansize] |
| version = "2.1" |
| optional = true |
| |
| [dependencies.lazy_static] |
| version = "1.4" |
| |
| [dependencies.percent-encoding] |
| version = "2.2" |
| optional = true |
| |
| [dependencies.pest] |
| version = "2.5.5" |
| |
| [dependencies.pest_derive] |
| version = "2.5.5" |
| |
| [dependencies.rand] |
| version = "0.8" |
| optional = true |
| |
| [dependencies.regex] |
| version = "1.7" |
| |
| [dependencies.serde] |
| version = "1.0" |
| |
| [dependencies.serde_json] |
| version = "1.0" |
| |
| [dependencies.slug] |
| version = "0.1" |
| optional = true |
| |
| [dependencies.unic-segment] |
| version = "0.9" |
| |
| [dev-dependencies.pretty_assertions] |
| version = "1" |
| |
| [dev-dependencies.serde_derive] |
| version = "1.0" |
| |
| [dev-dependencies.tempfile] |
| version = "3" |
| |
| [features] |
| builtins = [ |
| "urlencode", |
| "slug", |
| "humansize", |
| "chrono", |
| "chrono-tz", |
| "rand", |
| ] |
| date-locale = [ |
| "builtins", |
| "chrono/unstable-locales", |
| ] |
| default = ["builtins"] |
| preserve_order = ["serde_json/preserve_order"] |
| urlencode = ["percent-encoding"] |