From 2f37666a013ea79f1e8f31854fa95e6f9b3ddc68 Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 2 Sep 2023 07:23:49 +0900 Subject: [PATCH] chore(tonic): Move async-stream crate to transport section --- tonic/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 7456b6556..13c5dbdae 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -68,6 +68,7 @@ prost = {version = "0.12", default-features = false, features = ["std"], optiona async-trait = {version = "0.1.13", optional = true} # transport +async-stream = { version = "0.3", optional = true } h2 = {version = "0.3.17", optional = true} hyper = {version = "0.14.14", features = ["full"], optional = true} hyper-timeout = {version = "0.4", optional = true} @@ -76,7 +77,6 @@ tower = {version = "0.4.7", default-features = false, features = ["balance", "bu axum = {version = "0.6.9", default_features = false, optional = true} # rustls -async-stream = { version = "0.3", optional = true } rustls-pemfile = { version = "1.0", optional = true } rustls-native-certs = { version = "0.6.3", optional = true } tokio-rustls = { version = "0.24", optional = true }