Skip to content

Commit

Permalink
Enable required features in example (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
tottoto authored Dec 30, 2024
1 parent fd8cff8 commit ae603a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Rust Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cargo Test
run: cargo test --verbose --features "${{ matrix.features }}"
run: cargo test --workspace --verbose --features "${{ matrix.features }}"

fmt:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions examples/axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ hyper-util = { version = "0.1.2", features = ["full"] }
http-body-util = "0.1"
turmoil = { path = "../.." }
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = "1"
tower = "0.4"
tower = { version = "0.4", features = ["util"] }
pin-project-lite = "0.2"
2 changes: 1 addition & 1 deletion examples/grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tokio = "1"
tonic = "0.12"
tower = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
turmoil = { path = "../.." }

[build-dependencies]
Expand Down

0 comments on commit ae603a7

Please sign in to comment.