From 2850f79496afa2c6e796bc7a9407593d2aeca0f6 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Tue, 6 Oct 2020 12:08:42 +0800 Subject: Disable tide default features h1-server feature is currently needed for tide to build --- askama_tide/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'askama_tide') diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml index 71a56b8..be3bf5d 100644 --- a/askama_tide/Cargo.toml +++ b/askama_tide/Cargo.toml @@ -14,5 +14,5 @@ readme = "README.md" [dependencies] askama = { version = "0.10.2", path = "../askama", features = ["with-tide"] } -tide = "0.13" +tide = { version = "0.13", default-features = false, features = ["h1-server"] } async-std = { version = "1.6.0", features = ["unstable", "attributes"] } -- cgit