arc_vec 0.1.2

Expensive but experimental project created for parallel execution.
Documentation
[[bench]]
harness = false
name = "bench_main"
path = "benches/bench_main.rs"

[dependencies.rayon]
version = "1.10.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.6.0"

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

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

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

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

[lib]
bench = false
name = "arc_vec"
path = "src/lib.rs"

[package]
authors = ["GYoung <ytok1108@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "os::unix-apis"]
description = """
Expensive but experimental project created for parallel execution.
"""
documentation = "https://docs.rs/arc_vec/"
edition = "2024"
keywords = ["arc", "futures"]
license = "MIT"
name = "arc_vec"
readme = "README.md"
repository = "https://github.com/YoungHaKim7/arc_vec"
rust-version = "1.88"
version = "0.1.2"

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

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

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

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

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

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

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

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

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

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