From b13a420e1fb8c2cd293a50fa7b360caccbb63833 Mon Sep 17 00:00:00 2001 From: orxfun Date: Fri, 26 Sep 2025 21:48:48 +0200 Subject: [PATCH 1/2] upgrade pinned vec 3.18 --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6ac4568..f475359 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orx-concurrent-vec" -version = "3.8.0" +version = "3.9.0" edition = "2024" authors = ["orxfun "] description = "A thread-safe, efficient and lock-free vector allowing concurrent grow, read and update operations." @@ -11,10 +11,10 @@ categories = ["data-structures", "concurrency", "rust-patterns", "no-std"] [dependencies] orx-pseudo-default = { version = "2.1.0", default-features = false } -orx-pinned-vec = { version = "3.17.0", default-features = false } -orx-fixed-vec = { version = "3.19.0", default-features = false } -orx-split-vec = { version = "3.19.0", default-features = false } -orx-pinned-concurrent-col = { version = "2.15.0", default-features = false } +orx-pinned-vec = { version = "3.18.0", default-features = false } +orx-fixed-vec = { version = "3.20.0", default-features = false } +orx-split-vec = { version = "3.20.0", default-features = false } +orx-pinned-concurrent-col = { version = "2.16.0", default-features = false } orx-concurrent-option = "1.5.0" serde = { version = "1.0.219", optional = true, default-features = false } From 77603841c9bd099c8b2f3966fdc1ff6503e7bcb5 Mon Sep 17 00:00:00 2001 From: Ugur Arikan Date: Fri, 26 Sep 2025 21:50:57 +0200 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9804dee..5793ad2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,13 +19,15 @@ jobs: features: ["", "--features serde"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install toolchain - uses: dtolnay/rust-toolchain@master + uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ matrix.toolchain }} + - name: Install clippy + run: rustup component add clippy - name: Install 32bit target run: rustup target add i686-unknown-linux-musl - name: Install wasm target