sapling/eden/scm/lib/dag/bindag/Cargo.toml
Jun Wu 6fd7a2e582 dag: use concrete error types
Summary:
This is more complex than previous libraries, mainly because `dag` defines APIs
(traits) used by other code, which might raise error type not interested
by `dag` itself. `BackendError::Other(anyhow::Error)` is currently used to
capture types that do not fit in `dag`'s predefined error types.

Reviewed By: sfilipco

Differential Revision: D22883865

fbshipit-source-id: 3699e14775f335620eec28faa9a05c3cc750e1d1
2020-08-06 12:31:57 -07:00

11 lines
196 B
TOML

[package]
name = "bindag"
version = "0.1.0"
edition = "2018"
[dependencies]
dag = { path = ".." }
drawdag = { path = "../../drawdag" }
tempfile = "3"
vlqencoding = { path = "../../vlqencoding" }