diff --git a/src/lib.rs b/src/lib.rs index 06e7e04..2bce15d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,8 @@ //! //! Now this crate serves primarily as a wrapper over two SHA256 crates: `sha2` and `ring` – which //! it switches between at runtime based on the availability of SHA intrinsics. - +#![allow(stable_features)] +#![feature(lazy_cell)] mod sha2_impl; pub use self::DynamicContext as Context;