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

30 lines
713 B
TOML
Raw Permalink Normal View History

2026-03-16 15:47:55 +08:00
[package]
name = "gateway"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "^4.0"
tokio = { version = "^1.0", features = ["full"] }
2026-04-21 13:46:20 +08:00
tokio-stream = "^0.1"
2026-03-16 15:47:55 +08:00
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
reqwest = { version = "^0.11", features = ["json"] }
# embedded-redis = "^0.1" # 使用自定义嵌入式Redis实现
tokio-tungstenite = "^0.18"
shared = { path = "../shared" }
chrono = { version = "^0.4", features = ["serde"] }
env_logger = "^0.10"
sha1 = "^0.10"
sha2 = "^0.10"
hex = "^0.4"
2026-03-20 16:51:31 +08:00
urlencoding = "^2.1"
base64 = "^0.21"
aes = "^0.8"
cbc = "^0.1"
cipher = "^0.4"
2026-03-16 15:47:55 +08:00
actix = "^0.13"
2026-03-20 16:51:31 +08:00
actix-ws = "^0.2"
2026-03-16 15:47:55 +08:00
futures = "^0.3"
uuid = { version = "^1.0", features = ["v4"] }