sapling/lib/bookmarkstore/Cargo.toml
Jun Wu 12b98e1e96 indexedlog: use failure for error handling
Summary:
Failure makes it easier to chain errors, and backtraces. Use it.

There is probably still room for improvement, by chainning errors and avoiding
exposing low-level errors for APIs, and/or provide more context in error
messages. But it should be already much better than before.

Differential Revision: D14759305

fbshipit-source-id: b1d3a8ec959dde575f06533ea9e4cd0757057051
2019-04-05 12:17:28 -07:00

14 lines
287 B
TOML

[package]
name = "bookmarkstore"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
[dependencies]
atomicwrites = "0.2.2"
failure = "0.1.5"
types = { path = "../types" }
indexedlog = { path = "../indexedlog" }
[dev-dependencies]
tempfile = "3.0.4"