From 57f6225e1ac0a29e1507a3e1ebf03f064a265cde Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Fri, 24 Apr 2026 07:00:09 +0300 Subject: [PATCH 1/5] up --- iKeySort/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iKeySort/Cargo.toml b/iKeySort/Cargo.toml index 671cf9f..2aa5a17 100644 --- a/iKeySort/Cargo.toml +++ b/iKeySort/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i_key_sort" -version = "0.10.2" +version = "0.10.3" authors = ["Nail Sharipov "] edition = "2024" description = "Counting sort algorithm." From dc166faa91dcc9fd8cc524631ce1929e54b0f580 Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Fri, 24 Apr 2026 07:10:35 +0300 Subject: [PATCH 2/5] chore: trigger ci From 09cf7ee8342ac2788ae390bb2e136d3dcd9082c2 Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Fri, 24 Apr 2026 07:16:16 +0300 Subject: [PATCH 3/5] ci: move workflow to repository root --- {iKeySort/.github => .github}/workflows/ci.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {iKeySort/.github => .github}/workflows/ci.yml (100%) diff --git a/iKeySort/.github/workflows/ci.yml b/.github/workflows/ci.yml similarity index 100% rename from iKeySort/.github/workflows/ci.yml rename to .github/workflows/ci.yml From c48de8c4d6d25696d08ca2b81ca168fd224db008 Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Fri, 24 Apr 2026 07:19:07 +0300 Subject: [PATCH 4/5] ci: use crate manifest path in workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c9ea08..426acff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Build - run: cargo build --locked ${{ matrix.feature_mode.features }} + run: cargo build --locked --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} - name: Test - run: cargo test --locked ${{ matrix.feature_mode.features }} + run: cargo test --locked --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} From 12ca44dc26bb1bb523aab2e44b142fa8dc6457ce Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Fri, 24 Apr 2026 07:22:04 +0300 Subject: [PATCH 5/5] ci: remove --locked for library workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 426acff..b5002db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Build - run: cargo build --locked --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} + run: cargo build --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} - name: Test - run: cargo test --locked --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} + run: cargo test --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }}