aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5afbd16..c7d327c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;