From c6f9a053c7328e6c782508114bd96aa569b5de7d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 28 Jan 2020 22:06:11 +0100 Subject: Move Rocket integration into askama_rocket crate --- testing/Cargo.toml | 2 -- 1 file changed, 2 deletions(-) (limited to 'testing/Cargo.toml') diff --git a/testing/Cargo.toml b/testing/Cargo.toml index e7b9668..424dd73 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -9,14 +9,12 @@ edition = "2018" default = [] 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] askama = { path = "../askama", version = "*" } iron = { version = "0.6", optional = true } -rocket = { version = "0.4", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } gotham = { version = "0.3", default-features = false, optional = true } mime = { version = "0.3", optional = true } -- cgit