sapling/eden/mononoke/blobrepo/Cargo.toml
Pavel Aslanov 48b6813a06 convert save_bonsai_changesets to new type futures
Summary:
- convert save_bonsai_changesets to new type futures
- `blobrepo:blobrepo` is free from old futures deps

Reviewed By: StanislavGlebik

Differential Revision: D25197060

fbshipit-source-id: 910bd3f9674094b56e1133d7799cefea56c84123
2020-11-30 12:00:22 -08:00

65 lines
2.4 KiB
TOML

[package]
name = "blobrepo"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs", "test/**/*.rs"]
[lib]
path = "src/lib.rs"
[[test]]
name = "blobrepo_test"
path = "test/main.rs"
[dependencies]
blobstore = { path = "../blobstore" }
bonsai_git_mapping = { path = "../bonsai_git_mapping" }
bonsai_globalrev_mapping = { path = "../bonsai_globalrev_mapping" }
bookmarks = { path = "../bookmarks" }
cacheblob = { path = "../blobstore/cacheblob" }
changeset_fetcher = { path = "changeset_fetcher" }
changesets = { path = "../changesets" }
context = { path = "../server/context" }
filestore = { path = "../filestore" }
metaconfig_types = { path = "../metaconfig/types" }
mononoke_types = { path = "../mononoke_types" }
phases = { path = "../phases" }
repo_blobstore = { path = "repo_blobstore" }
topo_sort = { path = "../common/topo_sort" }
type_map = { path = "../common/type_map" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
[dev-dependencies]
benchmark_lib = { path = "../benchmark" }
blobrepo_errors = { path = "errors" }
blobrepo_factory = { path = "factory" }
blobrepo_hg = { path = "blobrepo_hg" }
cmdlib = { path = "../cmdlib" }
derived_data = { path = "../derived_data" }
derived_data_filenodes = { path = "../derived_data/filenodes" }
fixtures = { path = "../tests/fixtures" }
manifest = { path = "../manifest" }
memblob = { path = "../blobstore/memblob" }
mercurial_derived_data = { path = "../derived_data/mercurial_derived_data" }
mercurial_types = { path = "../mercurial/types" }
mercurial_types-mocks = { path = "../mercurial/types/mocks" }
scuba_ext = { path = "../common/scuba_ext" }
tests_utils = { path = "../tests/utils" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { package = "futures_01_ext", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
ascii = "1.0"
assert_matches = "1.3"
async-trait = "0.1.29"
bytes = { version = "0.5", features = ["serde"] }
futures-old = { package = "futures", version = "0.1" }
maplit = "1.0"
rand = { version = "0.7", features = ["small_rng"] }
rand_distr = "0.2"
rand_xorshift = "0.2"
tokio-compat = "0.1"