forked from wvwwvwwv/scalable-concurrent-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (41 loc) · 1.02 KB
/
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
46
47
48
49
[package]
name = "scc"
description = "High performance containers and utilities for concurrent and asynchronous programming"
documentation = "https://docs.rs/scc"
version = "2.2.0"
authors = ["wvwwvwwv <[email protected]>"]
edition = "2021"
rust-version = "1.65.0"
readme = "README.md"
repository = "https://github.com/wvwwvwwv/scalable-concurrent-containers/"
license = "Apache-2.0"
categories = ["asynchronous", "caching", "concurrency", "data-structures"]
keywords = ["async", "cache", "concurrent", "hashmap", "tree"]
[workspace]
members = [".", "examples"]
[dependencies]
sdd = "0.2.0"
serde = { version = "1.0", optional = true }
[dev-dependencies]
criterion = "0.5"
futures = "0.3"
proptest = "1.4"
rand = "0.8"
serde_test = "1.0"
static_assertions = "1.1"
tokio = { version = "1.38", features = ["full"] }
[[bench]]
name = "bag"
harness = false
[[bench]]
name = "hash_map"
harness = false
[[bench]]
name = "hash_index"
harness = false
[[bench]]
name = "hash_cache"
harness = false
[[bench]]
name = "tree_index"
harness = false