RoadSign/Cargo.toml

30 lines
942 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]
config = { version = "0.13.4", features = ["toml"] }
futures-util = "0.3.30"
http = "1.0.0"
hyper-util = { version = "0.1.2", features = ["full"] }
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"
poem = { version = "2.0.0", features = ["tokio-metrics", "websocket", "static-files"] }
poem-openapi = { version = "4.0.0", features = ["swagger-ui"] }
2024-01-14 05:14:41 +00:00
queryst = "3.0.0"
rand = "0.8.5"
regex = "1.10.2"
reqwest = { git = "https://github.com/seanmonstar/reqwest.git", branch = "hyper-v1", version = "0.11.23" }
2024-01-13 04:35:59 +00:00
serde = "1.0.195"
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros", "time", "full"] }
tokio-tungstenite = "0.21.0"
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"