diff options
author | 2022-03-10 08:36:46 +0100 | |
---|---|---|
committer | 2022-03-23 19:37:10 +0100 | |
commit | 944d591121865c7c6856c91bfe9d2e91b2d5ff44 (patch) | |
tree | b8fba2f7b11ca5b302e16a3eede4fd66cdda48d3 /askama_shared/Cargo.toml | |
parent | c984945cd5d5b81c89510996988f31cdfdb4bd2b (diff) | |
download | askama-944d591121865c7c6856c91bfe9d2e91b2d5ff44.tar.gz askama-944d591121865c7c6856c91bfe9d2e91b2d5ff44.tar.bz2 askama-944d591121865c7c6856c91bfe9d2e91b2d5ff44.zip |
Move handling of integrations into askama_shared
Before this PR the handling of integrations was done both by
askama_shared and askama_derive. This diff lets askama_shared do the
work. This will prevent problems like #629, when both packages might
come out of sync.
Diffstat (limited to '')
-rw-r--r-- | askama_shared/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 8e2be28..9d95b00 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -16,6 +16,14 @@ json = ["serde", "serde_json", "askama_escape/json"] markdown = ["comrak"] yaml = ["serde", "serde_yaml"] +actix-web = [] +axum = [] +gotham = [] +mendes = [] +rocket = [] +tide = [] +warp = [] + [dependencies] askama_escape = { version = "0.10.3", path = "../askama_escape" } comrak = { version = "0.12", optional = true, default-features = false } |