sapling/eden/scm/lib/metalog/Cargo.toml
Jun Wu 02b4902319 metalog: implement Repair
Summary:
Provide a way to repair the MetaLog. It's not just repairing 2 indexedlog
structures, but also checking the relationships between them.

Reviewed By: xavierd

Differential Revision: D18737904

fbshipit-source-id: fcf8ae56a1fdbb0561765701d962dfad4a8b5bd4
2019-12-09 14:15:47 -08:00

20 lines
386 B
TOML

[package]
name = "metalog"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0.20"
indexedlog = { path = "../indexedlog" }
lazy_static = "1"
mincode = { path = "../mincode" }
serde_bytes = "0.11"
serde = { version = "1", features = ["derive"] }
zstore = { path = "../zstore" }
[dev-dependencies]
quickcheck = "0.9"
rand_chacha = "0.2"
rand_core = "0.5"
tempfile = "3.0.7"