From bb221362101335f158777155600bbfc45286293c Mon Sep 17 00:00:00 2001 From: clabby Date: Tue, 16 Apr 2024 10:21:56 -0400 Subject: [PATCH] Use upstream alloy --- Cargo.toml | 8 ++++---- deny.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5acc3c852..1748b6592 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,10 +15,10 @@ exclude = ["benches/", "tests/"] [workspace.dependencies] alloy-rlp = { version = "0.3", default-features = false } alloy-primitives = { version = "0.7.0", default-features = false } -alloy-consensus = { git = "https://github.com/clabby/alloy", branch = "cl/consensus-expose-encoding", default-features = false } -alloy-eips = { git = "https://github.com/clabby/alloy", branch = "cl/consensus-expose-encoding", default-features = false } -alloy-signer = { git = "https://github.com/clabby/alloy", branch = "cl/consensus-expose-encoding", default-features = false } -alloy-serde = { git = "https://github.com/clabby/alloy", branch = "cl/consensus-expose-encoding", default-features = false } +alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "cb95183", default-features = false } +alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "cb95183", default-features = false } +alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "cb95183", default-features = false } +alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "cb95183", default-features = false } ## serde serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } diff --git a/deny.toml b/deny.toml index a916dc7f9..71ba9c2ba 100644 --- a/deny.toml +++ b/deny.toml @@ -52,5 +52,5 @@ license-files = [{ path = "LICENSE", hash = 0x001c7e6c }] [sources] unknown-registry = "deny" unknown-git = "deny" -# TODO: Remove once alloy-contract is stable. This is only used in tests for `sol!`. -allow-git = ["https://github.com/alloy-rs/core"] +# TODO: Remove `alloy-rs/core` once alloy-contract is stable. This is only used in tests for `sol!`. +allow-git = ["https://github.com/alloy-rs/core", "https://github.com/alloy-rs/alloy"]