-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
45 lines (40 loc) · 1.18 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
[package]
name = "value-log"
description = "Value log implementation for key-value separated LSM storage"
license = "MIT OR Apache-2.0"
version = "1.3.0"
edition = "2021"
rust-version = "1.74.0"
readme = "README.md"
include = ["src/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
repository = "https://github.com/fjall-rs/value-log"
homepage = "https://github.com/fjall-rs/value-log"
keywords = ["database", "blobdb", "lsm", "wisckey", "key-value"]
categories = ["data-structures", "database-implementations", "algorithms"]
[lib]
name = "value_log"
path = "src/lib.rs"
[features]
default = []
serde = ["dep:serde"]
bytes = ["dep:bytes"]
[dependencies]
byteorder = "1.5.0"
bytes = { version = "1.8.0", optional = true }
log = "0.4.22"
min-max-heap = "1.3.0"
path-absolutize = "3.1.1"
quick_cache = { version = "0.6.5", default-features = false }
rustc-hash = "2.0.0"
serde = { version = "1.0.215", optional = true, features = ["derive"] }
tempfile = "3.12.0"
xxhash-rust = { version = "0.8.12", features = ["xxh3"] }
[dev-dependencies]
criterion = "0.5.1"
rand = "0.8.5"
test-log = "0.2.16"
lz4_flex = { version = "0.11.3" }
[[bench]]
name = "value_log"
harness = false
path = "benches/value_log.rs"