Skip to content

Commit c0cce76

Browse files
committed
Add setup files
1 parent ae13ff4 commit c0cce76

File tree

4 files changed

+123
-1
lines changed

4 files changed

+123
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
nimcache/
22
*.exe
3+
nimble.develop
4+
nimble.paths

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ install:
1818
# regressions of the fast-paced Nim development while maintaining the
1919
# flexibility to apply patches
2020
- curl -O -L -s -S https://raw.githubusercontent.com/status-im/nimbus-build-system/master/scripts/build_nim.sh
21+
# latest 1.6
22+
- export NIM_COMMIT="d38177b11f628d9675809bfa85356c3ee3a26fea"
2123
- env MAKE="make -j2" bash build_nim.sh Nim csources dist/nimble NimBinaries
2224
- export PATH=$PWD/Nim/bin:$PATH
2325

2426
script:
2527
- nimble install -y
2628
- nimble test
27-

config.nims

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# begin Nimble config (version 1)
2+
when fileExists("nimble.paths"):
3+
include "nimble.paths"
4+
# end Nimble config

nimble.lock

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
{
2+
"version": 1,
3+
"packages": {
4+
"unittest2": {
5+
"version": "0.0.4",
6+
"vcsRevision": "f180f596c88dfd266f746ed6f8dbebce39c824db",
7+
"url": "https://github.com/status-im/nim-unittest2.git",
8+
"downloadMethod": "git",
9+
"dependencies": [],
10+
"checksums": {
11+
"sha1": "fa309c41eaf6ef57895b9e603f2620a2f6e11780"
12+
}
13+
},
14+
"combparser": {
15+
"version": "0.2.0",
16+
"vcsRevision": "ba4464c005d7617c008e2ed2ebc1ba52feb469c6",
17+
"url": "https://github.com/PMunch/combparser",
18+
"downloadMethod": "git",
19+
"dependencies": [],
20+
"checksums": {
21+
"sha1": "a3635260961a893b88f69aac19f1b24e032a7e97"
22+
}
23+
},
24+
"stew": {
25+
"version": "0.1.0",
26+
"vcsRevision": "6ad35b876fb6ebe0dfee0f697af173acc47906ee",
27+
"url": "https://github.com/status-im/nim-stew.git",
28+
"downloadMethod": "git",
29+
"dependencies": [],
30+
"checksums": {
31+
"sha1": "46d58c4feb457f3241e3347778334e325dce5268"
32+
}
33+
},
34+
"httputils": {
35+
"version": "0.3.0",
36+
"vcsRevision": "689da19e9e9cfff4ced85e2b25c6b2b5598ed079",
37+
"url": "https://github.com/status-im/nim-http-utils.git",
38+
"downloadMethod": "git",
39+
"dependencies": [
40+
"stew"
41+
],
42+
"checksums": {
43+
"sha1": "4ad3ad68d13c50184180ab4b2eacc0bd7ed2ed44"
44+
}
45+
},
46+
"bearssl": {
47+
"version": "0.1.5",
48+
"vcsRevision": "ba80e2a0d7ae8aab666cee013e38ff8d33a3e5e7",
49+
"url": "https://github.com/status-im/nim-bearssl",
50+
"downloadMethod": "git",
51+
"dependencies": [
52+
"unittest2"
53+
],
54+
"checksums": {
55+
"sha1": "383abd5becc77bf8e365b780a29d20529e1d9c4c"
56+
}
57+
},
58+
"chronos": {
59+
"version": "3.0.11",
60+
"vcsRevision": "17fed89c99beac5a92d3668d0d3e9b0e4ac13936",
61+
"url": "https://github.com/status-im/nim-chronos.git",
62+
"downloadMethod": "git",
63+
"dependencies": [
64+
"stew",
65+
"bearssl",
66+
"httputils",
67+
"unittest2"
68+
],
69+
"checksums": {
70+
"sha1": "f6fffc87571e5f76af2a77c4ebcc0e00909ced4e"
71+
}
72+
},
73+
"testutils": {
74+
"version": "0.4.2",
75+
"vcsRevision": "aa6e5216f4b4ab5aa971cdcdd70e1ec1203cedf2",
76+
"url": "https://github.com/status-im/nim-testutils",
77+
"downloadMethod": "git",
78+
"dependencies": [
79+
"unittest2"
80+
],
81+
"checksums": {
82+
"sha1": "94427e0cce0e0c5841edcd3a6530b4e6b857a3cb"
83+
}
84+
},
85+
"faststreams": {
86+
"version": "0.3.0",
87+
"vcsRevision": "1b561a9e71b6bdad1c1cdff753418906037e9d09",
88+
"url": "https://github.com/status-im/nim-faststreams.git",
89+
"downloadMethod": "git",
90+
"dependencies": [
91+
"stew",
92+
"testutils",
93+
"chronos",
94+
"unittest2"
95+
],
96+
"checksums": {
97+
"sha1": "97edf9797924af48566a0af8267203dc21d80c77"
98+
}
99+
},
100+
"serialization": {
101+
"version": "0.1.0",
102+
"vcsRevision": "fcd0eadadde0ee000a63df8ab21dc4e9f015a790",
103+
"url": "https://github.com/status-im/nim-serialization.git",
104+
"downloadMethod": "git",
105+
"dependencies": [
106+
"faststreams",
107+
"unittest2",
108+
"stew"
109+
],
110+
"checksums": {
111+
"sha1": "fef59519892cac70cccd81b612085caaa5e3e6cf"
112+
}
113+
}
114+
}
115+
}

0 commit comments

Comments
 (0)