40 lines
759 B
TOML
40 lines
759 B
TOML
[package]
|
|
name = "nac-bridge-ethereum"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["NAC Wallet Team"]
|
|
description = "NAC Ethereum Bridge Plugin - First concrete bridge implementation"
|
|
|
|
[dependencies]
|
|
nac-upgrade-framework = { path = "../nac-upgrade-framework" }
|
|
# NAC核心依赖
|
|
nac-wallet-core = { path = "../nac-wallet-core" }
|
|
|
|
# 异步运行时
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
async-trait = "0.1"
|
|
|
|
# 序列化
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Web3/以太坊
|
|
ethers = { version = "2.0", features = ["legacy", "ws"] }
|
|
|
|
# 密码学
|
|
sha3 = "0.10"
|
|
hex = "0.4"
|
|
|
|
# 错误处理
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
|
|
# 日志
|
|
log = "0.4"
|
|
|
|
# 时间处理
|
|
chrono = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|