# 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 = "blazemap" version = "0.5.1" authors = ["Andrew Sonin "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Implements a vector-based slab-like map with an interface similar to that of HashMap, and also provides tools for generating lightweight identifiers that can be type-safely used as keys for this map. """ homepage = "https://github.com/andrewsonin/blazemap" documentation = "https://docs.rs/blazemap/" readme = "README.md" keywords = [ "map", "slab", "hashmap", ] categories = [ "data-structures", "concurrency", ] license = "MIT" repository = "https://github.com/andrewsonin/blazemap" [lib] name = "blazemap" path = "src/lib.rs" [[test]] name = "random_action" path = "tests/random_action.rs" [[test]] name = "miri" path = "tests/miri.rs" [[test]] name = "loom" path = "tests/loom.rs" [dependencies.loom] version = "0.7" optional = true [dependencies.once_cell] version = "1" [dependencies.parking_lot] version = "0.12" [dependencies.serde] version = "1" features = ["derive"] optional = true [dev-dependencies.rand] version = "0.8" [dev-dependencies.serde_json] version = "1" [dev-dependencies.static_assertions] version = "1" [features] full = ["serde"] loom = ["dep:loom"] miri_action_log = [] serde = ["dep:serde"] [lints.clippy.pedantic] level = "warn" priority = -1 [lints.rust] missing_debug_implementations = "warn" missing_docs = "warn" unreachable_pub = "warn" [lints.rust.rust_2018_idioms] level = "warn" priority = 1