diff options
-rw-r--r-- | Cargo.lock | 917 | ||||
-rw-r--r-- | Cargo.toml | 4 |
2 files changed, 530 insertions, 391 deletions
@@ -5,10 +5,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
5 | 5 | ||
6 | [[package]] | 6 | [[package]] |
7 | name = "aho-corasick" | 7 | name = "aho-corasick" |
8 | version = "0.6.6" | 8 | version = "0.6.9" |
9 | source = "registry+https://github.com/rust-lang/crates.io-index" | 9 | source = "registry+https://github.com/rust-lang/crates.io-index" |
10 | dependencies = [ | 10 | dependencies = [ |
11 | "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 11 | "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
12 | ] | 12 | ] |
13 | 13 | ||
14 | [[package]] | 14 | [[package]] |
@@ -16,12 +16,12 @@ name = "ansi_term" | |||
16 | version = "0.11.0" | 16 | version = "0.11.0" |
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | 17 | source = "registry+https://github.com/rust-lang/crates.io-index" |
18 | dependencies = [ | 18 | dependencies = [ |
19 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 19 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
20 | ] | 20 | ] |
21 | 21 | ||
22 | [[package]] | 22 | [[package]] |
23 | name = "arc-swap" | 23 | name = "arc-swap" |
24 | version = "0.2.0" | 24 | version = "0.3.6" |
25 | source = "registry+https://github.com/rust-lang/crates.io-index" | 25 | source = "registry+https://github.com/rust-lang/crates.io-index" |
26 | 26 | ||
27 | [[package]] | 27 | [[package]] |
@@ -31,10 +31,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
31 | 31 | ||
32 | [[package]] | 32 | [[package]] |
33 | name = "arrayvec" | 33 | name = "arrayvec" |
34 | version = "0.4.7" | 34 | version = "0.4.8" |
35 | source = "registry+https://github.com/rust-lang/crates.io-index" | 35 | source = "registry+https://github.com/rust-lang/crates.io-index" |
36 | dependencies = [ | 36 | dependencies = [ |
37 | "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", | 37 | "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", |
38 | ] | 38 | ] |
39 | 39 | ||
40 | [[package]] | 40 | [[package]] |
@@ -42,9 +42,9 @@ name = "atty" | |||
42 | version = "0.2.11" | 42 | version = "0.2.11" |
43 | source = "registry+https://github.com/rust-lang/crates.io-index" | 43 | source = "registry+https://github.com/rust-lang/crates.io-index" |
44 | dependencies = [ | 44 | dependencies = [ |
45 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 45 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
46 | "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 46 | "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
47 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 47 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
48 | ] | 48 | ] |
49 | 49 | ||
50 | [[package]] | 50 | [[package]] |
@@ -52,13 +52,13 @@ name = "base64" | |||
52 | version = "0.9.3" | 52 | version = "0.9.3" |
53 | source = "registry+https://github.com/rust-lang/crates.io-index" | 53 | source = "registry+https://github.com/rust-lang/crates.io-index" |
54 | dependencies = [ | 54 | dependencies = [ |
55 | "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 55 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", |
56 | "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 56 | "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
57 | ] | 57 | ] |
58 | 58 | ||
59 | [[package]] | 59 | [[package]] |
60 | name = "bitflags" | 60 | name = "bitflags" |
61 | version = "1.0.3" | 61 | version = "1.0.4" |
62 | source = "registry+https://github.com/rust-lang/crates.io-index" | 62 | source = "registry+https://github.com/rust-lang/crates.io-index" |
63 | 63 | ||
64 | [[package]] | 64 | [[package]] |
@@ -68,26 +68,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
68 | 68 | ||
69 | [[package]] | 69 | [[package]] |
70 | name = "byteorder" | 70 | name = "byteorder" |
71 | version = "1.2.3" | 71 | version = "1.2.7" |
72 | source = "registry+https://github.com/rust-lang/crates.io-index" | 72 | source = "registry+https://github.com/rust-lang/crates.io-index" |
73 | 73 | ||
74 | [[package]] | 74 | [[package]] |
75 | name = "bytes" | 75 | name = "bytes" |
76 | version = "0.4.9" | 76 | version = "0.4.11" |
77 | source = "registry+https://github.com/rust-lang/crates.io-index" | 77 | source = "registry+https://github.com/rust-lang/crates.io-index" |
78 | dependencies = [ | 78 | dependencies = [ |
79 | "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 79 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", |
80 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 80 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
81 | ] | 81 | ] |
82 | 82 | ||
83 | [[package]] | 83 | [[package]] |
84 | name = "cc" | 84 | name = "cc" |
85 | version = "1.0.18" | 85 | version = "1.0.25" |
86 | source = "registry+https://github.com/rust-lang/crates.io-index" | 86 | source = "registry+https://github.com/rust-lang/crates.io-index" |
87 | 87 | ||
88 | [[package]] | 88 | [[package]] |
89 | name = "cfg-if" | 89 | name = "cfg-if" |
90 | version = "0.1.4" | 90 | version = "0.1.6" |
91 | source = "registry+https://github.com/rust-lang/crates.io-index" | 91 | source = "registry+https://github.com/rust-lang/crates.io-index" |
92 | 92 | ||
93 | [[package]] | 93 | [[package]] |
@@ -97,7 +97,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
97 | dependencies = [ | 97 | dependencies = [ |
98 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | 98 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", |
99 | "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | 99 | "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", |
100 | "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 100 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
101 | "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 101 | "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
102 | "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | 102 | "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", |
103 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 103 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -109,7 +109,7 @@ name = "cloudabi" | |||
109 | version = "0.0.3" | 109 | version = "0.0.3" |
110 | source = "registry+https://github.com/rust-lang/crates.io-index" | 110 | source = "registry+https://github.com/rust-lang/crates.io-index" |
111 | dependencies = [ | 111 | dependencies = [ |
112 | "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 112 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
113 | ] | 113 | ] |
114 | 114 | ||
115 | [[package]] | 115 | [[package]] |
@@ -118,7 +118,7 @@ version = "0.5.1" | |||
118 | source = "registry+https://github.com/rust-lang/crates.io-index" | 118 | source = "registry+https://github.com/rust-lang/crates.io-index" |
119 | dependencies = [ | 119 | dependencies = [ |
120 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 120 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
121 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 121 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
122 | ] | 122 | ] |
123 | 123 | ||
124 | [[package]] | 124 | [[package]] |
@@ -126,7 +126,7 @@ name = "core-foundation-sys" | |||
126 | version = "0.5.1" | 126 | version = "0.5.1" |
127 | source = "registry+https://github.com/rust-lang/crates.io-index" | 127 | source = "registry+https://github.com/rust-lang/crates.io-index" |
128 | dependencies = [ | 128 | dependencies = [ |
129 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 129 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
130 | ] | 130 | ] |
131 | 131 | ||
132 | [[package]] | 132 | [[package]] |
@@ -139,81 +139,68 @@ dependencies = [ | |||
139 | 139 | ||
140 | [[package]] | 140 | [[package]] |
141 | name = "crossbeam-channel" | 141 | name = "crossbeam-channel" |
142 | version = "0.2.3" | 142 | version = "0.2.6" |
143 | source = "registry+https://github.com/rust-lang/crates.io-index" | 143 | source = "registry+https://github.com/rust-lang/crates.io-index" |
144 | dependencies = [ | 144 | dependencies = [ |
145 | "crossbeam-epoch 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 145 | "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
146 | "crossbeam-utils 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", | 146 | "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", |
147 | "parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", | 147 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
148 | "rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", | 148 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
149 | "smallvec 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", | 149 | "smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", |
150 | ] | 150 | ] |
151 | 151 | ||
152 | [[package]] | 152 | [[package]] |
153 | name = "crossbeam-deque" | 153 | name = "crossbeam-deque" |
154 | version = "0.3.1" | 154 | version = "0.6.2" |
155 | source = "registry+https://github.com/rust-lang/crates.io-index" | 155 | source = "registry+https://github.com/rust-lang/crates.io-index" |
156 | dependencies = [ | 156 | dependencies = [ |
157 | "crossbeam-epoch 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 157 | "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
158 | "crossbeam-utils 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 158 | "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
159 | ] | 159 | ] |
160 | 160 | ||
161 | [[package]] | 161 | [[package]] |
162 | name = "crossbeam-epoch" | 162 | name = "crossbeam-epoch" |
163 | version = "0.4.3" | 163 | version = "0.6.1" |
164 | source = "registry+https://github.com/rust-lang/crates.io-index" | 164 | source = "registry+https://github.com/rust-lang/crates.io-index" |
165 | dependencies = [ | 165 | dependencies = [ |
166 | "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", | 166 | "arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
167 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 167 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
168 | "crossbeam-utils 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 168 | "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
169 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 169 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
170 | "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 170 | "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
171 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 171 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
172 | ] | 172 | ] |
173 | 173 | ||
174 | [[package]] | 174 | [[package]] |
175 | name = "crossbeam-epoch" | 175 | name = "crossbeam-utils" |
176 | version = "0.5.1" | 176 | version = "0.5.0" |
177 | source = "registry+https://github.com/rust-lang/crates.io-index" | 177 | source = "registry+https://github.com/rust-lang/crates.io-index" |
178 | dependencies = [ | ||
179 | "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
180 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
181 | "crossbeam-utils 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
182 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
183 | "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
184 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
185 | ] | ||
186 | 178 | ||
187 | [[package]] | 179 | [[package]] |
188 | name = "crossbeam-utils" | 180 | name = "crossbeam-utils" |
189 | version = "0.3.2" | 181 | version = "0.6.1" |
190 | source = "registry+https://github.com/rust-lang/crates.io-index" | 182 | source = "registry+https://github.com/rust-lang/crates.io-index" |
191 | dependencies = [ | 183 | dependencies = [ |
192 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 184 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
193 | ] | 185 | ] |
194 | 186 | ||
195 | [[package]] | 187 | [[package]] |
196 | name = "crossbeam-utils" | ||
197 | version = "0.4.1" | ||
198 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
199 | |||
200 | [[package]] | ||
201 | name = "cursive" | 188 | name = "cursive" |
202 | version = "0.9.2" | 189 | version = "0.9.2" |
203 | source = "registry+https://github.com/rust-lang/crates.io-index" | 190 | source = "registry+https://github.com/rust-lang/crates.io-index" |
204 | dependencies = [ | 191 | dependencies = [ |
205 | "crossbeam-channel 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 192 | "crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
206 | "enum-map 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", | 193 | "enum-map 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", |
207 | "enumset 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", | 194 | "enumset 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", |
208 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 195 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
209 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 196 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
210 | "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 197 | "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
211 | "ncurses 5.93.0 (registry+https://github.com/rust-lang/crates.io-index)", | 198 | "ncurses 5.97.0 (registry+https://github.com/rust-lang/crates.io-index)", |
212 | "num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 199 | "num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
213 | "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 200 | "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
214 | "signal-hook 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 201 | "signal-hook 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
215 | "term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 202 | "term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
216 | "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 203 | "toml 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", |
217 | "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 204 | "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
218 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 205 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
219 | "xi-unicode 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 206 | "xi-unicode 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -229,7 +216,7 @@ name = "encoding_rs" | |||
229 | version = "0.8.12" | 216 | version = "0.8.12" |
230 | source = "registry+https://github.com/rust-lang/crates.io-index" | 217 | source = "registry+https://github.com/rust-lang/crates.io-index" |
231 | dependencies = [ | 218 | dependencies = [ |
232 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 219 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
233 | ] | 220 | ] |
234 | 221 | ||
235 | [[package]] | 222 | [[package]] |
@@ -247,17 +234,28 @@ name = "enum-map-derive" | |||
247 | version = "0.4.0" | 234 | version = "0.4.0" |
248 | source = "registry+https://github.com/rust-lang/crates.io-index" | 235 | source = "registry+https://github.com/rust-lang/crates.io-index" |
249 | dependencies = [ | 236 | dependencies = [ |
250 | "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 237 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", |
251 | "quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | 238 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", |
252 | "syn 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)", | 239 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", |
253 | ] | 240 | ] |
254 | 241 | ||
255 | [[package]] | 242 | [[package]] |
256 | name = "enumset" | 243 | name = "enumset" |
257 | version = "0.3.11" | 244 | version = "0.3.14" |
245 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
246 | dependencies = [ | ||
247 | "enumset_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
248 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
249 | ] | ||
250 | |||
251 | [[package]] | ||
252 | name = "enumset_derive" | ||
253 | version = "0.2.0" | ||
258 | source = "registry+https://github.com/rust-lang/crates.io-index" | 254 | source = "registry+https://github.com/rust-lang/crates.io-index" |
259 | dependencies = [ | 255 | dependencies = [ |
260 | "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 256 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", |
257 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
258 | "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)", | ||
261 | ] | 259 | ] |
262 | 260 | ||
263 | [[package]] | 261 | [[package]] |
@@ -283,7 +281,7 @@ name = "fuchsia-zircon" | |||
283 | version = "0.3.3" | 281 | version = "0.3.3" |
284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 282 | source = "registry+https://github.com/rust-lang/crates.io-index" |
285 | dependencies = [ | 283 | dependencies = [ |
286 | "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 284 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
287 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 285 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
288 | ] | 286 | ] |
289 | 287 | ||
@@ -294,7 +292,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
294 | 292 | ||
295 | [[package]] | 293 | [[package]] |
296 | name = "futures" | 294 | name = "futures" |
297 | version = "0.1.23" | 295 | version = "0.1.25" |
298 | source = "registry+https://github.com/rust-lang/crates.io-index" | 296 | source = "registry+https://github.com/rust-lang/crates.io-index" |
299 | 297 | ||
300 | [[package]] | 298 | [[package]] |
@@ -302,70 +300,65 @@ name = "futures-cpupool" | |||
302 | version = "0.1.8" | 300 | version = "0.1.8" |
303 | source = "registry+https://github.com/rust-lang/crates.io-index" | 301 | source = "registry+https://github.com/rust-lang/crates.io-index" |
304 | dependencies = [ | 302 | dependencies = [ |
305 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 303 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
306 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 304 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
307 | ] | 305 | ] |
308 | 306 | ||
309 | [[package]] | 307 | [[package]] |
310 | name = "gcc" | ||
311 | version = "0.3.54" | ||
312 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
313 | |||
314 | [[package]] | ||
315 | name = "h2" | 308 | name = "h2" |
316 | version = "0.1.10" | 309 | version = "0.1.13" |
317 | source = "registry+https://github.com/rust-lang/crates.io-index" | 310 | source = "registry+https://github.com/rust-lang/crates.io-index" |
318 | dependencies = [ | 311 | dependencies = [ |
319 | "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 312 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", |
320 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 313 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
321 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 314 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
322 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 315 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
323 | "http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | 316 | "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", |
324 | "indexmap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 317 | "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
325 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 318 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
326 | "slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 319 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", |
327 | "string 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 320 | "string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
328 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 321 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
329 | ] | 322 | ] |
330 | 323 | ||
331 | [[package]] | 324 | [[package]] |
332 | name = "http" | 325 | name = "http" |
333 | version = "0.1.13" | 326 | version = "0.1.14" |
334 | source = "registry+https://github.com/rust-lang/crates.io-index" | 327 | source = "registry+https://github.com/rust-lang/crates.io-index" |
335 | dependencies = [ | 328 | dependencies = [ |
336 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 329 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
337 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 330 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
338 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 331 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", |
339 | ] | 332 | ] |
340 | 333 | ||
341 | [[package]] | 334 | [[package]] |
342 | name = "httparse" | 335 | name = "httparse" |
343 | version = "1.3.2" | 336 | version = "1.3.3" |
344 | source = "registry+https://github.com/rust-lang/crates.io-index" | 337 | source = "registry+https://github.com/rust-lang/crates.io-index" |
345 | 338 | ||
346 | [[package]] | 339 | [[package]] |
347 | name = "hyper" | 340 | name = "hyper" |
348 | version = "0.12.14" | 341 | version = "0.12.16" |
349 | source = "registry+https://github.com/rust-lang/crates.io-index" | 342 | source = "registry+https://github.com/rust-lang/crates.io-index" |
350 | dependencies = [ | 343 | dependencies = [ |
351 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 344 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
352 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 345 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
353 | "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", | 346 | "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
354 | "h2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 347 | "h2 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", |
355 | "http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | 348 | "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", |
356 | "httparse 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 349 | "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
357 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 350 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
358 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 351 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", |
359 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 352 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
360 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", | 353 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", |
361 | "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | 354 | "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", |
362 | "tokio 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 355 | "tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", |
363 | "tokio-executor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 356 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
364 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 357 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
365 | "tokio-reactor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 358 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
366 | "tokio-tcp 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 359 | "tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
367 | "tokio-threadpool 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 360 | "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", |
368 | "tokio-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", | 361 | "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
369 | "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 362 | "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
370 | ] | 363 | ] |
371 | 364 | ||
@@ -374,11 +367,11 @@ name = "hyper-tls" | |||
374 | version = "0.3.1" | 367 | version = "0.3.1" |
375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 368 | source = "registry+https://github.com/rust-lang/crates.io-index" |
376 | dependencies = [ | 369 | dependencies = [ |
377 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 370 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
378 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 371 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
379 | "hyper 0.12.14 (registry+https://github.com/rust-lang/crates.io-index)", | 372 | "hyper 0.12.16 (registry+https://github.com/rust-lang/crates.io-index)", |
380 | "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 373 | "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
381 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 374 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
382 | ] | 375 | ] |
383 | 376 | ||
384 | [[package]] | 377 | [[package]] |
@@ -386,14 +379,14 @@ name = "idna" | |||
386 | version = "0.1.5" | 379 | version = "0.1.5" |
387 | source = "registry+https://github.com/rust-lang/crates.io-index" | 380 | source = "registry+https://github.com/rust-lang/crates.io-index" |
388 | dependencies = [ | 381 | dependencies = [ |
389 | "matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 382 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
390 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", | 383 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", |
391 | "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 384 | "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
392 | ] | 385 | ] |
393 | 386 | ||
394 | [[package]] | 387 | [[package]] |
395 | name = "indexmap" | 388 | name = "indexmap" |
396 | version = "1.0.1" | 389 | version = "1.0.2" |
397 | source = "registry+https://github.com/rust-lang/crates.io-index" | 390 | source = "registry+https://github.com/rust-lang/crates.io-index" |
398 | 391 | ||
399 | [[package]] | 392 | [[package]] |
@@ -401,7 +394,7 @@ name = "iovec" | |||
401 | version = "0.1.2" | 394 | version = "0.1.2" |
402 | source = "registry+https://github.com/rust-lang/crates.io-index" | 395 | source = "registry+https://github.com/rust-lang/crates.io-index" |
403 | dependencies = [ | 396 | dependencies = [ |
404 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 397 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
405 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 398 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
406 | ] | 399 | ] |
407 | 400 | ||
@@ -421,17 +414,17 @@ dependencies = [ | |||
421 | 414 | ||
422 | [[package]] | 415 | [[package]] |
423 | name = "lazy_static" | 416 | name = "lazy_static" |
424 | version = "1.0.2" | 417 | version = "1.2.0" |
425 | source = "registry+https://github.com/rust-lang/crates.io-index" | 418 | source = "registry+https://github.com/rust-lang/crates.io-index" |
426 | 419 | ||
427 | [[package]] | 420 | [[package]] |
428 | name = "lazycell" | 421 | name = "lazycell" |
429 | version = "0.6.0" | 422 | version = "1.2.0" |
430 | source = "registry+https://github.com/rust-lang/crates.io-index" | 423 | source = "registry+https://github.com/rust-lang/crates.io-index" |
431 | 424 | ||
432 | [[package]] | 425 | [[package]] |
433 | name = "libc" | 426 | name = "libc" |
434 | version = "0.2.42" | 427 | version = "0.2.44" |
435 | source = "registry+https://github.com/rust-lang/crates.io-index" | 428 | source = "registry+https://github.com/rust-lang/crates.io-index" |
436 | 429 | ||
437 | [[package]] | 430 | [[package]] |
@@ -440,16 +433,25 @@ version = "0.1.18" | |||
440 | source = "registry+https://github.com/rust-lang/crates.io-index" | 433 | source = "registry+https://github.com/rust-lang/crates.io-index" |
441 | dependencies = [ | 434 | dependencies = [ |
442 | "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 435 | "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", |
443 | "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 436 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", |
444 | "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", | 437 | "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", |
445 | ] | 438 | ] |
446 | 439 | ||
447 | [[package]] | 440 | [[package]] |
441 | name = "lock_api" | ||
442 | version = "0.1.5" | ||
443 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
444 | dependencies = [ | ||
445 | "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
446 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
447 | ] | ||
448 | |||
449 | [[package]] | ||
448 | name = "log" | 450 | name = "log" |
449 | version = "0.4.6" | 451 | version = "0.4.6" |
450 | source = "registry+https://github.com/rust-lang/crates.io-index" | 452 | source = "registry+https://github.com/rust-lang/crates.io-index" |
451 | dependencies = [ | 453 | dependencies = [ |
452 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 454 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
453 | ] | 455 | ] |
454 | 456 | ||
455 | [[package]] | 457 | [[package]] |
@@ -459,15 +461,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
459 | 461 | ||
460 | [[package]] | 462 | [[package]] |
461 | name = "matches" | 463 | name = "matches" |
462 | version = "0.1.7" | 464 | version = "0.1.8" |
463 | source = "registry+https://github.com/rust-lang/crates.io-index" | 465 | source = "registry+https://github.com/rust-lang/crates.io-index" |
464 | 466 | ||
465 | [[package]] | 467 | [[package]] |
466 | name = "memchr" | 468 | name = "memchr" |
467 | version = "2.0.1" | 469 | version = "2.1.1" |
468 | source = "registry+https://github.com/rust-lang/crates.io-index" | 470 | source = "registry+https://github.com/rust-lang/crates.io-index" |
469 | dependencies = [ | 471 | dependencies = [ |
470 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 472 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
473 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", | ||
474 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
471 | ] | 475 | ] |
472 | 476 | ||
473 | [[package]] | 477 | [[package]] |
@@ -477,10 +481,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
477 | 481 | ||
478 | [[package]] | 482 | [[package]] |
479 | name = "mime" | 483 | name = "mime" |
480 | version = "0.3.8" | 484 | version = "0.3.12" |
481 | source = "registry+https://github.com/rust-lang/crates.io-index" | 485 | source = "registry+https://github.com/rust-lang/crates.io-index" |
482 | dependencies = [ | 486 | dependencies = [ |
483 | "unicase 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 487 | "unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
484 | ] | 488 | ] |
485 | 489 | ||
486 | [[package]] | 490 | [[package]] |
@@ -488,31 +492,41 @@ name = "mime_guess" | |||
488 | version = "2.0.0-alpha.6" | 492 | version = "2.0.0-alpha.6" |
489 | source = "registry+https://github.com/rust-lang/crates.io-index" | 493 | source = "registry+https://github.com/rust-lang/crates.io-index" |
490 | dependencies = [ | 494 | dependencies = [ |
491 | "mime 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 495 | "mime 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", |
492 | "phf 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)", | 496 | "phf 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", |
493 | "phf_codegen 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)", | 497 | "phf_codegen 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", |
494 | "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 498 | "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
495 | ] | 499 | ] |
496 | 500 | ||
497 | [[package]] | 501 | [[package]] |
498 | name = "mio" | 502 | name = "mio" |
499 | version = "0.6.15" | 503 | version = "0.6.16" |
500 | source = "registry+https://github.com/rust-lang/crates.io-index" | 504 | source = "registry+https://github.com/rust-lang/crates.io-index" |
501 | dependencies = [ | 505 | dependencies = [ |
502 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 506 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
503 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 507 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
504 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 508 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
505 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 509 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
506 | "lazycell 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", | 510 | "lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
507 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 511 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
508 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 512 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
509 | "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 513 | "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
510 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", | 514 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", |
511 | "slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 515 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", |
512 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 516 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
513 | ] | 517 | ] |
514 | 518 | ||
515 | [[package]] | 519 | [[package]] |
520 | name = "mio-uds" | ||
521 | version = "0.6.7" | ||
522 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
523 | dependencies = [ | ||
524 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
525 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", | ||
526 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", | ||
527 | ] | ||
528 | |||
529 | [[package]] | ||
516 | name = "miow" | 530 | name = "miow" |
517 | version = "0.2.1" | 531 | version = "0.2.1" |
518 | source = "registry+https://github.com/rust-lang/crates.io-index" | 532 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -528,13 +542,13 @@ name = "native-tls" | |||
528 | version = "0.2.2" | 542 | version = "0.2.2" |
529 | source = "registry+https://github.com/rust-lang/crates.io-index" | 543 | source = "registry+https://github.com/rust-lang/crates.io-index" |
530 | dependencies = [ | 544 | dependencies = [ |
531 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 545 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
532 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 546 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
533 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 547 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
534 | "openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", | 548 | "openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", |
535 | "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 549 | "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
536 | "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", | 550 | "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", |
537 | "schannel 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | 551 | "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", |
538 | "security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 552 | "security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
539 | "security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 553 | "security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
540 | "tempfile 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | 554 | "tempfile 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -542,12 +556,12 @@ dependencies = [ | |||
542 | 556 | ||
543 | [[package]] | 557 | [[package]] |
544 | name = "ncurses" | 558 | name = "ncurses" |
545 | version = "5.93.0" | 559 | version = "5.97.0" |
546 | source = "registry+https://github.com/rust-lang/crates.io-index" | 560 | source = "registry+https://github.com/rust-lang/crates.io-index" |
547 | dependencies = [ | 561 | dependencies = [ |
548 | "gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)", | 562 | "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", |
549 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 563 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
550 | "pkg-config 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", | 564 | "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", |
551 | ] | 565 | ] |
552 | 566 | ||
553 | [[package]] | 567 | [[package]] |
@@ -555,14 +569,14 @@ name = "net2" | |||
555 | version = "0.2.33" | 569 | version = "0.2.33" |
556 | source = "registry+https://github.com/rust-lang/crates.io-index" | 570 | source = "registry+https://github.com/rust-lang/crates.io-index" |
557 | dependencies = [ | 571 | dependencies = [ |
558 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 572 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
559 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 573 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
560 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 574 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
561 | ] | 575 | ] |
562 | 576 | ||
563 | [[package]] | 577 | [[package]] |
564 | name = "nodrop" | 578 | name = "nodrop" |
565 | version = "0.1.12" | 579 | version = "0.1.13" |
566 | source = "registry+https://github.com/rust-lang/crates.io-index" | 580 | source = "registry+https://github.com/rust-lang/crates.io-index" |
567 | 581 | ||
568 | [[package]] | 582 | [[package]] |
@@ -570,19 +584,19 @@ name = "num" | |||
570 | version = "0.2.0" | 584 | version = "0.2.0" |
571 | source = "registry+https://github.com/rust-lang/crates.io-index" | 585 | source = "registry+https://github.com/rust-lang/crates.io-index" |
572 | dependencies = [ | 586 | dependencies = [ |
573 | "num-complex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 587 | "num-complex 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
574 | "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", | 588 | "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", |
575 | "num-iter 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", | 589 | "num-iter 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", |
576 | "num-rational 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 590 | "num-rational 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
577 | "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 591 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
578 | ] | 592 | ] |
579 | 593 | ||
580 | [[package]] | 594 | [[package]] |
581 | name = "num-complex" | 595 | name = "num-complex" |
582 | version = "0.2.0" | 596 | version = "0.2.1" |
583 | source = "registry+https://github.com/rust-lang/crates.io-index" | 597 | source = "registry+https://github.com/rust-lang/crates.io-index" |
584 | dependencies = [ | 598 | dependencies = [ |
585 | "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 599 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
586 | ] | 600 | ] |
587 | 601 | ||
588 | [[package]] | 602 | [[package]] |
@@ -590,7 +604,7 @@ name = "num-integer" | |||
590 | version = "0.1.39" | 604 | version = "0.1.39" |
591 | source = "registry+https://github.com/rust-lang/crates.io-index" | 605 | source = "registry+https://github.com/rust-lang/crates.io-index" |
592 | dependencies = [ | 606 | dependencies = [ |
593 | "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 607 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
594 | ] | 608 | ] |
595 | 609 | ||
596 | [[package]] | 610 | [[package]] |
@@ -599,7 +613,7 @@ version = "0.1.37" | |||
599 | source = "registry+https://github.com/rust-lang/crates.io-index" | 613 | source = "registry+https://github.com/rust-lang/crates.io-index" |
600 | dependencies = [ | 614 | dependencies = [ |
601 | "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", | 615 | "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", |
602 | "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 616 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
603 | ] | 617 | ] |
604 | 618 | ||
605 | [[package]] | 619 | [[package]] |
@@ -608,12 +622,12 @@ version = "0.2.1" | |||
608 | source = "registry+https://github.com/rust-lang/crates.io-index" | 622 | source = "registry+https://github.com/rust-lang/crates.io-index" |
609 | dependencies = [ | 623 | dependencies = [ |
610 | "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", | 624 | "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", |
611 | "num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 625 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
612 | ] | 626 | ] |
613 | 627 | ||
614 | [[package]] | 628 | [[package]] |
615 | name = "num-traits" | 629 | name = "num-traits" |
616 | version = "0.2.5" | 630 | version = "0.2.6" |
617 | source = "registry+https://github.com/rust-lang/crates.io-index" | 631 | source = "registry+https://github.com/rust-lang/crates.io-index" |
618 | 632 | ||
619 | [[package]] | 633 | [[package]] |
@@ -621,7 +635,7 @@ name = "num_cpus" | |||
621 | version = "1.8.0" | 635 | version = "1.8.0" |
622 | source = "registry+https://github.com/rust-lang/crates.io-index" | 636 | source = "registry+https://github.com/rust-lang/crates.io-index" |
623 | dependencies = [ | 637 | dependencies = [ |
624 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 638 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
625 | ] | 639 | ] |
626 | 640 | ||
627 | [[package]] | 641 | [[package]] |
@@ -629,11 +643,11 @@ name = "openssl" | |||
629 | version = "0.10.15" | 643 | version = "0.10.15" |
630 | source = "registry+https://github.com/rust-lang/crates.io-index" | 644 | source = "registry+https://github.com/rust-lang/crates.io-index" |
631 | dependencies = [ | 645 | dependencies = [ |
632 | "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 646 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
633 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 647 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
634 | "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 648 | "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", |
635 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 649 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
636 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 650 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
637 | "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", | 651 | "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", |
638 | ] | 652 | ] |
639 | 653 | ||
@@ -647,18 +661,10 @@ name = "openssl-sys" | |||
647 | version = "0.9.39" | 661 | version = "0.9.39" |
648 | source = "registry+https://github.com/rust-lang/crates.io-index" | 662 | source = "registry+https://github.com/rust-lang/crates.io-index" |
649 | dependencies = [ | 663 | dependencies = [ |
650 | "cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", | 664 | "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", |
651 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 665 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
652 | "pkg-config 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", | 666 | "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", |
653 | "vcpkg 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", | 667 | "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
654 | ] | ||
655 | |||
656 | [[package]] | ||
657 | name = "owning_ref" | ||
658 | version = "0.3.3" | ||
659 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
660 | dependencies = [ | ||
661 | "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
662 | ] | 668 | ] |
663 | 669 | ||
664 | [[package]] | 670 | [[package]] |
@@ -666,27 +672,28 @@ name = "owning_ref" | |||
666 | version = "0.4.0" | 672 | version = "0.4.0" |
667 | source = "registry+https://github.com/rust-lang/crates.io-index" | 673 | source = "registry+https://github.com/rust-lang/crates.io-index" |
668 | dependencies = [ | 674 | dependencies = [ |
669 | "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 675 | "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
670 | ] | 676 | ] |
671 | 677 | ||
672 | [[package]] | 678 | [[package]] |
673 | name = "parking_lot" | 679 | name = "parking_lot" |
674 | version = "0.5.5" | 680 | version = "0.6.4" |
675 | source = "registry+https://github.com/rust-lang/crates.io-index" | 681 | source = "registry+https://github.com/rust-lang/crates.io-index" |
676 | dependencies = [ | 682 | dependencies = [ |
677 | "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 683 | "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
678 | "parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", | 684 | "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
679 | ] | 685 | ] |
680 | 686 | ||
681 | [[package]] | 687 | [[package]] |
682 | name = "parking_lot_core" | 688 | name = "parking_lot_core" |
683 | version = "0.2.14" | 689 | version = "0.3.1" |
684 | source = "registry+https://github.com/rust-lang/crates.io-index" | 690 | source = "registry+https://github.com/rust-lang/crates.io-index" |
685 | dependencies = [ | 691 | dependencies = [ |
686 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 692 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
687 | "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 693 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
688 | "smallvec 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", | 694 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
689 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 695 | "smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", |
696 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
690 | ] | 697 | ] |
691 | 698 | ||
692 | [[package]] | 699 | [[package]] |
@@ -696,47 +703,47 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
696 | 703 | ||
697 | [[package]] | 704 | [[package]] |
698 | name = "phf" | 705 | name = "phf" |
699 | version = "0.7.22" | 706 | version = "0.7.23" |
700 | source = "registry+https://github.com/rust-lang/crates.io-index" | 707 | source = "registry+https://github.com/rust-lang/crates.io-index" |
701 | dependencies = [ | 708 | dependencies = [ |
702 | "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)", | 709 | "phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", |
703 | ] | 710 | ] |
704 | 711 | ||
705 | [[package]] | 712 | [[package]] |
706 | name = "phf_codegen" | 713 | name = "phf_codegen" |
707 | version = "0.7.22" | 714 | version = "0.7.23" |
708 | source = "registry+https://github.com/rust-lang/crates.io-index" | 715 | source = "registry+https://github.com/rust-lang/crates.io-index" |
709 | dependencies = [ | 716 | dependencies = [ |
710 | "phf_generator 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)", | 717 | "phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", |
711 | "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)", | 718 | "phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", |
712 | ] | 719 | ] |
713 | 720 | ||
714 | [[package]] | 721 | [[package]] |
715 | name = "phf_generator" | 722 | name = "phf_generator" |
716 | version = "0.7.22" | 723 | version = "0.7.23" |
717 | source = "registry+https://github.com/rust-lang/crates.io-index" | 724 | source = "registry+https://github.com/rust-lang/crates.io-index" |
718 | dependencies = [ | 725 | dependencies = [ |
719 | "phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)", | 726 | "phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", |
720 | "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 727 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
721 | ] | 728 | ] |
722 | 729 | ||
723 | [[package]] | 730 | [[package]] |
724 | name = "phf_shared" | 731 | name = "phf_shared" |
725 | version = "0.7.22" | 732 | version = "0.7.23" |
726 | source = "registry+https://github.com/rust-lang/crates.io-index" | 733 | source = "registry+https://github.com/rust-lang/crates.io-index" |
727 | dependencies = [ | 734 | dependencies = [ |
728 | "siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 735 | "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
729 | "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 736 | "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
730 | ] | 737 | ] |
731 | 738 | ||
732 | [[package]] | 739 | [[package]] |
733 | name = "pkg-config" | 740 | name = "pkg-config" |
734 | version = "0.3.12" | 741 | version = "0.3.14" |
735 | source = "registry+https://github.com/rust-lang/crates.io-index" | 742 | source = "registry+https://github.com/rust-lang/crates.io-index" |
736 | 743 | ||
737 | [[package]] | 744 | [[package]] |
738 | name = "proc-macro2" | 745 | name = "proc-macro2" |
739 | version = "0.4.9" | 746 | version = "0.4.24" |
740 | source = "registry+https://github.com/rust-lang/crates.io-index" | 747 | source = "registry+https://github.com/rust-lang/crates.io-index" |
741 | dependencies = [ | 748 | dependencies = [ |
742 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 749 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -744,42 +751,100 @@ dependencies = [ | |||
744 | 751 | ||
745 | [[package]] | 752 | [[package]] |
746 | name = "quote" | 753 | name = "quote" |
747 | version = "0.6.4" | 754 | version = "0.6.10" |
748 | source = "registry+https://github.com/rust-lang/crates.io-index" | 755 | source = "registry+https://github.com/rust-lang/crates.io-index" |
749 | dependencies = [ | 756 | dependencies = [ |
750 | "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 757 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", |
751 | ] | 758 | ] |
752 | 759 | ||
753 | [[package]] | 760 | [[package]] |
754 | name = "rand" | 761 | name = "rand" |
755 | version = "0.4.2" | 762 | version = "0.5.5" |
756 | source = "registry+https://github.com/rust-lang/crates.io-index" | 763 | source = "registry+https://github.com/rust-lang/crates.io-index" |
757 | dependencies = [ | 764 | dependencies = [ |
765 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
758 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 766 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
759 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 767 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
760 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 768 | "rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
769 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
761 | ] | 770 | ] |
762 | 771 | ||
763 | [[package]] | 772 | [[package]] |
764 | name = "rand" | 773 | name = "rand" |
765 | version = "0.5.4" | 774 | version = "0.6.1" |
766 | source = "registry+https://github.com/rust-lang/crates.io-index" | 775 | source = "registry+https://github.com/rust-lang/crates.io-index" |
767 | dependencies = [ | 776 | dependencies = [ |
768 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 777 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", |
769 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 778 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
770 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 779 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
771 | "rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 780 | "rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
772 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 781 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
782 | "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
783 | "rand_isaac 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
784 | "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
785 | "rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
786 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
787 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
788 | ] | ||
789 | |||
790 | [[package]] | ||
791 | name = "rand_chacha" | ||
792 | version = "0.1.0" | ||
793 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
794 | dependencies = [ | ||
795 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
796 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
773 | ] | 797 | ] |
774 | 798 | ||
775 | [[package]] | 799 | [[package]] |
776 | name = "rand_core" | 800 | name = "rand_core" |
777 | version = "0.2.1" | 801 | version = "0.2.2" |
802 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
803 | dependencies = [ | ||
804 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
805 | ] | ||
806 | |||
807 | [[package]] | ||
808 | name = "rand_core" | ||
809 | version = "0.3.0" | ||
810 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
811 | |||
812 | [[package]] | ||
813 | name = "rand_hc" | ||
814 | version = "0.1.0" | ||
778 | source = "registry+https://github.com/rust-lang/crates.io-index" | 815 | source = "registry+https://github.com/rust-lang/crates.io-index" |
816 | dependencies = [ | ||
817 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
818 | ] | ||
819 | |||
820 | [[package]] | ||
821 | name = "rand_isaac" | ||
822 | version = "0.1.0" | ||
823 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
824 | dependencies = [ | ||
825 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
826 | ] | ||
827 | |||
828 | [[package]] | ||
829 | name = "rand_pcg" | ||
830 | version = "0.1.1" | ||
831 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
832 | dependencies = [ | ||
833 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
834 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
835 | ] | ||
836 | |||
837 | [[package]] | ||
838 | name = "rand_xorshift" | ||
839 | version = "0.1.0" | ||
840 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
841 | dependencies = [ | ||
842 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
843 | ] | ||
779 | 844 | ||
780 | [[package]] | 845 | [[package]] |
781 | name = "redox_syscall" | 846 | name = "redox_syscall" |
782 | version = "0.1.40" | 847 | version = "0.1.42" |
783 | source = "registry+https://github.com/rust-lang/crates.io-index" | 848 | source = "registry+https://github.com/rust-lang/crates.io-index" |
784 | 849 | ||
785 | [[package]] | 850 | [[package]] |
@@ -787,7 +852,7 @@ name = "redox_termios" | |||
787 | version = "0.1.1" | 852 | version = "0.1.1" |
788 | source = "registry+https://github.com/rust-lang/crates.io-index" | 853 | source = "registry+https://github.com/rust-lang/crates.io-index" |
789 | dependencies = [ | 854 | dependencies = [ |
790 | "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | 855 | "redox_syscall 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
791 | ] | 856 | ] |
792 | 857 | ||
793 | [[package]] | 858 | [[package]] |
@@ -797,22 +862,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
797 | 862 | ||
798 | [[package]] | 863 | [[package]] |
799 | name = "regex" | 864 | name = "regex" |
800 | version = "1.0.2" | 865 | version = "1.0.6" |
801 | source = "registry+https://github.com/rust-lang/crates.io-index" | 866 | source = "registry+https://github.com/rust-lang/crates.io-index" |
802 | dependencies = [ | 867 | dependencies = [ |
803 | "aho-corasick 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", | 868 | "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", |
804 | "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 869 | "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
805 | "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", | 870 | "regex-syntax 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", |
806 | "thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 871 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
807 | "utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 872 | "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
808 | ] | 873 | ] |
809 | 874 | ||
810 | [[package]] | 875 | [[package]] |
811 | name = "regex-syntax" | 876 | name = "regex-syntax" |
812 | version = "0.6.2" | 877 | version = "0.6.3" |
813 | source = "registry+https://github.com/rust-lang/crates.io-index" | 878 | source = "registry+https://github.com/rust-lang/crates.io-index" |
814 | dependencies = [ | 879 | dependencies = [ |
815 | "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 880 | "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
816 | ] | 881 | ] |
817 | 882 | ||
818 | [[package]] | 883 | [[package]] |
@@ -820,7 +885,7 @@ name = "remove_dir_all" | |||
820 | version = "0.5.1" | 885 | version = "0.5.1" |
821 | source = "registry+https://github.com/rust-lang/crates.io-index" | 886 | source = "registry+https://github.com/rust-lang/crates.io-index" |
822 | dependencies = [ | 887 | dependencies = [ |
823 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 888 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
824 | ] | 889 | ] |
825 | 890 | ||
826 | [[package]] | 891 | [[package]] |
@@ -829,27 +894,35 @@ version = "0.9.5" | |||
829 | source = "registry+https://github.com/rust-lang/crates.io-index" | 894 | source = "registry+https://github.com/rust-lang/crates.io-index" |
830 | dependencies = [ | 895 | dependencies = [ |
831 | "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", | 896 | "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", |
832 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 897 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
833 | "encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)", | 898 | "encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)", |
834 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 899 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
835 | "http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | 900 | "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", |
836 | "hyper 0.12.14 (registry+https://github.com/rust-lang/crates.io-index)", | 901 | "hyper 0.12.16 (registry+https://github.com/rust-lang/crates.io-index)", |
837 | "hyper-tls 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 902 | "hyper-tls 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
838 | "libflate 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", | 903 | "libflate 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", |
839 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 904 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
840 | "mime 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 905 | "mime 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", |
841 | "mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", | 906 | "mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", |
842 | "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 907 | "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
843 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", | 908 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
844 | "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", | 909 | "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", |
845 | "serde_urlencoded 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 910 | "serde_urlencoded 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", |
846 | "tokio 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 911 | "tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", |
847 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 912 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
848 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 913 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", |
849 | "uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 914 | "uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", |
850 | ] | 915 | ] |
851 | 916 | ||
852 | [[package]] | 917 | [[package]] |
918 | name = "rustc_version" | ||
919 | version = "0.2.3" | ||
920 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
921 | dependencies = [ | ||
922 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
923 | ] | ||
924 | |||
925 | [[package]] | ||
853 | name = "ryu" | 926 | name = "ryu" |
854 | version = "0.2.7" | 927 | version = "0.2.7" |
855 | source = "registry+https://github.com/rust-lang/crates.io-index" | 928 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -861,11 +934,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
861 | 934 | ||
862 | [[package]] | 935 | [[package]] |
863 | name = "schannel" | 936 | name = "schannel" |
864 | version = "0.1.13" | 937 | version = "0.1.14" |
865 | source = "registry+https://github.com/rust-lang/crates.io-index" | 938 | source = "registry+https://github.com/rust-lang/crates.io-index" |
866 | dependencies = [ | 939 | dependencies = [ |
867 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 940 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
868 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 941 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
869 | ] | 942 | ] |
870 | 943 | ||
871 | [[package]] | 944 | [[package]] |
@@ -880,7 +953,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
880 | dependencies = [ | 953 | dependencies = [ |
881 | "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 954 | "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
882 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 955 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
883 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 956 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
884 | "security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 957 | "security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
885 | ] | 958 | ] |
886 | 959 | ||
@@ -890,10 +963,23 @@ version = "0.2.1" | |||
890 | source = "registry+https://github.com/rust-lang/crates.io-index" | 963 | source = "registry+https://github.com/rust-lang/crates.io-index" |
891 | dependencies = [ | 964 | dependencies = [ |
892 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 965 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
893 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 966 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
894 | ] | 967 | ] |
895 | 968 | ||
896 | [[package]] | 969 | [[package]] |
970 | name = "semver" | ||
971 | version = "0.9.0" | ||
972 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
973 | dependencies = [ | ||
974 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
975 | ] | ||
976 | |||
977 | [[package]] | ||
978 | name = "semver-parser" | ||
979 | version = "0.7.0" | ||
980 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
981 | |||
982 | [[package]] | ||
897 | name = "serde" | 983 | name = "serde" |
898 | version = "1.0.80" | 984 | version = "1.0.80" |
899 | source = "registry+https://github.com/rust-lang/crates.io-index" | 985 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -910,37 +996,37 @@ dependencies = [ | |||
910 | 996 | ||
911 | [[package]] | 997 | [[package]] |
912 | name = "serde_urlencoded" | 998 | name = "serde_urlencoded" |
913 | version = "0.5.2" | 999 | version = "0.5.4" |
914 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1000 | source = "registry+https://github.com/rust-lang/crates.io-index" |
915 | dependencies = [ | 1001 | dependencies = [ |
916 | "dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1002 | "dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", |
917 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1003 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", |
918 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", | 1004 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
919 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1005 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", |
920 | ] | 1006 | ] |
921 | 1007 | ||
922 | [[package]] | 1008 | [[package]] |
923 | name = "signal-hook" | 1009 | name = "signal-hook" |
924 | version = "0.1.2" | 1010 | version = "0.1.6" |
925 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1011 | source = "registry+https://github.com/rust-lang/crates.io-index" |
926 | dependencies = [ | 1012 | dependencies = [ |
927 | "arc-swap 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1013 | "arc-swap 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
928 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 1014 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
929 | ] | 1015 | ] |
930 | 1016 | ||
931 | [[package]] | 1017 | [[package]] |
932 | name = "siphasher" | 1018 | name = "siphasher" |
933 | version = "0.2.2" | 1019 | version = "0.2.3" |
934 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1020 | source = "registry+https://github.com/rust-lang/crates.io-index" |
935 | 1021 | ||
936 | [[package]] | 1022 | [[package]] |
937 | name = "slab" | 1023 | name = "slab" |
938 | version = "0.4.0" | 1024 | version = "0.4.1" |
939 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1025 | source = "registry+https://github.com/rust-lang/crates.io-index" |
940 | 1026 | ||
941 | [[package]] | 1027 | [[package]] |
942 | name = "smallvec" | 1028 | name = "smallvec" |
943 | version = "0.6.3" | 1029 | version = "0.6.6" |
944 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1030 | source = "registry+https://github.com/rust-lang/crates.io-index" |
945 | dependencies = [ | 1031 | dependencies = [ |
946 | "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1032 | "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -948,12 +1034,12 @@ dependencies = [ | |||
948 | 1034 | ||
949 | [[package]] | 1035 | [[package]] |
950 | name = "stable_deref_trait" | 1036 | name = "stable_deref_trait" |
951 | version = "1.1.0" | 1037 | version = "1.1.1" |
952 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1038 | source = "registry+https://github.com/rust-lang/crates.io-index" |
953 | 1039 | ||
954 | [[package]] | 1040 | [[package]] |
955 | name = "string" | 1041 | name = "string" |
956 | version = "0.1.1" | 1042 | version = "0.1.2" |
957 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1043 | source = "registry+https://github.com/rust-lang/crates.io-index" |
958 | 1044 | ||
959 | [[package]] | 1045 | [[package]] |
@@ -963,11 +1049,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
963 | 1049 | ||
964 | [[package]] | 1050 | [[package]] |
965 | name = "syn" | 1051 | name = "syn" |
966 | version = "0.14.5" | 1052 | version = "0.14.9" |
1053 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1054 | dependencies = [ | ||
1055 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1056 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1057 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1058 | ] | ||
1059 | |||
1060 | [[package]] | ||
1061 | name = "syn" | ||
1062 | version = "0.15.22" | ||
967 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1063 | source = "registry+https://github.com/rust-lang/crates.io-index" |
968 | dependencies = [ | 1064 | dependencies = [ |
969 | "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1065 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", |
970 | "quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1066 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", |
971 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1067 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
972 | ] | 1068 | ] |
973 | 1069 | ||
@@ -977,11 +1073,11 @@ version = "0.1.0" | |||
977 | dependencies = [ | 1073 | dependencies = [ |
978 | "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1074 | "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", |
979 | "cursive 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1075 | "cursive 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", |
980 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1076 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
981 | "regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1077 | "regex 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
982 | "reqwest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1078 | "reqwest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", |
983 | "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", | 1079 | "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", |
984 | "urlencoding 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1080 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", |
985 | ] | 1081 | ] |
986 | 1082 | ||
987 | [[package]] | 1083 | [[package]] |
@@ -989,12 +1085,12 @@ name = "tempfile" | |||
989 | version = "3.0.4" | 1085 | version = "3.0.4" |
990 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1086 | source = "registry+https://github.com/rust-lang/crates.io-index" |
991 | dependencies = [ | 1087 | dependencies = [ |
992 | "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1088 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
993 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 1089 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
994 | "rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1090 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
995 | "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | 1091 | "redox_syscall 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
996 | "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1092 | "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
997 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1093 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
998 | ] | 1094 | ] |
999 | 1095 | ||
1000 | [[package]] | 1096 | [[package]] |
@@ -1003,7 +1099,7 @@ version = "0.3.1" | |||
1003 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1099 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1004 | dependencies = [ | 1100 | dependencies = [ |
1005 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1101 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1006 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 1102 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
1007 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1103 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1008 | ] | 1104 | ] |
1009 | 1105 | ||
@@ -1012,8 +1108,8 @@ name = "termion" | |||
1012 | version = "1.5.1" | 1108 | version = "1.5.1" |
1013 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1014 | dependencies = [ | 1110 | dependencies = [ |
1015 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 1111 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
1016 | "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | 1112 | "redox_syscall 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
1017 | "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1113 | "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1018 | ] | 1114 | ] |
1019 | 1115 | ||
@@ -1027,11 +1123,10 @@ dependencies = [ | |||
1027 | 1123 | ||
1028 | [[package]] | 1124 | [[package]] |
1029 | name = "thread_local" | 1125 | name = "thread_local" |
1030 | version = "0.3.5" | 1126 | version = "0.3.6" |
1031 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1127 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1032 | dependencies = [ | 1128 | dependencies = [ |
1033 | "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1129 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1034 | "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1035 | ] | 1130 | ] |
1036 | 1131 | ||
1037 | [[package]] | 1132 | [[package]] |
@@ -1039,131 +1134,169 @@ name = "time" | |||
1039 | version = "0.1.40" | 1134 | version = "0.1.40" |
1040 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1135 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1041 | dependencies = [ | 1136 | dependencies = [ |
1042 | "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", | 1137 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", |
1043 | "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | 1138 | "redox_syscall 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
1044 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1139 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
1045 | ] | 1140 | ] |
1046 | 1141 | ||
1047 | [[package]] | 1142 | [[package]] |
1048 | name = "tokio" | 1143 | name = "tokio" |
1049 | version = "0.1.7" | 1144 | version = "0.1.13" |
1050 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1145 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1051 | dependencies = [ | 1146 | dependencies = [ |
1052 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1147 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
1053 | "mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1148 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1054 | "tokio-executor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1149 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", |
1055 | "tokio-fs 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1150 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1056 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1151 | "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1057 | "tokio-reactor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1152 | "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
1058 | "tokio-tcp 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1153 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1059 | "tokio-threadpool 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1154 | "tokio-fs 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
1060 | "tokio-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1155 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
1061 | "tokio-udp 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1156 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
1157 | "tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1158 | "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1159 | "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1160 | "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1161 | "tokio-uds 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1062 | ] | 1162 | ] |
1063 | 1163 | ||
1064 | [[package]] | 1164 | [[package]] |
1065 | name = "tokio-codec" | 1165 | name = "tokio-codec" |
1066 | version = "0.1.0" | 1166 | version = "0.1.1" |
1067 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1167 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1068 | dependencies = [ | 1168 | dependencies = [ |
1069 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1169 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
1070 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1170 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1071 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1171 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
1172 | ] | ||
1173 | |||
1174 | [[package]] | ||
1175 | name = "tokio-current-thread" | ||
1176 | version = "0.1.4" | ||
1177 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1178 | dependencies = [ | ||
1179 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1180 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1072 | ] | 1181 | ] |
1073 | 1182 | ||
1074 | [[package]] | 1183 | [[package]] |
1075 | name = "tokio-executor" | 1184 | name = "tokio-executor" |
1076 | version = "0.1.2" | 1185 | version = "0.1.5" |
1077 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1186 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1078 | dependencies = [ | 1187 | dependencies = [ |
1079 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1188 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1080 | ] | 1189 | ] |
1081 | 1190 | ||
1082 | [[package]] | 1191 | [[package]] |
1083 | name = "tokio-fs" | 1192 | name = "tokio-fs" |
1084 | version = "0.1.2" | 1193 | version = "0.1.4" |
1085 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1194 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1086 | dependencies = [ | 1195 | dependencies = [ |
1087 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1196 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1088 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1197 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
1089 | "tokio-threadpool 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1198 | "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", |
1090 | ] | 1199 | ] |
1091 | 1200 | ||
1092 | [[package]] | 1201 | [[package]] |
1093 | name = "tokio-io" | 1202 | name = "tokio-io" |
1094 | version = "0.1.7" | 1203 | version = "0.1.10" |
1095 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1096 | dependencies = [ | 1205 | dependencies = [ |
1097 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1206 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
1098 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1207 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1099 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1208 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
1100 | ] | 1209 | ] |
1101 | 1210 | ||
1102 | [[package]] | 1211 | [[package]] |
1103 | name = "tokio-reactor" | 1212 | name = "tokio-reactor" |
1104 | version = "0.1.2" | 1213 | version = "0.1.7" |
1105 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1214 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1106 | dependencies = [ | 1215 | dependencies = [ |
1107 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1216 | "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1217 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1218 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1108 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1219 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
1109 | "mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1220 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", |
1110 | "slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1221 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1111 | "tokio-executor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1222 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
1112 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1223 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1224 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1225 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1113 | ] | 1226 | ] |
1114 | 1227 | ||
1115 | [[package]] | 1228 | [[package]] |
1116 | name = "tokio-tcp" | 1229 | name = "tokio-tcp" |
1117 | version = "0.1.0" | 1230 | version = "0.1.2" |
1118 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1231 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1119 | dependencies = [ | 1232 | dependencies = [ |
1120 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1233 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
1121 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1234 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1122 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1235 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1123 | "mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1236 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", |
1124 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1237 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
1125 | "tokio-reactor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1238 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
1126 | ] | 1239 | ] |
1127 | 1240 | ||
1128 | [[package]] | 1241 | [[package]] |
1129 | name = "tokio-threadpool" | 1242 | name = "tokio-threadpool" |
1130 | version = "0.1.5" | 1243 | version = "0.1.9" |
1131 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1244 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1132 | dependencies = [ | 1245 | dependencies = [ |
1133 | "crossbeam-deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1246 | "crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1134 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1247 | "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1248 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1135 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1249 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
1136 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1250 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1137 | "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1251 | "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1138 | "tokio-executor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1252 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1139 | ] | 1253 | ] |
1140 | 1254 | ||
1141 | [[package]] | 1255 | [[package]] |
1142 | name = "tokio-timer" | 1256 | name = "tokio-timer" |
1143 | version = "0.2.4" | 1257 | version = "0.2.8" |
1144 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1258 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1145 | dependencies = [ | 1259 | dependencies = [ |
1146 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1260 | "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1147 | "tokio-executor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1261 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1262 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1263 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1148 | ] | 1264 | ] |
1149 | 1265 | ||
1150 | [[package]] | 1266 | [[package]] |
1151 | name = "tokio-udp" | 1267 | name = "tokio-udp" |
1152 | version = "0.1.1" | 1268 | version = "0.1.3" |
1269 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1270 | dependencies = [ | ||
1271 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1272 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1273 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1274 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1275 | "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1276 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1277 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1278 | ] | ||
1279 | |||
1280 | [[package]] | ||
1281 | name = "tokio-uds" | ||
1282 | version = "0.2.4" | ||
1153 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1283 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1154 | dependencies = [ | 1284 | dependencies = [ |
1155 | "bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1285 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", |
1156 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1286 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1287 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1288 | "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1157 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1289 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
1158 | "mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1290 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", |
1159 | "tokio-codec 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1291 | "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", |
1160 | "tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1292 | "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1161 | "tokio-reactor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1293 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
1294 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1162 | ] | 1295 | ] |
1163 | 1296 | ||
1164 | [[package]] | 1297 | [[package]] |
1165 | name = "toml" | 1298 | name = "toml" |
1166 | version = "0.4.6" | 1299 | version = "0.4.9" |
1167 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1300 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1168 | dependencies = [ | 1301 | dependencies = [ |
1169 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", | 1302 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1176,7 +1309,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1176 | 1309 | ||
1177 | [[package]] | 1310 | [[package]] |
1178 | name = "ucd-util" | 1311 | name = "ucd-util" |
1179 | version = "0.1.1" | 1312 | version = "0.1.3" |
1180 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1313 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1181 | 1314 | ||
1182 | [[package]] | 1315 | [[package]] |
@@ -1184,15 +1317,15 @@ name = "unicase" | |||
1184 | version = "1.4.2" | 1317 | version = "1.4.2" |
1185 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1318 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1186 | dependencies = [ | 1319 | dependencies = [ |
1187 | "version_check 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1320 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1188 | ] | 1321 | ] |
1189 | 1322 | ||
1190 | [[package]] | 1323 | [[package]] |
1191 | name = "unicase" | 1324 | name = "unicase" |
1192 | version = "2.1.0" | 1325 | version = "2.2.0" |
1193 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1326 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1194 | dependencies = [ | 1327 | dependencies = [ |
1195 | "version_check 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1328 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1196 | ] | 1329 | ] |
1197 | 1330 | ||
1198 | [[package]] | 1331 | [[package]] |
@@ -1200,7 +1333,7 @@ name = "unicode-bidi" | |||
1200 | version = "0.3.4" | 1333 | version = "0.3.4" |
1201 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1334 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1202 | dependencies = [ | 1335 | dependencies = [ |
1203 | "matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1336 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1204 | ] | 1337 | ] |
1205 | 1338 | ||
1206 | [[package]] | 1339 | [[package]] |
@@ -1233,22 +1366,17 @@ dependencies = [ | |||
1233 | 1366 | ||
1234 | [[package]] | 1367 | [[package]] |
1235 | name = "url" | 1368 | name = "url" |
1236 | version = "1.7.1" | 1369 | version = "1.7.2" |
1237 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1370 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1238 | dependencies = [ | 1371 | dependencies = [ |
1239 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1372 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1240 | "matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1373 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1241 | "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1374 | "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1242 | ] | 1375 | ] |
1243 | 1376 | ||
1244 | [[package]] | 1377 | [[package]] |
1245 | name = "urlencoding" | ||
1246 | version = "1.0.0" | ||
1247 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1248 | |||
1249 | [[package]] | ||
1250 | name = "utf8-ranges" | 1378 | name = "utf8-ranges" |
1251 | version = "1.0.0" | 1379 | version = "1.0.2" |
1252 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1380 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1253 | 1381 | ||
1254 | [[package]] | 1382 | [[package]] |
@@ -1256,12 +1384,12 @@ name = "uuid" | |||
1256 | version = "0.7.1" | 1384 | version = "0.7.1" |
1257 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1385 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1258 | dependencies = [ | 1386 | dependencies = [ |
1259 | "rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1387 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1260 | ] | 1388 | ] |
1261 | 1389 | ||
1262 | [[package]] | 1390 | [[package]] |
1263 | name = "vcpkg" | 1391 | name = "vcpkg" |
1264 | version = "0.2.4" | 1392 | version = "0.2.6" |
1265 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1393 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1266 | 1394 | ||
1267 | [[package]] | 1395 | [[package]] |
@@ -1271,7 +1399,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1271 | 1399 | ||
1272 | [[package]] | 1400 | [[package]] |
1273 | name = "version_check" | 1401 | name = "version_check" |
1274 | version = "0.1.4" | 1402 | version = "0.1.5" |
1275 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1403 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1276 | 1404 | ||
1277 | [[package]] | 1405 | [[package]] |
@@ -1284,7 +1412,7 @@ name = "want" | |||
1284 | version = "0.0.6" | 1412 | version = "0.0.6" |
1285 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1413 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1286 | dependencies = [ | 1414 | dependencies = [ |
1287 | "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", | 1415 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", |
1288 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1416 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
1289 | "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1417 | "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1290 | ] | 1418 | ] |
@@ -1296,7 +1424,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1296 | 1424 | ||
1297 | [[package]] | 1425 | [[package]] |
1298 | name = "winapi" | 1426 | name = "winapi" |
1299 | version = "0.3.5" | 1427 | version = "0.3.6" |
1300 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1428 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1301 | dependencies = [ | 1429 | dependencies = [ |
1302 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1430 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1334,158 +1462,169 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1334 | 1462 | ||
1335 | [metadata] | 1463 | [metadata] |
1336 | "checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c" | 1464 | "checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c" |
1337 | "checksum aho-corasick 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c6d463cbe7ed28720b5b489e7c083eeb8f90d08be2a0d6bb9e1ffea9ce1afa" | 1465 | "checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" |
1338 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | 1466 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" |
1339 | "checksum arc-swap 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4abc8ee4a466b56db51b3816c0db033f4528af79bc12e29c45b225d91b4fcad4" | 1467 | "checksum arc-swap 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5ed110e2537bdd3f5b9091707a8a5556a72ac49bbd7302ae0b28fdccb3246c" |
1340 | "checksum array-macro 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8b1b1a00de235e9f2cc0e650423dc249d875c116a5934188c08fdd0c02d840ef" | 1468 | "checksum array-macro 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8b1b1a00de235e9f2cc0e650423dc249d875c116a5934188c08fdd0c02d840ef" |
1341 | "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef" | 1469 | "checksum arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f405cc4c21cd8b784f6c8fc2adf9bc00f59558f0049b5ec21517f875963040cc" |
1342 | "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" | 1470 | "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" |
1343 | "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" | 1471 | "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" |
1344 | "checksum bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789" | 1472 | "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" |
1345 | "checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39" | 1473 | "checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39" |
1346 | "checksum byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9" | 1474 | "checksum byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "94f88df23a25417badc922ab0f5716cc1330e87f71ddd9203b3a3ccd9cedf75d" |
1347 | "checksum bytes 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e178b8e0e239e844b083d5a0d4a156b2654e67f9f80144d48398fcd736a24fb8" | 1475 | "checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" |
1348 | "checksum cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "2119ea4867bd2b8ed3aecab467709720b2d55b1bcfe09f772fd68066eaf15275" | 1476 | "checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16" |
1349 | "checksum cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "efe5c877e17a9c717a0bf3613b2709f723202c4e4675cc8f12926ded29bcb17e" | 1477 | "checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" |
1350 | "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" | 1478 | "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" |
1351 | "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" | 1479 | "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" |
1352 | "checksum core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980" | 1480 | "checksum core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980" |
1353 | "checksum core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa" | 1481 | "checksum core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa" |
1354 | "checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" | 1482 | "checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" |
1355 | "checksum crossbeam-channel 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "efff2d411e0ac3731b9f6de882b2790fdd2de651577500a806ce78b95b2b9f31" | 1483 | "checksum crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b85741761b7f160bc5e7e0c14986ef685b7f8bf9b7ad081c60c604bb4649827" |
1356 | "checksum crossbeam-deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fe8153ef04a7594ded05b427ffad46ddeaf22e63fd48d42b3e1e3bb4db07cae7" | 1484 | "checksum crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe1b6f945f824c7a25afe44f62e25d714c0cc523f8e99d8db5cd1026e1269d3" |
1357 | "checksum crossbeam-epoch 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2af0e75710d6181e234c8ecc79f14a97907850a541b13b0be1dd10992f2e4620" | 1485 | "checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8" |
1358 | "checksum crossbeam-epoch 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "285987a59c4d91388e749850e3cb7b3a92299668528caaacd08005b8f238c0ea" | 1486 | "checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015" |
1359 | "checksum crossbeam-utils 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d636a8b3bcc1b409d7ffd3facef8f21dcb4009626adbd0c5e6c4305c07253c7b" | 1487 | "checksum crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c55913cc2799171a550e307918c0a360e8c16004820291bf3b638969b4a01816" |
1360 | "checksum crossbeam-utils 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ea52fab26a99d96cdff39d0ca75c9716125937f5dba2ab83923aaaf5928f684a" | ||
1361 | "checksum cursive 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1df013f020cf1e66c456c9af584ae660590b8147186fd66b941604f85145b880" | 1488 | "checksum cursive 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1df013f020cf1e66c456c9af584ae660590b8147186fd66b941604f85145b880" |
1362 | "checksum dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd" | 1489 | "checksum dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd" |
1363 | "checksum encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ca20350a7cb5aab5b9034731123d6d412caf3e92d4985e739e411ba0955fd0eb" | 1490 | "checksum encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ca20350a7cb5aab5b9034731123d6d412caf3e92d4985e739e411ba0955fd0eb" |
1364 | "checksum enum-map 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "caa1769f019df7ccd8f9a741d2d608309688d0f1bd8a8747c14ac993660c761c" | 1491 | "checksum enum-map 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "caa1769f019df7ccd8f9a741d2d608309688d0f1bd8a8747c14ac993660c761c" |
1365 | "checksum enum-map-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f915c8ef505ce27b6fa51515463938aa2e9135081fefc93aef786539a646a365" | 1492 | "checksum enum-map-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f915c8ef505ce27b6fa51515463938aa2e9135081fefc93aef786539a646a365" |
1366 | "checksum enumset 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "81193cae36d896445dae43f89be4fd6a171aad6bd674acb7e7074d50bbce6940" | 1493 | "checksum enumset 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "410e0c8f67e79dcc08cb844c629e2845e9846b464e059b7f3c9d5311b4151d8d" |
1494 | "checksum enumset_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "24300e54ac8ddea74e337f0309c71df4a8c1d7a7fd48a287ef0af8354fadb788" | ||
1367 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" | 1495 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" |
1368 | "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" | 1496 | "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" |
1369 | "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" | 1497 | "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" |
1370 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | 1498 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" |
1371 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | 1499 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" |
1372 | "checksum futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)" = "884dbe32a6ae4cd7da5c6db9b78114449df9953b8d490c9d7e1b51720b922c62" | 1500 | "checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" |
1373 | "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" | 1501 | "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" |
1374 | "checksum gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb" | 1502 | "checksum h2 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "7dd33bafe2e6370e6c8eb0cf1b8c5f93390b90acde7e9b03723f166b28b648ed" |
1375 | "checksum h2 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "6229ac66d3392dd83288fe04defd4b353354b15bbe07820d53dda063a736afcc" | 1503 | "checksum http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "02096a6d2c55e63f7fcb800690e4f889a25f6ec342e3adb4594e293b625215ab" |
1376 | "checksum http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "24f58e8c2d8e886055c3ead7b28793e1455270b5fb39650984c224bc538ba581" | 1504 | "checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" |
1377 | "checksum httparse 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7b6288d7db100340ca12873fd4d08ad1b8f206a9457798dfb17c018a33fee540" | 1505 | "checksum hyper 0.12.16 (registry+https://github.com/rust-lang/crates.io-index)" = "0aeedb8ca5f0f96be00f84073c6d0d5f962ecad020ef543dff99a7c12717a60e" |
1378 | "checksum hyper 0.12.14 (registry+https://github.com/rust-lang/crates.io-index)" = "2f60ae467ef4fc5eba9a34d31648c9c8ed902faf45a217f6734ce9ea64779ac7" | ||
1379 | "checksum hyper-tls 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "32cd73f14ad370d3b4d4b7dce08f69b81536c82e39fcc89731930fe5788cd661" | 1506 | "checksum hyper-tls 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "32cd73f14ad370d3b4d4b7dce08f69b81536c82e39fcc89731930fe5788cd661" |
1380 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" | 1507 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" |
1381 | "checksum indexmap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08173ba1e906efb6538785a8844dd496f5d34f0a2d88038e95195172fc667220" | 1508 | "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" |
1382 | "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" | 1509 | "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" |
1383 | "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" | 1510 | "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" |
1384 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" | 1511 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" |
1385 | "checksum lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fb497c35d362b6a331cfd94956a07fc2c78a4604cdbee844a81170386b996dd3" | 1512 | "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" |
1386 | "checksum lazycell 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a6f08839bc70ef4a3fe1d566d5350f519c5912ea86be0df1740a7d247c7fc0ef" | 1513 | "checksum lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddba4c30a78328befecec92fc94970e53b3ae385827d28620f0f5bb2493081e0" |
1387 | "checksum libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b685088df2b950fccadf07a7187c8ef846a959c142338a48f9dc0b94517eb5f1" | 1514 | "checksum libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)" = "10923947f84a519a45c8fefb7dd1b3e8c08747993381adee176d7a82b4195311" |
1388 | "checksum libflate 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "21138fc6669f438ed7ae3559d5789a5f0ba32f28c1f0608d1e452b0bb06ee936" | 1515 | "checksum libflate 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "21138fc6669f438ed7ae3559d5789a5f0ba32f28c1f0608d1e452b0bb06ee936" |
1516 | "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" | ||
1389 | "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" | 1517 | "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" |
1390 | "checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" | 1518 | "checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" |
1391 | "checksum matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "835511bab37c34c47da5cb44844bea2cfde0236db0b506f90ea4224482c9774a" | 1519 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" |
1392 | "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" | 1520 | "checksum memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0a3eb002f0535929f1199681417029ebea04aadc0c7a4224b46be99c7f5d6a16" |
1393 | "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" | 1521 | "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" |
1394 | "checksum mime 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "fe51c8699d2dc522bf8c1ebe26ea2193d151fb54bcdfd7d0318750c189994cd9" | 1522 | "checksum mime 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)" = "0a907b83e7b9e987032439a387e187119cddafc92d5c2aaeb1d92580a793f630" |
1395 | "checksum mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed" | 1523 | "checksum mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed" |
1396 | "checksum mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)" = "4fcfcb32d63961fb6f367bfd5d21e4600b92cd310f71f9dca25acae196eb1560" | 1524 | "checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" |
1525 | "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" | ||
1397 | "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" | 1526 | "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" |
1398 | "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" | 1527 | "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" |
1399 | "checksum ncurses 5.93.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0ecd01d431a5e9c1c733a1e3ab939b9b6c9c4ddc540c74caf3909664127785fa" | 1528 | "checksum ncurses 5.97.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee821144e7fe6fd1d1c04b8001d92d783ae471a71d60ab506e6c608b83a85ae6" |
1400 | "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" | 1529 | "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" |
1401 | "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" | 1530 | "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" |
1402 | "checksum num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cf4825417e1e1406b3782a8ce92f4d53f26ec055e3622e1881ca8e9f5f9e08db" | 1531 | "checksum num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cf4825417e1e1406b3782a8ce92f4d53f26ec055e3622e1881ca8e9f5f9e08db" |
1403 | "checksum num-complex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "68de83578789e0fbda3fa923035be83cf8bfd3b30ccfdecd5aa89bf8601f408e" | 1532 | "checksum num-complex 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "107b9be86cd2481930688277b675b0114578227f034674726605b8a482d8baf8" |
1404 | "checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" | 1533 | "checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" |
1405 | "checksum num-iter 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "af3fdbbc3291a5464dc57b03860ec37ca6bf915ed6ee385e7c6c052c422b2124" | 1534 | "checksum num-iter 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "af3fdbbc3291a5464dc57b03860ec37ca6bf915ed6ee385e7c6c052c422b2124" |
1406 | "checksum num-rational 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4e96f040177bb3da242b5b1ecf3f54b5d5af3efbbfb18608977a5d2767b22f10" | 1535 | "checksum num-rational 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4e96f040177bb3da242b5b1ecf3f54b5d5af3efbbfb18608977a5d2767b22f10" |
1407 | "checksum num-traits 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "630de1ef5cc79d0cdd78b7e33b81f083cbfe90de0f4b2b2f07f905867c70e9fe" | 1536 | "checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" |
1408 | "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" | 1537 | "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" |
1409 | "checksum openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "5e1309181cdcbdb51bc3b6bedb33dfac2a83b3d585033d3f6d9e22e8c1928613" | 1538 | "checksum openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "5e1309181cdcbdb51bc3b6bedb33dfac2a83b3d585033d3f6d9e22e8c1928613" |
1410 | "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" | 1539 | "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" |
1411 | "checksum openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)" = "278c1ad40a89aa1e741a1eed089a2f60b18fab8089c3139b542140fc7d674106" | 1540 | "checksum openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)" = "278c1ad40a89aa1e741a1eed089a2f60b18fab8089c3139b542140fc7d674106" |
1412 | "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" | ||
1413 | "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" | 1541 | "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" |
1414 | "checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" | 1542 | "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" |
1415 | "checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa" | 1543 | "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" |
1416 | "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" | 1544 | "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" |
1417 | "checksum phf 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "7d37a244c75a9748e049225155f56dbcb98fe71b192fd25fd23cb914b5ad62f2" | 1545 | "checksum phf 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "cec29da322b242f4c3098852c77a0ca261c9c01b806cae85a5572a1eb94db9a6" |
1418 | "checksum phf_codegen 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "4e4048fe7dd7a06b8127ecd6d3803149126e9b33c7558879846da3a63f734f2b" | 1546 | "checksum phf_codegen 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "7d187f00cd98d5afbcd8898f6cf181743a449162aeb329dcd2f3849009e605ad" |
1419 | "checksum phf_generator 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "05a079dd052e7b674d21cb31cbb6c05efd56a2cd2827db7692e2f1a507ebd998" | 1547 | "checksum phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "03dc191feb9b08b0dc1330d6549b795b9d81aec19efe6b4a45aec8d4caee0c4b" |
1420 | "checksum phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)" = "c2261d544c2bb6aa3b10022b0be371b9c7c64f762ef28c6f5d4f1ef6d97b5930" | 1548 | "checksum phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "b539898d22d4273ded07f64a05737649dc69095d92cb87c7097ec68e3f150b93" |
1421 | "checksum pkg-config 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)" = "6a52e4dbc8354505ee07e484ab07127e06d87ca6fa7f0a516a2b294e5ad5ad16" | 1549 | "checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" |
1422 | "checksum proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "cccdc7557a98fe98453030f077df7f3a042052fae465bb61d2c2c41435cfd9b6" | 1550 | "checksum proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)" = "77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09" |
1423 | "checksum quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b71f9f575d55555aa9c06188be9d4e2bfc83ed02537948ac0d520c24d0419f1a" | 1551 | "checksum quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c" |
1424 | "checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5" | 1552 | "checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c" |
1425 | "checksum rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "12397506224b2f93e6664ffc4f664b29be8208e5157d3d90b44f09b5fae470ea" | 1553 | "checksum rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a" |
1426 | "checksum rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2" | 1554 | "checksum rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a" |
1427 | "checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1" | 1555 | "checksum rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372" |
1556 | "checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db" | ||
1557 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" | ||
1558 | "checksum rand_isaac 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d6ecfe9ebf36acd47a49d150990b047a5f7db0a7236ee2414b7ff5cc1097c7b" | ||
1559 | "checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" | ||
1560 | "checksum rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3" | ||
1561 | "checksum redox_syscall 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "cf8fb82a4d1c9b28f1c26c574a5b541f5ffb4315f6c9a791fa47b6a04438fe93" | ||
1428 | "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" | 1562 | "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" |
1429 | "checksum reexport-proc-macro 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "438fe63770eda15baf98e30b4d27ada49b932866307fa04fec24d9043fe63324" | 1563 | "checksum reexport-proc-macro 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "438fe63770eda15baf98e30b4d27ada49b932866307fa04fec24d9043fe63324" |
1430 | "checksum regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5bbbea44c5490a1e84357ff28b7d518b4619a159fed5d25f6c1de2d19cc42814" | 1564 | "checksum regex 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ee84f70c8c08744ea9641a731c7fadb475bf2ecc52d7f627feb833e0b3990467" |
1431 | "checksum regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "747ba3b235651f6e2f67dfa8bcdcd073ddb7c243cb21c442fc12395dfcac212d" | 1565 | "checksum regex-syntax 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fbc557aac2b708fe84121caf261346cc2eed71978024337e42eb46b8a252ac6e" |
1432 | "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" | 1566 | "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" |
1433 | "checksum reqwest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ab52e462d1e15891441aeefadff68bdea005174328ce3da0a314f2ad313ec837" | 1567 | "checksum reqwest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ab52e462d1e15891441aeefadff68bdea005174328ce3da0a314f2ad313ec837" |
1568 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | ||
1434 | "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" | 1569 | "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" |
1435 | "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" | 1570 | "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" |
1436 | "checksum schannel 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "dc1fabf2a7b6483a141426e1afd09ad543520a77ac49bd03c286e7696ccfd77f" | 1571 | "checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56" |
1437 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" | 1572 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" |
1438 | "checksum security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "697d3f3c23a618272ead9e1fb259c1411102b31c6af8b93f1d64cca9c3b0e8e0" | 1573 | "checksum security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "697d3f3c23a618272ead9e1fb259c1411102b31c6af8b93f1d64cca9c3b0e8e0" |
1439 | "checksum security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab01dfbe5756785b5b4d46e0289e5a18071dfa9a7c2b24213ea00b9ef9b665bf" | 1574 | "checksum security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab01dfbe5756785b5b4d46e0289e5a18071dfa9a7c2b24213ea00b9ef9b665bf" |
1575 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | ||
1576 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | ||
1440 | "checksum serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "15c141fc7027dd265a47c090bf864cf62b42c4d228bbcf4e51a0c9e2b0d3f7ef" | 1577 | "checksum serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "15c141fc7027dd265a47c090bf864cf62b42c4d228bbcf4e51a0c9e2b0d3f7ef" |
1441 | "checksum serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "c37ccd6be3ed1fdf419ee848f7c758eb31b054d7cd3ae3600e3bae0adf569811" | 1578 | "checksum serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "c37ccd6be3ed1fdf419ee848f7c758eb31b054d7cd3ae3600e3bae0adf569811" |
1442 | "checksum serde_urlencoded 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e703cef904312097cfceab9ce131ff6bbe09e8c964a0703345a5f49238757bc1" | 1579 | "checksum serde_urlencoded 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d48f9f99cd749a2de71d29da5f948de7f2764cc5a9d7f3c97e3514d4ee6eabf2" |
1443 | "checksum signal-hook 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9d9d8fde20b48055703dc074e08da8beb00896a8a50182486bcadc443730a649" | 1580 | "checksum signal-hook 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8941ae94fa73d0f73b422774b3a40a7195cecd88d1c090f4b37ade7dc795ab66" |
1444 | "checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537" | 1581 | "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" |
1445 | "checksum slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fdeff4cd9ecff59ec7e3744cbca73dfe5ac35c2aedb2cfba8a1c715a18912e9d" | 1582 | "checksum slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5f9776d6b986f77b35c6cf846c11ad986ff128fe0b2b63a3628e3755e8d3102d" |
1446 | "checksum smallvec 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "26df3bb03ca5eac2e64192b723d51f56c1b1e0860e7c766281f4598f181acdc8" | 1583 | "checksum smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "622df2d454c29a4d89b30dc3b27b42d7d90d6b9e587dbf8f67652eb7514da484" |
1447 | "checksum stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa" | 1584 | "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" |
1448 | "checksum string 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00caf261d6f90f588f8450b8e1230fa0d5be49ee6140fdfbcb55335aff350970" | 1585 | "checksum string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98998cced76115b1da46f63388b909d118a37ae0be0f82ad35773d4a4bc9d18d" |
1449 | "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" | 1586 | "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" |
1450 | "checksum syn 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)" = "4bad7abdf6633f07c7046b90484f1d9dc055eca39f8c991177b1046ce61dba9a" | 1587 | "checksum syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)" = "261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741" |
1588 | "checksum syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)" = "ae8b29eb5210bc5cf63ed6149cbf9adfc82ac0be023d8735c176ee74a2db4da7" | ||
1451 | "checksum tempfile 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "55c1195ef8513f3273d55ff59fe5da6940287a0d7a98331254397f464833675b" | 1589 | "checksum tempfile 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "55c1195ef8513f3273d55ff59fe5da6940287a0d7a98331254397f464833675b" |
1452 | "checksum term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327" | 1590 | "checksum term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327" |
1453 | "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" | 1591 | "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" |
1454 | "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" | 1592 | "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" |
1455 | "checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963" | 1593 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" |
1456 | "checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b" | 1594 | "checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b" |
1457 | "checksum tokio 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8ee337e5f4e501fc32966fec6fe0ca0cc1c237b0b1b14a335f8bfe3c5f06e286" | 1595 | "checksum tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "a7817d4c98cc5be21360b3b37d6036fe9b7aefa5b7a201b7b16ff33423822f7d" |
1458 | "checksum tokio-codec 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "881e9645b81c2ce95fcb799ded2c29ffb9f25ef5bef909089a420e5961dd8ccb" | 1596 | "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" |
1459 | "checksum tokio-executor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8cac2a7883ff3567e9d66bb09100d09b33d90311feca0206c7ca034bc0c55113" | 1597 | "checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6" |
1460 | "checksum tokio-fs 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "40697ecbea5660df15b15d50a077386477d2f6a35002adf01ce76ff9dd9dce48" | 1598 | "checksum tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c117b6cf86bb730aab4834f10df96e4dd586eff2c3c27d3781348da49e255bde" |
1461 | "checksum tokio-io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a5c9635ee806f26d302b8baa1e145689a280d8f5aa8d0552e7344808da54cc21" | 1599 | "checksum tokio-fs 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "60ae25f6b17d25116d2cba342083abe5255d3c2c79cb21ea11aa049c53bf7c75" |
1462 | "checksum tokio-reactor 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e00ec63bbec2c97ce1178cb0587b2c438b2f6b09d3ee54a33c45a9cf0d530810" | 1600 | "checksum tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "7392fe0a70d5ce0c882c4778116c519bd5dbaa8a7c3ae3d04578b3afafdcda21" |
1463 | "checksum tokio-tcp 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ec9b094851aadd2caf83ba3ad8e8c4ce65a42104f7b94d9e6550023f0407853f" | 1601 | "checksum tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "502b625acb4ee13cbb3b90b8ca80e0addd263ddacf6931666ef751e610b07fb5" |
1464 | "checksum tokio-threadpool 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "24ab84f574027b0e875378f31575cf175360891919e93a3490f07e76e00e4efb" | 1602 | "checksum tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ad235e9dadd126b2d47f6736f65aa1fdcd6420e66ca63f44177bc78df89f912" |
1465 | "checksum tokio-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "028b94314065b90f026a21826cffd62a4e40a92cda3e5c069cc7b02e5945f5e9" | 1603 | "checksum tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "56c5556262383032878afad66943926a1d1f0967f17e94bd7764ceceb3b70e7f" |
1466 | "checksum tokio-udp 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43eb534af6e8f37d43ab1b612660df14755c42bd003c5f8d2475ee78cc4600c0" | 1604 | "checksum tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4f37f0111d76cc5da132fe9bc0590b9b9cfd079bc7e75ac3846278430a299ff8" |
1467 | "checksum toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a0263c6c02c4db6c8f7681f9fd35e90de799ebd4cfdeab77a38f4ff6b3d8c0d9" | 1605 | "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" |
1606 | "checksum tokio-uds 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "99ce87382f6c1a24b513a72c048b2c8efe66cb5161c9061d00bee510f08dc168" | ||
1607 | "checksum toml 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "19782e145d5abefb03758958f06ea35f7b1d8421b534140e0238fd3d0bfd66e3" | ||
1468 | "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" | 1608 | "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" |
1469 | "checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" | 1609 | "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" |
1470 | "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" | 1610 | "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" |
1471 | "checksum unicase 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "284b6d3db520d67fbe88fd778c21510d1b0ba4a551e5d0fbb023d33405f6de8a" | 1611 | "checksum unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d3218ea14b4edcaccfa0df0a64a3792a2c32cc706f1b336e48867f9d3147f90" |
1472 | "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" | 1612 | "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" |
1473 | "checksum unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25" | 1613 | "checksum unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25" |
1474 | "checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" | 1614 | "checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" |
1475 | "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" | 1615 | "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" |
1476 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" | 1616 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" |
1477 | "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" | 1617 | "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" |
1478 | "checksum url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6" | 1618 | "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" |
1479 | "checksum urlencoding 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3df3561629a8bb4c57e5a2e4c43348d9e29c7c29d9b1c4c1f47166deca8f37ed" | 1619 | "checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" |
1480 | "checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122" | ||
1481 | "checksum uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dab5c5526c5caa3d106653401a267fed923e7046f35895ffcb5ca42db64942e6" | 1620 | "checksum uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dab5c5526c5caa3d106653401a267fed923e7046f35895ffcb5ca42db64942e6" |
1482 | "checksum vcpkg 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cbe533e138811704c0e3cbde65a818b35d3240409b4346256c5ede403e082474" | 1621 | "checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d" |
1483 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" | 1622 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" |
1484 | "checksum version_check 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7716c242968ee87e5542f8021178248f267f295a5c4803beae8b8b7fd9bc6051" | 1623 | "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" |
1485 | "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" | 1624 | "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" |
1486 | "checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" | 1625 | "checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" |
1487 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" | 1626 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" |
1488 | "checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd" | 1627 | "checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" |
1489 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" | 1628 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" |
1490 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | 1629 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
1491 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 1630 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
@@ -5,7 +5,7 @@ version = "0.1.0" | |||
5 | authors = ["NerdyPepper <[email protected]>"] | 5 | authors = ["NerdyPepper <[email protected]>"] |
6 | description = "TUI MediaWiki browser" | 6 | description = "TUI MediaWiki browser" |
7 | repository = "https://github.com/NerdyPepper/taizen" | 7 | repository = "https://github.com/NerdyPepper/taizen" |
8 | readme = "./readme.md" | 8 | readme = "readme.md" |
9 | keywords = ["wikipedia", "tui", "app", "curses"] | 9 | keywords = ["wikipedia", "tui", "app", "curses"] |
10 | categories = ["command-line-utilities"] | 10 | categories = ["command-line-utilities"] |
11 | 11 | ||
@@ -14,6 +14,6 @@ reqwest = "0.9.5" | |||
14 | serde_json = "1.0.33" | 14 | serde_json = "1.0.33" |
15 | cursive = "0.9.2" | 15 | cursive = "0.9.2" |
16 | regex = "1" | 16 | regex = "1" |
17 | urlencoding = "1.0.0" | 17 | url = "1.7.2" |
18 | clap = "2.32.0" | 18 | clap = "2.32.0" |
19 | lazy_static = "1.0.2" | 19 | lazy_static = "1.0.2" |