-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
82 lines (73 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "lever"
version = "0.1.4"
authors = ["Mahmut Bulut <vertexclique@gmail.com>"]
edition = "2018"
description = "Pillars for Transactional Systems and Data Grids"
keywords = ["concurrency", "transactional", "database", "multitasking", "multithreading"]
categories = ["concurrency", "asynchronous"]
homepage = "https://github.com/vertexclique/lever"
repository = "https://github.com/vertexclique/lever"
documentation = "https://docs.rs/lever"
readme = "README.md"
license = "Apache-2.0/MIT"
exclude = [
"scripts/*",
".github/*",
"examples/*",
"graphstore/*",
"tests/*",
"img/*",
"ci/*",
"benches/*",
"doc/*",
"*.png",
"*.dot",
"*.yml",
"*.toml",
"*.md"
]
[features]
default = []
nightly = ["hw"]
hw = []
[dependencies]
log = "0.4"
lazy_static = "1.4"
crossbeam-epoch = "0.9"
parking_lot = "0.11"
anyhow = "1.0"
thiserror = "1.0"
itertools = "0.10"
slice-group-by = "0.2.6"
[dev-dependencies]
criterion = "0.3"
rand = "0.8"
rand_distr = "0.4"
rayon = "1"
crossbeam-utils = "0.8.1"
trybuild = "1.0.39"
[[bench]]
name = "op_ser_benches"
path = "benches/op_ser_benches.rs"
harness = false
[[bench]]
name = "lotable_iter_benches"
path = "benches/lotable_iter_benches.rs"
harness = false
[[bench]]
name = "lotable_threaded_join_benches"
path = "benches/lotable_threaded_join_benches.rs"
harness = false
[[bench]]
name = "arc_rwlock_benches"
path = "benches/arc_rwlock_benches.rs"
harness = false
[[bench]]
name = "read_parameterized_benches"
path = "benches/read_parameterized_benches.rs"
harness = false
[[bench]]
name = "zonemap_benches"
path = "benches/zonemap_benches.rs"
harness = false