sapling/eden/scm/lib/dag/Cargo.toml
Thomas Orozco 8c83bd9a1c third-party/rust: update Tokio to 1.7.1
Summary: There is a regression in 1.7.0 (which we're on at the moment) so we might as well update.

Reviewed By: zertosh, farnz

Differential Revision: D29358047

fbshipit-source-id: 226393d79c165455d27f7a09b14b40c6a30d96d3
2021-06-25 06:17:41 -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.10.1"
minibytes = { path = "../minibytes" }
nonblocking = { path = "../nonblocking" }
parking_lot = "0.10.2"
quickcheck = { version = "0.9", optional = true }
serde = { version = "1.0.126", 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.7.1", features = ["full", "test-util"] }
unicode-width = "0.1"
[features]
default = ["for-tests", "indexedlog-backend"]
for-tests = ["quickcheck"]
indexedlog-backend = ["fs2", "indexedlog", "tempfile"]