orx-concurrent-queue 2.0.0

A high performance and convenient thread safe queue that can concurrently grow and shrink with push, extend, pop and pull capabilities.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "orx-concurrent-queue"
version = "2.0.0"
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high performance and convenient thread safe queue that can concurrently grow and shrink with push, extend, pop and pull capabilities."
readme = "README.md"
keywords = [
    "concurrency",
    "queue",
    "data-structures",
    "atomic",
    "lock-free",
]
categories = [
    "data-structures",
    "concurrency",
    "rust-patterns",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orxfun/orx-concurrent-queue/"

[lib]
name = "orx_concurrent_queue"
path = "src/lib.rs"

[[example]]
name = "queue_basic_usage"
path = "examples/queue_basic_usage.rs"

[dependencies.orx-fixed-vec]
version = "4.0.0"
default-features = false

[dependencies.orx-pinned-vec]
version = "4.0.0"
default-features = false

[dependencies.orx-split-vec]
version = "4.0.0"
default-features = false

[dev-dependencies.criterion]
version = "0.8.2"
default-features = false

[dev-dependencies.orx-concurrent-bag]
version = "4.0.0"
default-features = false

[dev-dependencies.rand]
version = "0.10.2"

[dev-dependencies.rand_chacha]
version = "0.10.0"

[dev-dependencies.test-case]
version = "3.3.1"