-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
48 lines (42 loc) · 1.1 KB
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 = "mmdb"
version = "3.2.4"
edition = "2024"
description = "The storage engine behind vsdb — a pure-Rust LSM-Tree key-value store"
license = "MIT"
authors = ["hui.fan@mail.ru"]
repository = "https://github.com/rust-util-collections/mmdb"
homepage = "https://github.com/rust-util-collections/mmdb"
documentation = "https://docs.rs/mmdb"
keywords = ["rocksdb", "leveldb", "kv", "database", "db"]
categories = ["database-implementations"]
readme = "README.md"
rust-version = "1.89"
exclude = [".github/"]
[dependencies]
crc32fast = "1"
lz4_flex = "0.13"
zstd = "0.13"
moka = { version = "0.12", features = ["sync"] }
parking_lot = "0.12"
ruc = "10.0.0"
thiserror = "2"
tracing = "0.1"
arc-swap = "1.8.2"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
mmdb = { path = ".", features = ["test-utils"] }
tempfile = "3"
proptest = "1"
criterion = { version = "0.8", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
lto = "thin"
codegen-units = 1
opt-level = 3
[features]
default = []
test-utils = [] # Exposes test helpers like DB::simulate_crash()