mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
23074edd9b
Summary: This is useful to investigate internals of dag calculations. Reviewed By: sfilipco Differential Revision: D23095473 fbshipit-source-id: 4750c1b4ffad32b1317051d17db9659aaaed59c4
43 lines
754 B
TOML
43 lines
754 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"
|
|
itertools = "0.8"
|
|
once_cell = "1"
|
|
parking_lot = "0.10"
|
|
serde = { version = "1", features = ["derive"] }
|
|
tempfile = "3.0.7"
|
|
thiserror = "1"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
bindag = { path = "bindag" }
|
|
minibench = { path = "../minibench" }
|
|
once_cell = "1"
|
|
quickcheck = "0.9"
|
|
unicode-width = "0.1.7"
|
|
|
|
[[bench]]
|
|
name = "spanset"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "segment_sizes"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "dag_ops"
|
|
harness = false
|