[package] name = "orx-concurrent-bag" version = "2.7.0" edition = "2021" authors = ["orxfun "] description = "An efficient, convenient and lightweight grow-only concurrent data structure allowing high performance concurrent collection." license = "MIT" repository = "https://github.com/orxfun/orx-concurrent-bag/" keywords = ["concurrency", "bag", "data-structures", "atomic", "lock-free"] categories = ["data-structures", "concurrency", "rust-patterns", "no-std"] [dependencies] orx-pseudo-default = { version = "1.4", default-features = false } orx-pinned-vec = "3.8" orx-fixed-vec = "3.8" orx-split-vec = "3.8" orx-pinned-concurrent-col = "2.7" [dev-dependencies] criterion = "0.5.1" rand = "0.8.5" rayon = "1.9.0" test-case = "3.3.1" append-only-vec = "0.1.5" boxcar = "0.2.5" [[bench]] name = "collect_with_extend" harness = false