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

30 lines
1001 B
TOML

[package]
name = "manifest"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/*.rs"]
[dependencies]
blobstore = { path = "../blobstore" }
bounded_traversal = { path = "../common/bounded_traversal" }
context = { path = "../server/context" }
mononoke_types = { path = "../mononoke_types" }
borrowed = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
async-stream = "0.3"
async-trait = "0.1.29"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
maplit = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_derive = "1.0"
[dev-dependencies]
memblob = { path = "../blobstore/memblob" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
pretty_assertions = "0.6"
serde_cbor = "0.11"
tokio = { version = "=0.2.13", features = ["full"] }