From b51a6c78075b8bfd3845476ab9ece5b1e760e6cc Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Mon, 18 May 2026 13:31:21 -0700 Subject: [PATCH 1/2] Add missing Cargo.lock changes This should have been in b1042a8dbc45375da9539a7dc77e0d17694a4b3d --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index c37c892..8f41b95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1185,7 +1185,7 @@ dependencies = [ [[package]] name = "oks" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "clap", From 8b2191dfcbb659c2630da943940a1f5f6c62ad99 Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Mon, 18 May 2026 13:24:48 -0700 Subject: [PATCH 2/2] ci: fail if source is dirty after we test this is intended to catch situations where Cargo.toml changes are committed w/o the corresponding changes to Cargo.lock. --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 55eb1a2..0d26d4c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,3 +16,4 @@ jobs: sudo apt-get update sudo apt-get install -y pkg-config libudev-dev - run: cargo test --all-features + - uses: NathanielHill/fail-if-changes@master