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

57 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
lto = true
codegen-units = 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"
jsonwebtoken = "9"
oauth2 = "4"
2024-07-30 14:40:09 +00:00
reqwest = { version = "0.12", features = ["http2", "rustls-tls", "json"] }
2024-06-27 12:04:57 +00:00
serde = { version = "1", features = ["derive"] }
sha2 = "0.10"
sqlx = { version = "0.8", features = [
"postgres",
"runtime-tokio-rustls",
"macros",
"migrate",
"chrono",
"uuid",
] }
tokio = { version = "1", features = ["rt-multi-thread"] }
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-30 17:21:33 +00:00
utoipa = { version = "4", features = ["axum_extras", "uuid", "chrono"] }
utoipauto = "0.1"
2024-06-27 12:04:57 +00:00
uuid = { version = "1", features = ["serde", "v4"] }