sapling/eden/mononoke/blobrepo/blobsync/Cargo.toml
Lukas Piatkowski fa1a195fd0 mononoke/blobstore: pass CoreContext via borrowed instead of owned value
Summary: Follow up after removing 'static from blobstore.

Reviewed By: StanislavGlebik

Differential Revision: D25182106

fbshipit-source-id: e13a7a31d71b4674425123268e655ae66127f1b7
2020-11-27 03:31:07 -08:00

28 lines
1.1 KiB
TOML

[package]
name = "blobsync"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
blobstore = { path = "../../blobstore" }
context = { path = "../../server/context" }
filestore = { path = "../../filestore" }
mononoke_types = { path = "../../mononoke_types" }
repo_blobstore = { path = "../repo_blobstore" }
futures_ext = { package = "futures_01_ext", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
futures-old = { package = "futures", version = "0.1" }
[dev-dependencies]
memblob = { path = "../../blobstore/memblob" }
redactedblobstore = { path = "../../blobstore/redactedblobstore" }
scuba_ext = { path = "../../common/scuba_ext" }
borrowed = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
bytes = { version = "0.5", features = ["serde"] }
futures = { version = "0.3.5", features = ["async-await", "compat"] }
tokio = { version = "=0.2.13", features = ["full"] }