NAC_Blockchain/nac-ai-valuation/Cargo.toml

50 lines
994 B
TOML

[package]
name = "nac-ai-valuation"
version = "0.1.0"
edition = "2021"
authors = ["NAC公链开发小组"]
description = "NAC公链AI估值系统 - 基于AI的RWA资产估值引擎"
license = "MIT OR Apache-2.0"
[dependencies]
nac-upgrade-framework = { path = "../nac-upgrade-framework" }
# 异步运行时
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
# 序列化
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# 日期时间
chrono = { version = "0.4", features = ["serde"] }
# 数值计算
rust_decimal = { version = "1.33", features = ["serde-float"] }
rust_decimal_macros = "1.33"
# 错误处理
thiserror = "1.0"
anyhow = "1.0"
# HTTP客户端
reqwest = { version = "0.11", features = ["json"] }
# 日志
log = "0.4"
env_logger = "0.11"
# UUID
uuid = { version = "1.6", features = ["v4", "serde"] }
# 加密哈希
sha2 = "0.10"
hex = "0.4"
[dev-dependencies]
tokio-test = "0.4"
[lib]
name = "nac_ai_valuation"
path = "src/lib.rs"