From 9f30b5fdead30f53f72aafedbd88626a9e130fef Mon Sep 17 00:00:00 2001 From: Davide Cavalca Date: Tue, 5 May 2026 08:43:13 -0700 Subject: [PATCH 1/2] rust: bump uuid to 1.23 Signed-off-by: Davide Cavalca --- rust/Cargo.lock | 4 ++-- rust/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 077e0d57f..7d1876db9 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -33,9 +33,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.18.0" +version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be" +checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76" [[package]] name = "versions" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index ced3ee0b2..edfaed3d7 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -12,7 +12,7 @@ crate-type = [ "staticlib" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] fatfs = { path = "vendor/rust-fatfs", default-features = false, features = ["lfn", "alloc"], optional = true } -uuid = { version = "1.7.0", default-features = false, optional = true } +uuid = { version = "1.23", default-features = false, optional = true } versions = { path = "./versions" } [features] From c12c726a000919ecc7ddffc999de84343f3720f7 Mon Sep 17 00:00:00 2001 From: Davide Cavalca Date: Tue, 5 May 2026 14:08:22 -0700 Subject: [PATCH 2/2] ci: checkout submodules too Signed-off-by: Davide Cavalca --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3d7fc73eb..b46614c08 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,10 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6 + - name: Checkout + uses: actions/checkout@v6 + with: + submodules: true - name: install nightly rust run: |