Skip to content

Commit 77557b9

Browse files
committed
Fix udeps check
1 parent 169bd72 commit 77557b9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- uses: taiki-e/install-action@cargo-udeps
5757
- uses: taiki-e/install-action@protoc
5858
- uses: Swatinem/rust-cache@v2
59-
- run: cargo hack udeps --workspace --exclude-features=_tls-any,tls,tls-aws-lc,tls-ring --each-feature
59+
- run: cargo hack udeps --workspace --exclude-features=_tls-any,tls,tls-aws-lc,tls-ring --each-feature --ignore-unknown-features
6060
- run: cargo udeps --package tonic --features tls-ring,transport
6161
- run: cargo udeps --package tonic --features tls-ring,server
6262
- run: cargo udeps --package tonic --features tls-ring,channel

examples/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ tracing = ["dep:tracing", "dep:tracing-subscriber"]
263263
uds = ["dep:tokio-stream", "tokio-stream?/net", "dep:tower", "dep:hyper", "dep:hyper-util"]
264264
streaming = ["dep:tokio-stream", "dep:h2"]
265265
mock = ["dep:tokio-stream", "dep:tower", "dep:hyper-util"]
266-
tower = ["dep:tower", "dep:http"]
267266
json-codec = ["dep:serde", "dep:serde_json", "dep:bytes"]
268267
compression = ["tonic/gzip"]
269268
tls = ["tonic/tls-ring"]
@@ -273,7 +272,7 @@ types = ["dep:tonic-types"]
273272
h2c = ["dep:hyper", "dep:tower", "dep:http", "dep:hyper-util"]
274273
cancellation = ["dep:tokio-util"]
275274

276-
full = ["gcp", "routeguide", "reflection", "autoreload", "health", "grpc-web", "tracing", "uds", "streaming", "mock", "tower", "json-codec", "compression", "tls", "tls-rustls", "tls-client-auth", "types", "cancellation", "h2c"]
275+
full = ["gcp", "routeguide", "reflection", "autoreload", "health", "grpc-web", "tracing", "uds", "streaming", "mock", "json-codec", "compression", "tls", "tls-rustls", "tls-client-auth", "types", "cancellation", "h2c"]
277276
default = ["full"]
278277

279278
[dependencies]

0 commit comments

Comments
 (0)