Skip to content

Commit

Permalink
fix(workspace): Release plz (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby authored Apr 24, 2024
1 parent 5577c80 commit 7e8f8e0
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +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 }
alloy-primitives = { version = "0.7.1", default-features = false }
alloy-rlp = { version = "0.3.4", default-features = false }

[profile.dev]
Expand Down
6 changes: 3 additions & 3 deletions crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ alloy-rlp = { workspace = true, features = ["derive"] }
kona-primitives = { path = "../primitives", version = "0.0.1" }

# External
alloy-sol-types = { version = "0.7.0", default-features = false }
alloy-sol-types = { version = "0.7.1", 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 }
Expand All @@ -42,12 +42,12 @@ alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f
reqwest = { version = "0.12", default-features = false, optional = true }

[dev-dependencies]
tokio = { version = "1.36", features = ["full"] }
tokio = { version = "1.37", features = ["full"] }
proptest = "1.4.0"
tracing-subscriber = "0.3.18"
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07", default-features = false }
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "e3f2f07", default-features = false }
serde_json = { version = "1.0.68", default-features = false }
serde_json = { version = "1.0.116", default-features = false }

[features]
default = ["serde", "k256"]
Expand Down
6 changes: 3 additions & 3 deletions crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ homepage.workspace = true

[dependencies]
anyhow.workspace = true
alloy-rlp = { workspace = true, features = ["derive"] }
alloy-primitives = { workspace = true, features = ["rlp"] }

# Alloy Types
alloy-sol-types = { version = "0.7.0", default-features = false }
alloy-rlp = { version = "0.3.4", default-features = false, features = ["derive"] }
alloy-primitives = { workspace = true, features = ["rlp"] }
alloy-sol-types = { version = "0.7.1", 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 }

Expand Down

0 comments on commit 7e8f8e0

Please sign in to comment.