From 20d58e14a2e00fa9254b9954d26386cee291a784 Mon Sep 17 00:00:00 2001 From: Jonathan Strong Date: Fri, 23 Jun 2023 04:35:29 -0400 Subject: [PATCH] remove feature(const_eval_limit) which no longer exists, nor is needed for tests to work --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index cb79607..be12277 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,9 +8,6 @@ //! assert_eq!(CKSUM, 0x414fa339_u32); //! ``` -#![cfg_attr(test, feature(const_eval_limit))] -#![cfg_attr(test, const_eval_limit = "0")] - /// used to generate up a [u32; 256] lookup table in `crc32`. this computes /// the table on demand for a given "index" `i` const fn table_fn(i: u32) -> u32 {