sapling/eden/mononoke/filestore/Cargo.toml
Simon Farnsworth 92fce3d518 Clean out unused deps from our TARGETS files
Summary:
We had accumulated lots of unused dependendencies, and had several test_deps in deps instead. Clean this all up to reduce build times and speed up autocargo processing.

Net removal is of around 500 unneeded dependency lines, which represented false dependencies; by removing them, we should get more parallelism in dev builds, and less overbuilding in CI.

Reviewed By: krallin, StanislavGlebik

Differential Revision: D20999762

fbshipit-source-id: 4db3772cbc3fb2af09a16601bc075ae8ed6f0c75
2020-04-14 03:38:11 -07:00

38 lines
1.2 KiB
TOML

[package]
name = "filestore"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
blobstore = { path = "../blobstore" }
context = { path = "../server/context" }
mononoke_types = { path = "../mononoke_types" }
cloned = { 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"] }
digest = "0.8"
futures-old = { package = "futures", version = "0.1" }
futures-util = "0.3"
itertools = "0.8"
sha-1 = "0.8"
sha2 = "0.8"
slog = { version="2.5", features=["max_level_debug"] }
thiserror = "1.0"
tokio = "0.1"
[dev-dependencies]
memblob = { path = "../blobstore/memblob" }
mononoke_types-mocks = { path = "../mononoke_types/mocks" }
async_unit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
assert_matches = "1.3"
futures = { version = "0.3", features = ["async-await", "compat"] }
lazy_static = "1.0"
quickcheck = "0.9"
rand = { version = "0.7", features = ["small_rng"] }
tokio-compat = "0.1"