diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -1,13 +1,7 @@ #![cfg_attr(not(feature = "std"), no_std)] -#[cfg(feature = "std")] pub mod crypto; -#[cfg(not(feature = "std"))] -pub mod no_std_crypto; -#[cfg(not(feature = "std"))] -pub use no_std_crypto as crypto; - pub mod string_helper; #[derive(Debug, PartialEq)] @@ -24,7 +18,7 @@ pub mod std_identity; // This version of identity is no-std #[cfg(not(feature = "std"))] -pub(crate) mod no_std_identity; +pub mod no_std_identity; pub mod ack; pub mod advert; |
