-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (49 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
58 lines (49 loc) · 1.49 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
[package]
name = "walrus-rust"
version = "0.2.0"
edition = "2024"
authors = ["nubskr <hello@nubskr.com>"]
description = "A high-performance Write-Ahead Log (WAL) implementation in Rust"
documentation = "https://docs.rs/walrus-rust"
repository = "https://github.com/nubskr/walrus"
license = "MIT"
keywords = ["wal", "write-ahead-log", "database", "logging", "persistence"]
categories = ["database-implementations", "data-structures", "concurrency"]
readme = "README.md"
exclude = [
"target/*",
"wal_files/*",
"*.csv",
"figures/*",
"scripts/__pycache__/*"
]
[dependencies]
rand = "0.8.5"
memmap2 = "0.9"
libc = "0.2"
rkyv = { version = "0.7", features = ["validation"] }
rkyv_derive = "0.7"
bytecheck = "0.6"
tracing = "0.1"
[target.'cfg(target_os = "linux")'.dependencies]
io-uring = "0.7.10"
[target.'cfg(target_os = "linux")'.dev-dependencies]
rocksdb = { version = "0.23", default-features = false }
[[test]]
name = "multithreaded_benchmark_writes"
path = "benchmarks/multithreaded_benchmark_writes.rs"
[[test]]
name = "multithreaded_benchmark_reads"
path = "benchmarks/multithreaded_benchmark_reads.rs"
[[test]]
name = "scaling_benchmark"
path = "benchmarks/scaling_benchmark.rs"
[[test]]
name = "multithreaded_benchmark_batch"
path = "benchmarks/multithreaded_benchmark_batch.rs"
[[test]]
name = "batch_scaling_benchmark"
path = "benchmarks/batch_scaling_benchmark.rs"
[[test]]
name = "rocksdb_multithreaded_benchmark_writes"
path = "benchmarks/multithreaded_benchmark_writes_rocksdb.rs"