mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
30 lines
561 B
TOML
30 lines
561 B
TOML
[package]
|
|
name = "wallet"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
serde_json.workspace = true
|
|
env_logger.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
tempfile.workspace = true
|
|
clap.workspace = true
|
|
nssa-core = { path = "../nssa/core" }
|
|
base64.workspace = true
|
|
k256 = { version = "0.13.3" }
|
|
bytemuck = "1.23.2"
|
|
hex.workspace = true
|
|
rand.workspace = true
|
|
|
|
[dependencies.key_protocol]
|
|
path = "../key_protocol"
|
|
|
|
[dependencies.nssa]
|
|
path = "../nssa"
|
|
|
|
[dependencies.common]
|
|
path = "../common"
|