-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (58 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
66 lines (58 loc) · 1.36 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
58
59
60
61
62
63
64
65
66
[workspace]
members = ["."]
resolver = "2"
[package]
name = "QuiverDB"
version = "2.2.0"
edition = "2021"
description = "Embedded KV DB with in-page Robin Hood index, WAL, directory and overflow chains"
readme = "README.md"
repository = "https://github.com/artemonad/QuiverDB"
license = "MIT"
keywords = ["database", "embedded", "kv", "wal", "robin-hood"]
categories = ["database", "embedded"]
authors = ["Федорчук Артем (artemonад)"]
[lib]
name = "QuiverDB"
path = "src/lib.rs"
crate-type = ["rlib"]
[[bin]]
name = "quiverdb"
path = "src/bin/quiverdb/main.rs"
[[bin]]
name = "quiverdb_metrics"
path = "src/bin/quiverdb_metrics.rs"
[[bin]]
name = "quiverdb_bench"
path = "src/bin/quiverdb_bench.rs"
[features]
default = []
ffi = []
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
byteorder = "1.5"
crc32c = "0.6"
twox-hash = "1"
fs2 = "0.4"
zstd = "0.13"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.21"
tiny_http = "0.12"
# TDE (AES-GCM tag)
aes-gcm = "0.10"
# CDC PSK (HMAC-SHA256)
hmac = "0.12"
sha2 = "0.10"
# NEW TLS (native-tls)
native-tls = "0.2"
# Zeroize секретов (TDE/KMS)
zeroize = "1"
# NEW: генерация nonce/случайных байтов для KMS wrap/unwrap
rand = "0.8"
# NEW: mmap для Bloom sidecar
memmap2 = "0.9"
libc = "1.0.0-alpha.1"
[dev-dependencies]
oorandom = "11"