diff --git a/Cargo.lock b/Cargo.lock index d9ce869d0..5c5cf35f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1666,9 +1666,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "lock_api" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ "autocfg", "scopeguard", @@ -1905,9 +1905,9 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" dependencies = [ "lock_api", "parking_lot_core", @@ -1915,15 +1915,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.9" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", "redox_syscall", "smallvec", - "windows-targets 0.48.5", + "windows-targets 0.52.5", ] [[package]] @@ -2139,11 +2139,11 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.5.0", ] [[package]] @@ -3301,9 +3301,9 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.8.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63381fa6624bf92130a6b87c0d07380116f80b565c42cf0d754136f0238359ef" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" dependencies = [ "zeroize_derive", ] diff --git a/Cargo.toml b/Cargo.toml index a0f399ee4..15973b15f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ resolver = "2" [workspace.package] edition = "2021" license = "MIT" -authors = ["clabby"] +authors = ["clabby", "refcell"] repository = "https://github.com/ethereum-optimism/kona" homepage = "https://github.com/ethereum-optimism/kona" exclude = ["**/target", "benches/", "tests"] @@ -17,6 +17,7 @@ tracing = { version = "0.1.40", default-features = false } cfg-if = "1.0.0" alloy-primitives = { version = "0.7.1", default-features = false } alloy-rlp = { version = "0.3.4", default-features = false } +alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07", default-features = false } [profile.dev] opt-level = 1 diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index d69829bf5..b807ce127 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -12,6 +12,7 @@ homepage.workspace = true # Workspace anyhow.workspace = true tracing.workspace = true +alloy-consensus.workspace = true alloy-primitives = { workspace = true, features = ["rlp"] } alloy-rlp = { workspace = true, features = ["derive"] } @@ -20,7 +21,6 @@ kona-primitives = { path = "../primitives", version = "0.0.1" } # External alloy-sol-types = { version = "0.7.1", default-features = false } -alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07", default-features = false } op-alloy-consensus = { git = "https://github.com/clabby/op-alloy", branch = "refcell/consensus-port", default-features = false } alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07", default-features = false } async-trait = "0.1.77" diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index 879ebc024..f2c075d09 100644 --- a/crates/mpt/Cargo.toml +++ b/crates/mpt/Cargo.toml @@ -19,10 +19,10 @@ alloy-rlp = { workspace = true, default-features = false } alloy-trie = { version = "0.3.1", default-features = false } [dev-dependencies] +alloy-consensus.workspace = true tokio = { version = "1.36.0", features = ["full"] } alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07" } alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07" } -alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07" } alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07" } reqwest = "0.12" tracing-subscriber = "0.3.18" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 406c6da06..52a07c7bd 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -10,12 +10,12 @@ homepage.workspace = true [dependencies] anyhow.workspace = true +alloy-consensus.workspace = true alloy-rlp = { workspace = true, features = ["derive"] } alloy-primitives = { workspace = true, features = ["rlp"] } # Alloy Types alloy-sol-types = { version = "0.7.1", default-features = false } -alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07", default-features = false } op-alloy-consensus = { git = "https://github.com/clabby/op-alloy", branch = "refcell/consensus-port", default-features = false } # `serde` feature dependencies