leapfrog 0.3.3

A fast, lock-free concurrent hash map
Documentation
# 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 = "leapfrog"
version = "0.3.3"
authors = ["Rob Clucas <robjclucas@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, lock-free concurrent hash map"
readme = "README.md"
keywords = [
    "hashmap",
    "concurrent",
    "map",
]
categories = [
    "concurrency",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/robclu/leapfrog"

[package.metadata.docs.rs]
features = [
    "serde",
    "stable_alloc",
]

[features]
default = []
serde = ["dep:serde_crate"]
stable_alloc = ["dep:allocator-api2"]

[lib]
name = "leapfrog"
path = "src/lib.rs"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "cuckoo"
path = "tests/cuckoo.rs"

[[test]]
name = "hashmap"
path = "tests/hashmap.rs"

[[bench]]
name = "hashmap"
path = "benches/hashmap.rs"
harness = false

[dependencies.allocator-api2]
version = "0.2.15"
optional = true

[dependencies.atomic]
version = "0.5.3"

[dependencies.serde_crate]
version = "1.0.136"
features = ["derive"]
optional = true
package = "serde"

[dev-dependencies.core_affinity]
version = "0.8.1"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.rand]
version = "0.8.4"

[dev-dependencies.serde_json]
version = "1.0.50"

[profile.release]
lto = true
debug = 0