Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions askama_actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,13 @@ askama = { version = "0.11.2", path = "../askama", default-features = false, fea
actix-rt = { version = "2", default-features = false }
actix-test = "=0.1.0-beta.13"
bytes = { version = "1" }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]
10 changes: 10 additions & 0 deletions askama_axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,13 @@ axum = { version = "0.5", default-features = false }
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]
10 changes: 10 additions & 0 deletions askama_gotham/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,13 @@ gotham = { version = "0.7", default-features = false }
gotham = { version = "0.7", features = ["testing"] }
hyper = "0.14"
mime = "0.3"

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]
10 changes: 10 additions & 0 deletions askama_mendes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,13 @@ mendes = "0.0.64"
async-trait = "0.1.51"
hyper = "0.14.15"
tokio = { version = "1.12", features = ["macros", "rt-multi-thread"] }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]
10 changes: 10 additions & 0 deletions askama_rocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,13 @@ edition = "2018"
[dependencies]
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] }
rocket = { version = "0.4", default-features = false }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]
10 changes: 10 additions & 0 deletions askama_tide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,13 @@ tide = { version = "0.16", default-features = false }

[dev-dependencies]
async-std = { version = "1.6.5", features = ["attributes"] }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]
10 changes: 10 additions & 0 deletions askama_warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ warp = { version = "0.3", default-features = false }
[dev-dependencies]
tokio-test = "0.4"
tokio = { version = "1", features = ["macros"] }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]