mabel/Cargo.toml

46 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2023-06-26 08:08:49 +00:00
[package]
name = "mabel"
version = "0.1.0"
edition = "2021"
2023-07-06 18:41:43 +00:00
license = "AGPL-3.0-or-later"
2023-06-26 08:08:49 +00:00
[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"
2023-07-30 11:53:07 +00:00
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"chrono",
"macros",
"migrate",
"json",
"offline",
] }
2023-07-13 15:43:05 +00:00
uuid = { version = "1.4", features = ["v7", "serde", "std"] }
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-07-06 08:43:33 +00:00
figment = { version = "0.10", features = ["toml", "env", "test"] }
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"
2023-07-01 14:15:19 +00:00
argon2 = { version = "0.5", features = ["std", "alloc"] }
2023-07-01 13:02:40 +00:00
url = "2.4"
thiserror = "1.0"
async-trait = "0.1"
2023-07-10 11:34:16 +00:00
tower-http = { version = "0.4", features = ["cors"] }
2023-07-30 11:53:07 +00:00
dotenvy = "0.15"
utoipa = { version = "3", features = [
"axum_extras",
"uuid",
"chrono",
"preserve_order",
] }
utoipa-swagger-ui = { version = "3", features = ["axum"] }
2023-06-29 12:59:39 +00:00
[profile.dev.package.sqlx-macros]
2023-07-30 11:53:07 +00:00
opt-level = 3