aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a16a243161402a3dac74a687d85bbf378fc82818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "log_db"
version = "0.1.0"
edition = "2021"

[lib]
crate-type = ["lib"]

[dependencies]
fs2 = "0.4.3"
log = "0.4.22"
priority-queue = "2.1.1"

[dev-dependencies]
ctor = "0.2.8"
env_logger = "0.11.5"
serial_test = "3.1.1"
tempfile = "3.13.0"
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8.5"

[[bench]]
name = "benchmark"
harness = false