Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,16 @@ jsonrpsee-core = "0.24"
jsonrpsee-types = "0.24"

# misc
async-trait = "0.1.83"
cfg-if = "1"
async-trait = "0.1.83"
unsigned-varint = "0.8.0"
spin = { version = "0.9.8", features = ["mutex"] }
derive_more = { version = "1.0", default-features = false }

# tracing
tracing-subscriber = "0.3.18"
tracing = { version = "0.1.40", default-features = false }

## misc-testing
arbitrary = { version = "1.3", features = ["derive"] }
arbtest = "0.3"
Expand All @@ -98,7 +103,6 @@ thiserror = "1.0"
proptest = "1.5"
proptest-derive = "0.5"
tokio = "1"
unsigned-varint = "0.8.0"

## crypto
c-kzg = { version = "1.0", default-features = false }
Expand Down
14 changes: 13 additions & 1 deletion crates/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ alloy-eips.workspace = true
alloy-consensus.workspace = true

# Misc
tracing.workspace = true
derive_more.workspace = true
async-trait.workspace = true
unsigned-varint.workspace = true
Expand All @@ -37,17 +38,28 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }
serde = { workspace = true, optional = true }
alloy-serde = { workspace = true, optional = true }

# `test-utils` feature
spin = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, features = ["fmt"], optional = true }

[dev-dependencies]
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
serde_json.workspace = true
rstest = "0.22.0"
rstest = "0.23.0"
revm = "14.0.2"
alloy-sol-types.workspace = true

[features]
default = ["serde", "std"]
test-utils = [
"dep:spin",
"dep:tracing-subscriber",
]
arbitrary = ["std", "dep:arbitrary", "alloy-consensus/arbitrary", "alloy-eips/arbitrary", "alloy-primitives/rand"]
std = ["op-alloy-consensus/std", "op-alloy-genesis/std"]
serde = ["dep:serde", "dep:alloy-serde", "op-alloy-consensus/serde", "op-alloy-genesis/serde"]
Loading