mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-08 21:48:11 -05:00
28 lines
796 B
TOML
28 lines
796 B
TOML
[package]
|
|
name = "l2geth"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
tokio = {version = "1", features = ["rt-multi-thread"]}
|
|
async-trait = "0.1"
|
|
url = ">=2.5.3"
|
|
|
|
libzkp = { path = "../libzkp" }
|
|
alloy = { workspace = true, features = ["provider-http", "transport-http", "reqwest", "reqwest-rustls-tls", "json-rpc"] }
|
|
sbv-primitives = { workspace = true, features = ["scroll"] }
|
|
sbv-utils = { workspace = true, features = ["scroll"] }
|
|
sbv-core = { workspace = true, features = ["scroll"] }
|
|
|
|
eyre.workspace = true
|
|
|
|
base64.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json = { workspace = true, features = ["raw_value"]}
|
|
tracing.workspace = true
|
|
|
|
|
|
|