-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (43 loc) · 1.15 KB
/
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
43
44
45
46
47
48
49
50
51
[package]
name = "simd-r-drive"
authors = ["Jeremy Harris <[email protected]>"]
version = "0.3.0-alpha.1"
edition = "2021"
description = "SIMD-optimized append-only schema-less storage engine. Key-based binary storage in a single-file storage container."
repository = "https://github.com/jzombie/rust-simd-r-drive"
license = "Apache-2.0"
categories = ["database-implementations", "data-structures", "filesystem"]
keywords = ["storage-engine", "binary-storage", "append-only", "simd", "mmap"]
[dependencies]
crc32fast = "1.4.2"
env_logger = "0.11.7"
indoc = "2.0.6"
log = "0.4.26"
memmap2 = "0.9.5"
[dependencies.clap]
version = "4.5.32"
features = ["derive"]
[dependencies.xxhash-rust]
version = "0.8.12"
features = ["xxh3", "const_xxh3"]
[dev-dependencies]
rand = "0.9.0"
tempfile = "3.18.0"
bincode = "1.3.3"
serde_json = "1.0.140"
serial_test = "3.2.0"
[dev-dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dev-dependencies.tokio]
version = "1.44.0"
features = ["rt-multi-thread", "macros", "time", "sync"]
[[bench]]
name = "storage_benchmark"
harness = false
[workspace]
members = [
".",
"simd-r-drive-extensions"
]
resolver = "2"