mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
35 lines
668 B
TOML
35 lines
668 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
|
|
bytemuck = "1.23.2"
|
|
borsh.workspace = true
|
|
base58.workspace = true
|
|
hex = "0.4.3"
|
|
rand.workspace = true
|
|
itertools.workspace = true
|
|
sha2.workspace = true
|
|
futures.workspace = true
|
|
async-stream = "0.3.6"
|
|
|
|
[dependencies.key_protocol]
|
|
path = "../key_protocol"
|
|
|
|
[dependencies.nssa]
|
|
path = "../nssa"
|
|
|
|
[dependencies.common]
|
|
path = "../common"
|