From 4a5b234a09bd6a623469e36a3107225920fa343b Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Thu, 19 Dec 2024 00:00:00 +0000 Subject: [PATCH] chore: remove `dep:` optional dependency syntax this syntax is only available after rust 1.60. --- http-body-util/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-body-util/Cargo.toml b/http-body-util/Cargo.toml index 58bd36f..475d2e5 100644 --- a/http-body-util/Cargo.toml +++ b/http-body-util/Cargo.toml @@ -28,7 +28,7 @@ rust-version = "1.56" [features] default = [] -channel = ["dep:tokio"] +channel = ["tokio"] full = ["channel"] [dependencies]