mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
26 lines
515 B
TOML
26 lines
515 B
TOML
[package]
|
|
name = "key_protocol"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
k256.workspace = true
|
|
sha2.workspace = true
|
|
rand.workspace = true
|
|
elliptic-curve.workspace = true
|
|
hex.workspace = true
|
|
aes-gcm.workspace = true
|
|
lazy_static.workspace = true
|
|
bip39.workspace = true
|
|
hmac-sha512.workspace = true
|
|
nssa-core = { path = "../nssa/core", features = ["host"] }
|
|
|
|
[dependencies.common]
|
|
path = "../common"
|
|
|
|
[dependencies.nssa]
|
|
path = "../nssa"
|