diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-27 11:49:43 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-27 12:25:57 +0100 |
commit | 9026f616e620426535bf095848fe355e25911d62 (patch) | |
tree | d68c6c7f028c1c9e4a50e95a89d07932e8ff9dde | |
parent | 8579a8ee686e2a57578c69100e2d4f19a5fa20bf (diff) | |
download | askama-9026f616e620426535bf095848fe355e25911d62.tar.gz askama-9026f616e620426535bf095848fe355e25911d62.tar.bz2 askama-9026f616e620426535bf095848fe355e25911d62.zip |
Disable Gotham'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 57d2771..dd20fbd 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -39,7 +39,7 @@ actix-web = { version = "2", optional = true } futures = { version = "0.3", optional = true } mime = { version = "0.3", optional = true } mime_guess = { version = "2.0.0-alpha", optional = true } -gotham = { version = "0.3", optional = true } +gotham = { version = "0.3", default-features = false, optional = true } hyper = { version = "0.12", optional = true } bytes = { version = "0.5", optional = true } diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 3c9d4da..f093892 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -23,7 +23,7 @@ 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 } -gotham = { version = "0.3", optional = true } +gotham = { version = "0.3", default-features = false, optional = true } mime = { version = "0.3", optional = true } hyper = { version = "0.12", optional = true } |