sapling/eden/scm/lib/dag/Cargo.toml
Stanislau Hlebik eab97b6123 mononoke: sync changeset implementation for megarepo
Summary: First stab at implementing sync changeset functionality for megarepo.

Reviewed By: ikostia

Differential Revision: D28357210

fbshipit-source-id: 660e3f9914737929391ab1b29f891b3b5dd47638
2021-05-13 10:04:21 -07:00

63 lines
1.6 KiB
TOML

# @generated by autocargo from //eden/scm/lib/dag:dag
[package]
name = "dag"
version = "0.1.0"
edition = "2018"
[[bench]]
name = "dag_ops"
harness = false
[[bench]]
name = "inprocess_iddag_serde"
harness = false
[[bench]]
name = "segment_sizes"
harness = false
[[bench]]
name = "spanset"
harness = false
[dependencies]
anyhow = "1.0"
async-trait = "0.1.45"
bitflags = "1.2"
byteorder = "1.3"
dag-types = { path = "dag-types" }
drawdag = { path = "../drawdag" }
fs2 = { version = "0.4", optional = true }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
indexedlog = { path = "../indexedlog", optional = true }
indexmap = { version = "1.6", features = ["rayon", "serde-1"] }
itertools = "0.8"
minibytes = { path = "../minibytes" }
nonblocking = { path = "../nonblocking" }
parking_lot = "0.10.2"
quickcheck = { version = "0.9", optional = true }
serde = { version = "=1.0.118", features = ["derive", "rc"] }
tempfile = { version = "3.1", optional = true }
thiserror = "1.0"
tracing = "0.1"
tracing-futures = "0.2"
vlqencoding = { path = "../vlqencoding" }
[dev-dependencies]
bindag = { path = "bindag" }
dag-types = { path = "dag-types", features = ["for-tests"] }
dev-logger = { path = "../dev-logger" }
fs2 = "0.4"
indexedlog = { path = "../indexedlog" }
mincode = { path = "../mincode" }
minibench = { path = "../minibench" }
once_cell = "1.4"
quickcheck = "0.9"
tokio = { version = "1.5", features = ["full", "test-util"] }
unicode-width = "0.1"
[features]
default = ["for-tests", "indexedlog-backend"]
for-tests = ["quickcheck"]
indexedlog-backend = ["fs2", "indexedlog", "tempfile"]