##// 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
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 syntax: glob
1 syntax: glob
2
2
3 *.elc
3 *.elc
4 *.tmp
4 *.tmp
5 *.orig
5 *.orig
6 *.rej
6 *.rej
7 *~
7 *~
8 *.mergebackup
8 *.mergebackup
9 *.o
9 *.o
10 *.so
10 *.so
11 *.dll
11 *.dll
12 *.exe
12 *.exe
13 *.pyd
13 *.pyd
14 *.pyc
14 *.pyc
15 *.pyo
15 *.pyo
16 *$py.class
16 *$py.class
17 *.swp
17 *.swp
18 *.prof
18 *.prof
19 *.zip
19 *.zip
20 \#*\#
20 \#*\#
21 .\#*
21 .\#*
22 tests/artifacts/cache/big-file-churn.hg
22 tests/artifacts/cache/big-file-churn.hg
23 tests/.coverage*
23 tests/.coverage*
24 tests/.testtimes*
24 tests/.testtimes*
25 tests/.hypothesis
25 tests/.hypothesis
26 tests/hypothesis-generated
26 tests/hypothesis-generated
27 tests/annotated
27 tests/annotated
28 tests/exceptions
28 tests/exceptions
29 tests/*.err
29 tests/*.err
30 tests/htmlcov
30 tests/htmlcov
31 build
31 build
32 contrib/chg/chg
32 contrib/chg/chg
33 contrib/hgsh/hgsh
33 contrib/hgsh/hgsh
34 contrib/vagrant/.vagrant
34 contrib/vagrant/.vagrant
35 dist
35 dist
36 packages
36 packages
37 doc/common.txt
37 doc/common.txt
38 doc/*.[0-9]
38 doc/*.[0-9]
39 doc/*.[0-9].txt
39 doc/*.[0-9].txt
40 doc/*.[0-9].gendoc.txt
40 doc/*.[0-9].gendoc.txt
41 doc/*.[0-9].{x,ht}ml
41 doc/*.[0-9].{x,ht}ml
42 MANIFEST
42 MANIFEST
43 MANIFEST.in
43 MANIFEST.in
44 patches
44 patches
45 mercurial/__modulepolicy__.py
45 mercurial/__modulepolicy__.py
46 mercurial/__version__.py
46 mercurial/__version__.py
47 mercurial/hgpythonlib.h
47 mercurial/hgpythonlib.h
48 mercurial.egg-info
48 mercurial.egg-info
49 .DS_Store
49 .DS_Store
50 tags
50 tags
51 cscope.*
51 cscope.*
52 .idea/*
52 .idea/*
53 .asv/*
53 .asv/*
54 i18n/hg.pot
54 i18n/hg.pot
55 locale/*/LC_MESSAGES/hg.mo
55 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/
62
63
63 syntax: regexp
64 syntax: regexp
64 ^\.pc/
65 ^\.pc/
65 ^\.(pydev)?project
66 ^\.(pydev)?project
66
67
67 # hackable windows distribution additions
68 # hackable windows distribution additions
68 ^hg-python
69 ^hg-python
69 ^hg.py$
70 ^hg.py$
@@ -1,2 +1,3
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