Make HexDisplay useable in no_std (#6883)

Actually I use this quite often when debugging some WASM bugs and there
is no harm in enabling it by default. Before I just always copied it
everytime I needed it.
This commit is contained in:
Bastian Köcher
2020-08-12 21:35:10 +02:00
committed by GitHub
parent 2d5ec72331
commit b6d444fdea
2 changed files with 2 additions and 2 deletions
-1
View File
@@ -52,7 +52,6 @@ pub use impl_serde::serialize as bytes;
pub mod hashing;
#[cfg(feature = "full_crypto")]
pub use hashing::{blake2_128, blake2_256, twox_64, twox_128, twox_256, keccak_256};
#[cfg(feature = "std")]
pub mod hexdisplay;
pub mod crypto;