2024-09-27 15:29:49 +03:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
2024-10-30 00:53:12 +01:00
|
|
|
"node_runner",
|
|
|
|
|
"sequencer_runner",
|
|
|
|
|
"storage",
|
|
|
|
|
"accounts",
|
|
|
|
|
"utxo",
|
|
|
|
|
"vm",
|
|
|
|
|
"networking",
|
|
|
|
|
"consensus",
|
|
|
|
|
"node_rpc",
|
|
|
|
|
"sequencer_rpc",
|
|
|
|
|
"mempool",
|
|
|
|
|
"zkvm",
|
|
|
|
|
"node_core",
|
|
|
|
|
"sequencer_core",
|
2025-02-05 12:24:09 +02:00
|
|
|
"common",
|
2025-03-07 05:37:15 +02:00
|
|
|
"sc_core",
|
2025-03-17 13:18:44 +02:00
|
|
|
"core_primitives",
|
2024-09-27 15:29:49 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
anyhow = "1.0"
|
|
|
|
|
num_cpus = "1.13.1"
|
|
|
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
|
|
|
openssl-probe = { version = "0.1.2" }
|
|
|
|
|
serde_json = "1.0.81"
|
2024-09-30 05:49:46 +03:00
|
|
|
actix = "0.13.0"
|
|
|
|
|
actix-cors = "0.6.1"
|
|
|
|
|
futures = "0.3"
|
2024-12-26 11:38:00 +02:00
|
|
|
actix-rt = "*"
|
2024-09-27 15:29:49 +03:00
|
|
|
|
|
|
|
|
env_logger = "0.10"
|
|
|
|
|
log = "0.4"
|
2024-10-10 14:09:31 +03:00
|
|
|
lru = "0.7.8"
|
|
|
|
|
thiserror = "1.0"
|
|
|
|
|
rs_merkle = "1.4"
|
|
|
|
|
sha2 = "0.10.8"
|
2024-10-16 12:15:04 +03:00
|
|
|
monotree = "0.1.5"
|
2024-10-25 14:15:00 +03:00
|
|
|
hex = "0.4.3"
|
2024-10-30 12:32:36 +02:00
|
|
|
aes-gcm = "0.10.3"
|
2024-11-28 22:05:14 +02:00
|
|
|
toml = "0.7.4"
|
2024-12-02 00:50:21 +01:00
|
|
|
secp256k1-zkp = "0.11.0"
|
|
|
|
|
bincode = "1.3.3"
|
2024-12-09 03:56:33 +01:00
|
|
|
tempfile = "3.14.0"
|
2025-03-16 11:05:27 -04:00
|
|
|
light-poseidon = "0.3.0"
|
|
|
|
|
ark-bn254 = "0.5.0"
|
|
|
|
|
ark-ff = "0.5.0"
|
2024-09-27 15:29:49 +03:00
|
|
|
|
2024-10-30 00:53:12 +01:00
|
|
|
rocksdb = { version = "0.21.0", default-features = false, features = [
|
|
|
|
|
"snappy",
|
|
|
|
|
] }
|
2024-09-27 15:29:49 +03:00
|
|
|
|
2024-10-25 09:41:43 +03:00
|
|
|
[workspace.dependencies.rand]
|
|
|
|
|
features = ["std", "std_rng", "getrandom"]
|
|
|
|
|
version = "0.8.5"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.k256]
|
2025-04-04 12:11:54 +03:00
|
|
|
features = ["ecdsa-core", "arithmetic", "expose-field", "serde"]
|
2024-10-25 09:41:43 +03:00
|
|
|
version = "0.13.4"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.elliptic-curve]
|
|
|
|
|
features = ["arithmetic"]
|
|
|
|
|
version = "0.13.8"
|
|
|
|
|
|
2024-09-27 15:29:49 +03:00
|
|
|
[workspace.dependencies.serde]
|
|
|
|
|
features = ["derive"]
|
|
|
|
|
version = "1.0.60"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.actix-web]
|
|
|
|
|
default-features = false
|
|
|
|
|
version = "=4.1.0"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.clap]
|
|
|
|
|
features = ["derive", "env"]
|
|
|
|
|
version = "3.1.6"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.tokio-retry]
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.reqwest]
|
|
|
|
|
features = ["json"]
|
|
|
|
|
version = "0.11.16"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.tokio]
|
|
|
|
|
features = ["net", "rt-multi-thread", "sync", "fs"]
|
|
|
|
|
version = "1.28.2"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies.tracing]
|
|
|
|
|
features = ["std"]
|
|
|
|
|
version = "0.1.13"
|