Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cargo dependencies #97

Merged
merged 1 commit into from
Sep 3, 2024
Merged
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
58 changes: 25 additions & 33 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,11 @@ resolver = "2"
[workspace.package]
license = "MIT"
edition = "2021"
authors = ["zachobront"]
homepage = ""
repository = ""
authors = ["zachobront", "ratankaliani"]
homepage = "https://succinctlabs.github.io/op-succinct/"
repository = "https://github.com/succinctlabs/op-succinct"

[workspace.dependencies]

# kona
# TODO: Change to stable tag when released.
# Note: Explicitly needed to downgrade superchain-primitives to 0.3.1.
# cargo update -p [email protected] --precise 0.3.1
kona-common = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-common-proc = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-preimage = { git = "https://github.com/ethereum-optimism/kona", branch = "main", features = [
"rkyv",
] }
kona-primitives = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-mpt = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-derive = { git = "https://github.com/ethereum-optimism/kona", branch = "main", default-features = false }
kona-executor = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-client = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-host = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }

# general
anyhow = { version = "1.0.86", default-features = false }
cfg-if = "1.0.0"
spin = { version = "0.9.8", features = ["mutex"] }
Expand All @@ -50,30 +32,44 @@ log = "0.4.22"
itertools = "0.13.0"
reqwest = { version = "0.12", features = ["json"] }
csv = "1.3.0"


# serialization
serde = { version = "1.0.198", features = ["derive"] }
serde_json = { version = "1.0.117", default-features = false }
rkyv = "0.7.44"
hex = "0.4.3"
bincode = "1.3.3"
base64 = "0.22.1"
tower-http = { version = "0.5.2", features = ["limit"] }
kzg-rs = { version = "0.2.1" }

# local
# kona
# TODO: Change to stable tag when released.
# Note: Explicitly needed to downgrade superchain-primitives to 0.3.1.
# cargo update -p [email protected] --precise 0.3.1
kona-common = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-common-proc = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-preimage = { git = "https://github.com/ethereum-optimism/kona", branch = "main", features = [
"rkyv",
] }
kona-primitives = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-mpt = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-derive = { git = "https://github.com/ethereum-optimism/kona", branch = "main", default-features = false }
kona-executor = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-client = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }
kona-host = { git = "https://github.com/ethereum-optimism/kona", branch = "main" }

# op-succinct
op-succinct-prove = { path = "scripts/prove" }
op-succinct-witnessgen = { path = "scripts/witnessgen" }
op-succinct-client-utils = { path = "utils/client" }
op-succinct-host-utils = { path = "utils/host" }
op-succinct-proposer = { path = "proposer/succinct" }

# ethereum
# ethereum / op
alloy = { version = "0.2", default-features = false, features = ["full"] }
alloy-primitives = { version = "0.7.6", default-features = false }
alloy-rlp = { version = "0.3.5", default-features = false }
alloy-eips = { version = "0.2", default-features = false }
revm = { version = "13.0", default-features = false, features = ["kzg-rs"] }
bincode = "1.3.3"
base64 = "0.22.1"
tower-http = { version = "0.5.2", features = ["limit"] }
alloy-consensus = { version = "0.2", default-features = false }
alloy-sol-types = { version = "0.7.6" }
op-alloy-consensus = { version = "0.1.4", default-features = false }
Expand All @@ -84,10 +80,6 @@ sp1-zkvm = { version = "1.2.0-rc1", features = ["verify"] }
sp1-sdk = { version = "1.2.0-rc1" }
sp1-build = { version = "1.2.0-rc1" }

# kzg
kzg-rs = { version = "0.2.1" }

# sp1
[profile.release-client-lto]
inherits = "release"
panic = "abort"
Expand Down
Loading