20 lines
501 B
TOML
20 lines
501 B
TOML
[package]
|
||
name = "nac-cbpp"
|
||
version = "1.0.0"
|
||
edition = "2021"
|
||
authors = ["NAC公链开发小组"]
|
||
description = "宪政区块生产协议(CBPP)- NAC共识机制"
|
||
|
||
[dependencies]
|
||
nac-upgrade-framework = { path = "../nac-upgrade-framework" }
|
||
tokio = { version = "1.0", features = ["full"] }
|
||
serde = { version = "1.0", features = ["derive"] }
|
||
serde_json = "1.0"
|
||
sha3 = "0.10"
|
||
sha2 = "0.10"
|
||
hex = "0.4"
|
||
chrono = { version = "0.4", features = ["serde"] }
|
||
anyhow = "1.0"
|
||
thiserror = "1.0"
|
||
rand = "0.8"
|