1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-11-22 08:14:18 +00:00
todocolors/todored/Cargo.toml

25 lines
818 B
TOML
Raw Normal View History

2023-07-29 13:58:17 +00:00
[package]
name = "todored"
version = "0.3.0"
2023-07-29 13:58:17 +00:00
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-09-29 07:32:42 +00:00
chrono = { version = "0.4.28", features = ["serde"] }
2023-07-31 14:57:38 +00:00
deadqueue = "0.2.4"
2023-07-30 00:24:43 +00:00
futures-util = "0.3.28"
2023-08-02 02:14:49 +00:00
lazy_static = "1.4.0"
2023-07-29 17:22:02 +00: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 02:14:49 +00:00
regex = "1.9.1"
2023-07-29 17:22:02 +00:00
serde = { version = "1.0.178", features = ["derive"] }
2023-07-31 14:57:38 +00:00
serde_json = "1.0.104"
2023-07-29 17:22:02 +00:00
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.4.3", features = ["cors"] }
2023-07-31 14:57:38 +00:00
uuid = { version = "1.4.1", features = ["serde", "v4"] }