mail-accounts/Cargo.toml

25 lines
721 B
TOML
Raw Normal View History

2023-08-14 17:59:37 +02:00
[package]
name = "mail_accounts"
version = "0.1.0"
authors = ["traxys <quentin@familleboyer.net>"]
edition = "2021"
[dependencies]
2023-08-15 15:57:19 +02:00
axum = { version = "0.6.20", features = ["query"] }
2023-08-14 17:59:37 +02:00
color-eyre = "0.6.2"
envious = "0.2.2"
2023-08-15 19:46:26 +02:00
once_cell = "1.18.0"
2023-08-15 15:57:19 +02:00
openidconnect = "3.3.0"
parking_lot = "0.12.1"
2023-08-14 17:59:37 +02:00
serde = { version = "1.0.183", features = ["derive"] }
2023-08-14 18:26:38 +02:00
sqlx = { version = "0.7.1", features = ["runtime-tokio", "postgres", "uuid", "migrate"] }
2023-08-15 19:40:11 +02:00
tera = "1.19.0"
2023-08-15 15:57:19 +02:00
thiserror = "1.0.44"
2023-08-14 17:59:37 +02:00
tokio = { version = "1.31.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2023-08-15 15:57:19 +02:00
uuid = { version = "1.4.1", features = ["v4", "serde"] }
2023-08-14 18:26:38 +02:00
[profile.dev.package.sqlx-macros]
opt-level = 3