NAC_Blockchain/nac-cbpp-scanner/Cargo.toml

29 lines
707 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "nac-cbpp-scanner"
version = "1.0.0"
edition = "2021"
authors = ["NAC公链开发小组"]
description = "NAC ACC-20C CBPP区块扫描器 - 监听主网区块同步ACC-20C包装资产状态"
[[bin]]
name = "nac-cbpp-scanner"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"] }
sha3 = "0.10"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1.0"
thiserror = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1