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

24 lines
722 B
TOML

[package]
name = "chaosblob"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/*.rs"]
[dependencies]
blobstore = { path = ".." }
context = { path = "../../server/context" }
mononoke_types = { path = "../../mononoke_types" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
bytes = { version = "0.5", features = ["serde"] }
futures = "0.1"
rand = { version = "0.7", features = ["small_rng"] }
slog = { version="2.5", features=["max_level_debug"] }
thiserror = "1.0"
[dev-dependencies]
memblob = { path = "../memblob" }