mabel/Cargo.toml
2023-06-26 10:08:49 +02:00

15 lines
No EOL
456 B
TOML

[package]
name = "mabel"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.6"
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1.28", features = ["full"] }
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "uuid", "chrono", "macros", "migrate" ] }
uuid = { version = "1.3", features = ["v4", "fast-rng"] }
serde = { version = "1" }
figment = { version = "0.10", features = ["toml", "env"] }
anyhow = "1.0"