Skip to content

Commit

Permalink
chore: Enable the proper feature of tower
Browse files Browse the repository at this point in the history
We only use `service_fn` which is behind the `util` feature.

Signed-off-by: Kévin Commaille <[email protected]>
  • Loading branch information
zecakeh authored and poljar committed Oct 4, 2024
1 parent 7bac034 commit 65b4223
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/matrix-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ sha2 = { workspace = true, optional = true }
tempfile = "3.3.0"
thiserror = { workspace = true }
tokio-stream = { workspace = true, features = ["sync"] }
tower = { version = "0.4.13", features = ["make"], optional = true }
tower = { version = "0.4.13", features = ["util"], optional = true }
tracing = { workspace = true, features = ["attributes"] }
uniffi = { workspace = true, optional = true }
url = { workspace = true, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/oidc_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["make"] }
tower = { version = "0.4.13", features = ["util"] }
tracing-subscriber = { workspace = true }
url = { workspace = true }

Expand Down

0 comments on commit 65b4223

Please sign in to comment.