43 lines
979 B
TOML
43 lines
979 B
TOML
[package]
|
|
name = "nac-vision-wallet"
|
|
version = "2.0.0-alpha"
|
|
edition = "2021"
|
|
authors = ["NAC Wallet Working Group"]
|
|
description = "NAC VISION: Next-Generation Smart Wallet with AI, Constitutional Receipts, and 3D GNACS Visualization"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
nac-upgrade-framework = { path = "../nac-upgrade-framework" }
|
|
# 基础依赖
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
async-trait = "0.1"
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
|
|
# 密码学
|
|
ed25519-dalek = "2.0"
|
|
sha2 = "0.10"
|
|
blake3 = "1.5"
|
|
bip39 = "2.0"
|
|
|
|
# 网络
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
bytes = "1.0"
|
|
|
|
# NAC内部依赖
|
|
nac-wallet-core = { path = "../nac-wallet-core" }
|
|
nac-udm = { path = "../nac-udm" }
|
|
nac-cee = { path = "../nac-cee" }
|
|
nac-nrpc = { path = "../nac-nrpc" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
|
|
[lib]
|
|
name = "nac_vision_wallet"
|
|
path = "src/lib.rs"
|