sapling/eden/mononoke/blobstore_sync_queue/Cargo.toml

30 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "blobstore_sync_queue"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[[test]]
name = "blobstore_sync_queue_test"
path = "test/main.rs"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.29"
auto_impl = "0.4"
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
context = { version = "0.1.0", path = "../server/context" }
futures = { version = "0.3.5", features = ["async-await", "compat"] }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
sql_construct = { version = "0.1.0", path = "../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../common/rust/sql_ext" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
tokio = { version = "0.2.25", features = ["full", "test-util"] }
uuid = { version = "0.8.1", features = ["v4"] }
[dev-dependencies]
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }