-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
52 lines (46 loc) · 1.3 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
46
47
48
49
50
51
52
[package]
name = "fjall"
description = "LSM-based key-value storage engine"
license = "MIT OR Apache-2.0"
version = "2.4.4"
edition = "2021"
rust-version = "1.74.0"
readme = "README.md"
include = ["src/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
repository = "https://github.com/fjall-rs/fjall"
homepage = "https://github.com/fjall-rs/fjall"
keywords = ["database", "lsmt", "lsm", "rocksdb", "leveldb"]
categories = ["data-structures", "database-implementations", "algorithms"]
[lib]
name = "fjall"
path = "src/lib.rs"
[features]
default = ["bloom", "single_writer_tx", "lz4"]
lz4 = ["lsm-tree/lz4"]
miniz = ["lsm-tree/miniz"]
bloom = ["lsm-tree/bloom"]
single_writer_tx = []
ssi_tx = []
__internal_whitebox = []
bytes = ["lsm-tree/bytes"]
[dependencies]
byteorder = "1.5.0"
lsm-tree = { version = "2.4.0", default-features = false }
log = "0.4.21"
std-semaphore = "0.1.0"
tempfile = "3.10.1"
path-absolutize = "3.1.1"
dashmap = "6.0.1"
xxhash-rust = { version = "0.8.12", features = ["xxh3"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
nanoid = "0.4.0"
test-log = "0.2.16"
rand = "0.8.5"
[package.metadata.cargo-all-features]
denylist = ["__internal_whitebox"]
skip_feature_sets = [["ssi_tx", "single_writer_tx"]]
[[bench]]
name = "lsmt"
harness = false
path = "benches/fjall.rs"