removed unneeded deps

This commit is contained in:
Nicolai Van der Storm 2025-02-18 19:58:58 +01:00
parent c29aae3207
commit 0a2ece6f6e
2 changed files with 0 additions and 39 deletions

37
Cargo.lock generated
View File

@ -782,9 +782,7 @@ dependencies = [
"serde_json", "serde_json",
"tokio", "tokio",
"tower", "tower",
"tower-http",
"utoipa", "utoipa",
"utoipa-axum",
"utoipa-swagger-ui", "utoipa-swagger-ui",
] ]
@ -811,12 +809,6 @@ dependencies = [
"windows-targets", "windows-targets",
] ]
[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
[[package]] [[package]]
name = "percent-encoding" name = "percent-encoding"
version = "2.3.1" version = "2.3.1"
@ -1199,22 +1191,6 @@ dependencies = [
"tracing", "tracing",
] ]
[[package]]
name = "tower-http"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
dependencies = [
"bitflags",
"bytes",
"http",
"http-body",
"pin-project-lite",
"tower-layer",
"tower-service",
"tracing",
]
[[package]] [[package]]
name = "tower-layer" name = "tower-layer"
version = "0.3.3" version = "0.3.3"
@ -1300,19 +1276,6 @@ dependencies = [
"utoipa-gen", "utoipa-gen",
] ]
[[package]]
name = "utoipa-axum"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c25bae5bccc842449ec0c5ddc5cbb6a3a1eaeac4503895dc105a1138f8234a0"
dependencies = [
"axum",
"paste",
"tower-layer",
"tower-service",
"utoipa",
]
[[package]] [[package]]
name = "utoipa-gen" name = "utoipa-gen"
version = "5.3.1" version = "5.3.1"

View File

@ -14,7 +14,5 @@ serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138" serde_json = "1.0.138"
tokio = { version = "1.43.0", features = ["full"] } tokio = { version = "1.43.0", features = ["full"] }
tower = "0.5.2" tower = "0.5.2"
tower-http = { version = "0.6.2", features = ["trace"] }
utoipa = { version = "5.3.1", features = ["axum_extras"] } utoipa = { version = "5.3.1", features = ["axum_extras"] }
utoipa-axum = "0.2.0"
utoipa-swagger-ui = { version = "9.0.0", features = ["axum"] } utoipa-swagger-ui = { version = "9.0.0", features = ["axum"] }