From f0789c977f619e70dcb5f9548ee6d72dabb93e13 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Wed, 20 Sep 2023 20:18:54 -0600 Subject: [PATCH] Added no_std tag --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 0b341c8..229c562 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,5 @@ +#![no_std] + const SHA1_CONST: &[u32] = &[0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]; pub struct SHA1Hash {