-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1023 Bytes
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1023 Bytes
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
[package]
name = "mace-kv"
version = "0.0.28"
edition = "2024"
authors = ["AbbyCin <abbytsing@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/abbycin/mace"
repository = "https://github.com/abbycin/mace"
description = "A fast, cross-platform embedded key-value storage engine with ACID, MVCC, and flash-optimized storage"
license = "MIT"
categories = ["database-implementations", "database"]
keywords = ["database", "kv", "btree", "storage", "embedded"]
[lib]
name = "mace"
[dependencies]
crc32c = "0.6.8"
dashmap = "6.1.0"
rand = "0.9.2"
log = "0.4.28"
crossbeam-epoch = "0.9.18"
parking_lot = "0.12.5"
btree-store = "0.1"
rustc-hash = "2.1.1"
[target.'cfg(not(windows))'.dependencies]
libc = "0.2.177"
[dev-dependencies]
logger = { path = "deps/logger" }
criterion = { version = "0.8.1", features = ["html_reports"] }
rayon = "1.10"
[[bench]]
name = "perf"
harness = false
[features]
default = []
extra_check = []
metric = []
failpoints = []
[profile.release]
opt-level = 3
lto = true
debug = true