Skip to content

Commit

Permalink
apply patches
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks committed Mar 14, 2024
1 parent 1a33070 commit 3995ed7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ authors = ["Alloy Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/alloy-rs/examples"
repository = "https://github.com/alloy-rs/examples"
exclude = ["examples/"]
publish = false

[workspace.dependencies]
Expand Down Expand Up @@ -38,6 +37,13 @@ alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "d5967
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "d5967ab", default-features = false }
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "d5967ab", default-features = false }

alloy-core = { version = "0.6.4", default-features = false, features = ["std"] }
alloy-dyn-abi = { version = "0.6.4", default-features = false, features = [
"std",
] }
alloy-json-abi = { version = "0.6.4", default-features = false, features = [
"std",
] }
alloy-primitives = { version = "0.6.4", default-features = false, features = [
"std",
] }
Expand All @@ -59,3 +65,12 @@ serde = { version = "1.0", features = ["derive"] }
coins-bip39 = { version = "0.8.7", default-features = false, features = [
"english",
] }

[patch.crates-io]
alloy-sol-macro = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
alloy-primitives = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
alloy-sol-types = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
alloy-json-abi = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
alloy-dyn-abi = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
syn-solidity = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
alloy-core = { git = "https://github.com/alloy-rs/core", rev = "907d61a45a9135e979310990744080eef5f03fe5" }
2 changes: 1 addition & 1 deletion examples/wallets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "examples-wallets"
publish = false

publish.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down

0 comments on commit 3995ed7

Please sign in to comment.