Make ethereum-schnorr-contract no-std and no-alloc eligible

This commit is contained in:
Luke Parker
2025-11-13 05:44:52 -05:00
parent 9e13e5ebff
commit 3cdc1536c5
6 changed files with 21 additions and 6 deletions

View File

@@ -2,6 +2,7 @@
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]
#![allow(non_snake_case)]
#![cfg_attr(not(feature = "std"), no_std)]
mod public_key;
pub use public_key::PublicKey;