sapling/eden/mononoke/cache_warmup/Cargo.toml
Thomas Orozco 2a803fc10d third-party/rust: update futures
Summary:
Those newer versions of Futures have compatibility improvements with Tokio,
notably:

- https://github.com/rust-lang/futures-rs/pull/2333
- https://github.com/rust-lang/futures-rs/pull/2358

Reviewed By: farnz

Differential Revision: D26778794

fbshipit-source-id: 5a9dc002083e5edfa5c614d8d2242e586a93fcf6
2021-03-04 06:42:55 -08:00

33 lines
1.5 KiB
TOML

[package]
name = "cache_warmup"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[lib]
path = "src/cache_warmup.rs"
[dependencies]
anyhow = "1.0"
blobrepo = { version = "0.1.0", path = "../blobrepo" }
blobrepo_hg = { version = "0.1.0", path = "../blobrepo/blobrepo_hg" }
blobstore = { version = "0.1.0", path = "../blobstore" }
bookmarks = { version = "0.1.0", path = "../bookmarks" }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
context = { version = "0.1.0", path = "../server/context" }
derived_data = { version = "0.1.0", path = "../derived_data" }
derived_data_filenodes = { version = "0.1.0", path = "../derived_data/filenodes" }
filenodes = { version = "0.1.0", path = "../filenodes" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
futures_stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
manifest = { version = "0.1.0", path = "../manifest" }
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
microwave = { version = "0.1.0", path = "../microwave" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
revset = { version = "0.1.0", path = "../revset" }
slog = { version = "2.5", features = ["max_level_debug"] }
thiserror = "1.0"
tokio = { version = "0.2.25", features = ["full", "test-util"] }