forked from komora-io/concurrent-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 790 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
[package]
name = "concurrent-map"
authors = ["Tyler Neely <[email protected]>"]
description = "a lock-free linearizable B+ tree"
version = "5.0.23"
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/komora-io/concurrent-map"
keywords = ["lock-free", "multi-threaded", "performance", "index", "tree"]
categories = ["concurrency", "data-structures", "rust-patterns"]
readme = "README.md"
[profile.dev]
opt-level = 1
debug = true
[profile.release]
debug = true
[features]
fault_injection = ["rand"]
timing = []
print_utilization_on_drop = []
fuzz_constants = []
serde = ["dep:serde"]
[dependencies]
ebr = { version = "0.2.3", path = "../ebr" }
stack-map = "1.0.2"
rand = { version = "0.8.5", optional = true }
serde = { version = "1.0.160", optional = true }