sapling/eden/mononoke/mononoke_api/Cargo.toml
Stanislau Hlebik 85469374e9 mononoke: add leases to x-repo-sync
Reviewed By: ikostia

Differential Revision: D27677897

fbshipit-source-id: e86220f23f5950130f2f4ead2743f9a9b86abed7
2021-04-12 12:08:34 -07:00

74 lines
4.5 KiB
TOML

[package]
name = "mononoke_api"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.45"
blame = { version = "0.1.0", path = "../derived_data/blame" }
blobrepo = { version = "0.1.0", path = "../blobrepo" }
blobrepo_hg = { version = "0.1.0", path = "../blobrepo/blobrepo_hg" }
blobstore = { version = "0.1.0", path = "../blobstore" }
blobstore_factory = { version = "0.1.0", path = "../blobstore/factory" }
bookmarks = { version = "0.1.0", path = "../bookmarks" }
bookmarks_movement = { version = "0.1.0", path = "../bookmarks/bookmarks_movement" }
bytes = { version = "0.5", features = ["serde"] }
cacheblob = { version = "0.1.0", path = "../blobstore/cacheblob" }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
changeset_info = { version = "0.1.0", path = "../derived_data/changeset_info" }
chrono = { version = "0.4", features = ["serde"] }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
context = { version = "0.1.0", path = "../server/context" }
cross_repo_sync = { version = "0.1.0", path = "../commit_rewriting/cross_repo_sync" }
derived_data = { version = "0.1.0", path = "../derived_data" }
fastlog = { version = "0.1.0", path = "../derived_data/fastlog" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
filestore = { version = "0.1.0", path = "../filestore" }
fsnodes = { version = "0.1.0", path = "../derived_data/fsnodes" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
futures-old = { package = "futures", version = "0.1.31" }
futures_stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_watchdog = { version = "0.1.0", path = "../common/futures_watchdog" }
hook_manager_factory = { version = "0.1.0", path = "../hooks/hook_manager_factory" }
hooks = { version = "0.1.0", path = "../hooks" }
itertools = "0.8"
live_commit_sync_config = { version = "0.1.0", path = "../commit_rewriting/live_commit_sync_config" }
manifest = { version = "0.1.0", path = "../manifest" }
maplit = "1.0"
mercurial_derived_data = { version = "0.1.0", path = "../derived_data/mercurial_derived_data" }
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
metaconfig_parser = { version = "0.1.0", path = "../metaconfig/parser" }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
permission_checker = { version = "0.1.0", path = "../permission_checker" }
reachabilityindex = { version = "0.1.0", path = "../reachabilityindex" }
regex = "1.4.2"
repo_factory = { version = "0.1.0", path = "../repo_factory" }
repo_read_write_status = { version = "0.1.0", path = "../repo_client/repo_read_write_status" }
revset = { version = "0.1.0", path = "../revset" }
segmented_changelog = { version = "0.1.0", path = "../segmented_changelog" }
skeleton_manifest = { version = "0.1.0", path = "../derived_data/skeleton_manifest" }
skiplist = { version = "0.1.0", path = "../reachabilityindex/skiplist" }
slog = { version = "2.5", features = ["max_level_debug"] }
sorted_vector_map = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
sql_construct = { version = "0.1.0", path = "../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../common/rust/sql_ext" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
synced_commit_mapping = { version = "0.1.0", path = "../commit_rewriting/synced_commit_mapping" }
thiserror = "1.0"
tunables = { version = "0.1.0", path = "../tunables" }
warm_bookmarks_cache = { version = "0.1.0", path = "../bookmarks/warm_bookmarks_cache" }
xdiff = { version = "0.1.0", path = "../../scm/lib/xdiff" }
[dev-dependencies]
assert_matches = "1.5"
cross_repo_sync_test_utils = { version = "0.1.0", path = "../commit_rewriting/cross_repo_sync/test_utils" }
derived_data_utils = { version = "0.1.0", path = "../derived_data/utils" }
fbinit-tokio-02 = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
fixtures = { version = "0.1.0", path = "../tests/fixtures" }
test_repo_factory = { version = "0.1.0", path = "../repo_factory/test_repo_factory" }
tests_utils = { version = "0.1.0", path = "../tests/utils" }