sapling/lib/indexedlog/Cargo.toml
Jun Wu ec90e8db57 logrotate: implement append and lookup
Summary:
These methods just delegate to `Log` structures. Unfortunately, the key has to
be copied so it can be used by the iterator to query remaining logs.

Differential Revision: D14688172

fbshipit-source-id: fd581f7256031a0622ec0533c84daaab89f9bb82
2019-04-01 17:16:14 -07:00

32 lines
445 B
TOML

[package]
name = "indexedlog"
version = "0.1.0"
[dependencies]
atomicwrites = "0.2.2"
byteorder = "1.2.7"
bytes = "0.4.10"
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