[package]
edition = "2024"
name = "orx-concurrent-iter"
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 and ergonomic concurrent iterator trait and efficient lock-free implementations."
readme = "README.md"
keywords = [
"concurrency",
"iterator",
"iteration",
"atomic",
"parallelism",
]
categories = [
"data-structures",
"concurrency",
"rust-patterns",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orxfun/orx-concurrent-iter/"
[lib]
name = "orx_concurrent_iter"
path = "src/lib.rs"
[[example]]
name = "iter_of_iter_perf"
path = "examples/iter_of_iter_perf.rs"
[[test]]
name = "array_as_slice"
path = "tests/array_as_slice.rs"
[[test]]
name = "cloned_slice"
path = "tests/cloned_slice.rs"
[[test]]
name = "con_iter"
path = "tests/con_iter.rs"
[[test]]
name = "concurrent_drainable_vec"
path = "tests/concurrent_drainable_vec.rs"
[[test]]
name = "consume_iter"
path = "tests/consume_iter.rs"
[[test]]
name = "consume_vec"
path = "tests/consume_vec.rs"
[[test]]
name = "consuming_skip_to_end"
path = "tests/consuming_skip_to_end.rs"
[[test]]
name = "early_exit"
path = "tests/early_exit.rs"
[[test]]
name = "exact_con_iter"
path = "tests/exact_con_iter.rs"
[[test]]
name = "from_array"
path = "tests/from_array.rs"
[[test]]
name = "from_cloned_iter"
path = "tests/from_cloned_iter.rs"
[[test]]
name = "from_cloned_slice"
path = "tests/from_cloned_slice.rs"
[[test]]
name = "from_iter"
path = "tests/from_iter.rs"
[[test]]
name = "from_range"
path = "tests/from_range.rs"
[[test]]
name = "from_slice"
path = "tests/from_slice.rs"
[[test]]
name = "from_vec"
path = "tests/from_vec.rs"
[[test]]
name = "iter"
path = "tests/iter.rs"
[[test]]
name = "range"
path = "tests/range.rs"
[[test]]
name = "slice"
path = "tests/slice.rs"
[[test]]
name = "vec"
path = "tests/vec.rs"
[[bench]]
name = "con_iter_copied"
path = "benches/con_iter_copied.rs"
harness = false
[[bench]]
name = "con_iter_of_iter"
path = "benches/con_iter_of_iter.rs"
harness = false
[[bench]]
name = "con_iter_of_iter_small"
path = "benches/con_iter_of_iter_small.rs"
harness = false
[[bench]]
name = "con_iter_of_range"
path = "benches/con_iter_of_range.rs"
harness = false
[[bench]]
name = "con_iter_of_slice"
path = "benches/con_iter_of_slice.rs"
harness = false
[[bench]]
name = "con_iter_of_slice_mut"
path = "benches/con_iter_of_slice_mut.rs"
harness = false
[[bench]]
name = "con_iter_of_vec"
path = "benches/con_iter_of_vec.rs"
harness = false
[[bench]]
name = "con_iter_of_vec_deque_ref"
path = "benches/con_iter_of_vec_deque_ref.rs"
harness = false
[[bench]]
name = "con_iter_of_vec_drain"
path = "benches/con_iter_of_vec_drain.rs"
harness = false
[dependencies.orx-iterable]
version = "1.3.0"
default-features = false
[dependencies.orx-pseudo-default]
version = "2.1.0"
default-features = false
[dev-dependencies.criterion]
version = "0.8.0"
[dev-dependencies.orx-concurrent-bag]
version = "3.2.0"
[dev-dependencies.orx-criterion]
version = "1.0.0"
[dev-dependencies.orx-fixed-vec]
version = "3.21.0"
[dev-dependencies.orx-pinned-concurrent-col]
version = "2.16.0"
[dev-dependencies.orx-pinned-vec]
version = "3.20.0"
[dev-dependencies.orx-split-vec]
version = "3.21.0"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rand_chacha]
version = "0.9"
[dev-dependencies.rayon]
version = "1.11.0"
[dev-dependencies.test-case]
version = "3.3.1"