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"
|
|
|
|
tokio = { version = "1.28", features = ["full"] }
|
2023-07-05 13:14:01 +00:00
|
|
|
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"
|
2023-07-06 10:34:45 +00:00
|
|
|
thiserror = "1.0"
|
2023-07-06 18:08:55 +00:00
|
|
|
async-trait = "0.1"
|
2023-07-10 11:34:16 +00:00
|
|
|
tower-http = { version = "0.4", features = ["cors"] }
|
2023-07-11 09:28:17 +00:00
|
|
|
dotenv_rs = "0.16"
|
2023-06-29 12:59:39 +00:00
|
|
|
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
|
|
opt-level = 3
|