[package]
name = "seqmap"
version = "0.1.3"
edition = "2024"
authors = ["sam0x17"]
description = "A blazing fast seqlock-based concurrent hashmap where every data cell is its own seqlock, suitable for thousands of concurrent readers and writers"
license = "MIT"
repository = "https://github.com/sam0x17/seqmap"
homepage = "https://sam0x17.dev"
documentation = "https://docs.rs/seqmap/latest"
keywords = ["concurrent", "hashmap", "seqlock", "lock-free", "parallel"]
[dependencies]
crossbeam-utils = "0.8"
seqlock = "0.2"
[dev-dependencies]
rayon = "1"