-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
45 lines (38 loc) · 998 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
41
42
43
44
45
[package]
name = "papaya"
version = "0.1.6"
authors = ["Ibraheem Ahmed <ibraheem@ibraheem.ca>"]
description = "A fast and ergonomic concurrent hash-table for read-heavy workloads."
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/ibraheemdev/papaya"
categories = ["algorithms", "concurrency", "data-structures"]
keywords = ["concurrent", "hashmap", "atomic", "lock-free"]
exclude = ["assets/*"]
[dependencies]
seize = "0.4"
serde = { version = "1", optional = true }
[dev-dependencies]
rand = "0.8"
base64 = "0.22"
hdrhistogram = "7"
dashmap = "5"
criterion = "0.5"
tokio = { version = "1", features = ["fs", "rt"] }
num_cpus = "1"
serde_json = "1"
[features]
default = []
serde = ["dep:serde"]
[profile.test]
inherits = "release"
debug-assertions = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(papaya_stress)', 'cfg(papaya_asan)'] }
[[bench]]
name = "single_thread"
harness = false
[[bench]]
name = "latency"
harness = false