From a5cbb38b3a0a0431306adb8c53561661b13ff01c Mon Sep 17 00:00:00 2001 From: ceciliaz030 Date: Fri, 26 Jan 2024 16:01:40 +0800 Subject: [PATCH] #![feature(build_hasher_simple_hash_one)] --- guests/eth-block/src/main.rs | 2 +- guests/op-block/src/main.rs | 2 +- testing/ef-tests/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/guests/eth-block/src/main.rs b/guests/eth-block/src/main.rs index 8bfe9123f..eccfe9d15 100644 --- a/guests/eth-block/src/main.rs +++ b/guests/eth-block/src/main.rs @@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -#![feature(build_hasher_simple_hash_one)] + #![no_main] use risc0_zkvm::guest::env; diff --git a/guests/op-block/src/main.rs b/guests/op-block/src/main.rs index a22f321e7..623bd611a 100644 --- a/guests/op-block/src/main.rs +++ b/guests/op-block/src/main.rs @@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -#![feature(build_hasher_simple_hash_one)] + #![no_main] use risc0_zkvm::guest::env; diff --git a/testing/ef-tests/src/lib.rs b/testing/ef-tests/src/lib.rs index c8838a768..d27771a06 100644 --- a/testing/ef-tests/src/lib.rs +++ b/testing/ef-tests/src/lib.rs @@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -#![feature(build_hasher_simple_hash_one)] + #![cfg(feature = "ef-tests")] use anyhow::bail;