sapling/lib/indexedlog/Cargo.toml
Jun Wu 443a8f33b3 indexedlog: move binary indexedlog_dump out
Summary:
It makes testing duplicated - now `cargo test` would try running tests on 2 entry points:
lib.rs and indexedlog_dump.rs.  Move it to a separate crate to solve the issue.

Reviewed By: markbt

Differential Revision: D13498266

fbshipit-source-id: 8abf07c1272dfa825ec7701fd8ea9e0d1310ec5f
2018-12-18 08:17:21 -08:00

31 lines
428 B
TOML

[package]
name = "indexedlog"
version = "0.1.0"
[dependencies]
atomicwrites = "0.2.2"
byteorder = "1.2.7"
fs2 = "0.4.3"
memmap = "0.7.0"
twox-hash = "*"
vlqencoding = { path = "../vlqencoding" }
[dev-dependencies]
minibench = { path = "../minibench" }
quickcheck = "0.6"
rand = "0.4"
tempdir = "0.3.7"
[[bench]]
name = "index"
harness = false
[[bench]]
name = "misc"
harness = false
[[bench]]
name = "log"
harness = false