From 3995c6309f231e801e3c68c43546491c0ea90bc0 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 51cc11d013..961b50e7ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,14 +75,14 @@ full = [ # HTTP versions http1 = [] -http2 = ["h2"] +http2 = ["dep:h2"] # 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 = []