Skip to content

Commit

Permalink
chore: update deps and clean up misc features (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell authored Dec 3, 2024
1 parent c678bee commit 380ab2b
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 65 deletions.
54 changes: 27 additions & 27 deletions Cargo.lock

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

62 changes: 31 additions & 31 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,74 +63,74 @@ lto = "fat"
[workspace.dependencies]
# Workspace
kona-mpt = { path = "crates/mpt", version = "0.1.0", default-features = false }
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
kona-derive = { path = "crates/derive", version = "0.1.0", default-features = false }
kona-driver = { path = "crates/driver", version = "0.1.0", default-features = false }
kona-executor = { path = "crates/executor", version = "0.1.0", default-features = false }
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.1.0", default-features = false }
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.0", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.0", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.1.0", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.1.0", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.0", default-features = false }

# Alloy
alloy-rlp = { version = "0.3.9", default-features = false }
alloy-trie = { version = "0.7.4", default-features = false }
alloy-eips = { version = "0.7.0", default-features = false }
alloy-serde = { version = "0.7.0", default-features = false }
alloy-provider = { version = "0.7.0", default-features = false }
alloy-primitives = { version = "0.8.13", default-features = false }
alloy-consensus = { version = "0.7.0", default-features = false }
alloy-transport = { version = "0.7.0", default-features = false }
alloy-rpc-types = { version = "0.7.0", default-features = false, features = ["debug"] }
alloy-rpc-client = { version = "0.7.0", default-features = false }
alloy-node-bindings = { version = "0.7.0", default-features = false }
alloy-transport-http = { version = "0.7.0", default-features = false }
alloy-rpc-types-engine = { version = "0.7.0", default-features = false }
alloy-rpc-types-beacon = { version = "0.7.0", default-features = false }
alloy-eips = { version = "0.7.2", default-features = false }
alloy-serde = { version = "0.7.2", default-features = false }
alloy-provider = { version = "0.7.2", default-features = false }
alloy-consensus = { version = "0.7.2", default-features = false }
alloy-transport = { version = "0.7.2", default-features = false }
alloy-rpc-types = { version = "0.7.2", default-features = false }
alloy-rpc-client = { version = "0.7.2", default-features = false }
alloy-primitives = { version = "0.8.14", default-features = false }
alloy-node-bindings = { version = "0.7.2", default-features = false }
alloy-transport-http = { version = "0.7.2", default-features = false }
alloy-rpc-types-engine = { version = "0.7.2", default-features = false }
alloy-rpc-types-beacon = { version = "0.7.2", default-features = false }

# OP Alloy
op-alloy-genesis = { version = "0.7.1", default-features = false }
op-alloy-registry = { version = "0.7.1", default-features = false }
op-alloy-protocol = { version = "0.7.1", default-features = false }
op-alloy-consensus = { version = "0.7.1", default-features = false }
op-alloy-rpc-types-engine = { version = "0.7.1", default-features = false, features = ["serde"] }
op-alloy-genesis = { version = "0.7.2", default-features = false }
op-alloy-registry = { version = "0.7.2", default-features = false }
op-alloy-protocol = { version = "0.7.2", default-features = false }
op-alloy-consensus = { version = "0.7.2", default-features = false }
op-alloy-rpc-types-engine = { version = "0.7.2", default-features = false }

# General
lru = "0.12.4"
spin = "0.9.8"
rand = "0.8.5"
clap = "4.5.19"
tokio = "1.40.0"
tokio = "1.42.0"
async-channel = "2.3.1"
cfg-if = "1.0.0"
reqwest = "0.12.8"
reqwest = "0.12.9"
async-trait = "0.1.83"
linked_list_allocator = "0.10.5"

# General
sha2 = { version = "0.10.8", default-features = false }
c-kzg = { version = "2.0.0", default-features = false }
anyhow = { version = "1.0.89", default-features = false }
thiserror = { version = "2.0", default-features = false }
anyhow = { version = "1.0.93", default-features = false }
thiserror = { version = "2.0.4", default-features = false }

# Tracing
tracing-loki = "0.2.5"
tracing-subscriber = "0.3.18"
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = "0.3.19"
tracing = { version = "0.1.41", default-features = false }

# Testing
pprof = "0.14.0"
proptest = "1.5"
proptest = "1.5.0"
criterion = "0.5.1"

# Serialization
rkyv = "0.8.8"
serde = { version = "1.0.213", default-features = false }
serde_json = { version = "1.0.132", default-features = false }
rkyv = "0.8.9"
serde = { version = "1.0.215", default-features = false }
serde_json = { version = "1.0.133", default-features = false }

# Ethereum
unsigned-varint = "0.8.0"
revm = { version = "16.0.0", default-features = false }

# K/V database
rocksdb = { version = "0.22", default-features = false }
rocksdb = { version = "0.22.0", default-features = false }
2 changes: 1 addition & 1 deletion bin/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ alloy-rpc-types-engine.workspace = true
# Op Alloy
op-alloy-protocol.workspace = true
op-alloy-consensus.workspace = true
op-alloy-rpc-types-engine.workspace = true
op-alloy-genesis = { workspace = true, features = ["serde"] }
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

# Revm
revm.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions bin/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ alloy-provider = { workspace = true, features = ["reqwest"] }
alloy-consensus.workspace = true
alloy-rpc-client.workspace = true
alloy-transport-http.workspace = true
alloy-rpc-types = { workspace = true, features = ["eth"] }
alloy-rpc-types = { workspace = true, features = ["eth", "debug"] }
alloy-primitives = { workspace = true, features = ["serde"] }
alloy-rpc-types-beacon.workspace = true

# Op Alloy
op-alloy-genesis = { workspace = true, features = ["std", "serde"] }
op-alloy-protocol = { workspace = true, features = ["std", "serde"] }
op-alloy-rpc-types-engine.workspace = true
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

# Revm
revm = { workspace = true, features = ["std", "c-kzg", "secp256k1", "portable", "blst"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ alloy-eips.workspace = true
alloy-rlp.workspace = true

# Op Alloy
op-alloy-consensus.workspace = true
op-alloy-genesis.workspace = true
op-alloy-rpc-types-engine.workspace = true
op-alloy-consensus.workspace = true
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

# Revm
revm = { workspace = true, features = ["optimism"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/mpt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ alloy-primitives = { workspace = true, features = ["rlp"] }
alloy-provider = { workspace = true, features = ["reqwest"] }
alloy-consensus.workspace = true
alloy-transport-http.workspace = true
alloy-rpc-types = { workspace = true, features = ["eth"] }
alloy-rpc-types = { workspace = true, features = ["eth", "debug"] }

# General
rand.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/proof/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ alloy-primitives.workspace = true
op-alloy-registry.workspace = true
op-alloy-protocol.workspace = true
op-alloy-consensus.workspace = true
op-alloy-rpc-types-engine.workspace = true
op-alloy-genesis = { workspace = true, features = ["serde"] }
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

# General
lru.workspace = true
Expand Down

0 comments on commit 380ab2b

Please sign in to comment.