-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (43 loc) · 1.23 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
53
54
[package]
name = "readb"
version = "0.4.1"
edition = "2021"
authors = ["Alexander Procelewski <alex@basishealth.io>"]
description = "A simple, efficient, and modular embedded read-first key-value database in Rust."
repository = "https://github.com/Basis-Health/readb"
homepage = "https://github.com/Basis-Health/readb"
readme = "README.md"
license = "Apache-2.0"
keywords = ["database", "embedded", "key-value"]
categories = ["database-implementations", "embedded"]
[dependencies]
anyhow = "1.0.72"
bincode = "1.3.3"
fs2 = "0.4.3"
reqwest = { version = "0.12.5", optional = true }
brotli = { version = "6.0.0", optional = true }
[dev-dependencies]
tempfile = "3.7.0"
criterion = { version = "0.5.1", features = ["html_reports"]}
tokio = { version = "1.39.2", features = ["full"] }
sled = {version = "0.34.7" }
redb = "2.1.1"
warp = "0.3.5"
rand = "0.8.5"
walkdir = "2"
[[bench]]
name = "rdb_vs_sled"
required-features = ["write"]
harness = false
#[[bench]]
#name = "write_benchmark"
#harness = false
[features]
default = []
ignore-path-check = []
error-on-rollback-committed = []
default-remote = ["remote-cloning", "remote-brotli-compression"]
remote-cloning = ["reqwest"]
remote-brotli-compression = ["brotli"]
write = []
garbage-collection = []