-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (53 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
56 lines (53 loc) · 1.54 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
[package]
name = "omni_engine"
version = "0.1.0"
edition = "2024"
authors = ["Balavignesh"]
description = "A high-performance, fully mutable Database Management System operating at the physical hardware limits of NVMe SSDs."
[dependencies]
memmap2 = "0.9.10"
tokio = { version = "1.52.1", features = ["full", "macros"] }
crossbeam-skiplist = "0.1.3"
arc-swap = "1.6.0"
crc32fast = "1.4.2"
axum = { version = "0.7.5", features = ["macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tower-http = { version = "0.5.2", features = ["cors"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["json", "env-filter"] }
opentelemetry = "0.22.0"
tracing-opentelemetry = "0.23.0"
opentelemetry_sdk = "0.22.1"
hdrhistogram = "7.5.4"
tower_governor = "0.4.2"
reqwest = { version = "0.13.3", features = ["json"] }
lz4_flex = "0.13.0"
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
rcgen = "0.14.7"
rustls = { version = "0.23.40", features = ["ring"] }
rustls-pemfile = "2.2.0"
quinn = "0.11.9"
moka = { version = "0.12", features = ["sync"] }
toml = "0.8"
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
tar = "0.4.45"
flate2 = "1.1.9"
aes-gcm = "0.10.3"
rand = "0.10.1"
base64 = "0.22.1"
pbkdf2 = "0.13.0"
hmac = "0.13.0"
sha2 = "0.11.0"
prometheus = "0.14.0"
lazy_static = "1.5.0"
argon2 = "0.5.3"
password-hash = "0.6.1"
regex = "1.11"
tempfile = "3.15"
openraft = { version = "0.9.24", features = ["serde"] }
[[bin]]
name = "omni_bench"
path = "src/bench.rs"
[dev-dependencies]
tempfile = "3.15"