Skip to content

Commit

Permalink
Merge pull request #4154 from Tanguille/chore/allow-unused_qualificat…
Browse files Browse the repository at this point in the history
…ions-table

chore: allow `unused_qualifcatons` for table
  • Loading branch information
weiznich committed Aug 23, 2024
1 parent 00a9016 commit ca2a484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diesel_derives/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ pub(crate) fn expand(input: TableDecl) -> TokenStream {

quote::quote! {
#(#meta)*
#[allow(unused_imports, dead_code, unreachable_pub)]
#[allow(unused_imports, dead_code, unreachable_pub, unused_qualifications)]
pub mod #table_name {
use ::diesel;
pub use self::columns::*;
Expand Down

0 comments on commit ca2a484

Please sign in to comment.