debt-pirate/api/Cargo.toml

46 lines
1,016 B
TOML
Raw Normal View History

[package]
2024-09-30 00:15:19 -04:00
name = "debt-pirate"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = "0.5"
2024-08-22 17:29:24 -04:00
axum = { version = "0.7", features = [
"macros",
"multipart",
"ws",
2024-09-30 00:15:19 -04:00
] }
base64 = "0.22"
dotenvy = "0.15"
futures = "0.3"
http = "1.0"
humantime = "2.1.0"
humantime-serde = "1.1"
hyper = { version = "1.1", features = ["full"] }
2024-08-22 17:29:24 -04:00
lettre = { version = "0.11", default-features = false, features = [
"builder",
"hostname",
"pool",
"smtp-transport",
"tokio1",
"tokio1-rustls-tls",
] }
num_cpus = "1.16"
pasetors = "0.7"
serde = { version = "1.0", features = ["derive", "rc", "std"] }
serde_json = "1.0"
serde_with = "3.9"
2024-08-22 17:29:24 -04:00
sqlx = { version = "0.8", features = [
"default",
"chrono",
"postgres",
"runtime-tokio",
] }
2024-09-30 00:15:19 -04:00
syslog-tracing = "0.3.1"
tokio = { version = "1.35", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["full"] }
2024-09-30 00:15:19 -04:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
2024-08-22 17:29:24 -04:00
uuid = { version = "1.10", features = ["serde", "v7"] }