# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "orx-fixed-vec" version = "3.10.0" authors = ["orxfun "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An efficient constant access time vector with fixed capacity and pinned elements." readme = "README.md" keywords = [ "vec", "pinned", "array", "split", "fixed", ] categories = [ "data-structures", "rust-patterns", "no-std", ] license = "MIT" repository = "https://github.com/orxfun/orx-fixed-vec/" [lib] name = "orx_fixed_vec" path = "src/lib.rs" [[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" [[bench]] name = "grow" path = "benches/grow.rs" [[bench]] name = "random_access" path = "benches/random_access.rs" harness = false [[bench]] name = "serial_access" path = "benches/serial_access.rs" [dependencies.orx-pinned-vec] version = "3.10" [dependencies.orx-pseudo-default] version = "1.4" default-features = false [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_chacha] version = "0.3"