[[example]]
name = "bfs_data_race"
path = "examples/bfs_data_race.rs"
test = true
[[example]]
name = "bfs_pointer"
path = "examples/bfs_pointer.rs"
test = true
[[example]]
name = "bfs_unsafe"
path = "examples/bfs_unsafe.rs"
test = true
[lib]
name = "par_slice"
path = "src/lib.rs"
[package]
authors = ["Matteo Dell'Acqua <dellacqua.matteo99@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency"]
description = "Slices that may be accessed from multiple threads with different levels of safety"
edition = "2021"
keywords = ["slice", "index", "parallel", "access", "concurrent"]
license = "MIT"
name = "par_slice"
readme = "README.md"
repository = "https://github.com/MatteoH2O1999/par-slice-rs"
rust-version = "1.84"
version = "1.0.0"
[[test]]
name = "borrowed_no_ref_chunk_slice"
path = "tests/borrowed_no_ref_chunk_slice.rs"
[[test]]
name = "borrowed_no_ref_slice"
path = "tests/borrowed_no_ref_slice.rs"
[[test]]
name = "borrowed_pointer_chunk_slice"
path = "tests/borrowed_pointer_chunk_slice.rs"
[[test]]
name = "borrowed_pointer_slice"
path = "tests/borrowed_pointer_slice.rs"
[[test]]
name = "borrowed_unsafe_chunk_slice"
path = "tests/borrowed_unsafe_chunk_slice.rs"
[[test]]
name = "borrowed_unsafe_slice"
path = "tests/borrowed_unsafe_slice.rs"
[[test]]
name = "owned_no_ref_chunk_slice"
path = "tests/owned_no_ref_chunk_slice.rs"
[[test]]
name = "owned_no_ref_slice"
path = "tests/owned_no_ref_slice.rs"
[[test]]
name = "owned_pointer_chunk_slice"
path = "tests/owned_pointer_chunk_slice.rs"
[[test]]
name = "owned_pointer_slice"
path = "tests/owned_pointer_slice.rs"
[[test]]
name = "owned_unsafe_chunk_slice"
path = "tests/owned_unsafe_chunk_slice.rs"
[[test]]
name = "owned_unsafe_slice"
path = "tests/owned_unsafe_slice.rs"