Skip to content

Commit

Permalink
bump deps and nits
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-atreya committed Mar 28, 2024
1 parent 25ec522 commit e78a249
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "66fa192", f
"ipc",
] }

alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "68952c0" }
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "66fa192" }

alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "68952c0" }
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "68952c0" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "66fa192" }
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "66fa192" }
eyre.workspace = true
futures-util = "0.3"
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
2 changes: 1 addition & 1 deletion examples/providers/examples/connect_builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async fn main() -> Result<()> {
// Get latest block number
let block_number = http_provider.get_block_number().await?;

println!("Latest block number: {:?}", block_number);
println!("Latest block number: {block_number:?}");

// This requires the `pubsub` and `ws` features to be enabled on alloy-provider
let ws_provider = RootProvider::<Ethereum, BoxTransport>::connect_builtin(ws.as_str()).await?;
Expand Down

0 comments on commit e78a249

Please sign in to comment.