mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
6fd7a2e582
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
11 lines
196 B
TOML
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" }
|