This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
project/Cargo.toml

61 lines
1.3 KiB
TOML
Raw Normal View History

2024-06-27 12:04:57 +00:00
[package]
name = "project"
version = "0.1.0"
edition = "2021"
[profile.release]
debug = 1
[lints.clippy]
pedantic = "warn"
all = "warn"
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
2024-07-30 14:40:09 +00:00
axum = { version = "0.7", features = [
"http2",
"macros",
"multipart",
"tracing",
] }
2024-06-27 12:04:57 +00:00
axum-extra = { version = "0.9", features = ["typed-header"] }
chrono = { version = "0.4", features = ["serde"] }
dotenvy = "0.15"
futures = "0.3"
2024-08-15 16:15:58 +00:00
itertools = "0.13"
2024-06-27 12:04:57 +00:00
jsonwebtoken = "9"
2024-08-03 12:49:40 +00:00
rand = "0.8"
scrypt = { version = "0.11", default-features = false, features = ["std"] }
2024-06-27 12:04:57 +00:00
serde = { version = "1", features = ["derive"] }
2024-08-03 12:49:40 +00:00
serde_json = "1"
2024-06-27 12:04:57 +00:00
sha2 = "0.10"
sqlx = { version = "0.8", features = [
"postgres",
"runtime-tokio-rustls",
"macros",
"migrate",
"chrono",
"uuid",
] }
2024-08-03 12:49:40 +00:00
subtle = "2"
2024-08-15 13:03:11 +00:00
tokio = { version = "1", features = [
"parking_lot",
"rt-multi-thread",
"signal",
] }
2024-06-27 12:04:57 +00:00
tokio-util = { version = "0.7" }
tower = { version = "0.4" }
tower-http = { version = "0.5", features = [
"compression-full",
"sensitive-headers",
"trace",
"util",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"parking_lot",
"env-filter",
] }
2024-07-31 16:17:59 +00:00
uuid = { version = "1", features = ["serde", "v7"] }
2024-08-04 06:48:41 +00:00
validator = { version = "0.18", features = ["derive"] }