-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 956 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
31
32
33
34
35
36
[package]
name = "folklore"
version = "0.8.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/callumbirks/folklore/"
description = "A lock-free concurrent hash map"
categories = ["concurrency", "data-structures", "no-std"]
keywords = ["hashmap", "map", "lock-free", "concurrent"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytemuck = "1.14.3"
# Disabling default-features disables the spinlock fallback, so atomic reads and writes will always be lock-free
atomic = { version = "0.6.0", default-features = false }
hash32 = "0.3.1"
[dev-dependencies]
fixedstr = "0.5.5"
criterion = "0.5.1"
rand = "0.8.5"
leapfrog = { version = "0.3.0", features = ["stable_alloc"] }
rayon = "1.10.0"
[[bench]]
name = "hashmap"
harness = false
[[bench]]
name = "parallel"
harness = false
[lints.clippy]
pedantic = { priority = -1, level = "deny" }
module_name_repetitions = "allow"