[package] name = "orx-fixed-vec" version = "3.10.0" edition = "2021" authors = ["orxfun "] description = "An efficient constant access time vector with fixed capacity and pinned elements." license = "MIT" repository = "https://github.com/orxfun/orx-fixed-vec/" keywords = ["vec", "pinned", "array", "split", "fixed"] categories = ["data-structures", "rust-patterns", "no-std"] [dependencies] orx-pseudo-default = { version = "1.4", default-features = false } orx-pinned-vec = "3.10" [[bench]] name = "random_access" harness = false [dev-dependencies] criterion = { version = "0.5", features = ["html_reports"] } rand = "0.8" rand_chacha = "0.3"