From 13247279ed9090f2d3c5c6525b9611529217d605 Mon Sep 17 00:00:00 2001 From: dullbananas Date: Wed, 2 Aug 2023 19:27:37 -0700 Subject: [PATCH] Remove macro_use for paste --- crates/db_schema/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/db_schema/src/lib.rs b/crates/db_schema/src/lib.rs index 814da350b..639f929f6 100644 --- a/crates/db_schema/src/lib.rs +++ b/crates/db_schema/src/lib.rs @@ -24,10 +24,6 @@ extern crate async_trait; #[macro_use] extern crate macro_rules_attribute; -#[cfg(feature = "full")] -#[macro_use] -extern crate paste; - #[cfg(feature = "full")] /// `macro_rules_attribute::derive(WithoutId!)` generates a variant of the struct with /// `WithoutId` added to the name and no `id` field.