rust/chg/Cargo.toml
author Yuya Nishihara <yuya@tcha.org>
Fri, 10 Apr 2020 21:44:46 +0900
changeset 44736 8685add122ff
parent 44688 1f5ab1a9363d
child 44737 e9e44e61042b
permissions -rw-r--r--
rust-chg: exclude futures-dependent modules from build and break things It's impractical to upgrade the codebase incrementally since futures 0.1 and 0.3 APIs are fundamentally different. So this patch temporarily excludes futures-dependent modules from the build. These modules will be upgraded and re-enabled one by one. Differential Revision: https://phab.mercurial-scm.org/D8440

[package]
name = "chg"
version = "0.1.0"
authors = ["Yuya Nishihara <yuya@tcha.org>"]
description = "Client for Mercurial command server with cHg extension"
license = "GPL-2.0+"
edition = "2018"

# TODO: enable auto discovery
autobins = false

[dependencies]
bytes = "0.4"
futures = "0.1"
libc = "0.2"
log = { version = "0.4", features = ["std"] }
tokio = "0.1"
tokio-hglib = "0.2"
tokio-process = "0.2.3"
tokio-timer = "0.2"

[build-dependencies]
cc = "1.0"