mabel/Cargo.toml

24 lines
702 B
TOML
Raw Normal View History

2023-06-26 08:08:49 +00:00
[package]
name = "mabel"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.6"
2023-06-29 12:08:59 +00:00
axum-macros = "0.3"
2023-07-01 13:02:40 +00:00
cookie = "0.17"
2023-06-26 08:08:49 +00:00
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1.28", features = ["full"] }
2023-06-28 22:59:26 +00:00
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "uuid", "chrono", "macros", "migrate", "json" ] }
uuid = { version = "1.3", features = ["v4", "fast-rng", "serde"] }
2023-06-26 08:08:49 +00:00
serde = { version = "1" }
2023-06-28 22:59:26 +00:00
serde_json = { version = "1", features = ["raw_value"] }
2023-06-26 08:08:49 +00:00
figment = { version = "0.10", features = ["toml", "env"] }
2023-06-30 13:02:20 +00:00
chrono = { version = "0.4", features = ["serde", "clock"] }
2023-06-29 12:59:39 +00:00
anyhow = "1.0"
argon2 = "0.5"
2023-07-01 13:02:40 +00:00
url = "2.4"
2023-06-29 12:59:39 +00:00
[profile.dev.package.sqlx-macros]
opt-level = 3