Skip to content

Commit

Permalink
disable clippy::uninlined_format_args to avoid bumping msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
preston-evans98 committed Feb 7, 2023
1 parent ebca422 commit d06a364
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions borsh-derive-internal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![recursion_limit = "128"]
#![allow(clippy::uninlined_format_args)]

mod attribute_helpers;
mod enum_de;
Expand Down
1 change: 1 addition & 0 deletions borsh-derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::uninlined_format_args)]
extern crate proc_macro;
use proc_macro::TokenStream;
use proc_macro2::Span;
Expand Down
1 change: 1 addition & 0 deletions borsh-schema-derive-internal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![recursion_limit = "128"]
#![allow(clippy::uninlined_format_args)]

mod helpers;

Expand Down
1 change: 1 addition & 0 deletions borsh/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::uninlined_format_args)]

#[cfg(not(feature = "std"))]
extern crate alloc;
Expand Down

0 comments on commit d06a364

Please sign in to comment.