-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (46 loc) · 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (46 loc) · 1.12 KB
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
55
56
57
[package]
name = "rustore"
version = "1.0.0"
authors = ["Naim Jeem <naim36208@gmail.com>"]
edition = "2021"
description = "A production-ready key-value store with enhanced features"
license = "MIT"
repository = "https://github.com/naimjeem/rustore"
keywords = ["database", "key-value", "storage", "cli"]
categories = ["database", "command-line-utilities"]
[[bin]]
name = "rustore"
path = "src/bin/main.rs"
[lib]
name = "rustore"
path = "src/lib.rs"
[dependencies]
# CLI
clap = { version = "4.4", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Serialization
bincode = "1.3"
rmp-serde = "1.1"
# File handling
memmap2 = "0.9"
fs2 = "0.4"
# Utilities
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
dashmap = "5.5"
[dev-dependencies]
tempfile = "3.8"
criterion = "0.5"
[[bench]]
name = "benchmarks"
harness = false