diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-28 21:26:13 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-29 09:25:59 +0100 |
commit | b56c11639f9ea5ef1354a1e91ca98541a16bca9b (patch) | |
tree | 11933ea82d131d0b1efe64aed64ce1705f6f7d0a /testing/Cargo.toml | |
parent | 9026f616e620426535bf095848fe355e25911d62 (diff) | |
download | askama-b56c11639f9ea5ef1354a1e91ca98541a16bca9b.tar.gz askama-b56c11639f9ea5ef1354a1e91ca98541a16bca9b.tar.bz2 askama-b56c11639f9ea5ef1354a1e91ca98541a16bca9b.zip |
Move Actix-Web integration into separate askama_actix crate
Diffstat (limited to '')
-rw-r--r-- | testing/Cargo.toml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/testing/Cargo.toml b/testing/Cargo.toml index f093892..e7b9668 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -6,20 +6,15 @@ workspace = ".." edition = "2018" [features] -actix = ["actix-web", "actix-rt", "bytes", "askama/with-actix-web", "futures"] default = [] -full = ["actix", "with-iron", "serde-json", "with-gotham"] +full = ["with-iron", "serde-json", "with-gotham"] serde-json = ["serde_json", "askama/serde-json"] with-rocket = ["rocket", "askama/with-rocket"] with-iron = ["iron", "askama/with-iron"] with-gotham = ["gotham", "askama/with-gotham", "mime", "hyper"] [dependencies] -actix-web = { version = "2", optional = true } -actix-rt = { version = "1", optional = true } -futures = { version = "0.3", optional = true } askama = { path = "../askama", version = "*" } -bytes = { version = "0.5", optional = true } iron = { version = "0.6", optional = true } rocket = { version = "0.4", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } |