sapling/eden/mononoke/blobstore/factory/Cargo.toml
Jeremy Fitzhardinge 1b4edb5567 eden: remove unused Rust dependencies
Summary:
Remove unused dependencies for Rust targets.

This failed to remove the dependencies in eden/scm/edenscmnative/bindings
because of the extra macro layer.

Manual edits (named_deps) and misc output in P133451794

Reviewed By: dtolnay

Differential Revision: D22083498

fbshipit-source-id: 170bbaf3c6d767e52e86152d0f34bf6daa198283
2020-06-17 17:55:03 -07:00

34 lines
1.4 KiB
TOML

[package]
name = "blobstore_factory"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
blobstore = { path = ".." }
blobstore_sync_queue = { path = "../../blobstore_sync_queue" }
cacheblob = { path = "../cacheblob" }
chaosblob = { path = "../chaosblob" }
fileblob = { path = "../fileblob" }
logblob = { path = "../logblob" }
memblob = { path = "../memblob" }
metaconfig_types = { path = "../../metaconfig/types" }
multiplexedblob = { path = "../multiplexedblob" }
packblob = { path = "../packblob" }
prefixblob = { path = "../prefixblob" }
readonlyblob = { path = "../readonlyblob" }
sql_construct = { path = "../../common/sql_construct" }
sql_ext = { path = "../../common/rust/sql_ext" }
sqlblob = { path = "../sqlblob" }
throttledblob = { path = "../throttledblob" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
scuba = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
sql = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
futures = { version = "0.3", features = ["async-await", "compat"] }
futures-old = { package = "futures", version = "0.1" }
slog = { version = "2.5", features = ["max_level_debug"] }