From 4d8bb9762bf964a62212c5e1a8d0823ca628bd2e Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sat, 16 Jan 2021 22:28:19 -0800 Subject: [PATCH] Disable default-features on http-types With the next http-types release, this will allow omitting the cookie feature and associated dependencies. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 734d943..16e9ea7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ edition = "2018" [dependencies] httparse = "1.3.4" async-std = "1.7.0" -http-types = "2.9.0" +http-types = { version = "2.9.0", default-features = false } byte-pool = "0.2.2" lazy_static = "1.4.0" futures-core = "0.3.8"