2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
2025-08-07 14:07:34 +03:00
|
|
|
name = "wallet"
|
2024-09-27 15:29:49 +03:00
|
|
|
version = "0.1.0"
|
2025-09-04 14:38:41 +03:00
|
|
|
edition = "2024"
|
2024-09-27 15:29:49 +03:00
|
|
|
|
|
|
|
|
[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-05 13:05:58 +02:00
|
|
|
tokio.workspace = true
|
2024-12-09 03:56:53 +01:00
|
|
|
tempfile.workspace = true
|
2025-08-06 14:56:58 +03:00
|
|
|
clap.workspace = true
|
2025-08-19 14:14:09 +03:00
|
|
|
nssa-core = { path = "../nssa/core" }
|
2025-08-21 15:58:31 +03:00
|
|
|
base64.workspace = true
|
2025-09-12 16:00:57 +03:00
|
|
|
k256 = { version = "0.13.3" }
|
2025-09-05 22:50:10 -03:00
|
|
|
bytemuck = "1.23.2"
|
2025-09-17 13:57:31 +03:00
|
|
|
hex.workspace = true
|
2024-12-03 09:32:35 +02:00
|
|
|
|
2025-08-15 14:27:36 +03:00
|
|
|
[dependencies.key_protocol]
|
|
|
|
|
path = "../key_protocol"
|
2024-12-02 00:55:29 +01:00
|
|
|
|
2025-08-09 06:36:13 -03:00
|
|
|
[dependencies.nssa]
|
|
|
|
|
path = "../nssa"
|
|
|
|
|
|
2025-02-05 12:24:09 +02:00
|
|
|
[dependencies.common]
|
|
|
|
|
path = "../common"
|