sapling/eden/mononoke/edenapi_service/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

40 lines
1.8 KiB
TOML

[package]
name = "edenapi_service"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.45"
bytes = { version = "0.5", 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" }
edenapi_types = { version = "0.1.0", path = "../../scm/lib/edenapi/types" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
gotham = { version = "=0.5.0", default-features = false }
gotham_derive = "=0.5.0"
gotham_ext = { version = "0.1.0", path = "../gotham_ext" }
http = "0.2"
hyper = "0.13.10"
load_limiter = { version = "0.1.0", path = "../load_limiter" }
manifest = { version = "0.1.0", path = "../manifest" }
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
mime = "0.3.14"
mononoke_api = { version = "0.1.0", path = "../mononoke_api" }
mononoke_api_hg = { version = "0.1.0", path = "../mononoke_api_hg" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
once_cell = "1.4"
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde_cbor = "0.11"
serde_json = { version = "1.0", features = ["float_roundtrip"] }
slog = { version = "2.5", features = ["max_level_debug"] }
sshrelay = { version = "0.1.0", path = "../sshrelay" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
thiserror = "1.0"
tokio = { version = "0.2.25", features = ["full", "test-util"] }
types = { version = "0.1.0", path = "../../scm/lib/types" }