Skip to content

Commit

Permalink
Merge pull request #24 from orxfun/32-bit-support
Browse files Browse the repository at this point in the history
32-bit support
  • Loading branch information
orxfun authored Aug 22, 2024
2 parents 82d79dc + 15e5ca3 commit 430efe4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orx-concurrent-vec"
version = "2.4.2"
version = "2.5.0"
edition = "2021"
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
description = "An efficient, convenient and lightweight grow-only read & write concurrent data structure allowing high performance concurrent collection."
Expand All @@ -10,15 +10,15 @@ keywords = ["concurrency", "vec", "data-structures", "atomic", "lock-free"]
categories = ["data-structures", "concurrency", "rust-patterns"]

[dependencies]
orx-pseudo-default = "1.2"
orx-pinned-vec = "3.3"
orx-fixed-vec = "3.3"
orx-split-vec = "3.3"
orx-pinned-concurrent-col = "2.3"
orx-pseudo-default = "1.4"
orx-pinned-vec = "3.4"
orx-fixed-vec = "3.4"
orx-split-vec = "3.4"
orx-pinned-concurrent-col = "2.4"
orx-concurrent-option = "1.1"

[dev-dependencies]
orx-concurrent-bag = "2.3"
orx-concurrent-bag = "2.4"
criterion = "0.5.1"
rand = "0.8.5"
rayon = "1.9.0"
Expand Down

0 comments on commit 430efe4

Please sign in to comment.