Skip to content

Commit

Permalink
Merge pull request #9 from reown-com/chore/trim-features
Browse files Browse the repository at this point in the history
chore: trim features
  • Loading branch information
chris13524 authored Dec 11, 2024
2 parents 0679d7f + 6108613 commit 3e764e1
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,22 @@ version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"

[workspace.dependencies]
alloy = { version = "0.7.3", default-features = false }

[dependencies]
alloy = { version = "0.7.3", features = ["contract", "rpc-types"] }
alloy = { workspace = true, features = [
"reqwest",
"sol-types",
"providers",
"rpc-types",
] }

[dev-dependencies]
alloy = { version = "0.7.3", features = ["signer-local"] }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy.git", tag = "v0.7.3" }
regex = "1"
tokio = { version = "1", features = ["full"] }
alloy = { workspace = true, features = ["signer-local"] }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy.git", tag = "v0.7.3", default-features = false }
regex = { version = "1", default-features = false }
tokio = { version = "1", default-features = false, features = [
"process",
"rt-multi-thread",
] }

0 comments on commit 3e764e1

Please sign in to comment.