sapling/eden/mononoke/hgproto/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

29 lines
1.1 KiB
TOML

[package]
name = "hgproto"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
bytes-old = { package = "bytes", version = "0.4", features = ["serde"] }
failure_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures = "0.1.31"
futures_ext = { package = "futures_01_ext", version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
hex = "0.4"
itertools = "0.8"
limited_async_read = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
mercurial_bundles = { version = "0.1.0", path = "../mercurial/bundles" }
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
nom = { version = "3", features = ["verbose-errors"] }
slog = { version = "2.5", features = ["max_level_debug"] }
thiserror = "1.0"
tokio-io = "0.1"
[dev-dependencies]
maplit = "1.0"
mercurial_types-mocks = { version = "0.1.0", path = "../mercurial/types/mocks" }
quickcheck = "0.9"