sapling/eden/mononoke/mercurial/revlog/Cargo.toml
Kostia Balytskyi 76471a8505 fix unused dependencies breakages
Summary: A bunch of our dependencies weren't really used, and this fact has recently became a source of hard failures. This diff is an attempt to fix it.

Reviewed By: StanislavGlebik

Differential Revision: D22136288

fbshipit-source-id: 4ae265a93e155312ae086647a27ecf1cbbd57e9c
2020-06-19 06:49:04 -07:00

31 lines
919 B
TOML

[package]
name = "mercurial_revlog"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["**/*.rs"]
[lib]
path = "lib.rs"
[dependencies]
lz4-pyframe = { path = "../../../scm/lib/lz4-pyframe" }
mercurial_types = { path = "../types" }
mononoke_types-thrift = { path = "../../mononoke_types/if" }
futures_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
ascii = "1.0"
bitflags = "1.2"
bytes = { version = "0.5", features = ["serde"] }
flate2 = { version = "1.0", features = ["tokio", "rust_backend"], default-features = false }
futures = "0.1"
memmap = "0.7"
nom = { version = "3", features = [ "verbose-errors" ] }
thiserror = "1.0"
[dev-dependencies]
mercurial_types-mocks = { path = "../types/mocks" }
failure_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
assert_matches = "1.3"