Move protocol to workspace root.

This commit is contained in:
Michael Mikovsky
2026-05-31 08:58:08 -06:00
parent ca1daedebe
commit 0a44bc93de
29 changed files with 844 additions and 71 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
//! Temporary hash function
const fn hash_recursive<'a>(state: &mut [u8; 4], input: &'a [u8]) {
const fn hash_recursive(state: &mut [u8; 4], input: &[u8]) {
match input.len() {
3 => {
state[0] ^= input[0];