diff options
Diffstat (limited to '')
-rw-r--r-- | askama_actix/tests/basic.rs (renamed from testing/tests/actix_web.rs) | 3 | ||||
-rw-r--r-- | testing/Cargo.toml | 7 |
2 files changed, 2 insertions, 8 deletions
diff --git a/testing/tests/actix_web.rs b/askama_actix/tests/basic.rs index 8beef3d..f4beff7 100644 --- a/testing/tests/actix_web.rs +++ b/askama_actix/tests/basic.rs @@ -1,8 +1,7 @@ -#![cfg(feature = "actix")] use actix_web::http::header::CONTENT_TYPE; use actix_web::test; use actix_web::web; -use askama::{actix_web::TemplateIntoResponse, Template}; +use askama_actix::{Template, TemplateIntoResponse}; use bytes::Bytes; #[derive(Template)] 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 } |