NAC_Blockchain/ops/nac-daemon/Cargo.toml

35 lines
740 B
TOML

[package]
name = "nac-daemon"
version = "1.0.0"
edition = "2021"
authors = ["NAC公链开发小组"]
description = "NAC公链本地守护进程 - 开发者终端集成 - Issue #67"
[[bin]]
name = "nacd"
path = "src/main.rs"
[[bin]]
name = "nac"
path = "src/cli.rs"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.0", features = ["derive"] }
actix-web = "4.0"
reqwest = { version = "0.11", features = ["json"] }
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = { version = "0.4", features = ["serde"] }
dirs = "5.0"
toml = "0.8"
hex = "0.4"
sha3 = "0.10"
[dev-dependencies]
tokio-test = "0.4"