From e5bc0bba4ba11451f71182ac411b9d895f62e2f3 Mon Sep 17 00:00:00 2001 From: dullbananas Date: Wed, 22 May 2024 14:23:43 -0700 Subject: [PATCH] clippy --- crates/db_schema/src/schema_setup.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/db_schema/src/schema_setup.rs b/crates/db_schema/src/schema_setup.rs index f6f165258..565c653af 100644 --- a/crates/db_schema/src/schema_setup.rs +++ b/crates/db_schema/src/schema_setup.rs @@ -6,16 +6,13 @@ use anyhow::{anyhow, Context}; use diesel::{ connection::SimpleConnection, dsl::exists, - expression::IntoSql, - migration::{Migration, MigrationSource, MigrationVersion}, + migration::{Migration, MigrationVersion}, pg::Pg, select, - sql_types, update, BoolExpressionMethods, Connection, ExpressionMethods, - NullableExpressionMethods, PgConnection, QueryDsl, RunQueryDsl,