From 66efe6e873ab4e90acd3797971931d9f055e0c49 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 13 Aug 2024 01:44:53 +0300 Subject: [PATCH] chore(deps): bump proptest-derive (#708) --- Cargo.toml | 2 +- crates/primitives/src/lib.rs | 2 -- crates/sol-types/src/lib.rs | 2 -- crates/sol-types/tests/macros/main.rs | 2 -- 4 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bf49d45b9..30520785a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -94,7 +94,7 @@ once_cell = "1" postgres-types = "0.2.6" pretty_assertions = "1.4" proptest = "1" -proptest-derive = "0.4" +proptest-derive = "0.5" rand = { version = "0.8", default-features = false } ruint = { version = "1.12.3", default-features = false, features = ["alloc"] } ruint-macro = { version = "1", default-features = false } diff --git a/crates/primitives/src/lib.rs b/crates/primitives/src/lib.rs index 6e8c65f30..5bb186c42 100644 --- a/crates/primitives/src/lib.rs +++ b/crates/primitives/src/lib.rs @@ -6,8 +6,6 @@ #![cfg_attr(not(test), warn(unused_crate_dependencies))] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] -// TODO: remove when https://github.com/proptest-rs/proptest/pull/427 is merged -#![allow(unknown_lints, non_local_definitions)] #[macro_use] extern crate alloc; diff --git a/crates/sol-types/src/lib.rs b/crates/sol-types/src/lib.rs index 2f5dcf6df..901941595 100644 --- a/crates/sol-types/src/lib.rs +++ b/crates/sol-types/src/lib.rs @@ -6,8 +6,6 @@ #![cfg_attr(not(test), warn(unused_crate_dependencies))] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] -// TODO: remove when https://github.com/proptest-rs/proptest/pull/427 is merged -#![allow(unknown_lints, non_local_definitions)] #[allow(unused_extern_crates)] extern crate self as alloy_sol_types; diff --git a/crates/sol-types/tests/macros/main.rs b/crates/sol-types/tests/macros/main.rs index 3475ef5d9..e752c0c1c 100644 --- a/crates/sol-types/tests/macros/main.rs +++ b/crates/sol-types/tests/macros/main.rs @@ -1,5 +1,3 @@ -// TODO: remove when https://github.com/proptest-rs/proptest/pull/427 is merged -#![allow(unknown_lints, non_local_definitions)] #![allow(clippy::missing_const_for_fn)] mod sol;