Files
JoyD/Claw/Server/SmartClaw/Cargo.toml

24 lines
657 B
TOML
Raw Normal View History

2026-03-16 15:47:55 +08:00
[package]
name = "smartclaw"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "^4.0"
tokio = { version = "^1.0", features = ["full"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
2026-03-20 16:51:31 +08:00
reqwest = { version = "^0.11", features = ["json", "native-tls"] }
2026-03-16 15:47:55 +08:00
# mini-redis = "0.4" # 使用自定义嵌入式Redis实现
2026-03-20 16:51:31 +08:00
tokio-tungstenite = { version = "0.18", features = ["native-tls"] }
native-tls = "0.2"
2026-03-16 15:47:55 +08:00
shared = { path = "../shared" }
env_logger = "^0.10"
2026-03-20 16:51:31 +08:00
awc = { version = "^3.0" }
2026-03-16 15:47:55 +08:00
futures-util = "^0.3"
chrono = "^0.4"
2026-03-20 16:51:31 +08:00
url = "^2.0"
base64 = "^0.22"
rand = "^0.8"
2026-03-16 15:47:55 +08:00
# heed = "^0.20" # 暂时移除后续实现HeedDB功能