Skip to content

Commit

Permalink
chore(workspace): Import Touchups (#199)
Browse files Browse the repository at this point in the history
### Description

Small touchups to dependencies, hoisting dep versioning to the workspace
root.
  • Loading branch information
refcell authored Oct 29, 2024
1 parent 4637777 commit 2649c56
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 19 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,21 @@ alloy-rlp = { version = "0.3", default-features = false }
alloy-sol-types = { version = "0.8", default-features = false }
alloy-primitives = { version = "0.8", default-features = false }

# Revm
revm = "17.1.0"

# Serde
serde_repr = "0.1"
serde = { version = "1.0", default-features = false, features = [
"derive",
"alloc",
] }
serde_with = "3.11"
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }

# Encoding
snap = "1.1.1"
bincode = "1.3.3"
ethereum_ssz = "0.8"

# rpc
Expand Down Expand Up @@ -103,6 +108,7 @@ thiserror = "1.0"
proptest = "1.5"
proptest-derive = "0.5"
tokio = "1"
rstest = "0.23.0"

## crypto
c-kzg = { version = "1.0", default-features = false }
Expand Down
10 changes: 5 additions & 5 deletions crates/consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ alloy-primitives = { workspace = true, features = ["rlp"] }
arbitrary = { workspace = true, features = ["derive"], optional = true }

# serde
serde_with = { workspace = true, optional = true }
alloy-serde = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"], optional = true }
serde_with = { version = "3.9", optional = true }

# misc
spin.workspace = true
derive_more = { workspace = true, features = ["display"] }

[dev-dependencies]
alloy-primitives = { workspace = true, features = ["rand"] }
alloy-signer.workspace = true
arbitrary = { workspace = true, features = ["derive"] }
bincode = "1.3"
rand.workspace = true
bincode.workspace = true
serde_json.workspace = true
alloy-signer.workspace = true
tokio = { workspace = true, features = ["macros"] }
arbitrary = { workspace = true, features = ["derive"] }
alloy-primitives = { workspace = true, features = ["rand"] }

[features]
default = ["std"]
Expand Down
6 changes: 3 additions & 3 deletions crates/genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ serde = { workspace = true, optional = true }
serde_repr = { workspace = true, optional = true }

[dev-dependencies]
alloy-primitives = { workspace = true, features = ["rand"] }
arbitrary = { workspace = true, features = ["derive"] }
serde_json.workspace = true
rand.workspace = true
serde_json.workspace = true
arbitrary = { workspace = true, features = ["derive"] }
alloy-primitives = { workspace = true, features = ["rand"] }

[features]
default = ["serde", "std"]
Expand Down
12 changes: 6 additions & 6 deletions crates/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ spin = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, features = ["fmt"], optional = true }

[dev-dependencies]
revm.workspace = true
spin.workspace = true
proptest.workspace = true
tokio = { workspace = true, features = ["full"] }
tracing-subscriber = { workspace = true, features = ["fmt"] }
arbitrary = { workspace = true, features = ["derive"] }
rand.workspace = true
rstest.workspace = true
proptest.workspace = true
serde_json.workspace = true
rstest = "0.23.0"
revm = "14.0.2"
alloy-sol-types.workspace = true
tokio = { workspace = true, features = ["full"] }
arbitrary = { workspace = true, features = ["derive"] }
tracing-subscriber = { workspace = true, features = ["fmt"] }

[features]
default = ["serde", "std"]
Expand Down
8 changes: 4 additions & 4 deletions crates/provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ workspace = true
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

# Alloy
alloy-primitives = { workspace = true, features = ["rlp", "serde"] }
alloy-rpc-types-engine = { workspace = true, features = ["serde"] }
alloy-provider.workspace = true
alloy-network.workspace = true
alloy-provider.workspace = true
alloy-transport.workspace = true
alloy-primitives = { workspace = true, features = ["rlp", "serde"] }
alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

# misc
async-trait = "0.1.82"
async-trait.workspace = true
2 changes: 1 addition & 1 deletion crates/rpc-types-engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ derive_more = { workspace = true, features = ["display"] }
arbitrary = { workspace = true, features = ["derive"], optional = true }

[dev-dependencies]
serde_json.workspace = true
arbtest.workspace = true
serde_json.workspace = true
arbitrary = { workspace = true, features = ["derive"] }

[features]
Expand Down

0 comments on commit 2649c56

Please sign in to comment.