allow dead code clippy
This commit is contained in:
parent
4f07cf86c0
commit
823628004e
3 changed files with 5 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -2708,7 +2708,7 @@ checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
|||
|
||||
[[package]]
|
||||
name = "saleor-app-sdk"
|
||||
version = "0.1.2"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#![allow(
|
||||
non_upper_case_globals,
|
||||
clippy::large_enum_variant,
|
||||
clippy::upper_case_acronyms
|
||||
clippy::upper_case_acronyms,
|
||||
dead_code
|
||||
)]
|
||||
#![feature(let_chains)]
|
||||
#![deny(clippy::unwrap_used, clippy::expect_used)]
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#![allow(
|
||||
non_upper_case_globals,
|
||||
clippy::large_enum_variant,
|
||||
clippy::upper_case_acronyms
|
||||
clippy::upper_case_acronyms,
|
||||
dead_code
|
||||
)]
|
||||
#![feature(let_chains)]
|
||||
#![deny(clippy::unwrap_used, clippy::expect_used)]
|
||||
|
|
Loading…
Reference in a new issue