RoadSign/Cargo.toml

39 lines
895 B
TOML
Raw Normal View History

2024-01-13 04:35:59 +00:00
[package]
name = "roadsign"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-12 16:01:39 +00:00
actix-files = "0.6.5"
actix-proxy = "0.2.0"
2024-02-13 10:27:01 +00:00
actix-web = { version = "4.5.1", features = ["rustls-0_22"] }
2024-02-12 17:04:43 +00:00
actix-web-httpauth = "0.8.1"
2024-02-13 14:56:22 +00:00
awc = { version = "3.4.0", features = ["tls-rustls-0_22"] }
2024-02-12 17:04:43 +00:00
config = { version = "0.14.0", features = ["toml"] }
2024-01-13 06:46:26 +00:00
lazy_static = "1.4.0"
2024-01-14 05:14:41 +00:00
mime = "0.3.17"
percent-encoding = "2.3.1"
queryst = "3.0.0"
rand = "0.8.5"
regex = "1.10.2"
2024-01-13 04:35:59 +00:00
serde = "1.0.195"
serde_json = "1.0.111"
2024-01-14 10:39:22 +00:00
tokio = { version = "1.35.1", features = [
"rt-multi-thread",
"macros",
"time",
"full",
] }
2024-01-13 06:46:26 +00:00
toml = "0.8.8"
tracing = "0.1.40"
2024-01-13 04:35:59 +00:00
tracing-subscriber = "0.3.18"
wildmatch = "2.3.0"
2024-02-12 17:42:03 +00:00
derive_more = "0.99.17"
2024-02-13 10:27:01 +00:00
rustls = "0.22.2"
rustls-pemfile = "2.0.0"
2024-02-14 05:53:43 +00:00
futures = "0.3.30"
actix-web-actors = "4.3.0"
actix = "0.13.3"