-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 828 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
[package]
name = "graus-db"
version = "0.2.0"
authors = ["Ricardo Pallas Roman <rpallas92@gmail.com>"]
description = "A high-performance, thread-safe key-value embedded data store."
edition = "2021"
categories = ["algorithms", "asynchronous", "data-structures", "distributed-systems"]
homepage = "https://github.com/rpallas92/GrausDB"
keywords = ["database", "performance", "data-storage"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rpallas92/GrausDB"
documentation = "https://github.com/rpallas92/GrausDB"
readme = "README.md"
[dependencies]
bytes = "1.8.0"
crossbeam-skiplist = "0.1"
log = "0.4.6"
thiserror = "1.0"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
rand = "0.6.5"
tempfile = "3.0.7"
walkdir = "2.2.7"
[[bench]]
name = "graus_db_single_thread"
harness = false