##// END OF EJS Templates
rust-chg: add project skeleton...
Yuya Nishihara -
r40003:aab43d58 default
parent child Browse files
Show More
@@ -0,0 +1,18
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
@@ -0,0 +1,7
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 }
@@ -1,69 +1,70
1 1 syntax: glob
2 2
3 3 *.elc
4 4 *.tmp
5 5 *.orig
6 6 *.rej
7 7 *~
8 8 *.mergebackup
9 9 *.o
10 10 *.so
11 11 *.dll
12 12 *.exe
13 13 *.pyd
14 14 *.pyc
15 15 *.pyo
16 16 *$py.class
17 17 *.swp
18 18 *.prof
19 19 *.zip
20 20 \#*\#
21 21 .\#*
22 22 tests/artifacts/cache/big-file-churn.hg
23 23 tests/.coverage*
24 24 tests/.testtimes*
25 25 tests/.hypothesis
26 26 tests/hypothesis-generated
27 27 tests/annotated
28 28 tests/exceptions
29 29 tests/*.err
30 30 tests/htmlcov
31 31 build
32 32 contrib/chg/chg
33 33 contrib/hgsh/hgsh
34 34 contrib/vagrant/.vagrant
35 35 dist
36 36 packages
37 37 doc/common.txt
38 38 doc/*.[0-9]
39 39 doc/*.[0-9].txt
40 40 doc/*.[0-9].gendoc.txt
41 41 doc/*.[0-9].{x,ht}ml
42 42 MANIFEST
43 43 MANIFEST.in
44 44 patches
45 45 mercurial/__modulepolicy__.py
46 46 mercurial/__version__.py
47 47 mercurial/hgpythonlib.h
48 48 mercurial.egg-info
49 49 .DS_Store
50 50 tags
51 51 cscope.*
52 52 .idea/*
53 53 .asv/*
54 54 i18n/hg.pot
55 55 locale/*/LC_MESSAGES/hg.mo
56 56 hgext/__index__.py
57 57
58 58 rust/target/
59 rust/*/target/
59 60
60 61 # Generated wheels
61 62 wheelhouse/
62 63
63 64 syntax: regexp
64 65 ^\.pc/
65 66 ^\.(pydev)?project
66 67
67 68 # hackable windows distribution additions
68 69 ^hg-python
69 70 ^hg.py$
@@ -1,2 +1,3
1 1 [workspace]
2 2 members = ["hgcli"]
3 exclude = ["chg"]
General Comments 0
You need to be logged in to leave comments. Login now