24 lines
619 B
TOML
24 lines
619 B
TOML
|
|
[package]
|
||
|
|
name = "gateway"
|
||
|
|
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"
|
||
|
|
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"
|
||
|
|
actix = "^0.13"
|
||
|
|
actix-web-actors = "^4.0"
|
||
|
|
futures = "^0.3"
|
||
|
|
uuid = { version = "^1.0", features = ["v4"] }
|