diff --git a/src/core.rs b/src/core.rs index 2891d44a..8c6c7fcd 100644 --- a/src/core.rs +++ b/src/core.rs @@ -216,7 +216,6 @@ impl Debug for PatriciaKey { } /// A utility macro to create a [`PatriciaKey`] from a hex string / unsigned integer representation. -#[cfg(any(feature = "testing", test))] #[macro_export] macro_rules! patricia_key { ($s:expr) => { @@ -225,7 +224,6 @@ macro_rules! patricia_key { } /// A utility macro to create a [`ClassHash`] from a hex string / unsigned integer representation. -#[cfg(any(feature = "testing", test))] #[macro_export] macro_rules! class_hash { ($s:expr) => { @@ -235,7 +233,6 @@ macro_rules! class_hash { /// A utility macro to create a [`ContractAddress`] from a hex string / unsigned integer /// representation. -#[cfg(any(feature = "testing", test))] #[macro_export] macro_rules! contract_address { ($s:expr) => { diff --git a/src/hash.rs b/src/hash.rs index 1f6533c6..fcd2b0e2 100644 --- a/src/hash.rs +++ b/src/hash.rs @@ -249,7 +249,6 @@ impl Display for StarkFelt { } /// A utility macro to create a [`StarkFelt`] from a hex string representation. -#[cfg(any(feature = "testing", test))] #[macro_export] macro_rules! stark_felt { ($s:expr) => {