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-10-27 18:05:16 +11:00
|
|
|
actix-files = "0.6.6"
|
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"
|
2024-09-01 00:13:30 +10:00
|
|
|
anyhow = "1.0.86"
|
2024-08-31 21:51:04 +10:00
|
|
|
env_logger = "0.11.5"
|
|
|
|
futures-util = "0.3.30"
|
2024-11-03 21:36:49 +11:00
|
|
|
instant-acme = "0.7.2"
|
2024-08-31 21:51:04 +10:00
|
|
|
log = "0.4.22"
|
2024-11-03 21:36:49 +11:00
|
|
|
rcgen = "0.13.1"
|
2024-09-03 22:01:10 +10:00
|
|
|
rustls = "0.23.12"
|
|
|
|
rustls-pemfile = "2.1.3"
|
2024-10-27 18:05:16 +11:00
|
|
|
serde = { version = "1.0.213", features = ["derive"] }
|
2024-09-01 00:13:30 +10:00
|
|
|
serde_json = "1.0.127"
|
2024-11-03 21:36:49 +11:00
|
|
|
time = "0.3.36"
|
2024-10-27 18:05:16 +11:00
|
|
|
tokio = { version = "1.39.3", features = ["net", "macros", "tokio-macros", "rt-multi-thread", "signal"] }
|
|
|
|
toml = "0.8.19"
|
|
|
|
wildmatch = { version = "2.3.4", features = ["serde"] }
|
2024-11-03 21:36:49 +11:00
|
|
|
x509-parser = "0.16.0"
|