sapling/eden/scm/lib/dag/Cargo.toml
Stefan Filip 0a910c4182 dag: rename dag-wire-types to dag-types
Summary:
Wire types has it's own meaning in Edenapi. I don't see it necessary to
add the wire qualifier to this crate and overload the term.

Reviewed By: quark-zju

Differential Revision: D26129827

fbshipit-source-id: eea66eef2db609611d8ffa215ba63ae4f0b669c8
2021-02-09 11:31:29 -08:00

64 lines
1.4 KiB
TOML

[package]
name = "dag"
version = "0.1.0"
edition = "2018"
[features]
default = ["for-tests", "indexedlog-backend"]
for-tests = ["quickcheck"]
indexedlog-backend = ["indexedlog", "fs2", "tempfile"]
[dependencies]
dag-types = { path = "dag-types" }
drawdag = { path = "../drawdag" }
indexedlog = { path = "../indexedlog", optional = true }
minibytes = { path = "../minibytes" }
nonblocking = { path = "../nonblocking" }
vlqencoding = { path = "../vlqencoding" }
anyhow = "1.0.20"
async-trait = "0.1"
bitflags = "1"
byteorder = "1.2.7"
fs2 = { version = "0.4.3", optional = true }
futures = "0.3"
indexmap = "1.0.1"
itertools = "0.8"
parking_lot = "0.10"
quickcheck = { version = "0.9", optional = true }
serde = { version = "1", features = ["derive"] }
tempfile = { version = "3", optional = true }
thiserror = "1"
tracing = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
# Note: bindag depends on "dag" with features!
bindag = { path = "bindag" }
dag-types = { path = "dag-types", features = ["for-tests"] }
dev-logger = { path = "../dev-logger" }
fs2 = "0.4.3"
indexedlog = { path = "../indexedlog" }
mincode = { path = "../mincode" }
minibench = { path = "../minibench" }
once_cell = "1"
quickcheck = "0.9"
tokio = { version = "0.2", features = ["full"] }
unicode-width = "0.1.7"
[[bench]]
name = "spanset"
harness = false
[[bench]]
name = "segment_sizes"
harness = false
[[bench]]
name = "dag_ops"
harness = false
[[bench]]
name = "inprocess_iddag_serde"
harness = false