sapling/eden/mononoke/derived_data/test_utils/Cargo.toml
Mark Juggurnauth-Thomas 4909562fe9 derived_data_test_utils: move test_utils to derived_data and update to new futures
Summary:
`manifest/test_utils` contains test utilities that are only used by derived data, and only one
of which relates to manifests.  Its name (`test_utils`) is also confusing with `tests/utils`.

Move it to `derived_data_test_utils`, and update it to new futures.

Reviewed By: mitrandir77

Differential Revision: D24787536

fbshipit-source-id: 7a4a735132ccf81e3f75683c7f44c9ada11bc9d7
2020-11-09 07:23:51 -08:00

23 lines
648 B
TOML

[package]
name = "derived_data_test_utils"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["*.rs"]
[lib]
path = "lib.rs"
[dependencies]
blobrepo = { path = "../../blobrepo" }
blobrepo_hg = { path = "../../blobrepo/blobrepo_hg" }
blobstore = { path = "../../blobstore" }
bounded_traversal = { path = "../../common/bounded_traversal" }
context = { path = "../../server/context" }
manifest = { path = "../../manifest" }
mercurial_types = { path = "../../mercurial/types" }
mononoke_types = { path = "../../mononoke_types" }
anyhow = "1.0"
futures = { version = "0.3.5", features = ["async-await", "compat"] }