sapling/eden/mononoke/blobstore/Cargo.toml
Lukas Piatkowski bdb3b625d1 blobstore: cover more blobstores to make them OSS buildable
Reviewed By: farnz

Differential Revision: D20221288

fbshipit-source-id: 708be6d429e673dcb4201b88541dff2bf9fca153
2020-03-06 01:33:38 -08:00

36 lines
980 B
TOML

[package]
name = "blobstore"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs", "test/**/*.rs"]
[lib]
path = "src/lib.rs"
[[test]]
name = "blobstore_test"
path = "test/main.rs"
[dependencies]
context = { path = "../server/context" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
bytes = { version = "0.5", features = ["serde"] }
futures = "0.1"
thiserror = "1.0"
[dev-dependencies]
fileblob = { path = "fileblob" }
memblob = { path = "memblob" }
mononoke_types = { path = "../mononoke_types" }
redactedblobstore = { path = "redactedblobstore" }
lazy_static = "1.0"
rand = { version = "0.7", features = ["small_rng"] }
tempdir = "0.3"
tokio = "0.1"
tokio-compat = "0.1"