[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" } futures_ext = { 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"] } futures-old = { package = "futures", version = "0.1" } [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_types = { path = "../mercurial/types" } mercurial_types-mocks = { path = "../mercurial/types/mocks" } scuba_ext = { path = "../common/scuba_ext" } tests_utils = { path = "../tests/utils" } async_unit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" } fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" } ascii = "1.0" assert_matches = "1.3" bytes = { version = "0.5", features = ["serde"] } maplit = "1.0" rand = { version = "0.7", features = ["small_rng"] } rand_distr = "0.2" rand_xorshift = "0.2" tokio-compat = "0.1"