-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
40 lines (32 loc) · 891 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
37
38
39
40
[package]
name = "leapfrog"
version = "0.3.1"
edition = "2021"
authors = ["Rob Clucas <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A fast, lock-free concurrent hash map"
repository = "https://github.com/robclu/leapfrog"
keywords = ["hashmap","concurrent", "map"]
categories = ["concurrency", "data-structures"]
[features]
default = []
serde = ["dep:serde_crate"]
stable_alloc = ["dep:allocator-api2"]
[profile.release]
debug = false
lto = true
[dependencies]
allocator-api2 = { version = "0.2.15", optional = true }
atomic = "0.5.3"
serde_crate = { package = "serde", version = "1.0.136", features = ["derive"], optional = true }
[dev-dependencies]
core_affinity = "0.8.1"
criterion = "0.5.1"
rand = "0.8.4"
serde_json = "1.0.50"
[[bench]]
name = "hashmap"
harness = false
[package.metadata.docs.rs]
features = ["serde", "stable_alloc"]