2024-09-27 15:29:49 +03:00
|
|
|
[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
|
|
|
|
|
monotree.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
|
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"
|
|
|
|
|
|
|
|
|
|
[dependencies.secp256k1-zkp]
|
|
|
|
|
workspace = true
|
|
|
|
|
features = ["std", "rand-std", "rand", "serde", "global-context"]
|