sapling/eden/scm/lib/dag/Cargo.toml
Jun Wu 6132962d30 dag: enable dev-logger
Summary: This makes `RUST_LOG` effective during `cargo test`.

Reviewed By: sfilipco

Differential Revision: D25622972

fbshipit-source-id: b1b28e8d3bb397055815b4ac7cda8fbfac7ea0eb
2020-12-18 16:56:44 -08:00

56 lines
1.1 KiB
TOML

[package]
name = "dag"
version = "0.1.0"
edition = "2018"
[features]
default = ["for-tests"]
for-tests = ["quickcheck"]
[dependencies]
drawdag = { path = "../drawdag" }
indexedlog = { path = "../indexedlog" }
minibytes = { path = "../minibytes" }
nonblocking = { path = "../nonblocking" }
vlqencoding = { path = "../vlqencoding" }
anyhow = "1.0.20"
async-trait = "0.1"
bitflags = "1"
byteorder = "1.2.7"
fs2 = "0.4.3"
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 = "3.0.7"
thiserror = "1"
tracing = "0.1"
[dev-dependencies]
bindag = { path = "bindag" }
dev-logger = { path = "../dev-logger" }
mincode = { path = "../mincode" }
minibench = { path = "../minibench" }
once_cell = "1"
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