diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:20:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:20:39 +0000 |
commit | 1376c5a617be5c25655d0d7cb63e3beaa5a6e026 (patch) | |
tree | 3bb8d61aee02bc7a15eab3f36e3b921afc2075d0 /vendor/askama_derive/Cargo.toml | |
parent | Releasing progress-linux version 1.69.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-1376c5a617be5c25655d0d7cb63e3beaa5a6e026.tar.xz rustc-1376c5a617be5c25655d0d7cb63e3beaa5a6e026.zip |
Merging upstream version 1.70.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/askama_derive/Cargo.toml')
-rw-r--r-- | vendor/askama_derive/Cargo.toml | 59 |
1 files changed, 44 insertions, 15 deletions
diff --git a/vendor/askama_derive/Cargo.toml b/vendor/askama_derive/Cargo.toml index f0cba9bcb..d780c24c6 100644 --- a/vendor/askama_derive/Cargo.toml +++ b/vendor/askama_derive/Cargo.toml @@ -10,34 +10,63 @@ # See Cargo.toml.orig for the original contents. [package] -edition = "2018" +edition = "2021" +rust-version = "1.58" name = "askama_derive" -version = "0.11.0" +version = "0.12.1" description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" readme = "README.md" license = "MIT/Apache-2.0" repository = "https://github.com/djc/askama" +resolver = "1" [lib] proc-macro = true -[dependencies.askama_shared] -version = "0.12.0" -default-features = false + +[dependencies.basic-toml] +version = "0.1.1" +optional = true + +[dependencies.mime] +version = "0.3" + +[dependencies.mime_guess] +version = "2" + +[dependencies.nom] +version = "7" [dependencies.proc-macro2] version = "1" -[dependencies.syn] +[dependencies.quote] version = "1" +[dependencies.serde] +version = "1.0" +features = ["derive"] +optional = true + +[dependencies.syn] +version = "2" + [features] -actix-web = [] -axum = [] -config = ["askama_shared/config"] -gotham = [] -iron = [] -mendes = [] -rocket = [] -tide = [] -warp = [] +config = [ + "serde", + "basic-toml", +] +humansize = [] +markdown = [] +num-traits = [] +serde-json = [] +serde-yaml = [] +urlencode = [] +with-actix-web = [] +with-axum = [] +with-gotham = [] +with-hyper = [] +with-mendes = [] +with-rocket = [] +with-tide = [] +with-warp = [] |