findtheti.me/Cargo.toml

22 lines
773 B
TOML
Raw Normal View History

2024-01-08 20:09:26 +02:00
[package]
name = "findtheti-me"
version = "0.1.4"
2024-01-08 20:09:26 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-11 12:52:41 +02:00
axum = { version = "0.7.3", features = ["macros", "tokio"] }
2024-01-08 20:09:26 +02:00
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"
2024-01-11 14:26:34 +02:00
env_logger = "0.10.1"
2024-01-08 20:09:26 +02:00
futures = "0.3.30"
rand = "0.8.5"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
sqlx = { version = "0.7.3", features = ["runtime-tokio", "postgres", "chrono"] }
tokio = {version = "1.35.1", features = ["macros", "rt-multi-thread", "rt", "net"]}
tower-http = { version = "0.5.0", features = ["fs", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "std"] }