2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
2025-08-15 14:27:36 +03:00
|
|
|
name = "key_protocol"
|
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
|
2024-10-25 09:41:43 +03:00
|
|
|
serde.workspace = true
|
|
|
|
|
k256.workspace = true
|
|
|
|
|
sha2.workspace = true
|
|
|
|
|
rand.workspace = true
|
2025-10-23 17:33:25 +03:00
|
|
|
base58.workspace = true
|
|
|
|
|
hex = "0.4.3"
|
2024-10-30 12:32:36 +02:00
|
|
|
aes-gcm.workspace = true
|
2025-09-04 17:49:55 +03:00
|
|
|
bip39.workspace = true
|
2025-09-05 14:47:58 +03:00
|
|
|
hmac-sha512.workspace = true
|
2025-11-11 12:15:20 +02:00
|
|
|
thiserror.workspace = true
|
2025-09-15 14:04:49 +03:00
|
|
|
nssa-core = { path = "../nssa/core", features = ["host"] }
|
2025-12-08 12:11:11 +02:00
|
|
|
itertools.workspace = true
|
2024-10-25 09:41:43 +03:00
|
|
|
|
2025-04-16 16:17:53 +03:00
|
|
|
[dependencies.common]
|
|
|
|
|
path = "../common"
|
2025-08-09 06:36:13 -03:00
|
|
|
|
|
|
|
|
[dependencies.nssa]
|
|
|
|
|
path = "../nssa"
|