From a8fbd2ed6037f6ca5c7980a9690fe0c0ef8e2fef Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Mon, 18 Nov 2024 18:08:11 +0100 Subject: [PATCH] bump to 0.6.4 --- Cargo.toml | 10 +++++----- examples/layers/examples/hyper_http_layer.rs | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ae58720..10b522c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,21 +95,21 @@ significant_drop_tightening = "allow" needless_return = "allow" [workspace.dependencies] -alloy = { version = "0.6.2", features = [ +alloy = { version = "0.6.4", features = [ "full", + "eips", + "hyper", + "json-rpc", "node-bindings", + "rpc-client", "rpc-types-debug", "rpc-types-trace", - "json-rpc", - "rpc-client", "signer-aws", "signer-keystore", "signer-ledger", "signer-mnemonic", "signer-trezor", "signer-yubihsm", - "eips", - "hyper", ] } foundry-fork-db = "0.7" diff --git a/examples/layers/examples/hyper_http_layer.rs b/examples/layers/examples/hyper_http_layer.rs index efd59b6..cd13c66 100644 --- a/examples/layers/examples/hyper_http_layer.rs +++ b/examples/layers/examples/hyper_http_layer.rs @@ -1,5 +1,6 @@ -//! This example demonstrates how to write a custom layer for the `hyper` HTTP client that can -//! modify the underlying http request before it is sent. +//! This example demonstrates how to write a custom layer for the [`hyper`] HTTP client that can +//! modify the underlying HTTP request before it is sent. + use alloy::{ node_bindings::Anvil, providers::{Provider, ProviderBuilder},