mirror of
https://github.com/CodingIsOurPassion/CodingIsOurPassion.git
synced 2025-01-02 10:59:19 -06:00
39 lines
1.0 KiB
TOML
39 lines
1.0 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"] }
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
secrecy = { version = "0.8.0", features = ["serde"] }
|
|
utoipa-swagger-ui = { version = "7.1.0", features = ["axum", "vendored"]}
|
|
utoipauto = "0.1.11"
|
|
utoipa = "4.2.3"
|
|
|
|
[dev-dependencies]
|
|
reqwest = "0.12.5"
|