[[bench]]
name = "append"
path = "benches/append.rs"
[[bench]]
name = "grow"
path = "benches/grow.rs"
[[bench]]
name = "random_access"
path = "benches/random_access.rs"
[[bench]]
harness = false
name = "serial_access"
path = "benches/serial_access.rs"
[dependencies.orx-pinned-vec]
version = "3.10"
[dependencies.orx-pseudo-default]
default-features = false
version = "1.4"
[dev-dependencies.criterion]
default-features = false
version = "0.5"
[dev-dependencies.rand]
default-features = false
version = "0.8"
[dev-dependencies.rand_chacha]
default-features = false
version = "0.3"
[dev-dependencies.test-case]
version = "3.3.1"
[dev-dependencies.wasm-bindgen]
version = "0.2"
[dev-dependencies.wasm-bindgen-test]
version = "0.3"
[lib]
name = "orx_split_vec"
path = "src/lib.rs"
[package]
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "rust-patterns", "no-std"]
description = "An efficient constant access time vector with dynamic capacity and pinned elements."
edition = "2021"
keywords = ["vec", "array", "split", "fragments", "pinned"]
license = "MIT"
name = "orx-split-vec"
readme = "README.md"
repository = "https://github.com/orxfun/orx-split-vec/"
version = "3.10.0"
[[test]]
name = "con_iter_over_range"
path = "tests/con_iter_over_range.rs"
[[test]]
name = "con_pinned_vec"
path = "tests/con_pinned_vec.rs"
[[test]]
name = "con_pinned_vec_grow"
path = "tests/con_pinned_vec_grow.rs"
[[test]]
name = "first_last"
path = "tests/first_last.rs"
[[test]]
name = "growth_constant_access"
path = "tests/growth_constant_access.rs"
[[test]]
name = "growth_with_wasm32"
path = "tests/growth_with_wasm32.rs"
[[test]]
name = "slices"
path = "tests/slices.rs"
[[test]]
name = "slices_mut"
path = "tests/slices_mut.rs"
[[test]]
name = "sort"
path = "tests/sort.rs"