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-16 21:16:30 +02:00
|
|
|
axum-extra = { version = "0.7.7", features = ["cookie"] }
|
|
|
|
|
base64 = "0.21.2"
|
2023-08-14 17:59:37 +02:00
|
|
|
color-eyre = "0.6.2"
|
2023-08-16 21:16:30 +02:00
|
|
|
cookie = "0.17.0"
|
2023-08-14 17:59:37 +02:00
|
|
|
envious = "0.2.2"
|
2023-08-29 21:29:48 +02:00
|
|
|
futures-util = "0.3.28"
|
2023-08-16 21:16:30 +02:00
|
|
|
jwt-simple = "0.11.6"
|
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-28 23:33:57 +02:00
|
|
|
serde_urlencoded = "0.7.1"
|
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
|