Skip to content

Commit ffbd8e8

Browse files
committed
ignore clippy for vendor code
1 parent 5b5d5ea commit ffbd8e8

File tree

8 files changed

+11
-0
lines changed

8 files changed

+11
-0
lines changed

parachain/vendor/evm-tracing/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
1616

1717
//! This crate contains the client-side part that interacts with our "v2" tracing design.
18+
#![allow(clippy::all)]
1819

1920
pub mod formatters;
2021
pub mod listeners;

parachain/vendor/primitives/debug/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
1616

1717
#![cfg_attr(not(feature = "std"), no_std)]
18+
#![allow(clippy::all)]
1819

1920
use ethereum::{TransactionV0 as LegacyTransaction, TransactionV2 as Transaction};
2021
use ethereum_types::{H160, H256, U256};

parachain/vendor/primitives/evm-tracing-events/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
//! The EVM event types may contain references and not implement Encode/Decode.
2929
//! This module provide mirror types and conversion into them from the original events.
3030
31+
#![allow(clippy::all)]
32+
3133
#![cfg_attr(not(feature = "std"), no_std)]
3234
extern crate alloc;
3335

parachain/vendor/rpc-core/types/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
1616

17+
#![allow(clippy::all)]
18+
1719
use ethereum_types::H256;
1820
use serde::{de::Error, Deserialize, Deserializer};
1921

parachain/vendor/rpc/debug/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
// You should have received a copy of the GNU General Public License
1515
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
16+
#![allow(clippy::all)]
17+
1618
use futures::StreamExt;
1719
use jsonrpsee::core::{async_trait, RpcResult};
1820
pub use moonbeam_rpc_core_debug::{DebugServer, TraceCallParams, TraceParams};

parachain/vendor/rpc/trace/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
//! - A main `CacheTask` managing the cache and the communication between tasks.
2424
//! - For each traced block an async task responsible to wait for a permit, spawn a blocking
2525
//! task and waiting for the result, then send it to the main `CacheTask`.
26+
#![allow(clippy::all)]
2627

2728
use futures::{select, stream::FuturesUnordered, FutureExt, StreamExt};
2829
use std::{collections::BTreeMap, future::Future, marker::PhantomData, sync::Arc, time::Duration};

parachain/vendor/rpc/txpool/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
// You should have received a copy of the GNU General Public License
1515
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
16+
#![allow(clippy::all)]
1617

1718
use ethereum_types::{H160, H256, U256};
1819
use fc_rpc::{internal_err, public_key};

parachain/vendor/runtime/evm-tracer/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
//! Proxies EVM messages to the host functions.
2424
2525
#![cfg_attr(not(feature = "std"), no_std)]
26+
#![allow(clippy::all)]
2627

2728
pub mod tracer {
2829
use evm_tracing_events::{EvmEvent, GasometerEvent, RuntimeEvent, StepEventFilter};

0 commit comments

Comments
 (0)