sapling/eden/scm/lib/zstore/Cargo.toml
Jun Wu d103af79df hgcommits: add hybrid backend
Summary:
The hybrid backend is similar to the doublewrite backend, except that it does
not use revlog to read commit data, but uses EdenAPI instead.

Note:
- The non-stream API will not fetch commit data from EdenAPI.
- The commit hashes are not lazy yet.

Reviewed By: sfilipco

Differential Revision: D23924147

fbshipit-source-id: eb2cf8d3a7e1704b4efb13ad3ad86f8b6a1b31d0
2020-10-06 19:13:02 -07:00

24 lines
547 B
TOML

# @generated by autocargo from //eden/scm/lib/zstore:zstore
[package]
name = "zstore"
edition = "2018"
version = "0.1.0"
include = ["src/**/*.rs"]
[dependencies]
indexedlog = { path = "../indexedlog" }
mincode = { path = "../mincode" }
minibytes = { path = "../minibytes" }
types = { path = "../types" }
zstdelta = { path = "../zstdelta" }
lazy_static = "1.0"
lru-cache = "0.1.2"
parking_lot = "0.10.2"
serde = { version = "1.0", features = ["derive", "rc"] }
sha-1 = "0.8"
tracing = "0.1"
[dev-dependencies]
quickcheck = "0.9"
tempfile = "3.1"