-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
42 lines (33 loc) · 937 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
[package]
name = "vsdb_slot_db"
version = "3.0.0"
edition = "2021"
keywords = ["index", "cache", "timestamp", "slot", "database"]
license = "MIT"
authors = ["[email protected]"]
description = "A skip-list like index cache"
homepage = "https://github.com/rust-util-collections/vsdb"
repository = "https://github.com/rust-util-collections/vsdb"
[dependencies]
ruc = { workspace = true }
vsdb = { workspace = true }
serde = { workspace = true }
[dev-dependencies]
criterion = "0.5.1"
rand = { workspace = true }
[features]
default = ["parity_backend", "compress", "msgpack_codec"]
parity_backend = ["vsdb/parity_backend"]
rocks_backend = ["vsdb/rocks_backend"]
compress = ["vsdb/compress"]
json_codec = ["vsdb/json_codec"]
msgpack_codec = ["vsdb/msgpack_codec"]
[[bench]]
name = "0_slot_db_reverse_swap_order"
harness = false
[[bench]]
name = "1_slot_db_positive"
harness = false
[[bench]]
name = "2_slot_db_reverse"
harness = false