Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
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
68 changes: 34 additions & 34 deletions Cargo.lock

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

67 changes: 33 additions & 34 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "MIT"
rust-version = "1.81"
authors = ["clabby", "refcell"]
repository = "https://github.com/anton-rs/kona"
homepage = "https://github.com/anton-rs/kona"
repository = "https://github.com/anton-rs/kona"
keywords = ["ethereum", "optimism", "crypto"]
categories = ["cryptography", "cryptography::cryptocurrencies"]
exclude = ["**/target"]
Expand Down Expand Up @@ -66,12 +65,6 @@ kona-providers = { path = "crates/providers", version = "0.0.1", default-feature
kona-common-proc = { path = "crates/common-proc", version = "0.0.3", default-features = false }
kona-providers-alloy = { path = "crates/providers-alloy", version = "0.0.1", default-features = false }

# OP Alloy
op-alloy-genesis = { version = "0.5.0", default-features = false }
op-alloy-protocol = { version = "0.5.0", default-features = false }
op-alloy-consensus = { version = "0.5.0", default-features = false }
op-alloy-rpc-types-engine = { version = "0.5.0", default-features = false }

# Alloy
alloy-rlp = { version = "0.3.8", default-features = false }
alloy-trie = { version = "0.7.2", default-features = false }
Expand All @@ -87,54 +80,60 @@ alloy-node-bindings = { version = "0.5.0", default-features = false }
alloy-transport-http = { version = "0.5.0", default-features = false }
alloy-rpc-types-engine = { version = "0.5.0", default-features = false }

# General
anyhow = { version = "1.0.89", default-features = false }
# OP Alloy
op-alloy-genesis = { version = "0.5.0", default-features = false }
op-alloy-protocol = { version = "0.5.0", default-features = false }
op-alloy-consensus = { version = "0.5.0", default-features = false }
op-alloy-rpc-types-engine = { version = "0.5.0", default-features = false }

# thiserror with `no_std` support
thiserror = { git = "https://github.com/quartiq/thiserror", branch = "no-std", default-features = false }
cfg-if = "1.0.0"
spin = { version = "0.9.8", features = ["mutex"] }

# General
lru = "0.12.4"
async-trait = "0.1.83"
lazy_static = "1.5.0"
reqwest = "0.12"
os_pipe = "1.2.1"
actix-web = "4.9.0"
spin = "0.9.8"
rand = "0.8.5"
futures = { version = "0.3.30", default-features = false }
prometheus = { version = "0.13.4", features = ["process"] }
tokio = { version = "1.40", features = ["full"] }
clap = { version = "4.5.19", features = ["derive", "env"] }
sha2 = { version = "0.10.8", default-features = false }
c-kzg = { version = "1.0.3", default-features = false }
clap = "4.5.19"
tokio = "1.40.0"
cfg-if = "1.0.0"
os_pipe = "1.2.1"
reqwest = "0.12.8"
command-fds = "0.3.0"
prometheus = "0.13.4"
lazy_static = "1.5.0"
async-trait = "0.1.83"
alloc-no-stdlib = "2.0.4"
linked_list_allocator = "0.10.5"
command-fds = { version = "0.3", features = ["tokio"] }
derive_more = { version = "1.0.0", default-features = false, features = ["full"] }

# General
sha2 = { version = "0.10.8", default-features = false }
c-kzg = { version = "1.0.3", default-features = false }
anyhow = { version = "1.0.89", default-features = false }
futures = { version = "0.3.30", default-features = false }
derive_more = { version = "1.0.0", default-features = false }

# Tracing
tracing = { version = "0.1.40", default-features = false }
tracing-loki = "0.2.5"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
tracing-subscriber = "0.3.18"
tracing = { version = "0.1.40", default-features = false }

# Encoding
miniz_oxide = "0.8.0"
brotli = { version = "7.0.0", default-features = false }

# Testing
pprof = "0.13.0"
proptest = "1.5"
criterion = { version = "0.5.1", features = ["html_reports"] }
pprof = { version = "0.13.0", features = ["criterion", "flamegraph", "frame-pointer"] }
criterion = "0.5.1"

# Serialization
rkyv = "0.8.8"
serde = { version = "1.0.210", default-features = false, features = ["derive"] }
serde = { version = "1.0.210", default-features = false }
serde_json = { version = "1.0.128", default-features = false }

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

# Optimism
superchain = { version = "0.7", default-features = false }

# K/V database
rocksdb = { version = "0.22", default-features = false, features = ["snappy"] }
rocksdb = { version = "0.22", default-features = false }
40 changes: 22 additions & 18 deletions bin/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,47 +1,51 @@
[package]
name = "kona-client"
version = "0.1.0"
publish = false
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
publish = false
repository.workspace = true

[dependencies]
# Workspace
kona-common.workspace = true
kona-common-proc.workspace = true
kona-preimage.workspace = true
kona-mpt.workspace = true
kona-common.workspace = true
kona-derive.workspace = true
kona-preimage.workspace = true
kona-executor.workspace = true
kona-providers.workspace = true
op-alloy-genesis = { workspace = true, features = ["serde"] }
op-alloy-protocol.workspace = true
op-alloy-rpc-types-engine.workspace = true
alloy-rpc-types-engine.workspace = true
kona-common-proc.workspace = true

# Revm + Alloy
revm.workspace = true
alloy-primitives.workspace = true
alloy-consensus.workspace = true
# Alloy
alloy-rlp.workspace = true
alloy-eips.workspace = true
alloy-consensus.workspace = true
alloy-primitives.workspace = true
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"] }

# Revm
revm.workspace = true

# General
cfg-if.workspace = true
anyhow.workspace = true
lru.workspace = true
spin.workspace = true
async-trait.workspace = true
tracing.workspace = true
serde.workspace = true
cfg-if.workspace = true
anyhow.workspace = true
tracing.workspace = true
serde_json.workspace = true
async-trait.workspace = true

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

[features]
tracing-subscriber = ["dep:tracing-subscriber"]
Expand Down
1 change: 0 additions & 1 deletion bin/client/src/l2/chain_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ impl<T: CommsClient + Send + Sync> L2ChainProvider for OracleL2ChainProvider<T>
.rollup_config
.is_canyon_active(timestamp)
.then(Vec::new),
requests: None,
},
};
Ok(optimism_block)
Expand Down
Loading