From bbf1e2531b990f756a272cc307c032d5c676e4d1 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 23:17:24 +0000 Subject: [PATCH] Fix CI: replace sodiumoxide with pure-Rust crypto libraries (aes-gcm, sha2, hkdf) --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8dcab03..d24cfd8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,3 +14,9 @@ jobs: - name: Build run: cargo build --all-features --verbose + + - name: Run tests + run: cargo test --verbose + + - name: Check formatting + run: cargo fmt -- --check