-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (25 loc) · 912 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "scherben-map"
version = "0.1.10"
edition = "2021"
authors = ["Milad (Mike) Taghavi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mitghi/scherben-map.rs"
documentation = "https://github.com/mitghi/scherben-map.rs"
homepage = "https://github.com/mitghi/scherben-map.rs"
description = "Concurrent Sharded HashMap for Rust"
keywords = ["hashmap", "sharded-hashmap", "concurrent-hashmap", "thread-safe-hashmap"]
categories = ["concurrency", "asynchronous", "algorithms"]
exclude = [".gitignore"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hashbrown = {version = "0.12.1", features=["raw", "inline-more"]}
parking_lot_utils = {package = "parking_lot", version = "0.12.1"}
fnv = "1.0.7"
[dev-dependencies]
criterion = "0.3"
sharded = "0.1.0"
[[bench]]
name = "bench"
harness = false