college/Summer-2024/CS-3443/LakeWatch/LakeWatchAPI/Cargo.toml

56 lines
1.3 KiB
TOML

[package]
name = "lakewatch"
version = "0.1.0"
edition = "2021"
license = "AGPLv3"
authors = ["Price Hiller <price@orion-technologies.io>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.5"
tower = "0.4.13"
tower-http = { version = "0.5.2", features = [
"tracing",
"trace",
"request-id",
"set-header",
"propagate-header",
] }
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"registry",
"fmt",
"json",
] }
tracing-log = "0.2.0"
tracing-bunyan-formatter = "0.3.9"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
chrono = { version = "0.4.38", features = ["serde"] }
chrono-tz = "0.9.0"
tokio = { version = "1.38.0", features = ["full"] }
utoipa-swagger-ui = { version = "7.1.0", features = ["axum", "vendored"] }
utoipauto = "0.1.11"
utoipa = { version = "4.2.3", features = ["chrono", "axum_extras"]}
serde-aux = "4.5.0"
secrecy = { version = "0.8.0", features = ["serde"] }
config = "0.14.0"
[dependencies.sqlx]
version = "0.8.0"
default-features = false
features = [
"macros",
"uuid",
"chrono",
"migrate",
"postgres",
"runtime-tokio-rustls",
]
[dev-dependencies]
reqwest = "0.12.5"