kovan-map 0.1.13

Lock-free concurrent hash maps using kovan memory reclamation
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 = "2024"
rust-version = "1.90"
name = "kovan-map"
version = "0.1.13"
authors = ["Theo M. Bulut <vertexclique@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free concurrent hash maps using kovan memory reclamation"
readme = "README.md"
keywords = [
    "concurrency",
    "hashmap",
    "lock-free",
    "wait-free",
]
categories = [
    "concurrency",
    "data-structures",
    "no-std",
]
license = "Apache-2.0"
repository = "https://github.com/vertexclique/kovan"
resolver = "2"

[features]
default = ["std"]
std = []

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

[[example]]
name = "concurrent"
path = "examples/concurrent.rs"

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

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

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

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

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

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

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

[[bench]]
name = "hopscotch"
path = "benches/hopscotch.rs"

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

[dependencies.foldhash]
version = "0.2"

[dependencies.kovan]
version = "0.1.13"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]