Skip to content

Commit

Permalink
chore(workspace): Move alloy-primitives to workspace dependencies (#…
Browse files Browse the repository at this point in the history
…103)

* chore(workspace): Move `alloy-primitives` to workspace dependencies

* update `simple-revm` lockfile
  • Loading branch information
clabby authored Apr 14, 2024
1 parent 77dfe7c commit bcffef4
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ exclude = ["**/target", "benches/", "tests"]
anyhow = { version = "1.0.79", default-features = false }
tracing = { version = "0.1.40", default-features = false }
cfg-if = "1.0.0"
alloy-primitives = { version = "0.7.0", default-features = false }

[profile.dev]
opt-level = 1
Expand Down
4 changes: 2 additions & 2 deletions crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ homepage.workspace = true
# Workspace
anyhow.workspace = true
tracing.workspace = true
alloy-primitives = { workspace = true, features = ["rlp"] }

# External
op-alloy-consensus = { git = "https://github.com/clabby/op-alloy", branch = "refcell/consensus-port", default-features = false }
alloy-primitives = { version = "0.7.0", default-features = false, features = ["rlp"] }
alloy-rlp = { version = "0.3.4", default-features = false, features = ["derive"] }
alloy-sol-types = { version = "0.7.0", 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"
hashbrown = "0.14.3"
Expand Down
4 changes: 1 addition & 3 deletions crates/preimage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ homepage.workspace = true
anyhow.workspace = true
cfg-if.workspace = true
tracing.workspace = true
alloy-primitives.workspace = true

# local
kona-common = { path = "../common", version = "0.0.1" }

# External
alloy-primitives = { version = "0.7.0", default-features = false }

[dev-dependencies]
tokio = { version = "1.36.0", features = ["full"] }
tempfile = "3.10.0"
42 changes: 41 additions & 1 deletion examples/simple-revm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bcffef4

Please sign in to comment.