sapling/eden/mononoke/mononoke_api_hg/Cargo.toml
Andrey Chursin 0be8e8ce29 vfs: introduce AsyncVfs
Summary:
AsyncVfs provides async vfs interface.
It will be used in the native checkout instead of current use case that spawns blocking tokio tasks for VFS action

Reviewed By: quark-zju

Differential Revision: D26801250

fbshipit-source-id: bb26c4fc8acac82f4b55bb3f2f3964a6d0b64014
2021-03-05 21:47:51 -08:00

36 lines
1.8 KiB
TOML

[package]
name = "mononoke_api_hg"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.45"
blobrepo = { version = "0.1.0", path = "../blobrepo" }
blobrepo_hg = { version = "0.1.0", path = "../blobrepo/blobrepo_hg" }
blobstore = { version = "0.1.0", path = "../blobstore" }
bytes = { version = "0.5", features = ["serde"] }
context = { version = "0.1.0", path = "../server/context" }
filestore = { version = "0.1.0", path = "../filestore" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
getbundle_response = { version = "0.1.0", path = "../repo_client/getbundle_response" }
hgproto = { version = "0.1.0", path = "../hgproto" }
manifest = { version = "0.1.0", path = "../manifest" }
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mononoke_api = { version = "0.1.0", path = "../mononoke_api" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
remotefilelog = { version = "0.1.0", path = "../repo_client/remotefilelog" }
repo_client = { version = "0.1.0", path = "../repo_client" }
revisionstore_types = { version = "0.1.0", path = "../../scm/lib/revisionstore/types" }
segmented_changelog = { version = "0.1.0", path = "../segmented_changelog" }
[dev-dependencies]
blobrepo_factory = { version = "0.1.0", path = "../blobrepo/factory" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
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" }
tests_utils = { version = "0.1.0", path = "../tests/utils" }