diff --git a/Cargo.toml b/Cargo.toml index 5073be3..0d4c5c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -112,8 +112,8 @@ alloy = { version = "0.5.2", features = [ ] } foundry-fork-db = "0.5" -revm-primitives = "10.0" -revm = "14.0" +revm-primitives = "12.0" +revm = "16.0" # async futures-util = "0.3" diff --git a/examples/advanced/Cargo.toml b/examples/advanced/Cargo.toml index 7ebdcb0..44b0b19 100644 --- a/examples/advanced/Cargo.toml +++ b/examples/advanced/Cargo.toml @@ -19,11 +19,11 @@ revm-primitives.workspace = true revm.workspace = true # reth -reth-db = { git = "https://github.com/paradigmxyz/reth", package = "reth-db", tag = "v1.0.8" } -reth-provider = { git = "https://github.com/paradigmxyz/reth", package = "reth-provider", tag = "v1.0.8" } -reth-node-types = { git = "https://github.com/paradigmxyz/reth", package = "reth-node-types", tag = "v1.0.8" } -reth-chainspec = { git = "https://github.com/paradigmxyz/reth", package = "reth-chainspec", tag = "v1.0.8" } -reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", package = "reth-node-ethereum", tag = "v1.0.8" } +reth-db = { git = "https://github.com/paradigmxyz/reth", package = "reth-db", tag = "v1.1.0" } +reth-provider = { git = "https://github.com/paradigmxyz/reth", package = "reth-provider", tag = "v1.1.0" } +reth-node-types = { git = "https://github.com/paradigmxyz/reth", package = "reth-node-types", tag = "v1.1.0" } +reth-chainspec = { git = "https://github.com/paradigmxyz/reth", package = "reth-chainspec", tag = "v1.1.0" } +reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", package = "reth-node-ethereum", tag = "v1.1.0" } eyre.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } diff --git a/examples/layers/Cargo.toml b/examples/layers/Cargo.toml index 55e8bf1..3b6fd58 100644 --- a/examples/layers/Cargo.toml +++ b/examples/layers/Cargo.toml @@ -17,4 +17,4 @@ alloy.workspace = true eyre.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } -tower = { version = "0.4", features = ["retry"] } +tower = { version = "0.5", features = ["retry"] } diff --git a/examples/wallets/Cargo.toml b/examples/wallets/Cargo.toml index a44f35a..bc612e2 100644 --- a/examples/wallets/Cargo.toml +++ b/examples/wallets/Cargo.toml @@ -16,9 +16,9 @@ workspace = true alloy.workspace = true aws-config = { version = "1.5", default-features = false } -aws-sdk-kms = { version = "1.46", default-features = false } +aws-sdk-kms = { version = "1.47", default-features = false } eyre.workspace = true rand = "0.8" serde = { workspace = true, features = ["derive"] } -tempfile = "3.10" +tempfile = "3.13" tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }