[[bench]]
name = "grow"
path = "benches/grow.rs"
[[bench]]
harness = false
name = "random_access"
path = "benches/random_access.rs"
[[bench]]
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]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_chacha]
version = "0.3"
[lib]
name = "orx_fixed_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 fixed capacity and pinned elements."
edition = "2021"
keywords = ["vec", "pinned", "array", "split", "fixed"]
license = "MIT"
name = "orx-fixed-vec"
readme = "README.md"
repository = "https://github.com/orxfun/orx-fixed-vec/"
version = "3.10.0"
[[test]]
name = "con_fixed_vec"
path = "tests/con_fixed_vec.rs"
[[test]]
name = "iter_over_range"
path = "tests/iter_over_range.rs"
[[test]]
name = "sort"
path = "tests/sort.rs"