[package]
edition = "2021"
name = "syncmap"
version = "0.1.3"
authors = ["Behrouz <behrouz.r.fa@gmail.com>"]
description = """
syncmap is a fast, concurrent cache library built with a focus on performance and correctness.
The motivation to build syncmap comes from the sync.Map in Golang.
"""
homepage = "https://github.com/behrouz-rfa/syncmap"
documentation = "https://github.com/behrouz-rfa/syncmap"
readme = "README.md"
keywords = [
"hashmap",
"syn",
"map",
]
license = "MIT"
repository = "https://github.com/behrouz-rfa/syncmap"
[[bench]]
name = "syncmap_dashmap"
harness = false
[dependencies.aes-prng]
version = "0.2.0"
[dependencies.ahash]
version = "0.7.6"
default-features = false
[dependencies.concache]
version = "0.2.1"
[dependencies.crossbeam]
version = "0.8.2"
[dependencies.crossbeam-channel]
version = "0.5.6"
[dependencies.hashbrown]
version = "0.13.1"
[dependencies.libmath]
version = "0.2.1"
[dependencies.num_cpus]
version = "1.12.0"
[dependencies.parking_lot]
version = "0.12.1"
[dependencies.rand]
version = "0.8.5"
[dependencies.rayon]
version = "1.3"
optional = true
[dependencies.seahash]
version = "4.1.0"
[dependencies.seize]
version = "0.2.1"
[dependencies.serde]
version = "1.0.126"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.64"
[dependencies.syncpool]
version = "0.1.6"
[dependencies.xxhash-rust]
version = "0.8.5"
features = [
"xxh3",
"const_xxh3",
]
[dev-dependencies.criterion]
version = "0.4.0"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rayon]
version = "1.3"