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

38 lines
1.4 KiB
TOML

[package]
name = "gotham_ext"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-compression = { version = "0.3", features = ["all"] }
async-trait = "0.1.45"
bytes = { version = "0.5", features = ["serde"] }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cloned = { 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"
hex = "0.4"
http = "0.2"
hyper = "0.13.10"
itertools = "0.8"
lazy_static = "1.0"
load_limiter = { version = "0.1.0", path = "../load_limiter" }
mime = "0.3.14"
openssl = "0.10"
percent-encoding = "2.1"
permission_checker = { version = "0.1.0", path = "../permission_checker" }
pin-project = "0.4"
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["float_roundtrip"] }
slog = { version = "2.5", features = ["max_level_debug"] }
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
tokio = { version = "0.2.25", features = ["full", "test-util"] }
tokio-openssl = "0.4"
trust-dns-resolver = "0.19"