debt-pirate/api/Cargo.toml

51 lines
1.2 KiB
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"
axum = { version = "0.8", features = [
2024-08-22 17:29:24 -04:00
"macros",
"multipart",
"ws",
2024-09-30 00:15:19 -04:00
] }
base64 = "0.22"
bb8-redis = "0.20"
2024-10-05 08:09:46 -04:00
blake3 = { version = "1.5", features = ["serde"] }
futures = "0.3"
http = "1.0"
2024-10-05 08:09:46 -04:00
humantime = "2.1"
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"
redis = { version = "0.28", features = ["aio"] }
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",
"time",
2024-08-22 17:29:24 -04:00
"postgres",
"runtime-tokio",
] }
2024-09-30 00:15:19 -04:00
syslog-tracing = "0.3.1"
2024-10-05 08:09:46 -04:00
time = { version = "0.3", features = ["formatting", "macros"] }
tokio = { version = "1.35", features = ["full"] }
toml = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["full"] }
2024-09-30 00:15:19 -04:00
tracing = "0.1.40"
2024-10-05 08:09:46 -04:00
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
url = { version = "2.5.2", features = ["expose_internals"] }
2024-08-22 17:29:24 -04:00
uuid = { version = "1.10", features = ["serde", "v7"] }