diff --git a/chacha20_poly1305/src/lib.rs b/chacha20_poly1305/src/lib.rs index 16c82a9ca..0deea843d 100644 --- a/chacha20_poly1305/src/lib.rs +++ b/chacha20_poly1305/src/lib.rs @@ -4,6 +4,7 @@ //! //! Combine the ChaCha20 stream cipher with the Poly1305 message authentication code //! to form an authenticated encryption with additional data (AEAD) algorithm. + #![no_std] // Experimental features we need. #![cfg_attr(docsrs, feature(doc_auto_cfg))]