sapling/eden/mononoke/blobrepo/Cargo.toml
Pavel Aslanov 6c1e575411 move HgMutationStore to attributes
Summary: move HgMutationStore to attributes, and all related methods to BlobRepoHg

Reviewed By: StanislavGlebik

Differential Revision: D22089657

fbshipit-source-id: 8fe87418ccb8a7ad43828758844bdbd73dc0573d
2020-06-22 07:29:19 -07:00

75 lines
3.0 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]
blobrepo_errors = { path = "errors" }
blobstore = { path = "../blobstore" }
bonsai_git_mapping = { path = "../bonsai_git_mapping" }
bonsai_globalrev_mapping = { path = "../bonsai_globalrev_mapping" }
bonsai_hg_mapping = { path = "../bonsai_hg_mapping" }
bookmarks = { path = "../bookmarks" }
cacheblob = { path = "../blobstore/cacheblob" }
changeset_fetcher = { path = "changeset_fetcher" }
changesets = { path = "../changesets" }
context = { path = "../server/context" }
filenodes = { path = "../filenodes" }
filestore = { path = "../filestore" }
manifest = { path = "../manifest" }
mercurial_types = { path = "../mercurial/types" }
metaconfig_types = { path = "../metaconfig/types" }
mononoke_types = { path = "../mononoke_types" }
phases = { path = "../phases" }
repo_blobstore = { path = "repo_blobstore" }
scuba_ext = { path = "../common/scuba_ext" }
topo_sort = { path = "../common/topo_sort" }
type_map = { path = "../common/type_map" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
failure_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
time_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
tracing = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
futures = { version = "0.3", features = ["async-await", "compat"] }
futures-old = { package = "futures", version = "0.1" }
futures-util = "0.3"
maplit = "1.0"
rand = { version = "0.7", features = ["small_rng"] }
slog = { version = "2.5", features = ["max_level_debug"] }
thiserror = "1.0"
tokio = { version = "=0.2.13", features = ["full"] }
uuid = { version = "0.8.1", features = ["v4"] }
[dev-dependencies]
benchmark_lib = { path = "../benchmark" }
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" }
memblob = { path = "../blobstore/memblob" }
mercurial_types-mocks = { path = "../mercurial/types/mocks" }
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"] }
rand_distr = "0.2"
rand_xorshift = "0.2"
tokio-compat = "0.1"