2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
|
|
|
|
name = "accounts"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
env_logger.workspace = true
|
|
|
|
|
log.workspace = true
|
2024-10-25 09:41:43 +03:00
|
|
|
serde.workspace = true
|
|
|
|
|
k256.workspace = true
|
|
|
|
|
sha2.workspace = true
|
|
|
|
|
rand.workspace = true
|
|
|
|
|
elliptic-curve.workspace = true
|
2024-10-25 14:15:00 +03:00
|
|
|
hex.workspace = true
|
2024-10-30 12:32:36 +02:00
|
|
|
aes-gcm.workspace = true
|
2024-10-25 09:41:43 +03:00
|
|
|
|
|
|
|
|
[dependencies.storage]
|
2024-10-30 12:32:36 +02:00
|
|
|
path = "../storage"
|
|
|
|
|
|
|
|
|
|
[dependencies.utxo]
|
2024-10-31 10:31:52 +02:00
|
|
|
path = "../utxo"
|