From 8a58aafeb06fa6b2be814d7ea0132ecda6efb8d7 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 18 Sep 2023 12:25:38 -0400 Subject: [PATCH] chore(dependencies): remove implicit features of optional dependencies (#3321) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 351fa86709..d257ca13c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,14 +79,14 @@ full = [ # HTTP versions http1 = [] -http2 = ["h2_wasi"] +http2 = ["dep:h2_wasi"] # Client/Server client = [] server = [] # C-API support (currently unstable (no semver)) -ffi = ["libc", "http-body-util"] +ffi = ["dep:libc", "dep:http-body-util"] # internal features used in CI nightly = []