sapling/eden/mononoke/derived_data/Cargo.toml
Thomas Orozco 097e4ad00c mononoke: remove tokio-compat (i.e. use tokio 0.2 exclusively)
Summary:
The earlier diffs in this stack have removed all our dependencies on the Tokio
0.1 runtime environment (so, basically, `tokio-executor` and `tokio-timer`), so
we don't need this anymore.

We do still have some deps on `tokio-io`, but this is just traits + helpers,
so this doesn't actually prevent us from removing the 0.1 runtime!

Note that we still have a few transitive dependencies on Tokio 0.1:

- async-unit uses tokio-compat
- hg depends on tokio-compat too, and we depend on it in tests

This isn't the end of the world though, we can live with that :)

Reviewed By: ahornby

Differential Revision: D26544410

fbshipit-source-id: 24789be2402c3f48220dcaad110e8246ef02ecd8
2021-02-22 09:22:42 -08:00

47 lines
2.4 KiB
TOML

[package]
name = "derived_data"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.29"
auto_impl = "0.4"
blobrepo = { path = "../blobrepo", version = "0.1.0" }
blobstore = { path = "../blobstore", version = "0.1.0" }
bounded_traversal = { path = "../common/bounded_traversal", version = "0.1.0" }
cacheblob = { path = "../blobstore/cacheblob", version = "0.1.0" }
context = { path = "../server/context", version = "0.1.0" }
futures = { version = "0.3.5", features = ["async-await", "compat"] }
futures_stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
itertools = "0.8"
lock_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
metaconfig_types = { path = "../metaconfig/types", version = "0.1.0" }
mononoke_types = { path = "../mononoke_types", version = "0.1.0" }
rand = { version = "0.7", features = ["small_rng"] }
scuba_ext = { path = "../common/scuba_ext", version = "0.1.0" }
slog = { version = "2.5", features = ["max_level_debug"] }
stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
thiserror = "1.0"
time_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
tokio = { version = "0.2.25", features = ["full", "test-util"] }
topo_sort = { path = "../common/topo_sort", version = "0.1.0" }
tunables = { path = "../tunables", version = "0.1.0" }
[dev-dependencies]
blobrepo_factory = { path = "../blobrepo/factory", version = "0.1.0" }
blobrepo_hg = { path = "../blobrepo/blobrepo_hg", version = "0.1.0" }
blobrepo_override = { path = "../blobrepo/override", version = "0.1.0" }
bookmarks = { path = "../bookmarks", version = "0.1.0" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
filestore = { path = "../filestore", version = "0.1.0" }
fixtures = { path = "../tests/fixtures", version = "0.1.0" }
lazy_static = "1.0"
maplit = "1.0"
mercurial_types = { path = "../mercurial/types", version = "0.1.0" }
revset = { path = "../revset", version = "0.1.0" }
tests_utils = { path = "../tests/utils", version = "0.1.0" }