-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (34 loc) · 890 Bytes
/
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
[package]
name = "ghaladb"
version = "0.1.4"
authors = ["Matt Gathu <[email protected]>"]
edition = "2021"
description = "LSM tree based key value store with keys and values separation."
repository = "https://github.com/mattgathu/ghaladb"
license = "Apache-2.0"
readme = "README.md"
keywords = ["lsm-tree", "database"]
categories = ["database-implementations"]
documentation = "https://docs.rs/ghaladb"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = { version = "2.0.0-rc.3" }
snap = "1"
log = "0.4"
thiserror = "1"
typed-builder = "0.9"
contracts = "0.6"
[features]
default = []
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
rand = "0.8"
env_logger = "0.10"
tempfile = "3"
[lib]
bench = false
[[bench]]
name = "db_benchmark"
harness = false
[profile.bench]
debug = true