sapling/lib/dag/Cargo.toml
Jun Wu 0be69e90e3 dag: add some tests about segmentation and id assignments
Summary:
We now have enough building blocks to put things together.

The tests are taken from the slides. Both examples and some corner cases, plus
two maybe-interesting synthetic cases.

There are probably more details to test. But this should give us some level of
confidence.

Reviewed By: sfilipco

Differential Revision: D15055346

fbshipit-source-id: a76b70fec0ec7e88378830f251f997d147416db0
2019-05-03 13:35:41 -07:00

24 lines
402 B
TOML

[package]
name = "dag"
version = "0.1.0"
edition = "2018"
[dependencies]
indexedlog = { path = "../indexedlog" }
vlqencoding = { path = "../vlqencoding" }
byteorder = "1.2.7"
failure = "0.1.5"
fs2 = "0.4.3"
indexmap = "1.0.1"
tempfile = "3.0.7"
[dev-dependencies]
drawdag = { path = "../drawdag" }
minibench = { path = "../minibench" }
quickcheck = "0.6"
[[bench]]
name = "spanset"
harness = false