acmap 0.1.0

An actor-style sharded async map inspired by DashMap-like APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "acmap"
version = "0.1.0"
edition = "2024"
description = "An actor-style sharded async map inspired by DashMap-like APIs."
license = "MIT"
readme = "README.md"
repository = "https://github.com/katteXu/acmap.git"
homepage = "https://github.com/katteXu/acmap"
documentation = "https://docs.rs/acmap"
keywords = ["async", "actor", "map", "tokio", "concurrent"]
categories = ["asynchronous", "concurrency", "data-structures"]

[dependencies]
tokio = { version = "1.49.0", features = ["full"] }

[dev-dependencies]
dashmap = "6.1.0"