From e4ffd3661da0bb9583ab1f423958bdb68a5269a4 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 5 Dec 2021 14:39:12 -0800 Subject: [PATCH] Depend on http-types with only the "fs" feature, no other default features This allows users of surf to avoid the substantial dependency tree for the "cookie" feature if they don't need it. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c514518..b5bcddc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ mime_guess = "2.0.3" serde = "1.0.97" serde_json = "1.0.40" http-client = { version = "6.5.0", default-features = false } -http-types = "2.5.0" +http-types = { version = "2.5.0", default-features = false, features = ["fs"] } async-std = { version = "1.6.0", default-features = false, features = ["std"] } async-trait = "0.1.36" pin-project-lite = "0.2.0"