worldwideportal-server/Cargo.toml

20 lines
534 B
TOML
Raw Normal View History

2024-08-31 21:51:04 +10:00
[package]
name = "worldwideportal-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-09-03 22:01:10 +10:00
actix-web = { version = "4.9.0", features = ["rustls-0_23"] }
2024-08-31 21:51:04 +10:00
actix-ws = "0.3.0"
anyhow = "1.0.86"
2024-08-31 21:51:04 +10:00
env_logger = "0.11.5"
futures-util = "0.3.30"
log = "0.4.22"
2024-09-03 22:01:10 +10:00
rustls = "0.23.12"
rustls-pemfile = "2.1.3"
serde_json = "1.0.127"
2024-08-31 21:51:04 +10:00
tokio = { version = "1.39.3", features = ["net", "macros", "tokio-macros", "rt-multi-thread"] }
2024-09-03 22:01:10 +10:00
wildmatch = "2.3.4"