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

44 lines
2.0 KiB
TOML

[package]
name = "fsnodes"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[lib]
path = "lib.rs"
[dependencies]
anyhow = "1.0"
ascii = "1.0"
async-trait = "0.1.45"
blobrepo = { version = "0.1.0", path = "../../blobrepo" }
blobstore = { version = "0.1.0", path = "../../blobstore" }
borrowed = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
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" }
derived_data = { version = "0.1.0", path = ".." }
digest = "0.8"
filestore = { version = "0.1.0", path = "../../filestore" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
manifest = { version = "0.1.0", path = "../../manifest" }
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
sha-1 = "0.8"
sha2 = "0.8"
sorted_vector_map = { 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"] }
[dev-dependencies]
blobrepo_hg = { version = "0.1.0", path = "../../blobrepo/blobrepo_hg" }
bookmarks = { version = "0.1.0", path = "../../bookmarks" }
derived_data_test_utils = { version = "0.1.0", path = "../test_utils" }
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" }
mercurial_types = { version = "0.1.0", path = "../../mercurial/types" }
revset = { version = "0.1.0", path = "../../revset" }
tests_utils = { version = "0.1.0", path = "../../tests/utils" }