sapling/eden/scm/lib/dag/Cargo.toml
Jun Wu 60684eb2c5 dag: make ASCII -> MemNameDag a public API
Summary:
It seems handy to construct a Dag just from ASCII. Therefore move it to a
public interface.

Reviewed By: sfilipco

Differential Revision: D21486525

fbshipit-source-id: de7f4b8dfcbcc486798928d4334c655431373276
2020-05-11 09:49:59 -07:00

37 lines
643 B
TOML

[package]
name = "dag"
version = "0.1.0"
edition = "2018"
[dependencies]
drawdag = { path = "../drawdag" }
indexedlog = { path = "../indexedlog" }
minibytes = { path = "../minibytes" }
vlqencoding = { path = "../vlqencoding" }
anyhow = "1.0.20"
bitflags = "1"
byteorder = "1.2.7"
fs2 = "0.4.3"
indexmap = "1.0.1"
serde = { version = "1", features = ["derive"] }
tempfile = "3.0.7"
[dev-dependencies]
bindag = { path = "bindag" }
minibench = { path = "../minibench" }
once_cell = "1"
quickcheck = "0.9"
[[bench]]
name = "spanset"
harness = false
[[bench]]
name = "segment_sizes"
harness = false
[[bench]]
name = "dag_ops"
harness = false