2024-09-27 15:29:49 +03:00
|
|
|
[workspace]
|
2025-09-04 14:54:48 +03:00
|
|
|
resolver = "3"
|
2024-09-27 15:29:49 +03:00
|
|
|
members = [
|
2025-08-09 06:36:13 -03:00
|
|
|
"integration_tests",
|
2025-08-08 10:51:23 -03:00
|
|
|
"sequencer_runner",
|
2024-10-30 00:53:12 +01:00
|
|
|
"storage",
|
2025-08-15 14:27:36 +03:00
|
|
|
"key_protocol",
|
2024-10-30 00:53:12 +01:00
|
|
|
"sequencer_rpc",
|
|
|
|
|
"mempool",
|
2025-08-07 14:07:34 +03:00
|
|
|
"wallet",
|
2024-10-30 00:53:12 +01:00
|
|
|
"sequencer_core",
|
2025-02-05 12:24:09 +02:00
|
|
|
"common",
|
2025-10-22 16:28:19 +03:00
|
|
|
"nssa",
|
2025-12-11 20:59:37 -03:00
|
|
|
"nssa/core",
|
2025-12-16 17:44:10 +03:00
|
|
|
"program_methods",
|
|
|
|
|
"program_methods/guest",
|
|
|
|
|
"test_program_methods",
|
|
|
|
|
"test_program_methods/guest",
|
2025-10-28 10:41:40 +02:00
|
|
|
"integration_tests/proc_macro_test_attribute",
|
2025-12-11 20:59:37 -03:00
|
|
|
"examples/program_deployment",
|
2025-12-16 17:44:10 +03:00
|
|
|
"examples/program_deployment/methods",
|
|
|
|
|
"examples/program_deployment/methods/guest",
|
2024-09-27 15:29:49 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2025-12-16 17:44:10 +03:00
|
|
|
nssa = { path = "nssa" }
|
|
|
|
|
nssa_core = { path = "nssa/core" }
|
|
|
|
|
common = { path = "common" }
|
|
|
|
|
mempool = { path = "mempool" }
|
|
|
|
|
storage = { path = "storage" }
|
|
|
|
|
key_protocol = { path = "key_protocol" }
|
|
|
|
|
sequencer_core = { path = "sequencer_core" }
|
|
|
|
|
sequencer_rpc = { path = "sequencer_rpc" }
|
|
|
|
|
sequencer_runner = { path = "sequencer_runner" }
|
|
|
|
|
wallet = { path = "wallet" }
|
|
|
|
|
test_program_methods = { path = "test_program_methods" }
|
|
|
|
|
|
|
|
|
|
tokio = { version = "1.28.2", features = [
|
|
|
|
|
"net",
|
|
|
|
|
"rt-multi-thread",
|
|
|
|
|
"sync",
|
|
|
|
|
"fs",
|
|
|
|
|
] }
|
|
|
|
|
risc0-zkvm = { version = "3.0.3", features = ['std'] }
|
|
|
|
|
risc0-build = "3.0.3"
|
2025-08-09 19:49:07 -03:00
|
|
|
anyhow = "1.0.98"
|
2024-09-27 15:29:49 +03:00
|
|
|
num_cpus = "1.13.1"
|
|
|
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
|
|
|
openssl-probe = { version = "0.1.2" }
|
2025-12-16 17:44:10 +03:00
|
|
|
serde = { version = "1.0.60", default-features = false, features = ["derive"] }
|
2024-09-27 15:29:49 +03:00
|
|
|
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 = "*"
|
2025-04-18 08:16:56 -04:00
|
|
|
lazy_static = "1.5.0"
|
2024-09-27 15:29:49 +03:00
|
|
|
env_logger = "0.10"
|
2025-09-04 14:18:44 +03:00
|
|
|
log = "0.4.28"
|
2024-10-10 14:09:31 +03:00
|
|
|
lru = "0.7.8"
|
2025-08-09 19:49:07 -03:00
|
|
|
thiserror = "2.0.12"
|
2024-10-10 14:09:31 +03:00
|
|
|
sha2 = "0.10.8"
|
2024-10-25 14:15:00 +03:00
|
|
|
hex = "0.4.3"
|
2025-12-16 17:44:10 +03:00
|
|
|
bytemuck = "1.24.0"
|
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
|
|
|
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"
|
2025-07-25 10:46:32 +03:00
|
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
2025-08-12 12:18:13 -03:00
|
|
|
base64 = "0.22.1"
|
2025-09-04 17:49:55 +03:00
|
|
|
bip39 = "2.2.0"
|
2025-09-05 14:47:58 +03:00
|
|
|
hmac-sha512 = "1.1.7"
|
2025-09-03 10:29:51 +03:00
|
|
|
chrono = "0.4.41"
|
2025-09-25 11:53:42 +03:00
|
|
|
borsh = "1.5.7"
|
2025-10-23 17:33:25 +03:00
|
|
|
base58 = "0.2.0"
|
2025-12-04 14:55:45 +03:00
|
|
|
itertools = "0.14.0"
|
2024-09-27 15:29:49 +03:00
|
|
|
|
2025-12-04 23:42:03 +11:00
|
|
|
rocksdb = { version = "0.24.0", default-features = false, features = [
|
2024-10-30 00:53:12 +01:00
|
|
|
"snappy",
|
2025-12-17 01:10:25 +03:00
|
|
|
"bindgen-runtime",
|
2024-10-30 00:53:12 +01:00
|
|
|
] }
|
2025-12-16 17:44:10 +03:00
|
|
|
rand = { version = "0.8.5", features = ["std", "std_rng", "getrandom"] }
|
|
|
|
|
k256 = { version = "0.13.3", features = [
|
|
|
|
|
"ecdsa-core",
|
|
|
|
|
"arithmetic",
|
|
|
|
|
"expose-field",
|
|
|
|
|
"serde",
|
|
|
|
|
"pem",
|
|
|
|
|
] }
|
|
|
|
|
elliptic-curve = { version = "0.13.8", features = ["arithmetic"] }
|
|
|
|
|
actix-web = { version = "=4.1.0", default-features = false, features = [
|
|
|
|
|
"macros",
|
|
|
|
|
] }
|
|
|
|
|
clap = { version = "4.5.42", features = ["derive", "env"] }
|
|
|
|
|
reqwest = { version = "0.11.16", features = ["json"] }
|