sapling/eden/mononoke/backsyncer/Cargo.toml
Pavel Aslanov d13768d768 move DangerousOverride into a separate crate blobrepo_override
Summary: DangerousOverride is moved into a separate crate. Not only it is usually not needed but it was introducing dependencies on mercurial crate.

Reviewed By: StanislavGlebik

Differential Revision: D22115015

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

49 lines
2.0 KiB
TOML

[package]
name = "backsyncer"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
blobrepo = { path = "../blobrepo" }
blobrepo_factory = { path = "../blobrepo/factory" }
blobstore_factory = { path = "../blobstore/factory" }
bookmarks = { path = "../bookmarks" }
context = { path = "../server/context" }
cross_repo_sync = { path = "../commit_rewriting/cross_repo_sync" }
metaconfig_types = { path = "../metaconfig/types" }
mononoke_types = { path = "../mononoke_types" }
mutable_counters = { path = "../mutable_counters" }
sql_construct = { path = "../common/sql_construct" }
sql_ext = { path = "../common/rust/sql_ext" }
synced_commit_mapping = { path = "../commit_rewriting/synced_commit_mapping" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
sql = { 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" }
slog = { version = "2.5", features = ["max_level_debug"] }
thiserror = "1.0"
[dev-dependencies]
blobrepo_hg = { path = "../blobrepo/blobrepo_hg" }
blobrepo_override = { path = "../blobrepo/override" }
blobstore = { path = "../blobstore" }
bookmark_renaming = { path = "../commit_rewriting/bookmark_renaming" }
dbbookmarks = { path = "../bookmarks/dbbookmarks" }
filestore = { path = "../filestore" }
fixtures = { path = "../tests/fixtures" }
manifest = { path = "../manifest" }
mercurial_types = { path = "../mercurial/types" }
movers = { path = "../commit_rewriting/movers" }
revset = { path = "../revset" }
skiplist = { path = "../reachabilityindex/skiplist" }
tests_utils = { path = "../tests/utils" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
maplit = "1.0"
pretty_assertions = "0.6"
tokio-compat = "0.1"