##// END OF EJS Templates
rust-chg: exclude futures-dependent modules from build and break things...
Yuya Nishihara -
r45230:8685add1 default
parent child Browse files
Show More
@@ -1,20 +1,23
1 [package]
1 [package]
2 name = "chg"
2 name = "chg"
3 version = "0.1.0"
3 version = "0.1.0"
4 authors = ["Yuya Nishihara <yuya@tcha.org>"]
4 authors = ["Yuya Nishihara <yuya@tcha.org>"]
5 description = "Client for Mercurial command server with cHg extension"
5 description = "Client for Mercurial command server with cHg extension"
6 license = "GPL-2.0+"
6 license = "GPL-2.0+"
7 edition = "2018"
7 edition = "2018"
8
8
9 # TODO: enable auto discovery
10 autobins = false
11
9 [dependencies]
12 [dependencies]
10 bytes = "0.4"
13 bytes = "0.4"
11 futures = "0.1"
14 futures = "0.1"
12 libc = "0.2"
15 libc = "0.2"
13 log = { version = "0.4", features = ["std"] }
16 log = { version = "0.4", features = ["std"] }
14 tokio = "0.1"
17 tokio = "0.1"
15 tokio-hglib = "0.2"
18 tokio-hglib = "0.2"
16 tokio-process = "0.2.3"
19 tokio-process = "0.2.3"
17 tokio-timer = "0.2"
20 tokio-timer = "0.2"
18
21
19 [build-dependencies]
22 [build-dependencies]
20 cc = "1.0"
23 cc = "1.0"
@@ -1,15 +1,15
1 // Copyright 2018 Yuya Nishihara <yuya@tcha.org>
1 // Copyright 2018 Yuya Nishihara <yuya@tcha.org>
2 //
2 //
3 // This software may be used and distributed according to the terms of the
3 // This software may be used and distributed according to the terms of the
4 // GNU General Public License version 2 or any later version.
4 // GNU General Public License version 2 or any later version.
5
5
6 mod attachio;
6 //mod attachio;
7 mod clientext;
7 //mod clientext;
8 pub mod locator;
8 //pub mod locator;
9 pub mod message;
9 pub mod message;
10 pub mod procutil;
10 pub mod procutil;
11 mod runcommand;
11 //mod runcommand;
12 mod uihandler;
12 //mod uihandler;
13
13
14 pub use clientext::ChgClientExt;
14 //pub use clientext::ChgClientExt;
15 pub use uihandler::{ChgUiHandler, SystemHandler};
15 //pub use uihandler::{ChgUiHandler, SystemHandler};
General Comments 0
You need to be logged in to leave comments. Login now