1
Fork 0
todocolors/todored/Cargo.toml

24 lines
764 B
TOML
Raw Normal View History

2023-07-29 15:58:17 +02:00
[package]
name = "todored"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.19", features = ["ws"] }
2023-07-31 16:57:38 +02:00
deadqueue = "0.2.4"
2023-07-30 02:24:43 +02:00
futures-util = "0.3.28"
2023-08-02 04:14:49 +02:00
lazy_static = "1.4.0"
2023-07-29 19:22:02 +02:00
log = "0.4.19"
micronfig = "0.2.0"
pkg-version = "1.0.0"
pretty_env_logger = "0.5.0"
redis = { version = "0.23.1", features = ["r2d2", "ahash", "cluster", "tokio-comp", "connection-manager"] }
2023-08-02 04:14:49 +02:00
regex = "1.9.1"
2023-07-29 19:22:02 +02:00
serde = { version = "1.0.178", features = ["derive"] }
2023-07-31 16:57:38 +02:00
serde_json = "1.0.104"
2023-07-29 19:22:02 +02:00
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.4.3", features = ["cors"] }
2023-07-31 16:57:38 +02:00
uuid = { version = "1.4.1", features = ["serde", "v4"] }