Mercurial > hg
annotate rust/chg/Cargo.toml @ 42570:75fd9421440b
crecord: add "x" alias for space, remove test-only "TOGGLE" alias
Differential Revision: https://phab.mercurial-scm.org/D6618
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Mon, 08 Jul 2019 12:17:06 -0700 |
parents | 7623199def92 |
children | 1c385b99a360 |
rev | line source |
---|---|
39967 | 1 [package] |
2 name = "chg" | |
3 version = "0.1.0" | |
4 authors = ["Yuya Nishihara <yuya@tcha.org>"] | |
5 description = "Client for Mercurial command server with cHg extension" | |
6 license = "GPL-2.0+" | |
7 | |
8 [dependencies] | |
9 bytes = "0.4" | |
10 futures = "0.1" | |
11 libc = "0.2" | |
40287
7623199def92
rust-chg: depend on log and tokio_timer
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
12 log = { version = "0.4", features = ["std"] } |
39967 | 13 tokio = "0.1" |
14 tokio-hglib = "0.2" | |
15 # TODO: "^0.2.3" once released. we need AsRawFd support. | |
16 tokio-process = { git = "https://github.com/alexcrichton/tokio-process" } | |
40287
7623199def92
rust-chg: depend on log and tokio_timer
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
17 tokio-timer = "0.2" |
39967 | 18 |
19 [build-dependencies] | |
20 cc = "1.0" |