Merge pull request #1162 from topos-protocol/cleanup_attributes

Remove unused attributes
This commit is contained in:
Jacqueline Nabaglo 2023-08-04 13:11:25 -07:00 committed by GitHub
commit b2626fdc71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 0 additions and 28 deletions

View File

@ -3,7 +3,6 @@
#![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)]
#![allow(clippy::field_reassign_with_default)]
#![allow(clippy::upper_case_acronyms)]
#![feature(let_chains)]
#![feature(generic_const_exprs)]

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use std::collections::HashMap;
use std::time::Duration;

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use std::collections::HashMap;
use std::time::Duration;

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use std::collections::HashMap;
use std::marker::PhantomData;
use std::time::Duration;

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use std::collections::HashMap;
use std::time::Duration;

View File

@ -1,10 +1,8 @@
#![allow(incomplete_features)]
#![allow(clippy::new_without_default)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)]
#![allow(clippy::len_without_is_empty)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::return_self_not_must_use)]
#![feature(stdsimd)]
#![feature(specialization)]
#![cfg_attr(not(test), no_std)]

View File

@ -3,8 +3,6 @@
// put it in `src/bin/`, but then we wouldn't have access to
// `[dev-dependencies]`.
#![allow(clippy::upper_case_acronyms)]
extern crate alloc;
use alloc::sync::Arc;
use core::num::ParseIntError;

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use anyhow::Result;
use plonky2::field::types::Field;
use plonky2::iop::witness::{PartialWitness, WitnessWrite};

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use anyhow::Result;
use plonky2::field::types::Field;
use plonky2::iop::witness::{PartialWitness, WitnessWrite};

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use std::fs;
use anyhow::Result;

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use anyhow::Result;
use plonky2::field::types::Field;
use plonky2::iop::witness::{PartialWitness, WitnessWrite};

View File

@ -1,5 +1,3 @@
#![allow(clippy::upper_case_acronyms)]
use core::marker::PhantomData;
use anyhow::Result;

View File

@ -1,5 +1,4 @@
// Gates have `new` methods that return `GateRef`s.
#![allow(clippy::new_ret_no_self)]
pub mod arithmetic_base;
pub mod arithmetic_extension;

View File

@ -1,6 +1,5 @@
#![allow(clippy::too_many_arguments)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::upper_case_acronyms)]
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

View File

@ -1,7 +1,6 @@
#![allow(incomplete_features)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)]
#![allow(clippy::upper_case_acronyms)]
#![feature(generic_const_exprs)]
#![cfg_attr(not(feature = "std"), no_std)]

View File

@ -1,9 +1,7 @@
#![allow(clippy::new_without_default)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)]
#![allow(clippy::len_without_is_empty)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::return_self_not_must_use)]
#![no_std]
extern crate alloc;