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

39 lines
1.4 KiB
TOML

[package]
name = "blobstore"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[[test]]
name = "blobstore_test"
path = "test/main.rs"
[dependencies]
abomonation = "0.7"
abomonation_derive = "0.5"
anyhow = "1.0"
async-trait = "0.1.45"
auto_impl = "0.4"
bytes = { version = "0.5", features = ["serde"] }
context = { version = "0.1.0", path = "../server/context" }
futures-old = { package = "futures", version = "0.1.31" }
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde_derive = "1.0"
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
strum = "0.19"
strum_macros = "0.19"
thiserror = "1.0"
zstd = "=0.5.3+zstd.1.4.5"
[dev-dependencies]
borrowed = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cacheblob = { version = "0.1.0", path = "cacheblob" }
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" }
fileblob = { version = "0.1.0", path = "fileblob" }
memblob = { version = "0.1.0", path = "memblob" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
sqlblob = { version = "0.1.0", path = "sqlblob" }
tempdir = "0.3"