58 |
// TODO: waiting on https://github.com/rust-lang/rust-clippy/pull/9545 to land
|
59 |
#[allow(clippy::std_instead_of_core)]
|
60 |
#[cfg(feature = "std")]
|
13 |
#[allow(clippy::std_instead_of_core)] // core::error::Error requires 1.65
|
14 |
#[cfg(feature = "std")]
|
29 |
/// Put into a mod to allow lints
|
30 |
#[allow(clippy::std_instead_of_core)]
|
31 |
mod error {
|
27 |
/// Put into a mod to allow lints
|
28 |
#[allow(clippy::std_instead_of_core)]
|
29 |
mod error {
|
62 |
#[cfg(debug_assertions)]
|
63 |
#[allow(clippy::dbg_macro, clippy::std_instead_of_core)]
|
64 |
{
|
3 |
clippy::std_instead_of_alloc,
|
4 |
clippy::std_instead_of_core,
|
5 |
clippy::undocumented_unsafe_blocks,
|
1 |
// https://github.com/rust-lang/rust-clippy/issues/10198
|
2 |
#![allow(clippy::std_instead_of_core)]
|
1 |
// https://github.com/rust-lang/rust-clippy/issues/10198
|
2 |
#![allow(clippy::std_instead_of_core)]
|
1 |
// https://github.com/rust-lang/rust-clippy/issues/10198
|
2 |
#![allow(clippy::std_instead_of_core)]
|
7 |
#![allow(clippy::std_instead_of_alloc, clippy::std_instead_of_core)]
|
8 |
#[allow(unused_imports)]
|
1 |
// https://github.com/rust-lang/rust-clippy/issues/10198
|
2 |
#![allow(clippy::std_instead_of_core)]
|
1 |
#![allow(clippy::std_instead_of_core)]
|
7 |
#![allow(clippy::std_instead_of_alloc, clippy::std_instead_of_core)]
|
8 |
#[allow(unused_imports)]
|
3 |
clippy::std_instead_of_alloc,
|
4 |
clippy::std_instead_of_core,
|
5 |
clippy::undocumented_unsafe_blocks,
|
1 |
#![allow(clippy::std_instead_of_core)]
|
5 |
clippy::integer_arithmetic,
|
6 |
clippy::std_instead_of_core,
|
7 |
clippy::arithmetic_side_effects
|
1 |
#![allow(
|
2 |
clippy::std_instead_of_core,
|
3 |
clippy::as_conversions,
|
131 |
clippy::unused_peekable, // temporary due to bug: remove when Rust 1.66 is released
|
132 |
clippy::std_instead_of_core, // temporary due to bug: remove when Rust 1.66 is released
|
133 |
)]
|
19 |
clippy::cognitive_complexity,
|
20 |
clippy::std_instead_of_core
|
21 |
)]
|
43 |
// FIXME:
|
44 |
#![allow(clippy::std_instead_of_core)] // issue with thiserror
|
45 |
#![allow(clippy::indexing_slicing)] // issue with async_stream
|