From 83d071e54be0bc4ebd760a490a3ca887c0bf90a8 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 3 Mar 2025 13:33:19 +1100 Subject: [PATCH] chacha20: Add whitespace Mirror the other crates. Whitespace only. --- chacha20_poly1305/src/lib.rs | 1 + 1 file changed, 1 insertion(+) 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))]