lssa/node_core/Cargo.toml

47 lines
946 B
TOML
Raw Normal View History

[package]
name = "node_core"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow.workspace = true
serde_json.workspace = true
env_logger.workspace = true
log.workspace = true
2024-10-10 14:09:31 +03:00
serde.workspace = true
2024-12-02 00:55:29 +01:00
rand.workspace = true
k256.workspace = true
sha2.workspace = true
bincode.workspace = true
2024-12-03 09:32:35 +02:00
elliptic-curve.workspace = true
reqwest.workspace = true
2024-12-05 13:05:58 +02:00
thiserror.workspace = true
tokio.workspace = true
tempfile.workspace = true
2025-07-17 09:01:26 +03:00
risc0-zkvm = { git = "https://github.com/risc0/risc0.git", branch = "release-2.3" }
2024-12-22 16:14:52 +02:00
hex.workspace = true
2024-12-26 11:38:00 +02:00
actix-rt.workspace = true
2025-08-06 14:56:58 +03:00
clap.workspace = true
2024-12-03 09:32:35 +02:00
2025-03-16 11:05:44 -04:00
[dependencies.sc_core]
path = "../sc_core"
2024-12-03 09:32:35 +02:00
[dependencies.accounts]
path = "../accounts"
2024-10-10 14:09:31 +03:00
[dependencies.storage]
2024-10-30 00:53:12 +01:00
path = "../storage"
2024-12-02 00:55:29 +01:00
[dependencies.utxo]
path = "../utxo"
2024-12-22 16:14:52 +02:00
[dependencies.zkvm]
path = "../zkvm"
2025-02-05 12:24:09 +02:00
[dependencies.common]
path = "../common"
2024-12-02 00:55:29 +01:00
[dependencies.secp256k1-zkp]
workspace = true
features = ["std", "rand-std", "rand", "serde", "global-context"]