# 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-pinned-concurrent-col" version = "2.8.0" authors = ["orxfun "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A core data structure with a focus to enable high performance, possibly lock-free, concurrent collections using a PinnedVec as the underlying storage." readme = "README.md" keywords = [ "concurrency", "bag", "data-structures", "atomic", "lock-free", ] categories = [ "data-structures", "concurrency", "rust-patterns", "no-std", ] license = "MIT" repository = "https://github.com/orxfun/orx-pinned-concurrent-col/" [lib] name = "orx_pinned_concurrent_col" path = "src/lib.rs" [[test]] name = "col" path = "tests/col.rs" [[test]] name = "debug" path = "tests/debug.rs" [[test]] name = "new" path = "tests/new.rs" [[test]] name = "new_filled_with" path = "tests/new_filled_with.rs" [[test]] name = "reserve" path = "tests/reserve.rs" [[test]] name = "state" path = "tests/state.rs" [[test]] name = "write" path = "tests/write.rs" [[test]] name = "write_n_items" path = "tests/write_n_items.rs" [dependencies.orx-fixed-vec] version = "3.10" [dependencies.orx-pinned-vec] version = "3.10" [dependencies.orx-pseudo-default] version = "1.4" default-features = false [dependencies.orx-split-vec] version = "3.10" [dev-dependencies.test-case] version = "3.3.1"