Skip to content

Commit ae603a7

Browse files
authored
Enable required features in example (#204)
1 parent fd8cff8 commit ae603a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Rust Toolchain
2323
uses: dtolnay/rust-toolchain@stable
2424
- name: Cargo Test
25-
run: cargo test --verbose --features "${{ matrix.features }}"
25+
run: cargo test --workspace --verbose --features "${{ matrix.features }}"
2626

2727
fmt:
2828
runs-on: ubuntu-latest

examples/axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ hyper-util = { version = "0.1.2", features = ["full"] }
1111
http-body-util = "0.1"
1212
turmoil = { path = "../.." }
1313
tracing = "0.1"
14-
tracing-subscriber = "0.3"
14+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
1515
tokio = "1"
16-
tower = "0.4"
16+
tower = { version = "0.4", features = ["util"] }
1717
pin-project-lite = "0.2"

examples/grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tokio = "1"
1313
tonic = "0.12"
1414
tower = "0.4"
1515
tracing = "0.1"
16-
tracing-subscriber = "0.3"
16+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
1717
turmoil = { path = "../.." }
1818

1919
[build-dependencies]

0 commit comments

Comments
 (0)