##// END OF EJS Templates
rust-chg: add project skeleton...
Yuya Nishihara -
r40003:aab43d58 default
parent child Browse files
Show More
@@ -0,0 +1,18 b''
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"
12 tokio = "0.1"
13 tokio-hglib = "0.2"
14 # TODO: "^0.2.3" once released. we need AsRawFd support.
15 tokio-process = { git = "https://github.com/alexcrichton/tokio-process" }
16
17 [build-dependencies]
18 cc = "1.0"
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
@@ -0,0 +1,7 b''
1 // Copyright 2018 Yuya Nishihara <yuya@tcha.org>
2 //
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.
5
6 fn main() {
7 }
@@ -56,6 +56,7 b' locale/*/LC_MESSAGES/hg.mo'
56 hgext/__index__.py
56 hgext/__index__.py
57
57
58 rust/target/
58 rust/target/
59 rust/*/target/
59
60
60 # Generated wheels
61 # Generated wheels
61 wheelhouse/
62 wheelhouse/
@@ -1,2 +1,3 b''
1 [workspace]
1 [workspace]
2 members = ["hgcli"]
2 members = ["hgcli"]
3 exclude = ["chg"]
General Comments 0
You need to be logged in to leave comments. Login now