diff --git a/iKeySort/.github/workflows/ci.yml b/.github/workflows/ci.yml similarity index 77% rename from iKeySort/.github/workflows/ci.yml rename to .github/workflows/ci.yml index 6c9ea08..b5002db 100644 --- a/iKeySort/.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 --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} - name: Test - run: cargo test --locked ${{ matrix.feature_mode.features }} + run: cargo test --manifest-path iKeySort/Cargo.toml ${{ matrix.feature_mode.features }} 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."