sapling/eden/mononoke/blobstore/packblob/Cargo.toml
Alex Hornby 42f5c54104 mononoke: remove unnecessary clone in packblob
Summary: Remove unnecessary clone in packblob along with the Clone constraint on the inner blobstore.

Reviewed By: krallin

Differential Revision: D24109293

fbshipit-source-id: b47e68e63b6ffda95d28d974ed6883e4ae31b3a1
2020-10-06 03:34:36 -07:00

30 lines
928 B
TOML

[package]
name = "packblob"
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" }
packblob-thrift = { path = "if" }
zstdelta = { path = "../../../scm/lib/zstdelta" }
fbthrift = { git = "https://github.com/facebook/fbthrift.git", branch = "master" }
anyhow = "1.0"
ascii = "1.0"
bufsize = "0.5"
bytes = { version = "0.5", features = ["serde"] }
futures = { version = "0.3.5", features = ["async-await", "compat"] }
futures-old = { package = "futures", version = "0.1" }
zstd = "=0.5.3+zstd.1.4.5"
[dev-dependencies]
memblob = { path = "../memblob" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
rand = { version = "0.7", features = ["small_rng"] }
rand_xorshift = "0.2"
tokio-compat = "0.1"