Skip to content

Commit

Permalink
dep: bump tower to 0.5 (alloy-rs#1249)
Browse files Browse the repository at this point in the history
* dep: bump tower to 0.5

* fix clippy
  • Loading branch information
tcoratger authored Sep 7, 2024
1 parent 122c4b1 commit 9627e0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ rustls = { version = "0.23", default-features = false, features = [
] }
tokio-test = "0.4"
tokio-tungstenite = "0.23"
tower = { version = "0.4", features = ["util"] }
tower = { version = "0.5", features = ["util"] }

# tracing
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc-client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl<T> Clone for RpcClient<T> {

impl RpcClient<Identity> {
/// Create a new [`ClientBuilder`].
pub fn builder() -> ClientBuilder<Identity> {
pub const fn builder() -> ClientBuilder<Identity> {
ClientBuilder { builder: ServiceBuilder::new() }
}
}
Expand Down

0 comments on commit 9627e0a

Please sign in to comment.