forked from circlefin/malachite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 803 Bytes
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
[package]
name = "informalsystems-malachitebft-wal"
description = "Write-Ahead Log for for the Malachite BFT consensus engine"
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
publish.workspace = true
readme = "../../../README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[bench]]
name = "wal"
harness = false
[features]
compression = ["dep:lz4_flex"]
force-compression = ["compression"]
[dependencies]
cfg-if = "1"
advisory-lock = "0.3.0"
bytes = "1.10.0"
crc32fast = "1.5.0"
lz4_flex = { version = "0.11.5", optional = true }
[dev-dependencies]
criterion = "0.6.0"
nix = { version = "0.29.0", features = ["signal"] }
rand = "0.8.5"
tempfile = "3.21.0"
testdir = "0.9.1"