diff --git a/examples/Cargo.toml b/examples/Cargo.toml index bb8a5222f..0a58ccad8 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -294,7 +294,7 @@ grpc-helloworld = ["dep:grpc", "dep:grpc-protobuf", "dep:protobuf"] full = ["gcp", "routeguide", "reflection", "autoreload", "health", "grpc-web", "tracing", "uds", "streaming", "mock", "json-codec", "compression", "tls", "tls-rustls", "tls-client-auth", "types", "cancellation", "h2c", -"grpc-routeguide", "grpc-helloworld", "grpc-gcp"] +"grpc-routeguide", "grpc-helloworld"] default = ["full"] # Workaround for cargo-udeps bug. # TODO: Remove once the fix is released: https://github.com/est31/cargo-udeps/pull/338 diff --git a/examples/README.md b/examples/README.md index a1efcc9dc..48ad28128 100644 --- a/examples/README.md +++ b/examples/README.md @@ -100,7 +100,7 @@ Once your credentials are set up, you will need your GCP Project ID, which can be found on the main dashboard of the Google Cloud Console. With both of these ready, you can run the example like so: ```bash -$ cargo run --bin grpc-gcp-client -- +$ cargo run --bin grpc-gcp-client --features grpc-gcp -- ``` [Application Default Credentials]: https://docs.cloud.google.com/docs/authentication/application-default-credentials diff --git a/tonic-reflection/Cargo.toml b/tonic-reflection/Cargo.toml index 42e402ef8..09c03172a 100644 --- a/tonic-reflection/Cargo.toml +++ b/tonic-reflection/Cargo.toml @@ -34,7 +34,7 @@ tonic-prost = { version = "0.14.6", path = "../tonic-prost", default-features = [dev-dependencies] tokio-stream = {version = "0.1", default-features = false, features = ["net"]} -tonic = { version = "0.14.6", path = "../tonic", default-features = false, features = ["transport"] } +tonic = { version = "0.14.6", path = "../tonic", default-features = false, features = ["transport", "router"] } [lints] workspace = true