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: | 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]