diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-27 11:37:57 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-27 11:46:49 +0100 |
commit | 8579a8ee686e2a57578c69100e2d4f19a5fa20bf (patch) | |
tree | 53af1160f6732d689987d9f9521069a6424a1dbf | |
parent | f13ea3f997671e443b4723ae215b1c4272029d38 (diff) | |
download | askama-8579a8ee686e2a57578c69100e2d4f19a5fa20bf.tar.gz askama-8579a8ee686e2a57578c69100e2d4f19a5fa20bf.tar.bz2 askama-8579a8ee686e2a57578c69100e2d4f19a5fa20bf.zip |
Disable rocket's default features
-rw-r--r-- | askama/Cargo.toml | 2 | ||||
-rw-r--r-- | testing/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 9d3b2c5..57d2771 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -34,7 +34,7 @@ askama_derive = { version = "0.9.0", path = "../askama_derive" } askama_escape = { version = "0.3.0", path = "../askama_escape" } askama_shared = { version = "0.9.0", path = "../askama_shared", default-features = false } iron = { version = ">= 0.5, < 0.7", optional = true } -rocket = { version = "0.4", optional = true } +rocket = { version = "0.4", default-features = false, optional = true } actix-web = { version = "2", optional = true } futures = { version = "0.3", optional = true } mime = { version = "0.3", optional = true } diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 4aa80fe..3c9d4da 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -21,7 +21,7 @@ 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", optional = true } +rocket = { version = "0.4", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } gotham = { version = "0.3", optional = true } mime = { version = "0.3", optional = true } |