orx-concurrent-vec 4.0.0

A thread-safe, efficient and lock-free vector allowing concurrent grow, read and update operations.
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-vec"
version = "4.0.0"
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A thread-safe, efficient and lock-free vector allowing concurrent grow, read and update operations."
readme = "README.md"
keywords = [
    "concurrency",
    "vec",
    "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-vec/"

[features]
default = []
serde = ["dep:serde"]

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

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

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

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

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

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

[[test]]
name = "concurrent_read_write"
path = "tests/concurrent_read_write.rs"

[[test]]
name = "iter_shorthands"
path = "tests/iter_shorthands.rs"

[[test]]
name = "len_exact"
path = "tests/len_exact.rs"

[[test]]
name = "serde"
path = "tests/serde.rs"

[[bench]]
name = "collect_with_extend"
path = "benches/collect_with_extend.rs"
harness = false

[[bench]]
name = "collect_with_push"
path = "benches/collect_with_push.rs"

[dependencies.orx-concurrent-option]
version = "1.6"
default-features = false

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

[dependencies.orx-pinned-concurrent-col]
version = "3.0"
default-features = false

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

[dependencies.orx-pseudo-default]
version = "2.1"
default-features = false

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

[dependencies.serde]
version = "1.0"
optional = true
default-features = false

[dev-dependencies.append-only-vec]
version = "0.1"

[dev-dependencies.boxcar]
version = "0.2"

[dev-dependencies.clap]
version = "4.6"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.orx-iterable]
version = "1.3"
default-features = false

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

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

[dev-dependencies.rayon]
version = "1.12"

[dev-dependencies.serde_json]
version = "1.0"
features = ["std"]
default-features = false

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