sapling/lib/indexedlog/Cargo.toml
Jun Wu 0518016553 indexedlog: initial boilerplate
Summary:
First step of a storage-related building block that is in Rust. The goal is
to use it to replace revlog, obsstore and packfiles.

Extern crates that are likely useful are added to reduce future churns.

Reviewed By: DurhamG

Differential Revision: D7108434

fbshipit-source-id: 97ebd9ba69547d876dcecc05e604acdf9088877e
2018-04-13 21:51:24 -07:00

23 lines
314 B
TOML

[package]
name = "indexedlog"
version = "0.1.0"
[dependencies]
atomicwrites = "*"
byteorder = "*"
failure = "*"
fs2 = "*"
memmap = "*"
twox-hash = "*"
vlqencoding = { path = "../vlqencoding" }
[dev-dependencies]
criterion = "*"
quickcheck = "*"
rand = "*"
tempdir = "*"
[[bench]]
name = "bench"
harness = false