From ce2e7cd514ffc4d09ebb26bd3d5f5a787d08b229 Mon Sep 17 00:00:00 2001 From: tottoto Date: Sun, 5 Jan 2025 08:31:40 +0900 Subject: [PATCH] chore(examples): Add dep prefix to tokio-stream dependency --- examples/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 9116710fc..78f47c4e2 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -249,15 +249,15 @@ path = "src/codec_buffers/client.rs" [features] gcp = ["dep:prost-types", "tonic/tls-ring"] -routeguide = ["dep:async-stream", "tokio-stream", "dep:rand", "dep:serde", "dep:serde_json"] +routeguide = ["dep:async-stream", "dep:tokio-stream", "dep:rand", "dep:serde", "dep:serde_json"] reflection = ["dep:tonic-reflection"] -autoreload = ["tokio-stream/net", "dep:listenfd"] +autoreload = ["dep:tokio-stream", "tokio-stream?/net", "dep:listenfd"] health = ["dep:tonic-health"] grpc-web = ["dep:tonic-web", "dep:bytes", "dep:http", "dep:hyper", "dep:hyper-util", "dep:tracing-subscriber", "dep:tower", "dep:tower-http", "tower-http?/cors"] tracing = ["dep:tracing", "dep:tracing-subscriber"] -uds = ["tokio-stream/net", "dep:tower", "dep:hyper", "dep:hyper-util"] -streaming = ["tokio-stream", "dep:h2"] -mock = ["tokio-stream", "dep:tower", "dep:hyper-util"] +uds = ["dep:tokio-stream", "tokio-stream?/net", "dep:tower", "dep:hyper", "dep:hyper-util"] +streaming = ["dep:tokio-stream", "dep:h2"] +mock = ["dep:tokio-stream", "dep:tower", "dep:hyper-util"] tower = ["dep:tower", "dep:http"] json-codec = ["dep:serde", "dep:serde_json", "dep:bytes"] compression = ["tonic/gzip"]