From 1fe81ce9981b50270dd8358817568a7c9c08e2bc Mon Sep 17 00:00:00 2001 From: Xander Bil Date: Thu, 5 Dec 2024 21:31:41 +0100 Subject: [PATCH] vingo: yeet --- vingo/Cargo.lock | 3 +-- vingo/Cargo.toml | 3 +-- vingo/src/routes/scans.rs | 3 --- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/vingo/Cargo.lock b/vingo/Cargo.lock index 9248aa8..1d58318 100644 --- a/vingo/Cargo.lock +++ b/vingo/Cargo.lock @@ -2951,7 +2951,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vingo" -version = "1.1.0" +version = "1.2.0" dependencies = [ "axum", "chrono", @@ -2960,7 +2960,6 @@ dependencies = [ "rand", "reqwest", "sea-orm", - "sea-query", "serde", "tokio", "tower-http", diff --git a/vingo/Cargo.toml b/vingo/Cargo.toml index c7e9fd6..78b883e 100644 --- a/vingo/Cargo.toml +++ b/vingo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vingo" -version = "1.1.0" +version = "1.2.0" edition = "2021" [workspace] @@ -47,4 +47,3 @@ tracing-subscriber = "=0.3" migration = { path = "migration" } dotenvy = "0.15.7" -sea-query = { version = "0.32.0", default-features = false} diff --git a/vingo/src/routes/scans.rs b/vingo/src/routes/scans.rs index 94a98dc..d9e9ba9 100644 --- a/vingo/src/routes/scans.rs +++ b/vingo/src/routes/scans.rs @@ -125,14 +125,11 @@ pub async fn recent(state: State) -> ResponseResult() .all(&state.db) .await