Mercurial > templog
annotate rust/Cargo.lock @ 630:7e9041534891 rust
commit the comment
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 19 Apr 2019 13:58:56 +0800 |
parents | d5075136442f |
children | c57821a60e51 |
rev | line source |
---|---|
630 | 1 # This file is automatically @generated by Cargo. |
2 # It is not intended for manual editing. | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
3 [[package]] |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
4 name = "aho-corasick" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
5 version = "0.5.3" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
6 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
7 dependencies = [ |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
8 "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", |
587 | 9 ] |
10 | |
11 [[package]] | |
597 | 12 name = "aho-corasick" |
625 | 13 version = "0.6.4" |
597 | 14 source = "registry+https://github.com/rust-lang/crates.io-index" |
15 dependencies = [ | |
625 | 16 "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
597 | 17 ] |
18 | |
19 [[package]] | |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
20 name = "atomicwrites" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
21 version = "0.1.3" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
22 source = "registry+https://github.com/rust-lang/crates.io-index" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
23 dependencies = [ |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
24 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
25 "nix 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
26 "tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
27 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
28 ] |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
29 |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
30 [[package]] |
616 | 31 name = "base64" |
625 | 32 version = "0.4.2" |
616 | 33 source = "registry+https://github.com/rust-lang/crates.io-index" |
34 dependencies = [ | |
625 | 35 "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
36 ] | |
37 | |
38 [[package]] | |
39 name = "base64" | |
40 version = "0.6.0" | |
41 source = "registry+https://github.com/rust-lang/crates.io-index" | |
42 dependencies = [ | |
43 "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
44 "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
616 | 45 ] |
46 | |
47 [[package]] | |
620 | 48 name = "bitflags" |
49 version = "0.4.0" | |
50 source = "registry+https://github.com/rust-lang/crates.io-index" | |
51 | |
52 [[package]] | |
625 | 53 name = "bitflags" |
54 version = "0.7.0" | |
55 source = "registry+https://github.com/rust-lang/crates.io-index" | |
56 | |
57 [[package]] | |
616 | 58 name = "byteorder" |
625 | 59 version = "1.2.1" |
616 | 60 source = "registry+https://github.com/rust-lang/crates.io-index" |
61 | |
62 [[package]] | |
619 | 63 name = "bytes" |
625 | 64 version = "0.4.5" |
619 | 65 source = "registry+https://github.com/rust-lang/crates.io-index" |
66 dependencies = [ | |
625 | 67 "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
68 "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
619 | 69 ] |
70 | |
71 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
72 name = "cfg-if" |
625 | 73 version = "0.1.2" |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
74 source = "registry+https://github.com/rust-lang/crates.io-index" |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
75 |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
76 [[package]] |
597 | 77 name = "docopt" |
78 version = "0.7.0" | |
79 source = "registry+https://github.com/rust-lang/crates.io-index" | |
80 dependencies = [ | |
625 | 81 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", |
82 "regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
83 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", | |
597 | 84 "strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", |
85 ] | |
86 | |
87 [[package]] | |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
88 name = "dtoa" |
625 | 89 version = "0.4.2" |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
90 source = "registry+https://github.com/rust-lang/crates.io-index" |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
91 |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
92 [[package]] |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
93 name = "env_logger" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
94 version = "0.3.5" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
95 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
96 dependencies = [ |
625 | 97 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
98 "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
99 ] |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
100 |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
101 [[package]] |
625 | 102 name = "fuchsia-zircon" |
103 version = "0.2.1" | |
104 source = "registry+https://github.com/rust-lang/crates.io-index" | |
105 dependencies = [ | |
106 "fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
107 ] | |
108 | |
109 [[package]] | |
110 name = "fuchsia-zircon-sys" | |
111 version = "0.2.0" | |
112 source = "registry+https://github.com/rust-lang/crates.io-index" | |
113 dependencies = [ | |
114 "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
115 ] | |
116 | |
117 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
118 name = "futures" |
625 | 119 version = "0.1.17" |
587 | 120 source = "registry+https://github.com/rust-lang/crates.io-index" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
121 |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
122 [[package]] |
627 | 123 name = "futures-await" |
124 version = "0.1.0" | |
125 source = "registry+https://github.com/rust-lang/crates.io-index" | |
126 dependencies = [ | |
127 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
128 "futures-await-async-macro 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
129 "futures-await-await-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
130 ] | |
131 | |
132 [[package]] | |
133 name = "futures-await-async-macro" | |
134 version = "0.1.1" | |
135 source = "registry+https://github.com/rust-lang/crates.io-index" | |
136 dependencies = [ | |
137 "futures-await-quote 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
138 "futures-await-syn 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
139 "futures-await-synom 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
140 "proc-macro2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
141 ] | |
142 | |
143 [[package]] | |
144 name = "futures-await-await-macro" | |
145 version = "0.1.0" | |
146 source = "registry+https://github.com/rust-lang/crates.io-index" | |
147 | |
148 [[package]] | |
149 name = "futures-await-quote" | |
150 version = "0.4.0" | |
151 source = "registry+https://github.com/rust-lang/crates.io-index" | |
152 dependencies = [ | |
153 "proc-macro2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
154 ] | |
155 | |
156 [[package]] | |
157 name = "futures-await-syn" | |
158 version = "0.12.0" | |
159 source = "registry+https://github.com/rust-lang/crates.io-index" | |
160 dependencies = [ | |
161 "futures-await-quote 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
162 "futures-await-synom 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
163 "proc-macro2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
164 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
165 ] | |
166 | |
167 [[package]] | |
168 name = "futures-await-synom" | |
169 version = "0.12.0" | |
170 source = "registry+https://github.com/rust-lang/crates.io-index" | |
171 dependencies = [ | |
172 "futures-await-quote 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
173 "proc-macro2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
174 ] | |
175 | |
176 [[package]] | |
601 | 177 name = "futures-cpupool" |
625 | 178 version = "0.1.7" |
601 | 179 source = "registry+https://github.com/rust-lang/crates.io-index" |
180 dependencies = [ | |
625 | 181 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", |
182 "num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
601 | 183 ] |
184 | |
185 [[package]] | |
625 | 186 name = "httparse" |
187 version = "1.2.3" | |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
188 source = "registry+https://github.com/rust-lang/crates.io-index" |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
189 |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
190 [[package]] |
625 | 191 name = "hyper" |
192 version = "0.11.7" | |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
193 source = "registry+https://github.com/rust-lang/crates.io-index" |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
194 dependencies = [ |
625 | 195 "base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", |
196 "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
197 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
198 "futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | |
199 "httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
200 "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
201 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
202 "mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
203 "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
204 "relay 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
205 "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", | |
206 "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
207 "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | |
208 "tokio-proto 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
209 "tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
210 "unicase 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
211 ] |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
212 |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
213 [[package]] |
619 | 214 name = "iovec" |
625 | 215 version = "0.1.1" |
619 | 216 source = "registry+https://github.com/rust-lang/crates.io-index" |
217 dependencies = [ | |
625 | 218 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
619 | 219 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
220 ] | |
221 | |
222 [[package]] | |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
223 name = "itoa" |
625 | 224 version = "0.3.4" |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
225 source = "registry+https://github.com/rust-lang/crates.io-index" |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
226 |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
227 [[package]] |
587 | 228 name = "kernel32-sys" |
229 version = "0.2.2" | |
230 source = "registry+https://github.com/rust-lang/crates.io-index" | |
231 dependencies = [ | |
232 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
233 "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
234 ] | |
235 | |
236 [[package]] | |
625 | 237 name = "language-tags" |
238 version = "0.2.2" | |
239 source = "registry+https://github.com/rust-lang/crates.io-index" | |
240 | |
241 [[package]] | |
597 | 242 name = "lazy_static" |
625 | 243 version = "0.2.11" |
597 | 244 source = "registry+https://github.com/rust-lang/crates.io-index" |
245 | |
246 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
247 name = "lazycell" |
625 | 248 version = "0.5.1" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
249 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
250 |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
251 [[package]] |
587 | 252 name = "libc" |
625 | 253 version = "0.2.34" |
587 | 254 source = "registry+https://github.com/rust-lang/crates.io-index" |
255 | |
256 [[package]] | |
257 name = "log" | |
625 | 258 version = "0.3.8" |
587 | 259 source = "registry+https://github.com/rust-lang/crates.io-index" |
260 | |
261 [[package]] | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
262 name = "memchr" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
263 version = "0.1.11" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
264 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
265 dependencies = [ |
625 | 266 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
267 ] |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
268 |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
269 [[package]] |
597 | 270 name = "memchr" |
625 | 271 version = "2.0.1" |
597 | 272 source = "registry+https://github.com/rust-lang/crates.io-index" |
273 dependencies = [ | |
625 | 274 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
275 ] | |
276 | |
277 [[package]] | |
278 name = "mime" | |
279 version = "0.3.5" | |
280 source = "registry+https://github.com/rust-lang/crates.io-index" | |
281 dependencies = [ | |
282 "unicase 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
597 | 283 ] |
284 | |
285 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
286 name = "mio" |
625 | 287 version = "0.6.11" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
288 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
289 dependencies = [ |
625 | 290 "fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
291 "fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
292 "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
293 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 294 "lazycell 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
295 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", | |
296 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
619 | 297 "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 298 "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
299 "slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
300 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
301 ] |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
302 |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
303 [[package]] |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
304 name = "miow" |
619 | 305 version = "0.2.1" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
306 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
307 dependencies = [ |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
308 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 309 "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
310 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
311 "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
312 ] |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
313 |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
314 [[package]] |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
315 name = "net2" |
625 | 316 version = "0.2.31" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
317 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
318 dependencies = [ |
625 | 319 "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
320 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 321 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
322 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
323 "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
324 ] |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
325 |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
326 [[package]] |
620 | 327 name = "nix" |
328 version = "0.6.0" | |
329 source = "registry+https://github.com/rust-lang/crates.io-index" | |
330 dependencies = [ | |
331 "bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
625 | 332 "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
333 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", | |
620 | 334 "rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
335 "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", | |
336 "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
337 ] | |
338 | |
339 [[package]] | |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
340 name = "nix" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
341 version = "0.7.0" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
342 source = "registry+https://github.com/rust-lang/crates.io-index" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
343 dependencies = [ |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
344 "bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 345 "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
346 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", | |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
347 "rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
348 "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
349 "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
350 ] |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
351 |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
352 [[package]] |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
353 name = "num-traits" |
625 | 354 version = "0.1.41" |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
355 source = "registry+https://github.com/rust-lang/crates.io-index" |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
356 |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
357 [[package]] |
601 | 358 name = "num_cpus" |
625 | 359 version = "1.7.0" |
601 | 360 source = "registry+https://github.com/rust-lang/crates.io-index" |
361 dependencies = [ | |
625 | 362 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
601 | 363 ] |
364 | |
365 [[package]] | |
625 | 366 name = "percent-encoding" |
367 version = "1.0.1" | |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
368 source = "registry+https://github.com/rust-lang/crates.io-index" |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
369 |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
370 [[package]] |
627 | 371 name = "proc-macro2" |
372 version = "0.1.10" | |
373 source = "registry+https://github.com/rust-lang/crates.io-index" | |
374 dependencies = [ | |
375 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
376 ] | |
377 | |
378 [[package]] | |
595 | 379 name = "quote" |
619 | 380 version = "0.3.15" |
595 | 381 source = "registry+https://github.com/rust-lang/crates.io-index" |
382 | |
383 [[package]] | |
592
03b48ec0bb03
fridge, types, configwaiter
Matt Johnston <matt@ucc.asn.au>
parents:
591
diff
changeset
|
384 name = "rand" |
625 | 385 version = "0.3.18" |
592
03b48ec0bb03
fridge, types, configwaiter
Matt Johnston <matt@ucc.asn.au>
parents:
591
diff
changeset
|
386 source = "registry+https://github.com/rust-lang/crates.io-index" |
03b48ec0bb03
fridge, types, configwaiter
Matt Johnston <matt@ucc.asn.au>
parents:
591
diff
changeset
|
387 dependencies = [ |
625 | 388 "fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
389 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", | |
592
03b48ec0bb03
fridge, types, configwaiter
Matt Johnston <matt@ucc.asn.au>
parents:
591
diff
changeset
|
390 ] |
03b48ec0bb03
fridge, types, configwaiter
Matt Johnston <matt@ucc.asn.au>
parents:
591
diff
changeset
|
391 |
03b48ec0bb03
fridge, types, configwaiter
Matt Johnston <matt@ucc.asn.au>
parents:
591
diff
changeset
|
392 [[package]] |
598
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
393 name = "redox_syscall" |
625 | 394 version = "0.1.32" |
598
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
395 source = "registry+https://github.com/rust-lang/crates.io-index" |
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
396 |
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
397 [[package]] |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
398 name = "regex" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
399 version = "0.1.80" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
400 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
401 dependencies = [ |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
402 "aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
403 "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
404 "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
405 "thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
406 "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
407 ] |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
408 |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
409 [[package]] |
597 | 410 name = "regex" |
625 | 411 version = "0.2.3" |
597 | 412 source = "registry+https://github.com/rust-lang/crates.io-index" |
413 dependencies = [ | |
625 | 414 "aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
415 "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
416 "regex-syntax 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
417 "thread_local 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", | |
597 | 418 "utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
419 ] | |
420 | |
421 [[package]] | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
422 name = "regex-syntax" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
423 version = "0.3.9" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
424 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
425 |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
426 [[package]] |
597 | 427 name = "regex-syntax" |
625 | 428 version = "0.4.1" |
597 | 429 source = "registry+https://github.com/rust-lang/crates.io-index" |
430 | |
431 [[package]] | |
625 | 432 name = "relay" |
433 version = "0.1.0" | |
434 source = "registry+https://github.com/rust-lang/crates.io-index" | |
435 dependencies = [ | |
436 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
437 ] | |
438 | |
439 [[package]] | |
591 | 440 name = "rustc-serialize" |
625 | 441 version = "0.3.24" |
591 | 442 source = "registry+https://github.com/rust-lang/crates.io-index" |
443 | |
444 [[package]] | |
620 | 445 name = "rustc_version" |
446 version = "0.1.7" | |
447 source = "registry+https://github.com/rust-lang/crates.io-index" | |
448 dependencies = [ | |
449 "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", | |
450 ] | |
451 | |
452 [[package]] | |
625 | 453 name = "safemem" |
454 version = "0.2.0" | |
455 source = "registry+https://github.com/rust-lang/crates.io-index" | |
456 | |
457 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
458 name = "scoped-tls" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
459 version = "0.1.0" |
587 | 460 source = "registry+https://github.com/rust-lang/crates.io-index" |
461 | |
462 [[package]] | |
620 | 463 name = "semver" |
464 version = "0.1.20" | |
465 source = "registry+https://github.com/rust-lang/crates.io-index" | |
466 | |
467 [[package]] | |
595 | 468 name = "serde" |
625 | 469 version = "0.9.15" |
595 | 470 source = "registry+https://github.com/rust-lang/crates.io-index" |
471 | |
472 [[package]] | |
598
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
473 name = "serde_codegen_internals" |
622 | 474 version = "0.14.2" |
595 | 475 source = "registry+https://github.com/rust-lang/crates.io-index" |
476 dependencies = [ | |
625 | 477 "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", |
595 | 478 ] |
479 | |
480 [[package]] | |
481 name = "serde_derive" | |
625 | 482 version = "0.9.15" |
595 | 483 source = "registry+https://github.com/rust-lang/crates.io-index" |
484 dependencies = [ | |
619 | 485 "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", |
622 | 486 "serde_codegen_internals 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 487 "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", |
595 | 488 ] |
489 | |
490 [[package]] | |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
491 name = "serde_json" |
622 | 492 version = "0.9.10" |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
493 source = "registry+https://github.com/rust-lang/crates.io-index" |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
494 dependencies = [ |
625 | 495 "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
496 "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", | |
497 "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", | |
498 "serde 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)", | |
611
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
499 ] |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
500 |
f3e39e2107fd
still doesn't compile, improvements to TemplogError and tokio curl though
Matt Johnston <matt@ucc.asn.au>
parents:
609
diff
changeset
|
501 [[package]] |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
502 name = "slab" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
503 version = "0.3.0" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
504 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
505 |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
506 [[package]] |
625 | 507 name = "slab" |
508 version = "0.4.0" | |
509 source = "registry+https://github.com/rust-lang/crates.io-index" | |
510 | |
511 [[package]] | |
512 name = "smallvec" | |
513 version = "0.2.1" | |
514 source = "registry+https://github.com/rust-lang/crates.io-index" | |
515 | |
516 [[package]] | |
597 | 517 name = "strsim" |
518 version = "0.6.0" | |
519 source = "registry+https://github.com/rust-lang/crates.io-index" | |
520 | |
521 [[package]] | |
595 | 522 name = "syn" |
625 | 523 version = "0.11.11" |
595 | 524 source = "registry+https://github.com/rust-lang/crates.io-index" |
525 dependencies = [ | |
619 | 526 "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", |
527 "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
528 "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | |
529 ] | |
530 | |
531 [[package]] | |
532 name = "synom" | |
533 version = "0.11.3" | |
534 source = "registry+https://github.com/rust-lang/crates.io-index" | |
535 dependencies = [ | |
598
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
536 "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
595 | 537 ] |
538 | |
539 [[package]] | |
620 | 540 name = "sysfs_gpio" |
625 | 541 version = "0.5.1" |
620 | 542 source = "registry+https://github.com/rust-lang/crates.io-index" |
543 dependencies = [ | |
544 "nix 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
545 "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)", | |
546 ] | |
547 | |
548 [[package]] | |
625 | 549 name = "take" |
550 version = "0.1.0" | |
551 source = "registry+https://github.com/rust-lang/crates.io-index" | |
552 | |
553 [[package]] | |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
554 name = "tempdir" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
555 version = "0.3.5" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
556 source = "registry+https://github.com/rust-lang/crates.io-index" |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
557 dependencies = [ |
625 | 558 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
559 ] |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
560 |
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
561 [[package]] |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
562 name = "thread-id" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
563 version = "2.0.0" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
564 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
565 dependencies = [ |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
566 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 567 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
597 | 568 ] |
569 | |
570 [[package]] | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
571 name = "thread_local" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
572 version = "0.2.7" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
573 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
574 dependencies = [ |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
575 "thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
576 ] |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
577 |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
578 [[package]] |
597 | 579 name = "thread_local" |
625 | 580 version = "0.3.4" |
597 | 581 source = "registry+https://github.com/rust-lang/crates.io-index" |
582 dependencies = [ | |
625 | 583 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", |
584 "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
597 | 585 ] |
586 | |
587 [[package]] | |
588 name = "time" | |
625 | 589 version = "0.1.38" |
597 | 590 source = "registry+https://github.com/rust-lang/crates.io-index" |
591 dependencies = [ | |
592 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
625 | 593 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", |
594 "redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", | |
597 | 595 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
596 ] | |
597 | |
598 [[package]] | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
599 name = "tokio-core" |
625 | 600 version = "0.1.10" |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
601 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
602 dependencies = [ |
625 | 603 "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", |
604 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
605 "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
606 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
607 "mio 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
608 "scoped-tls 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 609 "slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
610 "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
611 ] |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
612 |
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
613 [[package]] |
619 | 614 name = "tokio-io" |
625 | 615 version = "0.1.4" |
616 source = "registry+https://github.com/rust-lang/crates.io-index" | |
617 dependencies = [ | |
618 "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
619 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
620 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
621 ] | |
622 | |
623 [[package]] | |
624 name = "tokio-proto" | |
622 | 625 version = "0.1.1" |
609
7bda01659426
not building, paramwaiter work
Matt Johnston <matt@ucc.asn.au>
parents:
604
diff
changeset
|
626 source = "registry+https://github.com/rust-lang/crates.io-index" |
595 | 627 dependencies = [ |
625 | 628 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", |
629 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
630 "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", | |
631 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", | |
632 "slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
633 "smallvec 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
634 "take 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
635 "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
636 "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | |
637 "tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
638 ] | |
639 | |
640 [[package]] | |
641 name = "tokio-service" | |
642 version = "0.1.0" | |
643 source = "registry+https://github.com/rust-lang/crates.io-index" | |
644 dependencies = [ | |
645 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
619 | 646 ] |
647 | |
648 [[package]] | |
649 name = "toml" | |
622 | 650 version = "0.3.2" |
619 | 651 source = "registry+https://github.com/rust-lang/crates.io-index" |
652 dependencies = [ | |
625 | 653 "serde 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)", |
654 ] | |
655 | |
656 [[package]] | |
657 name = "unicase" | |
658 version = "2.1.0" | |
659 source = "registry+https://github.com/rust-lang/crates.io-index" | |
660 dependencies = [ | |
661 "version_check 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
595 | 662 ] |
663 | |
664 [[package]] | |
665 name = "unicode-xid" | |
598
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
666 version = "0.0.4" |
595 | 667 source = "registry+https://github.com/rust-lang/crates.io-index" |
668 | |
669 [[package]] | |
627 | 670 name = "unicode-xid" |
671 version = "0.1.0" | |
672 source = "registry+https://github.com/rust-lang/crates.io-index" | |
673 | |
674 [[package]] | |
597 | 675 name = "unreachable" |
625 | 676 version = "1.0.0" |
597 | 677 source = "registry+https://github.com/rust-lang/crates.io-index" |
678 dependencies = [ | |
679 "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
680 ] | |
681 | |
682 [[package]] | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
683 name = "utf8-ranges" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
684 version = "0.1.3" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
685 source = "registry+https://github.com/rust-lang/crates.io-index" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
686 |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
687 [[package]] |
597 | 688 name = "utf8-ranges" |
689 version = "1.0.0" | |
690 source = "registry+https://github.com/rust-lang/crates.io-index" | |
691 | |
692 [[package]] | |
625 | 693 name = "version_check" |
694 version = "0.1.3" | |
695 source = "registry+https://github.com/rust-lang/crates.io-index" | |
696 | |
697 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
698 name = "void" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
699 version = "1.0.2" |
587 | 700 source = "registry+https://github.com/rust-lang/crates.io-index" |
701 | |
702 [[package]] | |
703 name = "winapi" | |
704 version = "0.2.8" | |
705 source = "registry+https://github.com/rust-lang/crates.io-index" | |
706 | |
707 [[package]] | |
708 name = "winapi-build" | |
709 version = "0.1.1" | |
710 source = "registry+https://github.com/rust-lang/crates.io-index" | |
711 | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
712 [[package]] |
625 | 713 name = "wort-templog" |
714 version = "0.1.0" | |
715 dependencies = [ | |
716 "atomicwrites 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
717 "base64 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
718 "docopt 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
719 "env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | |
720 "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", | |
627 | 721 "futures-await 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | 722 "futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
723 "hyper 0.11.7 (registry+https://github.com/rust-lang/crates.io-index)", | |
724 "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | |
725 "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", | |
726 "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | |
727 "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", | |
728 "regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
729 "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", | |
730 "serde 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)", | |
731 "serde_derive 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)", | |
732 "serde_json 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
733 "sysfs_gpio 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | |
734 "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", | |
735 "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | |
736 "toml 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | |
737 ] | |
738 | |
739 [[package]] | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
740 name = "ws2_32-sys" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
741 version = "0.2.1" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
742 source = "registry+https://github.com/rust-lang/crates.io-index" |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
743 dependencies = [ |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
744 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
745 "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
746 ] |
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
747 |
587 | 748 [metadata] |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
749 "checksum aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66" |
625 | 750 "checksum aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4" |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
751 "checksum atomicwrites 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c4328d3fa4af4aedc582587976a0f74decc73f90ea7cae3d757c0535f983d16f" |
625 | 752 "checksum base64 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "979d348dc50dfcd050a87df408ec61f01a0a27ee9b4ebdc6085baba8275b2c7f" |
753 "checksum base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96434f987501f0ed4eb336a411e0631ecd1afa11574fe148587adc4ff96143c9" | |
620 | 754 "checksum bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dead7461c1127cf637931a1e50934eb6eee8bff2f74433ac7909e9afcee04a3" |
625 | 755 "checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" |
756 "checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23" | |
757 "checksum bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d828f97b58cc5de3e40c421d0cf2132d6b2da4ee0e11b8632fa838f0f9333ad6" | |
758 "checksum cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de" | |
597 | 759 "checksum docopt 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab32ea6e284d87987066f21a9e809a73c14720571ef34516f0890b3d355ccfd8" |
625 | 760 "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab" |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
761 "checksum env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "15abd780e45b3ea4f76b4e9a26ff4843258dd8a3eed2775a0e7368c2e7936c2f" |
625 | 762 "checksum fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f6c0581a4e363262e52b87f59ee2afe3415361c6ec35e665924eb08afe8ff159" |
763 "checksum fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "43f3795b4bae048dc6123a6b972cadde2e676f9ded08aef6bb77f5f157684a82" | |
764 "checksum futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "118b49cac82e04121117cbd3121ede3147e885627d82c4546b87c702debb90c1" | |
627 | 765 "checksum futures-await 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "84431acb0f168d02bd7727ad9fa385ff877e46d6018efad17ca509ae3bf5457c" |
766 "checksum futures-await-async-macro 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2868c9550459b113f8a656bd8f665bcdcfffb794e3fe5fbeaf5734325d18c2b5" | |
767 "checksum futures-await-await-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b7adba18b51fd888a24f6bd41c85e4f544a7089b15f84242350c014f9fdbf895" | |
768 "checksum futures-await-quote 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f310765f0efc9c12ffb4887ca48d87a71c44ba531d9ba23055681a879f98ab75" | |
769 "checksum futures-await-syn 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "90dcf027151897fe50205762efdec791be0e1e2a018d0ae077f72aa0abbf947f" | |
770 "checksum futures-await-synom 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c84de0ba04a67d7fc0fb4e3218ba539da65890549922d9d2bc874ba6240030" | |
625 | 771 "checksum futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "e86f49cc0d92fe1b97a5980ec32d56208272cbb00f15044ea9e2799dde766fdf" |
772 "checksum httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af2f2dd97457e8fb1ae7c5a420db346af389926e36f43768b96f101546b04a07" | |
773 "checksum hyper 0.11.7 (registry+https://github.com/rust-lang/crates.io-index)" = "4959ca95f55df4265bff2ad63066147255e6fa733682cf6d1cb5eaff6e53324b" | |
774 "checksum iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6e8b9c2247fcf6c6a1151f1156932be5606c9fd6f55a2d7f9fc1cb29386b2f7" | |
775 "checksum itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8324a32baf01e2ae060e9de58ed0bc2320c9a2833491ee36cd3b4c414de4db8c" | |
587 | 776 "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" |
625 | 777 "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" |
778 "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" | |
779 "checksum lazycell 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b585b7a6811fb03aa10e74b278a0f00f8dd9b45dc681f148bb29fa5cb61859b" | |
780 "checksum libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)" = "36fbc8a8929c632868295d0178dd8f63fc423fd7537ad0738372bd010b3ac9b0" | |
781 "checksum log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "880f77541efa6e5cc74e76910c9884d9859683118839d6a1dc3b11e63512565b" | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
782 "checksum memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20" |
625 | 783 "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" |
784 "checksum mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e2e00e17be181010a91dbfefb01660b17311059dc8c7f48b9017677721e732bd" | |
785 "checksum mio 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "0e8411968194c7b139e9105bc4ae7db0bae232af087147e72f0616ebf5fdb9cb" | |
619 | 786 "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" |
625 | 787 "checksum net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)" = "3a80f842784ef6c9a958b68b7516bc7e35883c614004dd94959a4dca1b716c09" |
620 | 788 "checksum nix 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a7bb1da2be7da3cbffda73fc681d509ffd9e665af478d2bee1907cee0bc64b2" |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
789 "checksum nix 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0d95c5fa8b641c10ad0b8887454ebaafa3c92b5cd5350f8fc693adafd178e7b" |
625 | 790 "checksum num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "cacfcab5eb48250ee7d0c7896b51a2c5eec99c1feea5f32025635f5ae4b00070" |
791 "checksum num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "514f0d73e64be53ff320680ca671b64fe3fb91da01e1ae2ddc99eb51d453b20d" | |
792 "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" | |
627 | 793 "checksum proc-macro2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "557facecbf90ff79faea80a08230d10c812016aa19198ed07d06de61f965b5cc" |
619 | 794 "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" |
625 | 795 "checksum rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6475140dfd8655aeb72e1fd4b7a1cc1c202be65d71669476e392fe62532b9edd" |
796 "checksum redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "ab105df655884ede59d45b7070c8a65002d921461ee813a024558ca16030eea0" | |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
797 "checksum regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)" = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f" |
625 | 798 "checksum regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ac6ab4e9218ade5b423358bbd2567d1617418403c7a512603630181813316322" |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
799 "checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" |
625 | 800 "checksum regex-syntax 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad890a5eef7953f55427c50575c680c42841653abd2b028b68cd223d157f62db" |
801 "checksum relay 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f301bafeb60867c85170031bdb2fcf24c8041f33aee09e7b116a58d4e9f781c5" | |
802 "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" | |
620 | 803 "checksum rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "c5f5376ea5e30ce23c03eb77cbe4962b988deead10910c372b226388b594c084" |
625 | 804 "checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
805 "checksum scoped-tls 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f417c22df063e9450888a7561788e9bd46d3bb3c1466435b4eccb903807f147d" |
620 | 806 "checksum semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "d4f410fedcf71af0345d7607d246e7ad15faaadd49d240ee3b24e5dc21a820ac" |
625 | 807 "checksum serde 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)" = "34b623917345a631dc9608d5194cc206b3fe6c3554cd1c75b937e55e285254af" |
622 | 808 "checksum serde_codegen_internals 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bc888bd283bd2420b16ad0d860e35ad8acb21941180a83a189bb2046f9d00400" |
625 | 809 "checksum serde_derive 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)" = "978fd866f4d4872084a81ccc35e275158351d3b9fe620074e7d7504b816b74ba" |
622 | 810 "checksum serde_json 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ad8bcf487be7d2e15d3d543f04312de991d631cfe1b43ea0ade69e6a8a5b16a1" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
811 "checksum slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23" |
625 | 812 "checksum slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fdeff4cd9ecff59ec7e3744cbca73dfe5ac35c2aedb2cfba8a1c715a18912e9d" |
813 "checksum smallvec 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4c8cbcd6df1e117c2210e13ab5109635ad68a929fcbb8964dc965b76cb5ee013" | |
597 | 814 "checksum strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694" |
625 | 815 "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" |
619 | 816 "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" |
625 | 817 "checksum sysfs_gpio 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d1dc89f18d2e3ffe3bc88067bfdeccc303764108e0788444775bd8cb547fa543" |
818 "checksum take 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b157868d8ac1f56b64604539990685fa7611d8fa9e5476cf0c02cf34d32917c5" | |
624
2710649ab71e
read/write params local file. untested
Matt Johnston <matt@ucc.asn.au>
parents:
622
diff
changeset
|
819 "checksum tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "87974a6f5c1dfb344d733055601650059a3363de2a6104819293baff662132d6" |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
820 "checksum thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03" |
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
821 "checksum thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5" |
625 | 822 "checksum thread_local 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1697c4b57aeeb7a536b647165a2825faddffb1d3bad386d507709bd51a90bb14" |
823 "checksum time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)" = "d5d788d3aa77bc0ef3e9621256885555368b47bd495c13dd2e7413c89f845520" | |
824 "checksum tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c843a027f7c1df5f81e7734a0df3f67bf329411781ebf36393ce67beef6071e3" | |
825 "checksum tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "514aae203178929dbf03318ad7c683126672d4d96eccb77b29603d33c9e25743" | |
826 "checksum tokio-proto 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fbb47ae81353c63c487030659494b295f6cb6576242f907f203473b191b0389" | |
827 "checksum tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162" | |
622 | 828 "checksum toml 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bd86ad9ebee246fdedd610e0f6d0587b754a3d81438db930a244d0480ed7878f" |
625 | 829 "checksum unicase 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "284b6d3db520d67fbe88fd778c21510d1b0ba4a551e5d0fbb023d33405f6de8a" |
598
d4fbfb5c46ff
broken update of versions of things
Matt Johnston <matt@ucc.asn.au>
parents:
597
diff
changeset
|
830 "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" |
627 | 831 "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" |
625 | 832 "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" |
594
aff50ee77252
rust working better now with streams and sinks.
Matt Johnston <matt@ucc.asn.au>
parents:
592
diff
changeset
|
833 "checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" |
597 | 834 "checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122" |
625 | 835 "checksum version_check 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6b772017e347561807c1aa192438c5fd74242a670a6cffacc40f2defd1dc069d" |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
836 "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" |
587 | 837 "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" |
838 "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" | |
588
038734052b20
fiddling with futures-rs instead
Matt Johnston <matt@ucc.asn.au>
parents:
587
diff
changeset
|
839 "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" |