diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 1394 |
1 files changed, 693 insertions, 701 deletions
diff --git a/Cargo.lock b/Cargo.lock index 01e86ab0e..4926256cf 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -2,140 +2,159 @@ | |||
2 | # It is not intended for manual editing. | 2 | # It is not intended for manual editing. |
3 | [[package]] | 3 | [[package]] |
4 | name = "aho-corasick" | 4 | name = "aho-corasick" |
5 | version = "0.7.6" | 5 | version = "0.7.7" |
6 | source = "registry+https://github.com/rust-lang/crates.io-index" | 6 | source = "registry+https://github.com/rust-lang/crates.io-index" |
7 | checksum = "5f56c476256dc249def911d6f7580b5fc7e875895b5d7ee88f5d602208035744" | ||
7 | dependencies = [ | 8 | dependencies = [ |
8 | "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 9 | "memchr", |
9 | ] | 10 | ] |
10 | 11 | ||
11 | [[package]] | 12 | [[package]] |
12 | name = "anyhow" | 13 | name = "anyhow" |
13 | version = "1.0.26" | 14 | version = "1.0.26" |
14 | source = "registry+https://github.com/rust-lang/crates.io-index" | 15 | source = "registry+https://github.com/rust-lang/crates.io-index" |
16 | checksum = "7825f6833612eb2414095684fcf6c635becf3ce97fe48cf6421321e93bfbd53c" | ||
15 | 17 | ||
16 | [[package]] | 18 | [[package]] |
17 | name = "anymap" | 19 | name = "anymap" |
18 | version = "0.12.1" | 20 | version = "0.12.1" |
19 | source = "registry+https://github.com/rust-lang/crates.io-index" | 21 | source = "registry+https://github.com/rust-lang/crates.io-index" |
22 | checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344" | ||
20 | 23 | ||
21 | [[package]] | 24 | [[package]] |
22 | name = "arrayvec" | 25 | name = "arrayvec" |
23 | version = "0.5.1" | 26 | version = "0.5.1" |
24 | source = "registry+https://github.com/rust-lang/crates.io-index" | 27 | source = "registry+https://github.com/rust-lang/crates.io-index" |
28 | checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" | ||
25 | 29 | ||
26 | [[package]] | 30 | [[package]] |
27 | name = "atty" | 31 | name = "atty" |
28 | version = "0.2.14" | 32 | version = "0.2.14" |
29 | source = "registry+https://github.com/rust-lang/crates.io-index" | 33 | source = "registry+https://github.com/rust-lang/crates.io-index" |
34 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
30 | dependencies = [ | 35 | dependencies = [ |
31 | "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 36 | "hermit-abi", |
32 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 37 | "libc", |
33 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 38 | "winapi 0.3.8", |
34 | ] | 39 | ] |
35 | 40 | ||
36 | [[package]] | 41 | [[package]] |
37 | name = "autocfg" | 42 | name = "autocfg" |
38 | version = "0.1.7" | 43 | version = "0.1.7" |
39 | source = "registry+https://github.com/rust-lang/crates.io-index" | 44 | source = "registry+https://github.com/rust-lang/crates.io-index" |
45 | checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" | ||
40 | 46 | ||
41 | [[package]] | 47 | [[package]] |
42 | name = "autocfg" | 48 | name = "autocfg" |
43 | version = "1.0.0" | 49 | version = "1.0.0" |
44 | source = "registry+https://github.com/rust-lang/crates.io-index" | 50 | source = "registry+https://github.com/rust-lang/crates.io-index" |
51 | checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" | ||
45 | 52 | ||
46 | [[package]] | 53 | [[package]] |
47 | name = "backtrace" | 54 | name = "backtrace" |
48 | version = "0.3.42" | 55 | version = "0.3.43" |
49 | source = "registry+https://github.com/rust-lang/crates.io-index" | 56 | source = "registry+https://github.com/rust-lang/crates.io-index" |
57 | checksum = "7f80256bc78f67e7df7e36d77366f636ed976895d91fe2ab9efa3973e8fe8c4f" | ||
50 | dependencies = [ | 58 | dependencies = [ |
51 | "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", | 59 | "backtrace-sys", |
52 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 60 | "cfg-if", |
53 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 61 | "libc", |
54 | "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", | 62 | "rustc-demangle", |
55 | ] | 63 | ] |
56 | 64 | ||
57 | [[package]] | 65 | [[package]] |
58 | name = "backtrace-sys" | 66 | name = "backtrace-sys" |
59 | version = "0.1.32" | 67 | version = "0.1.32" |
60 | source = "registry+https://github.com/rust-lang/crates.io-index" | 68 | source = "registry+https://github.com/rust-lang/crates.io-index" |
69 | checksum = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" | ||
61 | dependencies = [ | 70 | dependencies = [ |
62 | "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", | 71 | "cc", |
63 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 72 | "libc", |
64 | ] | 73 | ] |
65 | 74 | ||
66 | [[package]] | 75 | [[package]] |
67 | name = "base64" | 76 | name = "base64" |
68 | version = "0.11.0" | 77 | version = "0.11.0" |
69 | source = "registry+https://github.com/rust-lang/crates.io-index" | 78 | source = "registry+https://github.com/rust-lang/crates.io-index" |
79 | checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" | ||
70 | 80 | ||
71 | [[package]] | 81 | [[package]] |
72 | name = "bit-set" | 82 | name = "bit-set" |
73 | version = "0.5.1" | 83 | version = "0.5.1" |
74 | source = "registry+https://github.com/rust-lang/crates.io-index" | 84 | source = "registry+https://github.com/rust-lang/crates.io-index" |
85 | checksum = "e84c238982c4b1e1ee668d136c510c67a13465279c0cb367ea6baf6310620a80" | ||
75 | dependencies = [ | 86 | dependencies = [ |
76 | "bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 87 | "bit-vec", |
77 | ] | 88 | ] |
78 | 89 | ||
79 | [[package]] | 90 | [[package]] |
80 | name = "bit-vec" | 91 | name = "bit-vec" |
81 | version = "0.5.1" | 92 | version = "0.5.1" |
82 | source = "registry+https://github.com/rust-lang/crates.io-index" | 93 | source = "registry+https://github.com/rust-lang/crates.io-index" |
94 | checksum = "f59bbe95d4e52a6398ec21238d31577f2b28a9d86807f06ca59d191d8440d0bb" | ||
83 | 95 | ||
84 | [[package]] | 96 | [[package]] |
85 | name = "bitflags" | 97 | name = "bitflags" |
86 | version = "1.2.1" | 98 | version = "1.2.1" |
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | 99 | source = "registry+https://github.com/rust-lang/crates.io-index" |
100 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | ||
88 | 101 | ||
89 | [[package]] | 102 | [[package]] |
90 | name = "bstr" | 103 | name = "bstr" |
91 | version = "0.2.10" | 104 | version = "0.2.10" |
92 | source = "registry+https://github.com/rust-lang/crates.io-index" | 105 | source = "registry+https://github.com/rust-lang/crates.io-index" |
106 | checksum = "fe8a65814ca90dfc9705af76bb6ba3c6e2534489a72270e797e603783bb4990b" | ||
93 | dependencies = [ | 107 | dependencies = [ |
94 | "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 108 | "memchr", |
95 | ] | 109 | ] |
96 | 110 | ||
97 | [[package]] | 111 | [[package]] |
98 | name = "byteorder" | 112 | name = "byteorder" |
99 | version = "1.3.2" | 113 | version = "1.3.2" |
100 | source = "registry+https://github.com/rust-lang/crates.io-index" | 114 | source = "registry+https://github.com/rust-lang/crates.io-index" |
115 | checksum = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" | ||
101 | 116 | ||
102 | [[package]] | 117 | [[package]] |
103 | name = "c2-chacha" | 118 | name = "c2-chacha" |
104 | version = "0.2.3" | 119 | version = "0.2.3" |
105 | source = "registry+https://github.com/rust-lang/crates.io-index" | 120 | source = "registry+https://github.com/rust-lang/crates.io-index" |
121 | checksum = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" | ||
106 | dependencies = [ | 122 | dependencies = [ |
107 | "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | 123 | "ppv-lite86", |
108 | ] | 124 | ] |
109 | 125 | ||
110 | [[package]] | 126 | [[package]] |
111 | name = "cargo_metadata" | 127 | name = "cargo_metadata" |
112 | version = "0.9.1" | 128 | version = "0.9.1" |
113 | source = "registry+https://github.com/rust-lang/crates.io-index" | 129 | source = "registry+https://github.com/rust-lang/crates.io-index" |
130 | checksum = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202" | ||
114 | dependencies = [ | 131 | dependencies = [ |
115 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 132 | "semver", |
116 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 133 | "serde", |
117 | "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 134 | "serde_derive", |
118 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 135 | "serde_json", |
119 | ] | 136 | ] |
120 | 137 | ||
121 | [[package]] | 138 | [[package]] |
122 | name = "cc" | 139 | name = "cc" |
123 | version = "1.0.50" | 140 | version = "1.0.50" |
124 | source = "registry+https://github.com/rust-lang/crates.io-index" | 141 | source = "registry+https://github.com/rust-lang/crates.io-index" |
142 | checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" | ||
125 | 143 | ||
126 | [[package]] | 144 | [[package]] |
127 | name = "cfg-if" | 145 | name = "cfg-if" |
128 | version = "0.1.10" | 146 | version = "0.1.10" |
129 | source = "registry+https://github.com/rust-lang/crates.io-index" | 147 | source = "registry+https://github.com/rust-lang/crates.io-index" |
148 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | ||
130 | 149 | ||
131 | [[package]] | 150 | [[package]] |
132 | name = "chalk-derive" | 151 | name = "chalk-derive" |
133 | version = "0.1.0" | 152 | version = "0.1.0" |
134 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" | 153 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" |
135 | dependencies = [ | 154 | dependencies = [ |
136 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 155 | "proc-macro2", |
137 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 156 | "quote", |
138 | "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", | 157 | "syn", |
139 | ] | 158 | ] |
140 | 159 | ||
141 | [[package]] | 160 | [[package]] |
@@ -143,8 +162,8 @@ name = "chalk-engine" | |||
143 | version = "0.9.0" | 162 | version = "0.9.0" |
144 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" | 163 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" |
145 | dependencies = [ | 164 | dependencies = [ |
146 | "chalk-macros 0.1.1 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 165 | "chalk-macros", |
147 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 166 | "rustc-hash", |
148 | ] | 167 | ] |
149 | 168 | ||
150 | [[package]] | 169 | [[package]] |
@@ -152,10 +171,10 @@ name = "chalk-ir" | |||
152 | version = "0.1.0" | 171 | version = "0.1.0" |
153 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" | 172 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" |
154 | dependencies = [ | 173 | dependencies = [ |
155 | "chalk-derive 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 174 | "chalk-derive", |
156 | "chalk-engine 0.9.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 175 | "chalk-engine", |
157 | "chalk-macros 0.1.1 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 176 | "chalk-macros", |
158 | "lalrpop-intern 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)", | 177 | "lalrpop-intern", |
159 | ] | 178 | ] |
160 | 179 | ||
161 | [[package]] | 180 | [[package]] |
@@ -163,7 +182,7 @@ name = "chalk-macros" | |||
163 | version = "0.1.1" | 182 | version = "0.1.1" |
164 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" | 183 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" |
165 | dependencies = [ | 184 | dependencies = [ |
166 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 185 | "lazy_static", |
167 | ] | 186 | ] |
168 | 187 | ||
169 | [[package]] | 188 | [[package]] |
@@ -171,10 +190,10 @@ name = "chalk-rust-ir" | |||
171 | version = "0.1.0" | 190 | version = "0.1.0" |
172 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" | 191 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" |
173 | dependencies = [ | 192 | dependencies = [ |
174 | "chalk-derive 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 193 | "chalk-derive", |
175 | "chalk-engine 0.9.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 194 | "chalk-engine", |
176 | "chalk-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 195 | "chalk-ir", |
177 | "chalk-macros 0.1.1 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 196 | "chalk-macros", |
178 | ] | 197 | ] |
179 | 198 | ||
180 | [[package]] | 199 | [[package]] |
@@ -182,673 +201,752 @@ name = "chalk-solve" | |||
182 | version = "0.1.0" | 201 | version = "0.1.0" |
183 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" | 202 | source = "git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75#af48f302a1f571b3ca418f7c5aa639a144a34f75" |
184 | dependencies = [ | 203 | dependencies = [ |
185 | "chalk-derive 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 204 | "chalk-derive", |
186 | "chalk-engine 0.9.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 205 | "chalk-engine", |
187 | "chalk-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 206 | "chalk-ir", |
188 | "chalk-macros 0.1.1 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 207 | "chalk-macros", |
189 | "chalk-rust-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 208 | "chalk-rust-ir", |
190 | "ena 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", | 209 | "ena", |
191 | "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", | 210 | "itertools", |
192 | "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", | 211 | "petgraph", |
193 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 212 | "rustc-hash", |
194 | ] | 213 | ] |
195 | 214 | ||
196 | [[package]] | 215 | [[package]] |
197 | name = "clicolors-control" | 216 | name = "clicolors-control" |
198 | version = "1.0.1" | 217 | version = "1.0.1" |
199 | source = "registry+https://github.com/rust-lang/crates.io-index" | 218 | source = "registry+https://github.com/rust-lang/crates.io-index" |
219 | checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e" | ||
200 | dependencies = [ | 220 | dependencies = [ |
201 | "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", | 221 | "atty", |
202 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 222 | "lazy_static", |
203 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 223 | "libc", |
204 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 224 | "winapi 0.3.8", |
205 | ] | 225 | ] |
206 | 226 | ||
207 | [[package]] | 227 | [[package]] |
208 | name = "cloudabi" | 228 | name = "cloudabi" |
209 | version = "0.0.3" | 229 | version = "0.0.3" |
210 | source = "registry+https://github.com/rust-lang/crates.io-index" | 230 | source = "registry+https://github.com/rust-lang/crates.io-index" |
231 | checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" | ||
211 | dependencies = [ | 232 | dependencies = [ |
212 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 233 | "bitflags", |
213 | ] | 234 | ] |
214 | 235 | ||
215 | [[package]] | 236 | [[package]] |
216 | name = "console" | 237 | name = "console" |
217 | version = "0.9.2" | 238 | version = "0.9.2" |
218 | source = "registry+https://github.com/rust-lang/crates.io-index" | 239 | source = "registry+https://github.com/rust-lang/crates.io-index" |
240 | checksum = "45e0f3986890b3acbc782009e2629dfe2baa430ac091519ce3be26164a2ae6c0" | ||
219 | dependencies = [ | 241 | dependencies = [ |
220 | "clicolors-control 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 242 | "clicolors-control", |
221 | "encode_unicode 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | 243 | "encode_unicode", |
222 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 244 | "lazy_static", |
223 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 245 | "libc", |
224 | "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 246 | "regex", |
225 | "termios 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 247 | "termios", |
226 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 248 | "winapi 0.3.8", |
227 | ] | 249 | ] |
228 | 250 | ||
229 | [[package]] | 251 | [[package]] |
230 | name = "crossbeam" | 252 | name = "crossbeam" |
231 | version = "0.7.3" | 253 | version = "0.7.3" |
232 | source = "registry+https://github.com/rust-lang/crates.io-index" | 254 | source = "registry+https://github.com/rust-lang/crates.io-index" |
255 | checksum = "69323bff1fb41c635347b8ead484a5ca6c3f11914d784170b158d8449ab07f8e" | ||
233 | dependencies = [ | 256 | dependencies = [ |
234 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 257 | "cfg-if", |
235 | "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 258 | "crossbeam-channel", |
236 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | 259 | "crossbeam-deque", |
237 | "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 260 | "crossbeam-epoch", |
238 | "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 261 | "crossbeam-queue", |
239 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 262 | "crossbeam-utils", |
240 | ] | 263 | ] |
241 | 264 | ||
242 | [[package]] | 265 | [[package]] |
243 | name = "crossbeam-channel" | 266 | name = "crossbeam-channel" |
244 | version = "0.4.0" | 267 | version = "0.4.0" |
245 | source = "registry+https://github.com/rust-lang/crates.io-index" | 268 | source = "registry+https://github.com/rust-lang/crates.io-index" |
269 | checksum = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" | ||
246 | dependencies = [ | 270 | dependencies = [ |
247 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 271 | "crossbeam-utils", |
248 | ] | 272 | ] |
249 | 273 | ||
250 | [[package]] | 274 | [[package]] |
251 | name = "crossbeam-deque" | 275 | name = "crossbeam-deque" |
252 | version = "0.7.2" | 276 | version = "0.7.2" |
253 | source = "registry+https://github.com/rust-lang/crates.io-index" | 277 | source = "registry+https://github.com/rust-lang/crates.io-index" |
278 | checksum = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" | ||
254 | dependencies = [ | 279 | dependencies = [ |
255 | "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 280 | "crossbeam-epoch", |
256 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 281 | "crossbeam-utils", |
257 | ] | 282 | ] |
258 | 283 | ||
259 | [[package]] | 284 | [[package]] |
260 | name = "crossbeam-epoch" | 285 | name = "crossbeam-epoch" |
261 | version = "0.8.0" | 286 | version = "0.8.0" |
262 | source = "registry+https://github.com/rust-lang/crates.io-index" | 287 | source = "registry+https://github.com/rust-lang/crates.io-index" |
288 | checksum = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" | ||
263 | dependencies = [ | 289 | dependencies = [ |
264 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 290 | "autocfg 0.1.7", |
265 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 291 | "cfg-if", |
266 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 292 | "crossbeam-utils", |
267 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 293 | "lazy_static", |
268 | "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 294 | "memoffset", |
269 | "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 295 | "scopeguard", |
270 | ] | 296 | ] |
271 | 297 | ||
272 | [[package]] | 298 | [[package]] |
273 | name = "crossbeam-queue" | 299 | name = "crossbeam-queue" |
274 | version = "0.2.1" | 300 | version = "0.2.1" |
275 | source = "registry+https://github.com/rust-lang/crates.io-index" | 301 | source = "registry+https://github.com/rust-lang/crates.io-index" |
302 | checksum = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" | ||
276 | dependencies = [ | 303 | dependencies = [ |
277 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 304 | "cfg-if", |
278 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 305 | "crossbeam-utils", |
279 | ] | 306 | ] |
280 | 307 | ||
281 | [[package]] | 308 | [[package]] |
282 | name = "crossbeam-utils" | 309 | name = "crossbeam-utils" |
283 | version = "0.7.0" | 310 | version = "0.7.0" |
284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 311 | source = "registry+https://github.com/rust-lang/crates.io-index" |
312 | checksum = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" | ||
285 | dependencies = [ | 313 | dependencies = [ |
286 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 314 | "autocfg 0.1.7", |
287 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 315 | "cfg-if", |
288 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 316 | "lazy_static", |
289 | ] | 317 | ] |
290 | 318 | ||
291 | [[package]] | 319 | [[package]] |
292 | name = "difference" | 320 | name = "difference" |
293 | version = "2.0.0" | 321 | version = "2.0.0" |
294 | source = "registry+https://github.com/rust-lang/crates.io-index" | 322 | source = "registry+https://github.com/rust-lang/crates.io-index" |
323 | checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" | ||
295 | 324 | ||
296 | [[package]] | 325 | [[package]] |
297 | name = "drop_bomb" | 326 | name = "drop_bomb" |
298 | version = "0.1.4" | 327 | version = "0.1.4" |
299 | source = "registry+https://github.com/rust-lang/crates.io-index" | 328 | source = "registry+https://github.com/rust-lang/crates.io-index" |
329 | checksum = "69b26e475fd29098530e709294e94e661974c851aed42512793f120fed4e199f" | ||
300 | 330 | ||
301 | [[package]] | 331 | [[package]] |
302 | name = "dtoa" | 332 | name = "dtoa" |
303 | version = "0.4.4" | 333 | version = "0.4.5" |
304 | source = "registry+https://github.com/rust-lang/crates.io-index" | 334 | source = "registry+https://github.com/rust-lang/crates.io-index" |
335 | checksum = "4358a9e11b9a09cf52383b451b49a169e8d797b68aa02301ff586d70d9661ea3" | ||
305 | 336 | ||
306 | [[package]] | 337 | [[package]] |
307 | name = "either" | 338 | name = "either" |
308 | version = "1.5.3" | 339 | version = "1.5.3" |
309 | source = "registry+https://github.com/rust-lang/crates.io-index" | 340 | source = "registry+https://github.com/rust-lang/crates.io-index" |
341 | checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" | ||
310 | 342 | ||
311 | [[package]] | 343 | [[package]] |
312 | name = "ena" | 344 | name = "ena" |
313 | version = "0.13.1" | 345 | version = "0.13.1" |
314 | source = "registry+https://github.com/rust-lang/crates.io-index" | 346 | source = "registry+https://github.com/rust-lang/crates.io-index" |
347 | checksum = "8944dc8fa28ce4a38f778bd46bf7d923fe73eed5a439398507246c8e017e6f36" | ||
315 | dependencies = [ | 348 | dependencies = [ |
316 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 349 | "log", |
317 | ] | 350 | ] |
318 | 351 | ||
319 | [[package]] | 352 | [[package]] |
320 | name = "encode_unicode" | 353 | name = "encode_unicode" |
321 | version = "0.3.6" | 354 | version = "0.3.6" |
322 | source = "registry+https://github.com/rust-lang/crates.io-index" | 355 | source = "registry+https://github.com/rust-lang/crates.io-index" |
356 | checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" | ||
323 | 357 | ||
324 | [[package]] | 358 | [[package]] |
325 | name = "env_logger" | 359 | name = "env_logger" |
326 | version = "0.7.1" | 360 | version = "0.7.1" |
327 | source = "registry+https://github.com/rust-lang/crates.io-index" | 361 | source = "registry+https://github.com/rust-lang/crates.io-index" |
362 | checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" | ||
328 | dependencies = [ | 363 | dependencies = [ |
329 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 364 | "log", |
330 | ] | 365 | ] |
331 | 366 | ||
332 | [[package]] | 367 | [[package]] |
333 | name = "filetime" | 368 | name = "filetime" |
334 | version = "0.2.8" | 369 | version = "0.2.8" |
335 | source = "registry+https://github.com/rust-lang/crates.io-index" | 370 | source = "registry+https://github.com/rust-lang/crates.io-index" |
371 | checksum = "1ff6d4dab0aa0c8e6346d46052e93b13a16cf847b54ed357087c35011048cc7d" | ||
336 | dependencies = [ | 372 | dependencies = [ |
337 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 373 | "cfg-if", |
338 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 374 | "libc", |
339 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | 375 | "redox_syscall", |
340 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 376 | "winapi 0.3.8", |
341 | ] | 377 | ] |
342 | 378 | ||
343 | [[package]] | 379 | [[package]] |
344 | name = "fixedbitset" | 380 | name = "fixedbitset" |
345 | version = "0.1.9" | 381 | version = "0.1.9" |
346 | source = "registry+https://github.com/rust-lang/crates.io-index" | 382 | source = "registry+https://github.com/rust-lang/crates.io-index" |
383 | checksum = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" | ||
347 | 384 | ||
348 | [[package]] | 385 | [[package]] |
349 | name = "fnv" | 386 | name = "fnv" |
350 | version = "1.0.6" | 387 | version = "1.0.6" |
351 | source = "registry+https://github.com/rust-lang/crates.io-index" | 388 | source = "registry+https://github.com/rust-lang/crates.io-index" |
389 | checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" | ||
352 | 390 | ||
353 | [[package]] | 391 | [[package]] |
354 | name = "format-buf" | 392 | name = "format-buf" |
355 | version = "1.0.0" | 393 | version = "1.0.0" |
356 | source = "registry+https://github.com/rust-lang/crates.io-index" | 394 | source = "registry+https://github.com/rust-lang/crates.io-index" |
395 | checksum = "f7aea5a5909a74969507051a3b17adc84737e31a5f910559892aedce026f4d53" | ||
357 | 396 | ||
358 | [[package]] | 397 | [[package]] |
359 | name = "fs_extra" | 398 | name = "fs_extra" |
360 | version = "1.1.0" | 399 | version = "1.1.0" |
361 | source = "registry+https://github.com/rust-lang/crates.io-index" | 400 | source = "registry+https://github.com/rust-lang/crates.io-index" |
401 | checksum = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674" | ||
362 | 402 | ||
363 | [[package]] | 403 | [[package]] |
364 | name = "fsevent" | 404 | name = "fsevent" |
365 | version = "0.4.0" | 405 | version = "0.4.0" |
366 | source = "registry+https://github.com/rust-lang/crates.io-index" | 406 | source = "registry+https://github.com/rust-lang/crates.io-index" |
407 | checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" | ||
367 | dependencies = [ | 408 | dependencies = [ |
368 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 409 | "bitflags", |
369 | "fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 410 | "fsevent-sys", |
370 | ] | 411 | ] |
371 | 412 | ||
372 | [[package]] | 413 | [[package]] |
373 | name = "fsevent-sys" | 414 | name = "fsevent-sys" |
374 | version = "2.0.1" | 415 | version = "2.0.1" |
375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 416 | source = "registry+https://github.com/rust-lang/crates.io-index" |
417 | checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" | ||
376 | dependencies = [ | 418 | dependencies = [ |
377 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 419 | "libc", |
378 | ] | 420 | ] |
379 | 421 | ||
380 | [[package]] | 422 | [[package]] |
381 | name = "fst" | 423 | name = "fst" |
382 | version = "0.3.5" | 424 | version = "0.3.5" |
383 | source = "registry+https://github.com/rust-lang/crates.io-index" | 425 | source = "registry+https://github.com/rust-lang/crates.io-index" |
426 | checksum = "927fb434ff9f0115b215dc0efd2e4fbdd7448522a92a1aa37c77d6a2f8f1ebd6" | ||
384 | dependencies = [ | 427 | dependencies = [ |
385 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 428 | "byteorder", |
386 | ] | 429 | ] |
387 | 430 | ||
388 | [[package]] | 431 | [[package]] |
389 | name = "fuchsia-cprng" | 432 | name = "fuchsia-cprng" |
390 | version = "0.1.1" | 433 | version = "0.1.1" |
391 | source = "registry+https://github.com/rust-lang/crates.io-index" | 434 | source = "registry+https://github.com/rust-lang/crates.io-index" |
435 | checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" | ||
392 | 436 | ||
393 | [[package]] | 437 | [[package]] |
394 | name = "fuchsia-zircon" | 438 | name = "fuchsia-zircon" |
395 | version = "0.3.3" | 439 | version = "0.3.3" |
396 | source = "registry+https://github.com/rust-lang/crates.io-index" | 440 | source = "registry+https://github.com/rust-lang/crates.io-index" |
441 | checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | ||
397 | dependencies = [ | 442 | dependencies = [ |
398 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 443 | "bitflags", |
399 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 444 | "fuchsia-zircon-sys", |
400 | ] | 445 | ] |
401 | 446 | ||
402 | [[package]] | 447 | [[package]] |
403 | name = "fuchsia-zircon-sys" | 448 | name = "fuchsia-zircon-sys" |
404 | version = "0.3.3" | 449 | version = "0.3.3" |
405 | source = "registry+https://github.com/rust-lang/crates.io-index" | 450 | source = "registry+https://github.com/rust-lang/crates.io-index" |
451 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | ||
406 | 452 | ||
407 | [[package]] | 453 | [[package]] |
408 | name = "getrandom" | 454 | name = "getrandom" |
409 | version = "0.1.14" | 455 | version = "0.1.14" |
410 | source = "registry+https://github.com/rust-lang/crates.io-index" | 456 | source = "registry+https://github.com/rust-lang/crates.io-index" |
457 | checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" | ||
411 | dependencies = [ | 458 | dependencies = [ |
412 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 459 | "cfg-if", |
413 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 460 | "libc", |
414 | "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", | 461 | "wasi", |
415 | ] | 462 | ] |
416 | 463 | ||
417 | [[package]] | 464 | [[package]] |
418 | name = "globset" | 465 | name = "globset" |
419 | version = "0.4.4" | 466 | version = "0.4.4" |
420 | source = "registry+https://github.com/rust-lang/crates.io-index" | 467 | source = "registry+https://github.com/rust-lang/crates.io-index" |
468 | checksum = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" | ||
421 | dependencies = [ | 469 | dependencies = [ |
422 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", | 470 | "aho-corasick", |
423 | "bstr 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | 471 | "bstr", |
424 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 472 | "fnv", |
425 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 473 | "log", |
426 | "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 474 | "regex", |
427 | ] | 475 | ] |
428 | 476 | ||
429 | [[package]] | 477 | [[package]] |
430 | name = "heck" | 478 | name = "heck" |
431 | version = "0.3.1" | 479 | version = "0.3.1" |
432 | source = "registry+https://github.com/rust-lang/crates.io-index" | 480 | source = "registry+https://github.com/rust-lang/crates.io-index" |
481 | checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" | ||
433 | dependencies = [ | 482 | dependencies = [ |
434 | "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", | 483 | "unicode-segmentation", |
435 | ] | 484 | ] |
436 | 485 | ||
437 | [[package]] | 486 | [[package]] |
438 | name = "hermit-abi" | 487 | name = "hermit-abi" |
439 | version = "0.1.6" | 488 | version = "0.1.6" |
440 | source = "registry+https://github.com/rust-lang/crates.io-index" | 489 | source = "registry+https://github.com/rust-lang/crates.io-index" |
490 | checksum = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" | ||
441 | dependencies = [ | 491 | dependencies = [ |
442 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 492 | "libc", |
443 | ] | 493 | ] |
444 | 494 | ||
445 | [[package]] | 495 | [[package]] |
446 | name = "idna" | 496 | name = "idna" |
447 | version = "0.2.0" | 497 | version = "0.2.0" |
448 | source = "registry+https://github.com/rust-lang/crates.io-index" | 498 | source = "registry+https://github.com/rust-lang/crates.io-index" |
499 | checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" | ||
449 | dependencies = [ | 500 | dependencies = [ |
450 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", | 501 | "matches", |
451 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", | 502 | "unicode-bidi", |
452 | "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", | 503 | "unicode-normalization", |
453 | ] | 504 | ] |
454 | 505 | ||
455 | [[package]] | 506 | [[package]] |
456 | name = "indexmap" | 507 | name = "indexmap" |
457 | version = "1.3.1" | 508 | version = "1.3.1" |
458 | source = "registry+https://github.com/rust-lang/crates.io-index" | 509 | source = "registry+https://github.com/rust-lang/crates.io-index" |
510 | checksum = "0b54058f0a6ff80b6803da8faf8997cde53872b38f4023728f6830b06cd3c0dc" | ||
459 | dependencies = [ | 511 | dependencies = [ |
460 | "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 512 | "autocfg 1.0.0", |
461 | ] | 513 | ] |
462 | 514 | ||
463 | [[package]] | 515 | [[package]] |
464 | name = "inotify" | 516 | name = "inotify" |
465 | version = "0.7.0" | 517 | version = "0.7.0" |
466 | source = "registry+https://github.com/rust-lang/crates.io-index" | 518 | source = "registry+https://github.com/rust-lang/crates.io-index" |
519 | checksum = "24e40d6fd5d64e2082e0c796495c8ef5ad667a96d03e5aaa0becfd9d47bcbfb8" | ||
467 | dependencies = [ | 520 | dependencies = [ |
468 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 521 | "bitflags", |
469 | "inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 522 | "inotify-sys", |
470 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 523 | "libc", |
471 | ] | 524 | ] |
472 | 525 | ||
473 | [[package]] | 526 | [[package]] |
474 | name = "inotify-sys" | 527 | name = "inotify-sys" |
475 | version = "0.1.3" | 528 | version = "0.1.3" |
476 | source = "registry+https://github.com/rust-lang/crates.io-index" | 529 | source = "registry+https://github.com/rust-lang/crates.io-index" |
530 | checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" | ||
477 | dependencies = [ | 531 | dependencies = [ |
478 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 532 | "libc", |
479 | ] | 533 | ] |
480 | 534 | ||
481 | [[package]] | 535 | [[package]] |
482 | name = "insta" | 536 | name = "insta" |
483 | version = "0.13.1" | 537 | version = "0.13.1" |
484 | source = "registry+https://github.com/rust-lang/crates.io-index" | 538 | source = "registry+https://github.com/rust-lang/crates.io-index" |
539 | checksum = "8df742abee84dbf27d20869c9adf77b0d8f7ea3eead13c2c9e3998d136a97058" | ||
485 | dependencies = [ | 540 | dependencies = [ |
486 | "console 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", | 541 | "console", |
487 | "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 542 | "difference", |
488 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 543 | "lazy_static", |
489 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 544 | "serde", |
490 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 545 | "serde_json", |
491 | "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", | 546 | "serde_yaml", |
492 | ] | 547 | ] |
493 | 548 | ||
494 | [[package]] | 549 | [[package]] |
495 | name = "iovec" | 550 | name = "iovec" |
496 | version = "0.1.4" | 551 | version = "0.1.4" |
497 | source = "registry+https://github.com/rust-lang/crates.io-index" | 552 | source = "registry+https://github.com/rust-lang/crates.io-index" |
553 | checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" | ||
498 | dependencies = [ | 554 | dependencies = [ |
499 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 555 | "libc", |
500 | ] | 556 | ] |
501 | 557 | ||
502 | [[package]] | 558 | [[package]] |
503 | name = "itertools" | 559 | name = "itertools" |
504 | version = "0.8.2" | 560 | version = "0.8.2" |
505 | source = "registry+https://github.com/rust-lang/crates.io-index" | 561 | source = "registry+https://github.com/rust-lang/crates.io-index" |
562 | checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" | ||
506 | dependencies = [ | 563 | dependencies = [ |
507 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 564 | "either", |
508 | ] | 565 | ] |
509 | 566 | ||
510 | [[package]] | 567 | [[package]] |
511 | name = "itoa" | 568 | name = "itoa" |
512 | version = "0.4.5" | 569 | version = "0.4.5" |
513 | source = "registry+https://github.com/rust-lang/crates.io-index" | 570 | source = "registry+https://github.com/rust-lang/crates.io-index" |
571 | checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" | ||
514 | 572 | ||
515 | [[package]] | 573 | [[package]] |
516 | name = "jemalloc-ctl" | 574 | name = "jemalloc-ctl" |
517 | version = "0.3.3" | 575 | version = "0.3.3" |
518 | source = "registry+https://github.com/rust-lang/crates.io-index" | 576 | source = "registry+https://github.com/rust-lang/crates.io-index" |
577 | checksum = "c502a5ff9dd2924f1ed32ba96e3b65735d837b4bfd978d3161b1702e66aca4b7" | ||
519 | dependencies = [ | 578 | dependencies = [ |
520 | "jemalloc-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 579 | "jemalloc-sys", |
521 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 580 | "libc", |
522 | "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 581 | "paste", |
523 | ] | 582 | ] |
524 | 583 | ||
525 | [[package]] | 584 | [[package]] |
526 | name = "jemalloc-sys" | 585 | name = "jemalloc-sys" |
527 | version = "0.3.2" | 586 | version = "0.3.2" |
528 | source = "registry+https://github.com/rust-lang/crates.io-index" | 587 | source = "registry+https://github.com/rust-lang/crates.io-index" |
588 | checksum = "0d3b9f3f5c9b31aa0f5ed3260385ac205db665baa41d49bb8338008ae94ede45" | ||
529 | dependencies = [ | 589 | dependencies = [ |
530 | "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", | 590 | "cc", |
531 | "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 591 | "fs_extra", |
532 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 592 | "libc", |
533 | ] | 593 | ] |
534 | 594 | ||
535 | [[package]] | 595 | [[package]] |
536 | name = "jemallocator" | 596 | name = "jemallocator" |
537 | version = "0.3.2" | 597 | version = "0.3.2" |
538 | source = "registry+https://github.com/rust-lang/crates.io-index" | 598 | source = "registry+https://github.com/rust-lang/crates.io-index" |
599 | checksum = "43ae63fcfc45e99ab3d1b29a46782ad679e98436c3169d15a167a1108a724b69" | ||
539 | dependencies = [ | 600 | dependencies = [ |
540 | "jemalloc-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 601 | "jemalloc-sys", |
541 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 602 | "libc", |
542 | ] | 603 | ] |
543 | 604 | ||
544 | [[package]] | 605 | [[package]] |
545 | name = "jod-thread" | 606 | name = "jod-thread" |
546 | version = "0.1.0" | 607 | version = "0.1.0" |
547 | source = "registry+https://github.com/rust-lang/crates.io-index" | 608 | source = "registry+https://github.com/rust-lang/crates.io-index" |
609 | checksum = "2f52a11f73b88fab829a0e4d9e13ea5982c7ac457c72eb3541d82a4afdfce4ff" | ||
548 | 610 | ||
549 | [[package]] | 611 | [[package]] |
550 | name = "join_to_string" | 612 | name = "join_to_string" |
551 | version = "0.1.3" | 613 | version = "0.1.3" |
552 | source = "registry+https://github.com/rust-lang/crates.io-index" | 614 | source = "registry+https://github.com/rust-lang/crates.io-index" |
615 | checksum = "4dc7a5290e8c2606ce2be49f456d50f69173cb96d1541e4f66e34ac8b331a98f" | ||
553 | 616 | ||
554 | [[package]] | 617 | [[package]] |
555 | name = "kernel32-sys" | 618 | name = "kernel32-sys" |
556 | version = "0.2.2" | 619 | version = "0.2.2" |
557 | source = "registry+https://github.com/rust-lang/crates.io-index" | 620 | source = "registry+https://github.com/rust-lang/crates.io-index" |
621 | checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" | ||
558 | dependencies = [ | 622 | dependencies = [ |
559 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 623 | "winapi 0.2.8", |
560 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 624 | "winapi-build", |
561 | ] | 625 | ] |
562 | 626 | ||
563 | [[package]] | 627 | [[package]] |
564 | name = "lalrpop-intern" | 628 | name = "lalrpop-intern" |
565 | version = "0.15.1" | 629 | version = "0.15.1" |
566 | source = "registry+https://github.com/rust-lang/crates.io-index" | 630 | source = "registry+https://github.com/rust-lang/crates.io-index" |
631 | checksum = "cc4fd87be4a815fd373e02773983940f0d75fb26fde8c098e9e45f7af03154c0" | ||
567 | 632 | ||
568 | [[package]] | 633 | [[package]] |
569 | name = "lazy_static" | 634 | name = "lazy_static" |
570 | version = "1.4.0" | 635 | version = "1.4.0" |
571 | source = "registry+https://github.com/rust-lang/crates.io-index" | 636 | source = "registry+https://github.com/rust-lang/crates.io-index" |
637 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
572 | 638 | ||
573 | [[package]] | 639 | [[package]] |
574 | name = "lazycell" | 640 | name = "lazycell" |
575 | version = "1.2.1" | 641 | version = "1.2.1" |
576 | source = "registry+https://github.com/rust-lang/crates.io-index" | 642 | source = "registry+https://github.com/rust-lang/crates.io-index" |
643 | checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" | ||
577 | 644 | ||
578 | [[package]] | 645 | [[package]] |
579 | name = "libc" | 646 | name = "libc" |
580 | version = "0.2.66" | 647 | version = "0.2.66" |
581 | source = "registry+https://github.com/rust-lang/crates.io-index" | 648 | source = "registry+https://github.com/rust-lang/crates.io-index" |
649 | checksum = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" | ||
582 | 650 | ||
583 | [[package]] | 651 | [[package]] |
584 | name = "linked-hash-map" | 652 | name = "linked-hash-map" |
585 | version = "0.5.2" | 653 | version = "0.5.2" |
586 | source = "registry+https://github.com/rust-lang/crates.io-index" | 654 | source = "registry+https://github.com/rust-lang/crates.io-index" |
655 | checksum = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" | ||
587 | 656 | ||
588 | [[package]] | 657 | [[package]] |
589 | name = "lock_api" | 658 | name = "lock_api" |
590 | version = "0.3.3" | 659 | version = "0.3.3" |
591 | source = "registry+https://github.com/rust-lang/crates.io-index" | 660 | source = "registry+https://github.com/rust-lang/crates.io-index" |
661 | checksum = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b" | ||
592 | dependencies = [ | 662 | dependencies = [ |
593 | "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 663 | "scopeguard", |
594 | ] | 664 | ] |
595 | 665 | ||
596 | [[package]] | 666 | [[package]] |
597 | name = "log" | 667 | name = "log" |
598 | version = "0.4.8" | 668 | version = "0.4.8" |
599 | source = "registry+https://github.com/rust-lang/crates.io-index" | 669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
670 | checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" | ||
600 | dependencies = [ | 671 | dependencies = [ |
601 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 672 | "cfg-if", |
602 | ] | 673 | ] |
603 | 674 | ||
604 | [[package]] | 675 | [[package]] |
605 | name = "lsp-server" | 676 | name = "lsp-server" |
606 | version = "0.3.1" | 677 | version = "0.3.1" |
607 | source = "registry+https://github.com/rust-lang/crates.io-index" | 678 | source = "registry+https://github.com/rust-lang/crates.io-index" |
679 | checksum = "5383e043329615624bbf45e1ba27bd75c176762b2592855c659bc28ac580a06b" | ||
608 | dependencies = [ | 680 | dependencies = [ |
609 | "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 681 | "crossbeam-channel", |
610 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 682 | "log", |
611 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 683 | "serde", |
612 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 684 | "serde_json", |
613 | ] | 685 | ] |
614 | 686 | ||
615 | [[package]] | 687 | [[package]] |
616 | name = "lsp-types" | 688 | name = "lsp-types" |
617 | version = "0.70.0" | 689 | version = "0.70.1" |
618 | source = "registry+https://github.com/rust-lang/crates.io-index" | 690 | source = "registry+https://github.com/rust-lang/crates.io-index" |
691 | checksum = "d267f222864db3db63cf7e18493a2a5c84edab1f4e3c7211c9390ce033365210" | ||
619 | dependencies = [ | 692 | dependencies = [ |
620 | "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | 693 | "base64", |
621 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 694 | "bitflags", |
622 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 695 | "serde", |
623 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 696 | "serde_json", |
624 | "serde_repr 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 697 | "serde_repr", |
625 | "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 698 | "url", |
626 | ] | 699 | ] |
627 | 700 | ||
628 | [[package]] | 701 | [[package]] |
629 | name = "matches" | 702 | name = "matches" |
630 | version = "0.1.8" | 703 | version = "0.1.8" |
631 | source = "registry+https://github.com/rust-lang/crates.io-index" | 704 | source = "registry+https://github.com/rust-lang/crates.io-index" |
705 | checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" | ||
632 | 706 | ||
633 | [[package]] | 707 | [[package]] |
634 | name = "memchr" | 708 | name = "memchr" |
635 | version = "2.3.0" | 709 | version = "2.3.0" |
636 | source = "registry+https://github.com/rust-lang/crates.io-index" | 710 | source = "registry+https://github.com/rust-lang/crates.io-index" |
711 | checksum = "3197e20c7edb283f87c071ddfc7a2cca8f8e0b888c242959846a6fce03c72223" | ||
637 | 712 | ||
638 | [[package]] | 713 | [[package]] |
639 | name = "memoffset" | 714 | name = "memoffset" |
640 | version = "0.5.3" | 715 | version = "0.5.3" |
641 | source = "registry+https://github.com/rust-lang/crates.io-index" | 716 | source = "registry+https://github.com/rust-lang/crates.io-index" |
717 | checksum = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" | ||
642 | dependencies = [ | 718 | dependencies = [ |
643 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 719 | "rustc_version", |
644 | ] | 720 | ] |
645 | 721 | ||
646 | [[package]] | 722 | [[package]] |
647 | name = "mio" | 723 | name = "mio" |
648 | version = "0.6.21" | 724 | version = "0.6.21" |
649 | source = "registry+https://github.com/rust-lang/crates.io-index" | 725 | source = "registry+https://github.com/rust-lang/crates.io-index" |
726 | checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" | ||
650 | dependencies = [ | 727 | dependencies = [ |
651 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 728 | "cfg-if", |
652 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 729 | "fuchsia-zircon", |
653 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 730 | "fuchsia-zircon-sys", |
654 | "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 731 | "iovec", |
655 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 732 | "kernel32-sys", |
656 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 733 | "libc", |
657 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 734 | "log", |
658 | "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 735 | "miow", |
659 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", | 736 | "net2", |
660 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 737 | "slab", |
661 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 738 | "winapi 0.2.8", |
662 | ] | 739 | ] |
663 | 740 | ||
664 | [[package]] | 741 | [[package]] |
665 | name = "mio-extras" | 742 | name = "mio-extras" |
666 | version = "2.0.6" | 743 | version = "2.0.6" |
667 | source = "registry+https://github.com/rust-lang/crates.io-index" | 744 | source = "registry+https://github.com/rust-lang/crates.io-index" |
745 | checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" | ||
668 | dependencies = [ | 746 | dependencies = [ |
669 | "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 747 | "lazycell", |
670 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 748 | "log", |
671 | "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", | 749 | "mio", |
672 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 750 | "slab", |
673 | ] | 751 | ] |
674 | 752 | ||
675 | [[package]] | 753 | [[package]] |
676 | name = "miow" | 754 | name = "miow" |
677 | version = "0.2.1" | 755 | version = "0.2.1" |
678 | source = "registry+https://github.com/rust-lang/crates.io-index" | 756 | source = "registry+https://github.com/rust-lang/crates.io-index" |
757 | checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" | ||
679 | dependencies = [ | 758 | dependencies = [ |
680 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 759 | "kernel32-sys", |
681 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", | 760 | "net2", |
682 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 761 | "winapi 0.2.8", |
683 | "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 762 | "ws2_32-sys", |
684 | ] | 763 | ] |
685 | 764 | ||
686 | [[package]] | 765 | [[package]] |
687 | name = "net2" | 766 | name = "net2" |
688 | version = "0.2.33" | 767 | version = "0.2.33" |
689 | source = "registry+https://github.com/rust-lang/crates.io-index" | 768 | source = "registry+https://github.com/rust-lang/crates.io-index" |
769 | checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" | ||
690 | dependencies = [ | 770 | dependencies = [ |
691 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 771 | "cfg-if", |
692 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 772 | "libc", |
693 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 773 | "winapi 0.3.8", |
694 | ] | 774 | ] |
695 | 775 | ||
696 | [[package]] | 776 | [[package]] |
697 | name = "notify" | 777 | name = "notify" |
698 | version = "4.0.15" | 778 | version = "4.0.15" |
699 | source = "registry+https://github.com/rust-lang/crates.io-index" | 779 | source = "registry+https://github.com/rust-lang/crates.io-index" |
780 | checksum = "80ae4a7688d1fab81c5bf19c64fc8db920be8d519ce6336ed4e7efe024724dbd" | ||
700 | dependencies = [ | 781 | dependencies = [ |
701 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 782 | "bitflags", |
702 | "filetime 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 783 | "filetime", |
703 | "fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 784 | "fsevent", |
704 | "fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 785 | "fsevent-sys", |
705 | "inotify 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 786 | "inotify", |
706 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 787 | "libc", |
707 | "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", | 788 | "mio", |
708 | "mio-extras 2.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 789 | "mio-extras", |
709 | "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 790 | "walkdir", |
710 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 791 | "winapi 0.3.8", |
711 | ] | 792 | ] |
712 | 793 | ||
713 | [[package]] | 794 | [[package]] |
714 | name = "num-traits" | 795 | name = "num-traits" |
715 | version = "0.2.11" | 796 | version = "0.2.11" |
716 | source = "registry+https://github.com/rust-lang/crates.io-index" | 797 | source = "registry+https://github.com/rust-lang/crates.io-index" |
798 | checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" | ||
717 | dependencies = [ | 799 | dependencies = [ |
718 | "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 800 | "autocfg 1.0.0", |
719 | ] | 801 | ] |
720 | 802 | ||
721 | [[package]] | 803 | [[package]] |
722 | name = "num_cpus" | 804 | name = "num_cpus" |
723 | version = "1.12.0" | 805 | version = "1.12.0" |
724 | source = "registry+https://github.com/rust-lang/crates.io-index" | 806 | source = "registry+https://github.com/rust-lang/crates.io-index" |
807 | checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" | ||
725 | dependencies = [ | 808 | dependencies = [ |
726 | "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 809 | "hermit-abi", |
727 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 810 | "libc", |
728 | ] | 811 | ] |
729 | 812 | ||
730 | [[package]] | 813 | [[package]] |
731 | name = "once_cell" | 814 | name = "once_cell" |
732 | version = "1.3.1" | 815 | version = "1.3.1" |
733 | source = "registry+https://github.com/rust-lang/crates.io-index" | 816 | source = "registry+https://github.com/rust-lang/crates.io-index" |
817 | checksum = "b1c601810575c99596d4afc46f78a678c80105117c379eb3650cf99b8a21ce5b" | ||
734 | 818 | ||
735 | [[package]] | 819 | [[package]] |
736 | name = "ordermap" | 820 | name = "ordermap" |
737 | version = "0.3.5" | 821 | version = "0.3.5" |
738 | source = "registry+https://github.com/rust-lang/crates.io-index" | 822 | source = "registry+https://github.com/rust-lang/crates.io-index" |
823 | checksum = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063" | ||
739 | 824 | ||
740 | [[package]] | 825 | [[package]] |
741 | name = "parking_lot" | 826 | name = "parking_lot" |
742 | version = "0.10.0" | 827 | version = "0.10.0" |
743 | source = "registry+https://github.com/rust-lang/crates.io-index" | 828 | source = "registry+https://github.com/rust-lang/crates.io-index" |
829 | checksum = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc" | ||
744 | dependencies = [ | 830 | dependencies = [ |
745 | "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 831 | "lock_api", |
746 | "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 832 | "parking_lot_core", |
747 | ] | 833 | ] |
748 | 834 | ||
749 | [[package]] | 835 | [[package]] |
750 | name = "parking_lot_core" | 836 | name = "parking_lot_core" |
751 | version = "0.7.0" | 837 | version = "0.7.0" |
752 | source = "registry+https://github.com/rust-lang/crates.io-index" | 838 | source = "registry+https://github.com/rust-lang/crates.io-index" |
839 | checksum = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1" | ||
753 | dependencies = [ | 840 | dependencies = [ |
754 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 841 | "cfg-if", |
755 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 842 | "cloudabi", |
756 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 843 | "libc", |
757 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | 844 | "redox_syscall", |
758 | "smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 845 | "smallvec", |
759 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 846 | "winapi 0.3.8", |
760 | ] | 847 | ] |
761 | 848 | ||
762 | [[package]] | 849 | [[package]] |
763 | name = "paste" | 850 | name = "paste" |
764 | version = "0.1.6" | 851 | version = "0.1.6" |
765 | source = "registry+https://github.com/rust-lang/crates.io-index" | 852 | source = "registry+https://github.com/rust-lang/crates.io-index" |
853 | checksum = "423a519e1c6e828f1e73b720f9d9ed2fa643dce8a7737fb43235ce0b41eeaa49" | ||
766 | dependencies = [ | 854 | dependencies = [ |
767 | "paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 855 | "paste-impl", |
768 | "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", | 856 | "proc-macro-hack", |
769 | ] | 857 | ] |
770 | 858 | ||
771 | [[package]] | 859 | [[package]] |
772 | name = "paste-impl" | 860 | name = "paste-impl" |
773 | version = "0.1.6" | 861 | version = "0.1.6" |
774 | source = "registry+https://github.com/rust-lang/crates.io-index" | 862 | source = "registry+https://github.com/rust-lang/crates.io-index" |
863 | checksum = "4214c9e912ef61bf42b81ba9a47e8aad1b2ffaf739ab162bf96d1e011f54e6c5" | ||
775 | dependencies = [ | 864 | dependencies = [ |
776 | "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", | 865 | "proc-macro-hack", |
777 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 866 | "proc-macro2", |
778 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 867 | "quote", |
779 | "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", | 868 | "syn", |
780 | ] | 869 | ] |
781 | 870 | ||
782 | [[package]] | 871 | [[package]] |
783 | name = "percent-encoding" | 872 | name = "percent-encoding" |
784 | version = "2.1.0" | 873 | version = "2.1.0" |
785 | source = "registry+https://github.com/rust-lang/crates.io-index" | 874 | source = "registry+https://github.com/rust-lang/crates.io-index" |
875 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" | ||
786 | 876 | ||
787 | [[package]] | 877 | [[package]] |
788 | name = "petgraph" | 878 | name = "petgraph" |
789 | version = "0.4.13" | 879 | version = "0.4.13" |
790 | source = "registry+https://github.com/rust-lang/crates.io-index" | 880 | source = "registry+https://github.com/rust-lang/crates.io-index" |
881 | checksum = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" | ||
791 | dependencies = [ | 882 | dependencies = [ |
792 | "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | 883 | "fixedbitset", |
793 | "ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 884 | "ordermap", |
794 | ] | 885 | ] |
795 | 886 | ||
796 | [[package]] | 887 | [[package]] |
797 | name = "pico-args" | 888 | name = "pico-args" |
798 | version = "0.3.1" | 889 | version = "0.3.1" |
799 | source = "registry+https://github.com/rust-lang/crates.io-index" | 890 | source = "registry+https://github.com/rust-lang/crates.io-index" |
891 | checksum = "3ad1f1b834a05d42dae330066e9699a173b28185b3bdc3dbf14ca239585de8cc" | ||
800 | 892 | ||
801 | [[package]] | 893 | [[package]] |
802 | name = "ppv-lite86" | 894 | name = "ppv-lite86" |
803 | version = "0.2.6" | 895 | version = "0.2.6" |
804 | source = "registry+https://github.com/rust-lang/crates.io-index" | 896 | source = "registry+https://github.com/rust-lang/crates.io-index" |
897 | checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" | ||
805 | 898 | ||
806 | [[package]] | 899 | [[package]] |
807 | name = "proc-macro-hack" | 900 | name = "proc-macro-hack" |
808 | version = "0.5.11" | 901 | version = "0.5.11" |
809 | source = "registry+https://github.com/rust-lang/crates.io-index" | 902 | source = "registry+https://github.com/rust-lang/crates.io-index" |
903 | checksum = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" | ||
810 | dependencies = [ | 904 | dependencies = [ |
811 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 905 | "proc-macro2", |
812 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 906 | "quote", |
813 | "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", | 907 | "syn", |
814 | ] | 908 | ] |
815 | 909 | ||
816 | [[package]] | 910 | [[package]] |
817 | name = "proc-macro2" | 911 | name = "proc-macro2" |
818 | version = "1.0.8" | 912 | version = "1.0.8" |
819 | source = "registry+https://github.com/rust-lang/crates.io-index" | 913 | source = "registry+https://github.com/rust-lang/crates.io-index" |
914 | checksum = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548" | ||
820 | dependencies = [ | 915 | dependencies = [ |
821 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 916 | "unicode-xid", |
822 | ] | 917 | ] |
823 | 918 | ||
824 | [[package]] | 919 | [[package]] |
825 | name = "proptest" | 920 | name = "proptest" |
826 | version = "0.9.5" | 921 | version = "0.9.5" |
827 | source = "registry+https://github.com/rust-lang/crates.io-index" | 922 | source = "registry+https://github.com/rust-lang/crates.io-index" |
923 | checksum = "bf6147d103a7c9d7598f4105cf049b15c99e2ecd93179bf024f0fd349be5ada4" | ||
828 | dependencies = [ | 924 | dependencies = [ |
829 | "bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 925 | "bit-set", |
830 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 926 | "bitflags", |
831 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 927 | "byteorder", |
832 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 928 | "lazy_static", |
833 | "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | 929 | "num-traits", |
834 | "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 930 | "quick-error", |
835 | "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", | 931 | "rand 0.6.5", |
836 | "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 932 | "rand_chacha 0.1.1", |
837 | "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 933 | "rand_xorshift", |
838 | "regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", | 934 | "regex-syntax", |
839 | ] | 935 | ] |
840 | 936 | ||
841 | [[package]] | 937 | [[package]] |
842 | name = "quick-error" | 938 | name = "quick-error" |
843 | version = "1.2.3" | 939 | version = "1.2.3" |
844 | source = "registry+https://github.com/rust-lang/crates.io-index" | 940 | source = "registry+https://github.com/rust-lang/crates.io-index" |
941 | checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" | ||
845 | 942 | ||
846 | [[package]] | 943 | [[package]] |
847 | name = "quote" | 944 | name = "quote" |
848 | version = "1.0.2" | 945 | version = "1.0.2" |
849 | source = "registry+https://github.com/rust-lang/crates.io-index" | 946 | source = "registry+https://github.com/rust-lang/crates.io-index" |
947 | checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | ||
850 | dependencies = [ | 948 | dependencies = [ |
851 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 949 | "proc-macro2", |
852 | ] | 950 | ] |
853 | 951 | ||
854 | [[package]] | 952 | [[package]] |
@@ -859,1073 +957,967 @@ version = "0.1.0" | |||
859 | name = "ra_assists" | 957 | name = "ra_assists" |
860 | version = "0.1.0" | 958 | version = "0.1.0" |
861 | dependencies = [ | 959 | dependencies = [ |
862 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 960 | "either", |
863 | "format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 961 | "format-buf", |
864 | "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 962 | "join_to_string", |
865 | "ra_db 0.1.0", | 963 | "ra_db", |
866 | "ra_fmt 0.1.0", | 964 | "ra_fmt", |
867 | "ra_hir 0.1.0", | 965 | "ra_hir", |
868 | "ra_syntax 0.1.0", | 966 | "ra_syntax", |
869 | "ra_text_edit 0.1.0", | 967 | "ra_text_edit", |
870 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 968 | "rustc-hash", |
871 | "test_utils 0.1.0", | 969 | "test_utils", |
872 | ] | 970 | ] |
873 | 971 | ||
874 | [[package]] | 972 | [[package]] |
875 | name = "ra_batch" | 973 | name = "ra_batch" |
876 | version = "0.1.0" | 974 | version = "0.1.0" |
877 | dependencies = [ | 975 | dependencies = [ |
878 | "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 976 | "crossbeam-channel", |
879 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 977 | "log", |
880 | "ra_db 0.1.0", | 978 | "ra_db", |
881 | "ra_hir 0.1.0", | 979 | "ra_hir", |
882 | "ra_ide 0.1.0", | 980 | "ra_ide", |
883 | "ra_project_model 0.1.0", | 981 | "ra_project_model", |
884 | "ra_vfs 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 982 | "ra_vfs", |
885 | "ra_vfs_glob 0.1.0", | 983 | "ra_vfs_glob", |
886 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 984 | "rustc-hash", |
887 | ] | 985 | ] |
888 | 986 | ||
889 | [[package]] | 987 | [[package]] |
890 | name = "ra_cargo_watch" | 988 | name = "ra_cargo_watch" |
891 | version = "0.1.0" | 989 | version = "0.1.0" |
892 | dependencies = [ | 990 | dependencies = [ |
893 | "cargo_metadata 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", | 991 | "cargo_metadata", |
894 | "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 992 | "crossbeam-channel", |
895 | "insta 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", | 993 | "insta", |
896 | "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 994 | "jod-thread", |
897 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 995 | "log", |
898 | "lsp-types 0.70.0 (registry+https://github.com/rust-lang/crates.io-index)", | 996 | "lsp-types", |
899 | "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | 997 | "parking_lot", |
900 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 998 | "serde_json", |
901 | ] | 999 | ] |
902 | 1000 | ||
903 | [[package]] | 1001 | [[package]] |
904 | name = "ra_cfg" | 1002 | name = "ra_cfg" |
905 | version = "0.1.0" | 1003 | version = "0.1.0" |
906 | dependencies = [ | 1004 | dependencies = [ |
907 | "ra_mbe 0.1.0", | 1005 | "ra_mbe", |
908 | "ra_syntax 0.1.0", | 1006 | "ra_syntax", |
909 | "ra_tt 0.1.0", | 1007 | "ra_tt", |
910 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1008 | "rustc-hash", |
911 | ] | 1009 | ] |
912 | 1010 | ||
913 | [[package]] | 1011 | [[package]] |
914 | name = "ra_cli" | 1012 | name = "ra_cli" |
915 | version = "0.1.0" | 1013 | version = "0.1.0" |
916 | dependencies = [ | 1014 | dependencies = [ |
917 | "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1015 | "env_logger", |
918 | "pico-args 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1016 | "pico-args", |
919 | "ra_batch 0.1.0", | 1017 | "ra_batch", |
920 | "ra_db 0.1.0", | 1018 | "ra_db", |
921 | "ra_hir 0.1.0", | 1019 | "ra_hir", |
922 | "ra_hir_def 0.1.0", | 1020 | "ra_hir_def", |
923 | "ra_hir_ty 0.1.0", | 1021 | "ra_hir_ty", |
924 | "ra_ide 0.1.0", | 1022 | "ra_ide", |
925 | "ra_prof 0.1.0", | 1023 | "ra_prof", |
926 | "ra_syntax 0.1.0", | 1024 | "ra_syntax", |
927 | ] | 1025 | ] |
928 | 1026 | ||
929 | [[package]] | 1027 | [[package]] |
930 | name = "ra_db" | 1028 | name = "ra_db" |
931 | version = "0.1.0" | 1029 | version = "0.1.0" |
932 | dependencies = [ | 1030 | dependencies = [ |
933 | "ra_cfg 0.1.0", | 1031 | "ra_cfg", |
934 | "ra_prof 0.1.0", | 1032 | "ra_prof", |
935 | "ra_syntax 0.1.0", | 1033 | "ra_syntax", |
936 | "relative-path 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1034 | "relative-path", |
937 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1035 | "rustc-hash", |
938 | "salsa 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1036 | "salsa", |
939 | "test_utils 0.1.0", | 1037 | "test_utils", |
940 | ] | 1038 | ] |
941 | 1039 | ||
942 | [[package]] | 1040 | [[package]] |
943 | name = "ra_fmt" | 1041 | name = "ra_fmt" |
944 | version = "0.1.0" | 1042 | version = "0.1.0" |
945 | dependencies = [ | 1043 | dependencies = [ |
946 | "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1044 | "itertools", |
947 | "ra_syntax 0.1.0", | 1045 | "ra_syntax", |
948 | ] | 1046 | ] |
949 | 1047 | ||
950 | [[package]] | 1048 | [[package]] |
951 | name = "ra_hir" | 1049 | name = "ra_hir" |
952 | version = "0.1.0" | 1050 | version = "0.1.0" |
953 | dependencies = [ | 1051 | dependencies = [ |
954 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1052 | "either", |
955 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1053 | "log", |
956 | "ra_db 0.1.0", | 1054 | "ra_db", |
957 | "ra_hir_def 0.1.0", | 1055 | "ra_hir_def", |
958 | "ra_hir_expand 0.1.0", | 1056 | "ra_hir_expand", |
959 | "ra_hir_ty 0.1.0", | 1057 | "ra_hir_ty", |
960 | "ra_prof 0.1.0", | 1058 | "ra_prof", |
961 | "ra_syntax 0.1.0", | 1059 | "ra_syntax", |
962 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1060 | "rustc-hash", |
963 | ] | 1061 | ] |
964 | 1062 | ||
965 | [[package]] | 1063 | [[package]] |
966 | name = "ra_hir_def" | 1064 | name = "ra_hir_def" |
967 | version = "0.1.0" | 1065 | version = "0.1.0" |
968 | dependencies = [ | 1066 | dependencies = [ |
969 | "anymap 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1067 | "anymap", |
970 | "drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1068 | "drop_bomb", |
971 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1069 | "either", |
972 | "insta 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1070 | "insta", |
973 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1071 | "log", |
974 | "once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1072 | "once_cell", |
975 | "ra_arena 0.1.0", | 1073 | "ra_arena", |
976 | "ra_cfg 0.1.0", | 1074 | "ra_cfg", |
977 | "ra_db 0.1.0", | 1075 | "ra_db", |
978 | "ra_hir_expand 0.1.0", | 1076 | "ra_hir_expand", |
979 | "ra_mbe 0.1.0", | 1077 | "ra_mbe", |
980 | "ra_prof 0.1.0", | 1078 | "ra_prof", |
981 | "ra_syntax 0.1.0", | 1079 | "ra_syntax", |
982 | "ra_tt 0.1.0", | 1080 | "ra_tt", |
983 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1081 | "rustc-hash", |
984 | "test_utils 0.1.0", | 1082 | "test_utils", |
985 | ] | 1083 | ] |
986 | 1084 | ||
987 | [[package]] | 1085 | [[package]] |
988 | name = "ra_hir_expand" | 1086 | name = "ra_hir_expand" |
989 | version = "0.1.0" | 1087 | version = "0.1.0" |
990 | dependencies = [ | 1088 | dependencies = [ |
991 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1089 | "either", |
992 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1090 | "log", |
993 | "ra_arena 0.1.0", | 1091 | "ra_arena", |
994 | "ra_db 0.1.0", | 1092 | "ra_db", |
995 | "ra_mbe 0.1.0", | 1093 | "ra_mbe", |
996 | "ra_parser 0.1.0", | 1094 | "ra_parser", |
997 | "ra_prof 0.1.0", | 1095 | "ra_prof", |
998 | "ra_syntax 0.1.0", | 1096 | "ra_syntax", |
999 | "ra_tt 0.1.0", | 1097 | "ra_tt", |
1000 | ] | 1098 | ] |
1001 | 1099 | ||
1002 | [[package]] | 1100 | [[package]] |
1003 | name = "ra_hir_ty" | 1101 | name = "ra_hir_ty" |
1004 | version = "0.1.0" | 1102 | version = "0.1.0" |
1005 | dependencies = [ | 1103 | dependencies = [ |
1006 | "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1104 | "arrayvec", |
1007 | "chalk-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 1105 | "chalk-ir", |
1008 | "chalk-rust-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 1106 | "chalk-rust-ir", |
1009 | "chalk-solve 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)", | 1107 | "chalk-solve", |
1010 | "ena 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1108 | "ena", |
1011 | "insta 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1109 | "insta", |
1012 | "lalrpop-intern 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1110 | "lalrpop-intern", |
1013 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1111 | "log", |
1014 | "ra_arena 0.1.0", | 1112 | "ra_arena", |
1015 | "ra_db 0.1.0", | 1113 | "ra_db", |
1016 | "ra_hir_def 0.1.0", | 1114 | "ra_hir_def", |
1017 | "ra_hir_expand 0.1.0", | 1115 | "ra_hir_expand", |
1018 | "ra_prof 0.1.0", | 1116 | "ra_prof", |
1019 | "ra_syntax 0.1.0", | 1117 | "ra_syntax", |
1020 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1118 | "rustc-hash", |
1021 | "test_utils 0.1.0", | 1119 | "test_utils", |
1022 | ] | 1120 | ] |
1023 | 1121 | ||
1024 | [[package]] | 1122 | [[package]] |
1025 | name = "ra_ide" | 1123 | name = "ra_ide" |
1026 | version = "0.1.0" | 1124 | version = "0.1.0" |
1027 | dependencies = [ | 1125 | dependencies = [ |
1028 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1126 | "either", |
1029 | "format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1127 | "format-buf", |
1030 | "fst 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1128 | "fst", |
1031 | "indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1129 | "indexmap", |
1032 | "insta 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1130 | "insta", |
1033 | "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1131 | "itertools", |
1034 | "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1132 | "join_to_string", |
1035 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1133 | "log", |
1036 | "once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1134 | "once_cell", |
1037 | "proptest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1135 | "proptest", |
1038 | "ra_assists 0.1.0", | 1136 | "ra_assists", |
1039 | "ra_cfg 0.1.0", | 1137 | "ra_cfg", |
1040 | "ra_db 0.1.0", | 1138 | "ra_db", |
1041 | "ra_fmt 0.1.0", | 1139 | "ra_fmt", |
1042 | "ra_hir 0.1.0", | 1140 | "ra_hir", |
1043 | "ra_prof 0.1.0", | 1141 | "ra_prof", |
1044 | "ra_syntax 0.1.0", | 1142 | "ra_syntax", |
1045 | "ra_text_edit 0.1.0", | 1143 | "ra_text_edit", |
1046 | "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1144 | "rand 0.7.3", |
1047 | "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1145 | "rayon", |
1048 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1146 | "rustc-hash", |
1049 | "superslice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1147 | "superslice", |
1050 | "test_utils 0.1.0", | 1148 | "test_utils", |
1051 | "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1149 | "unicase", |
1052 | ] | 1150 | ] |
1053 | 1151 | ||
1054 | [[package]] | 1152 | [[package]] |
1055 | name = "ra_lsp_server" | 1153 | name = "ra_lsp_server" |
1056 | version = "0.1.0" | 1154 | version = "0.1.0" |
1057 | dependencies = [ | 1155 | dependencies = [ |
1058 | "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1156 | "crossbeam-channel", |
1059 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1157 | "either", |
1060 | "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1158 | "env_logger", |
1061 | "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1159 | "jod-thread", |
1062 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1160 | "log", |
1063 | "lsp-server 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1161 | "lsp-server", |
1064 | "lsp-types 0.70.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1162 | "lsp-types", |
1065 | "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1163 | "parking_lot", |
1066 | "ra_cargo_watch 0.1.0", | 1164 | "ra_cargo_watch", |
1067 | "ra_ide 0.1.0", | 1165 | "ra_ide", |
1068 | "ra_prof 0.1.0", | 1166 | "ra_prof", |
1069 | "ra_project_model 0.1.0", | 1167 | "ra_project_model", |
1070 | "ra_syntax 0.1.0", | 1168 | "ra_syntax", |
1071 | "ra_text_edit 0.1.0", | 1169 | "ra_text_edit", |
1072 | "ra_vfs 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1170 | "ra_vfs", |
1073 | "ra_vfs_glob 0.1.0", | 1171 | "ra_vfs_glob", |
1074 | "relative-path 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1172 | "relative-path", |
1075 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1173 | "rustc-hash", |
1076 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1174 | "serde", |
1077 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 1175 | "serde_json", |
1078 | "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1176 | "tempfile", |
1079 | "test_utils 0.1.0", | 1177 | "test_utils", |
1080 | "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1178 | "threadpool", |
1081 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1179 | "winapi 0.3.8", |
1082 | ] | 1180 | ] |
1083 | 1181 | ||
1084 | [[package]] | 1182 | [[package]] |
1085 | name = "ra_mbe" | 1183 | name = "ra_mbe" |
1086 | version = "0.1.0" | 1184 | version = "0.1.0" |
1087 | dependencies = [ | 1185 | dependencies = [ |
1088 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1186 | "log", |
1089 | "ra_parser 0.1.0", | 1187 | "ra_parser", |
1090 | "ra_syntax 0.1.0", | 1188 | "ra_syntax", |
1091 | "ra_tt 0.1.0", | 1189 | "ra_tt", |
1092 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1190 | "rustc-hash", |
1093 | "smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1191 | "smallvec", |
1094 | "test_utils 0.1.0", | 1192 | "test_utils", |
1095 | ] | 1193 | ] |
1096 | 1194 | ||
1097 | [[package]] | 1195 | [[package]] |
1098 | name = "ra_parser" | 1196 | name = "ra_parser" |
1099 | version = "0.1.0" | 1197 | version = "0.1.0" |
1100 | dependencies = [ | 1198 | dependencies = [ |
1101 | "drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1199 | "drop_bomb", |
1102 | ] | 1200 | ] |
1103 | 1201 | ||
1104 | [[package]] | 1202 | [[package]] |
1105 | name = "ra_prof" | 1203 | name = "ra_prof" |
1106 | version = "0.1.0" | 1204 | version = "0.1.0" |
1107 | dependencies = [ | 1205 | dependencies = [ |
1108 | "backtrace 0.3.42 (registry+https://github.com/rust-lang/crates.io-index)", | 1206 | "backtrace", |
1109 | "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1207 | "itertools", |
1110 | "jemalloc-ctl 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1208 | "jemalloc-ctl", |
1111 | "jemallocator 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1209 | "jemallocator", |
1112 | "once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1210 | "once_cell", |
1113 | ] | 1211 | ] |
1114 | 1212 | ||
1115 | [[package]] | 1213 | [[package]] |
1116 | name = "ra_project_model" | 1214 | name = "ra_project_model" |
1117 | version = "0.1.0" | 1215 | version = "0.1.0" |
1118 | dependencies = [ | 1216 | dependencies = [ |
1119 | "cargo_metadata 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1217 | "cargo_metadata", |
1120 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1218 | "log", |
1121 | "ra_arena 0.1.0", | 1219 | "ra_arena", |
1122 | "ra_cfg 0.1.0", | 1220 | "ra_cfg", |
1123 | "ra_db 0.1.0", | 1221 | "ra_db", |
1124 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1222 | "rustc-hash", |
1125 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1223 | "serde", |
1126 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 1224 | "serde_json", |
1127 | ] | 1225 | ] |
1128 | 1226 | ||
1129 | [[package]] | 1227 | [[package]] |
1130 | name = "ra_syntax" | 1228 | name = "ra_syntax" |
1131 | version = "0.1.0" | 1229 | version = "0.1.0" |
1132 | dependencies = [ | 1230 | dependencies = [ |
1133 | "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1231 | "arrayvec", |
1134 | "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1232 | "itertools", |
1135 | "once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1233 | "once_cell", |
1136 | "ra_parser 0.1.0", | 1234 | "ra_parser", |
1137 | "ra_text_edit 0.1.0", | 1235 | "ra_text_edit", |
1138 | "rowan 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1236 | "rowan", |
1139 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1237 | "rustc-hash", |
1140 | "rustc_lexer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1238 | "rustc_lexer", |
1141 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1239 | "serde", |
1142 | "smol_str 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1240 | "smol_str", |
1143 | "test_utils 0.1.0", | 1241 | "test_utils", |
1144 | "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1242 | "walkdir", |
1145 | ] | 1243 | ] |
1146 | 1244 | ||
1147 | [[package]] | 1245 | [[package]] |
1148 | name = "ra_text_edit" | 1246 | name = "ra_text_edit" |
1149 | version = "0.1.0" | 1247 | version = "0.1.0" |
1150 | dependencies = [ | 1248 | dependencies = [ |
1151 | "proptest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1249 | "proptest", |
1152 | "test_utils 0.1.0", | 1250 | "test_utils", |
1153 | "text_unit 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1251 | "text_unit", |
1154 | ] | 1252 | ] |
1155 | 1253 | ||
1156 | [[package]] | 1254 | [[package]] |
1157 | name = "ra_tt" | 1255 | name = "ra_tt" |
1158 | version = "0.1.0" | 1256 | version = "0.1.0" |
1159 | dependencies = [ | 1257 | dependencies = [ |
1160 | "smol_str 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1258 | "smol_str", |
1161 | ] | 1259 | ] |
1162 | 1260 | ||
1163 | [[package]] | 1261 | [[package]] |
1164 | name = "ra_vfs" | 1262 | name = "ra_vfs" |
1165 | version = "0.5.2" | 1263 | version = "0.5.2" |
1166 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1264 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1265 | checksum = "bc898f237e4b4498959ae0100c688793a23e77624d44ef710ba70094217f98e0" | ||
1167 | dependencies = [ | 1266 | dependencies = [ |
1168 | "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1267 | "crossbeam-channel", |
1169 | "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1268 | "jod-thread", |
1170 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1269 | "log", |
1171 | "notify 4.0.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1270 | "notify", |
1172 | "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1271 | "parking_lot", |
1173 | "relative-path 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1272 | "relative-path", |
1174 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1273 | "rustc-hash", |
1175 | "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1274 | "walkdir", |
1176 | ] | 1275 | ] |
1177 | 1276 | ||
1178 | [[package]] | 1277 | [[package]] |
1179 | name = "ra_vfs_glob" | 1278 | name = "ra_vfs_glob" |
1180 | version = "0.1.0" | 1279 | version = "0.1.0" |
1181 | dependencies = [ | 1280 | dependencies = [ |
1182 | "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1281 | "globset", |
1183 | "ra_vfs 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1282 | "ra_vfs", |
1184 | ] | 1283 | ] |
1185 | 1284 | ||
1186 | [[package]] | 1285 | [[package]] |
1187 | name = "rand" | 1286 | name = "rand" |
1188 | version = "0.6.5" | 1287 | version = "0.6.5" |
1189 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1288 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1289 | checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" | ||
1190 | dependencies = [ | 1290 | dependencies = [ |
1191 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1291 | "autocfg 0.1.7", |
1192 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 1292 | "libc", |
1193 | "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1293 | "rand_chacha 0.1.1", |
1194 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1294 | "rand_core 0.4.2", |
1195 | "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1295 | "rand_hc 0.1.0", |
1196 | "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1296 | "rand_isaac", |
1197 | "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1297 | "rand_jitter", |
1198 | "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1298 | "rand_os", |
1199 | "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1299 | "rand_pcg 0.1.2", |
1200 | "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1300 | "rand_xorshift", |
1201 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1301 | "winapi 0.3.8", |
1202 | ] | 1302 | ] |
1203 | 1303 | ||
1204 | [[package]] | 1304 | [[package]] |
1205 | name = "rand" | 1305 | name = "rand" |
1206 | version = "0.7.3" | 1306 | version = "0.7.3" |
1207 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1307 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1308 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" | ||
1208 | dependencies = [ | 1309 | dependencies = [ |
1209 | "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", | 1310 | "getrandom", |
1210 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 1311 | "libc", |
1211 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1312 | "rand_chacha 0.2.1", |
1212 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1313 | "rand_core 0.5.1", |
1213 | "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1314 | "rand_hc 0.2.0", |
1214 | "rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1315 | "rand_pcg 0.2.1", |
1215 | ] | 1316 | ] |
1216 | 1317 | ||
1217 | [[package]] | 1318 | [[package]] |
1218 | name = "rand_chacha" | 1319 | name = "rand_chacha" |
1219 | version = "0.1.1" | 1320 | version = "0.1.1" |
1220 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1321 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1322 | checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" | ||
1221 | dependencies = [ | 1323 | dependencies = [ |
1222 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1324 | "autocfg 0.1.7", |
1223 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1325 | "rand_core 0.3.1", |
1224 | ] | 1326 | ] |
1225 | 1327 | ||
1226 | [[package]] | 1328 | [[package]] |
1227 | name = "rand_chacha" | 1329 | name = "rand_chacha" |
1228 | version = "0.2.1" | 1330 | version = "0.2.1" |
1229 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1331 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1332 | checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" | ||
1230 | dependencies = [ | 1333 | dependencies = [ |
1231 | "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1334 | "c2-chacha", |
1232 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1335 | "rand_core 0.5.1", |
1233 | ] | 1336 | ] |
1234 | 1337 | ||
1235 | [[package]] | 1338 | [[package]] |
1236 | name = "rand_core" | 1339 | name = "rand_core" |
1237 | version = "0.3.1" | 1340 | version = "0.3.1" |
1238 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1341 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1342 | checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" | ||
1239 | dependencies = [ | 1343 | dependencies = [ |
1240 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1344 | "rand_core 0.4.2", |
1241 | ] | 1345 | ] |
1242 | 1346 | ||
1243 | [[package]] | 1347 | [[package]] |
1244 | name = "rand_core" | 1348 | name = "rand_core" |
1245 | version = "0.4.2" | 1349 | version = "0.4.2" |
1246 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1350 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1351 | checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" | ||
1247 | 1352 | ||
1248 | [[package]] | 1353 | [[package]] |
1249 | name = "rand_core" | 1354 | name = "rand_core" |
1250 | version = "0.5.1" | 1355 | version = "0.5.1" |
1251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1356 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1357 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" | ||
1252 | dependencies = [ | 1358 | dependencies = [ |
1253 | "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", | 1359 | "getrandom", |
1254 | ] | 1360 | ] |
1255 | 1361 | ||
1256 | [[package]] | 1362 | [[package]] |
1257 | name = "rand_hc" | 1363 | name = "rand_hc" |
1258 | version = "0.1.0" | 1364 | version = "0.1.0" |
1259 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1366 | checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" | ||
1260 | dependencies = [ | 1367 | dependencies = [ |
1261 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1368 | "rand_core 0.3.1", |
1262 | ] | 1369 | ] |
1263 | 1370 | ||
1264 | [[package]] | 1371 | [[package]] |
1265 | name = "rand_hc" | 1372 | name = "rand_hc" |
1266 | version = "0.2.0" | 1373 | version = "0.2.0" |
1267 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1374 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1375 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | ||
1268 | dependencies = [ | 1376 | dependencies = [ |
1269 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1377 | "rand_core 0.5.1", |
1270 | ] | 1378 | ] |
1271 | 1379 | ||
1272 | [[package]] | 1380 | [[package]] |
1273 | name = "rand_isaac" | 1381 | name = "rand_isaac" |
1274 | version = "0.1.1" | 1382 | version = "0.1.1" |
1275 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1383 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1384 | checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" | ||
1276 | dependencies = [ | 1385 | dependencies = [ |
1277 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1386 | "rand_core 0.3.1", |
1278 | ] | 1387 | ] |
1279 | 1388 | ||
1280 | [[package]] | 1389 | [[package]] |
1281 | name = "rand_jitter" | 1390 | name = "rand_jitter" |
1282 | version = "0.1.4" | 1391 | version = "0.1.4" |
1283 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1392 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1393 | checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" | ||
1284 | dependencies = [ | 1394 | dependencies = [ |
1285 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 1395 | "libc", |
1286 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1396 | "rand_core 0.4.2", |
1287 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1397 | "winapi 0.3.8", |
1288 | ] | 1398 | ] |
1289 | 1399 | ||
1290 | [[package]] | 1400 | [[package]] |
1291 | name = "rand_os" | 1401 | name = "rand_os" |
1292 | version = "0.1.3" | 1402 | version = "0.1.3" |
1293 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1403 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1404 | checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" | ||
1294 | dependencies = [ | 1405 | dependencies = [ |
1295 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1406 | "cloudabi", |
1296 | "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1407 | "fuchsia-cprng", |
1297 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 1408 | "libc", |
1298 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1409 | "rand_core 0.4.2", |
1299 | "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1410 | "rdrand", |
1300 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1411 | "winapi 0.3.8", |
1301 | ] | 1412 | ] |
1302 | 1413 | ||
1303 | [[package]] | 1414 | [[package]] |
1304 | name = "rand_pcg" | 1415 | name = "rand_pcg" |
1305 | version = "0.1.2" | 1416 | version = "0.1.2" |
1306 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1417 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1418 | checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" | ||
1307 | dependencies = [ | 1419 | dependencies = [ |
1308 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1420 | "autocfg 0.1.7", |
1309 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1421 | "rand_core 0.4.2", |
1310 | ] | 1422 | ] |
1311 | 1423 | ||
1312 | [[package]] | 1424 | [[package]] |
1313 | name = "rand_pcg" | 1425 | name = "rand_pcg" |
1314 | version = "0.2.1" | 1426 | version = "0.2.1" |
1315 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1427 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1428 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" | ||
1316 | dependencies = [ | 1429 | dependencies = [ |
1317 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1430 | "rand_core 0.5.1", |
1318 | ] | 1431 | ] |
1319 | 1432 | ||
1320 | [[package]] | 1433 | [[package]] |
1321 | name = "rand_xorshift" | 1434 | name = "rand_xorshift" |
1322 | version = "0.1.1" | 1435 | version = "0.1.1" |
1323 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1436 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1437 | checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" | ||
1324 | dependencies = [ | 1438 | dependencies = [ |
1325 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1439 | "rand_core 0.3.1", |
1326 | ] | 1440 | ] |
1327 | 1441 | ||
1328 | [[package]] | 1442 | [[package]] |
1329 | name = "rayon" | 1443 | name = "rayon" |
1330 | version = "1.3.0" | 1444 | version = "1.3.0" |
1331 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1445 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1446 | checksum = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" | ||
1332 | dependencies = [ | 1447 | dependencies = [ |
1333 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1448 | "crossbeam-deque", |
1334 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1449 | "either", |
1335 | "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1450 | "rayon-core", |
1336 | ] | 1451 | ] |
1337 | 1452 | ||
1338 | [[package]] | 1453 | [[package]] |
1339 | name = "rayon-core" | 1454 | name = "rayon-core" |
1340 | version = "1.7.0" | 1455 | version = "1.7.0" |
1341 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1456 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1457 | checksum = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" | ||
1342 | dependencies = [ | 1458 | dependencies = [ |
1343 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1459 | "crossbeam-deque", |
1344 | "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1460 | "crossbeam-queue", |
1345 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1461 | "crossbeam-utils", |
1346 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1462 | "lazy_static", |
1347 | "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1463 | "num_cpus", |
1348 | ] | 1464 | ] |
1349 | 1465 | ||
1350 | [[package]] | 1466 | [[package]] |
1351 | name = "rdrand" | 1467 | name = "rdrand" |
1352 | version = "0.4.0" | 1468 | version = "0.4.0" |
1353 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1469 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1470 | checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" | ||
1354 | dependencies = [ | 1471 | dependencies = [ |
1355 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1472 | "rand_core 0.3.1", |
1356 | ] | 1473 | ] |
1357 | 1474 | ||
1358 | [[package]] | 1475 | [[package]] |
1359 | name = "redox_syscall" | 1476 | name = "redox_syscall" |
1360 | version = "0.1.56" | 1477 | version = "0.1.56" |
1361 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1478 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1479 | checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" | ||
1362 | 1480 | ||
1363 | [[package]] | 1481 | [[package]] |
1364 | name = "regex" | 1482 | name = "regex" |
1365 | version = "1.3.3" | 1483 | version = "1.3.3" |
1366 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1484 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1485 | checksum = "b5508c1941e4e7cb19965abef075d35a9a8b5cdf0846f30b4050e9b55dc55e87" | ||
1367 | dependencies = [ | 1486 | dependencies = [ |
1368 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1487 | "aho-corasick", |
1369 | "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1488 | "memchr", |
1370 | "regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", | 1489 | "regex-syntax", |
1371 | "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1490 | "thread_local", |
1372 | ] | 1491 | ] |
1373 | 1492 | ||
1374 | [[package]] | 1493 | [[package]] |
1375 | name = "regex-syntax" | 1494 | name = "regex-syntax" |
1376 | version = "0.6.13" | 1495 | version = "0.6.13" |
1377 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1496 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1497 | checksum = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90" | ||
1378 | 1498 | ||
1379 | [[package]] | 1499 | [[package]] |
1380 | name = "relative-path" | 1500 | name = "relative-path" |
1381 | version = "1.0.0" | 1501 | version = "1.0.0" |
1382 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1502 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1503 | checksum = "bedde000f40f2921ce439ea165c9c53fd629bfa115140c72e22aceacb4a21954" | ||
1383 | 1504 | ||
1384 | [[package]] | 1505 | [[package]] |
1385 | name = "remove_dir_all" | 1506 | name = "remove_dir_all" |
1386 | version = "0.5.2" | 1507 | version = "0.5.2" |
1387 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1508 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1509 | checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" | ||
1388 | dependencies = [ | 1510 | dependencies = [ |
1389 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1511 | "winapi 0.3.8", |
1390 | ] | 1512 | ] |
1391 | 1513 | ||
1392 | [[package]] | 1514 | [[package]] |
1393 | name = "rowan" | 1515 | name = "rowan" |
1394 | version = "0.9.0" | 1516 | version = "0.9.0" |
1395 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1517 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1518 | checksum = "6d03d4eff7a4e8dcc362e4c06bb2b1b33af4bcd64336c7f40a31a05850336b6c" | ||
1396 | dependencies = [ | 1519 | dependencies = [ |
1397 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1520 | "rustc-hash", |
1398 | "smol_str 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", | 1521 | "smol_str", |
1399 | "text_unit 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1522 | "text_unit", |
1400 | "thin-dst 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1523 | "thin-dst", |
1401 | ] | 1524 | ] |
1402 | 1525 | ||
1403 | [[package]] | 1526 | [[package]] |
1404 | name = "rustc-demangle" | 1527 | name = "rustc-demangle" |
1405 | version = "0.1.16" | 1528 | version = "0.1.16" |
1406 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1529 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1530 | checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" | ||
1407 | 1531 | ||
1408 | [[package]] | 1532 | [[package]] |
1409 | name = "rustc-hash" | 1533 | name = "rustc-hash" |
1410 | version = "1.0.1" | 1534 | version = "1.0.1" |
1411 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1535 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1536 | checksum = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8" | ||
1412 | dependencies = [ | 1537 | dependencies = [ |
1413 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1538 | "byteorder", |
1414 | ] | 1539 | ] |
1415 | 1540 | ||
1416 | [[package]] | 1541 | [[package]] |
1417 | name = "rustc_lexer" | 1542 | name = "rustc_lexer" |
1418 | version = "0.1.0" | 1543 | version = "0.1.0" |
1419 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1544 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1545 | checksum = "c86aae0c77166108c01305ee1a36a1e77289d7dc6ca0a3cd91ff4992de2d16a5" | ||
1420 | dependencies = [ | 1546 | dependencies = [ |
1421 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1547 | "unicode-xid", |
1422 | ] | 1548 | ] |
1423 | 1549 | ||
1424 | [[package]] | 1550 | [[package]] |
1425 | name = "rustc_version" | 1551 | name = "rustc_version" |
1426 | version = "0.2.3" | 1552 | version = "0.2.3" |
1427 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1553 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1554 | checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | ||
1428 | dependencies = [ | 1555 | dependencies = [ |
1429 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1556 | "semver", |
1430 | ] | 1557 | ] |
1431 | 1558 | ||
1432 | [[package]] | 1559 | [[package]] |
1433 | name = "ryu" | 1560 | name = "ryu" |
1434 | version = "1.0.2" | 1561 | version = "1.0.2" |
1435 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1562 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1563 | checksum = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" | ||
1436 | 1564 | ||
1437 | [[package]] | 1565 | [[package]] |
1438 | name = "salsa" | 1566 | name = "salsa" |
1439 | version = "0.14.1" | 1567 | version = "0.14.1" |
1440 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1568 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1569 | checksum = "4a006c56096acaaa5e82e5974c28d05ff1e84aa70615f19c53fecf8a1afb2fd2" | ||
1441 | dependencies = [ | 1570 | dependencies = [ |
1442 | "crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1571 | "crossbeam", |
1443 | "indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1572 | "indexmap", |
1444 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1573 | "log", |
1445 | "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1574 | "parking_lot", |
1446 | "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1575 | "rand 0.7.3", |
1447 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1576 | "rustc-hash", |
1448 | "salsa-macros 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1577 | "salsa-macros", |
1449 | "smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1578 | "smallvec", |
1450 | ] | 1579 | ] |
1451 | 1580 | ||
1452 | [[package]] | 1581 | [[package]] |
1453 | name = "salsa-macros" | 1582 | name = "salsa-macros" |
1454 | version = "0.14.1" | 1583 | version = "0.14.1" |
1455 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1584 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1585 | checksum = "038a09b6271446f1123f142fe7e5bef6d4687c4cf82e6986be574c2af3745530" | ||
1456 | dependencies = [ | 1586 | dependencies = [ |
1457 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1587 | "heck", |
1458 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1588 | "proc-macro2", |
1459 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1589 | "quote", |
1460 | "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", | 1590 | "syn", |
1461 | ] | 1591 | ] |
1462 | 1592 | ||
1463 | [[package]] | 1593 | [[package]] |
1464 | name = "same-file" | 1594 | name = "same-file" |
1465 | version = "1.0.6" | 1595 | version = "1.0.6" |
1466 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1596 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1597 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" | ||
1467 | dependencies = [ | 1598 | dependencies = [ |
1468 | "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1599 | "winapi-util", |
1469 | ] | 1600 | ] |
1470 | 1601 | ||
1471 | [[package]] | 1602 | [[package]] |
1472 | name = "scopeguard" | 1603 | name = "scopeguard" |
1473 | version = "1.0.0" | 1604 | version = "1.0.0" |
1474 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1605 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1606 | checksum = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" | ||
1475 | 1607 | ||
1476 | [[package]] | 1608 | [[package]] |
1477 | name = "semver" | 1609 | name = "semver" |
1478 | version = "0.9.0" | 1610 | version = "0.9.0" |
1479 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1611 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1612 | checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | ||
1480 | dependencies = [ | 1613 | dependencies = [ |
1481 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1614 | "semver-parser", |
1482 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1615 | "serde", |
1483 | ] | 1616 | ] |
1484 | 1617 | ||
1485 | [[package]] | 1618 | [[package]] |
1486 | name = "semver-parser" | 1619 | name = "semver-parser" |
1487 | version = "0.7.0" | 1620 | version = "0.7.0" |
1488 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1621 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1622 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | ||
1489 | 1623 | ||
1490 | [[package]] | 1624 | [[package]] |
1491 | name = "serde" | 1625 | name = "serde" |
1492 | version = "1.0.104" | 1626 | version = "1.0.104" |
1493 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1627 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1628 | checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" | ||
1494 | dependencies = [ | 1629 | dependencies = [ |
1495 | "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1630 | "serde_derive", |
1496 | ] | 1631 | ] |
1497 | 1632 | ||
1498 | [[package]] | 1633 | [[package]] |
1499 | name = "serde_derive" | 1634 | name = "serde_derive" |
1500 | version = "1.0.104" | 1635 | version = "1.0.104" |
1501 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1636 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1637 | checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" | ||
1502 | dependencies = [ | 1638 | dependencies = [ |
1503 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1639 | "proc-macro2", |
1504 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1640 | "quote", |
1505 | "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", | 1641 | "syn", |
1506 | ] | 1642 | ] |
1507 | 1643 | ||
1508 | [[package]] | 1644 | [[package]] |
1509 | name = "serde_json" | 1645 | name = "serde_json" |
1510 | version = "1.0.45" | 1646 | version = "1.0.45" |
1511 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1647 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1648 | checksum = "eab8f15f15d6c41a154c1b128a22f2dfabe350ef53c40953d84e36155c91192b" | ||
1512 | dependencies = [ | 1649 | dependencies = [ |
1513 | "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1650 | "itoa", |
1514 | "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1651 | "ryu", |
1515 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1652 | "serde", |
1516 | ] | 1653 | ] |
1517 | 1654 | ||
1518 | [[package]] | 1655 | [[package]] |
1519 | name = "serde_repr" | 1656 | name = "serde_repr" |
1520 | version = "0.1.5" | 1657 | version = "0.1.5" |
1521 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1658 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1659 | checksum = "cd02c7587ec314570041b2754829f84d873ced14a96d1fd1823531e11db40573" | ||
1522 | dependencies = [ | 1660 | dependencies = [ |
1523 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1661 | "proc-macro2", |
1524 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1662 | "quote", |
1525 | "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", | 1663 | "syn", |
1526 | ] | 1664 | ] |
1527 | 1665 | ||
1528 | [[package]] | 1666 | [[package]] |
1529 | name = "serde_yaml" | 1667 | name = "serde_yaml" |
1530 | version = "0.8.11" | 1668 | version = "0.8.11" |
1531 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1670 | checksum = "691b17f19fc1ec9d94ec0b5864859290dff279dbd7b03f017afda54eb36c3c35" | ||
1532 | dependencies = [ | 1671 | dependencies = [ |
1533 | "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1672 | "dtoa", |
1534 | "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1673 | "linked-hash-map", |
1535 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1674 | "serde", |
1536 | "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1675 | "yaml-rust", |
1537 | ] | 1676 | ] |
1538 | 1677 | ||
1539 | [[package]] | 1678 | [[package]] |
1540 | name = "slab" | 1679 | name = "slab" |
1541 | version = "0.4.2" | 1680 | version = "0.4.2" |
1542 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1681 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1682 | checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" | ||
1543 | 1683 | ||
1544 | [[package]] | 1684 | [[package]] |
1545 | name = "smallvec" | 1685 | name = "smallvec" |
1546 | version = "1.1.0" | 1686 | version = "1.2.0" |
1547 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1687 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1688 | checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" | ||
1548 | 1689 | ||
1549 | [[package]] | 1690 | [[package]] |
1550 | name = "smol_str" | 1691 | name = "smol_str" |
1551 | version = "0.1.15" | 1692 | version = "0.1.15" |
1552 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1693 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1694 | checksum = "34836c9a295c62c2ce3514471117c5cb269891e8421b2aafdd910050576c4d8b" | ||
1553 | dependencies = [ | 1695 | dependencies = [ |
1554 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1696 | "serde", |
1555 | ] | 1697 | ] |
1556 | 1698 | ||
1557 | [[package]] | 1699 | [[package]] |
1558 | name = "superslice" | 1700 | name = "superslice" |
1559 | version = "1.0.0" | 1701 | version = "1.0.0" |
1560 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1702 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1703 | checksum = "ab16ced94dbd8a46c82fd81e3ed9a8727dac2977ea869d217bcc4ea1f122e81f" | ||
1561 | 1704 | ||
1562 | [[package]] | 1705 | [[package]] |
1563 | name = "syn" | 1706 | name = "syn" |
1564 | version = "1.0.14" | 1707 | version = "1.0.14" |
1565 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1708 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1709 | checksum = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5" | ||
1566 | dependencies = [ | 1710 | dependencies = [ |
1567 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1711 | "proc-macro2", |
1568 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1712 | "quote", |
1569 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1713 | "unicode-xid", |
1570 | ] | 1714 | ] |
1571 | 1715 | ||
1572 | [[package]] | 1716 | [[package]] |
1573 | name = "tempfile" | 1717 | name = "tempfile" |
1574 | version = "3.1.0" | 1718 | version = "3.1.0" |
1575 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1719 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1720 | checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" | ||
1576 | dependencies = [ | 1721 | dependencies = [ |
1577 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 1722 | "cfg-if", |
1578 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 1723 | "libc", |
1579 | "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1724 | "rand 0.7.3", |
1580 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | 1725 | "redox_syscall", |
1581 | "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1726 | "remove_dir_all", |
1582 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1727 | "winapi 0.3.8", |
1583 | ] | 1728 | ] |
1584 | 1729 | ||
1585 | [[package]] | 1730 | [[package]] |
1586 | name = "termios" | 1731 | name = "termios" |
1587 | version = "0.3.1" | 1732 | version = "0.3.1" |
1588 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1733 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1734 | checksum = "72b620c5ea021d75a735c943269bb07d30c9b77d6ac6b236bc8b5c496ef05625" | ||
1589 | dependencies = [ | 1735 | dependencies = [ |
1590 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | 1736 | "libc", |
1591 | ] | 1737 | ] |
1592 | 1738 | ||
1593 | [[package]] | 1739 | [[package]] |
1594 | name = "test_utils" | 1740 | name = "test_utils" |
1595 | version = "0.1.0" | 1741 | version = "0.1.0" |
1596 | dependencies = [ | 1742 | dependencies = [ |
1597 | "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1743 | "difference", |
1598 | "serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", | 1744 | "serde_json", |
1599 | "text_unit 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1745 | "text_unit", |
1600 | ] | 1746 | ] |
1601 | 1747 | ||
1602 | [[package]] | 1748 | [[package]] |
1603 | name = "text_unit" | 1749 | name = "text_unit" |
1604 | version = "0.1.9" | 1750 | version = "0.1.9" |
1605 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1751 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1752 | checksum = "e08bbcb7a3adbda0eb23431206b653bdad3d8dea311e72d36bf2215e27a42579" | ||
1606 | 1753 | ||
1607 | [[package]] | 1754 | [[package]] |
1608 | name = "thin-dst" | 1755 | name = "thin-dst" |
1609 | version = "1.0.0" | 1756 | version = "1.0.0" |
1610 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1757 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1758 | checksum = "c52fd98a9e4913c466d83381a59245691875d2f3e04611fca57f964bd8aa96e1" | ||
1611 | 1759 | ||
1612 | [[package]] | 1760 | [[package]] |
1613 | name = "thread_local" | 1761 | name = "thread_local" |
1614 | version = "1.0.1" | 1762 | version = "1.0.1" |
1615 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1763 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1764 | checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" | ||
1616 | dependencies = [ | 1765 | dependencies = [ |
1617 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1766 | "lazy_static", |
1618 | ] | 1767 | ] |
1619 | 1768 | ||
1620 | [[package]] | 1769 | [[package]] |
1621 | name = "threadpool" | 1770 | name = "threadpool" |
1622 | version = "1.7.1" | 1771 | version = "1.7.1" |
1623 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1772 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1773 | checksum = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" | ||
1624 | dependencies = [ | 1774 | dependencies = [ |
1625 | "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1775 | "num_cpus", |
1626 | ] | 1776 | ] |
1627 | 1777 | ||
1628 | [[package]] | 1778 | [[package]] |
1629 | name = "unicase" | 1779 | name = "unicase" |
1630 | version = "2.6.0" | 1780 | version = "2.6.0" |
1631 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1781 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1782 | checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" | ||
1632 | dependencies = [ | 1783 | dependencies = [ |
1633 | "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1784 | "version_check", |
1634 | ] | 1785 | ] |
1635 | 1786 | ||
1636 | [[package]] | 1787 | [[package]] |
1637 | name = "unicode-bidi" | 1788 | name = "unicode-bidi" |
1638 | version = "0.3.4" | 1789 | version = "0.3.4" |
1639 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1790 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1791 | checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" | ||
1640 | dependencies = [ | 1792 | dependencies = [ |
1641 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1793 | "matches", |
1642 | ] | 1794 | ] |
1643 | 1795 | ||
1644 | [[package]] | 1796 | [[package]] |
1645 | name = "unicode-normalization" | 1797 | name = "unicode-normalization" |
1646 | version = "0.1.12" | 1798 | version = "0.1.12" |
1647 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1799 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1800 | checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4" | ||
1648 | dependencies = [ | 1801 | dependencies = [ |
1649 | "smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1802 | "smallvec", |
1650 | ] | 1803 | ] |
1651 | 1804 | ||
1652 | [[package]] | 1805 | [[package]] |
1653 | name = "unicode-segmentation" | 1806 | name = "unicode-segmentation" |
1654 | version = "1.6.0" | 1807 | version = "1.6.0" |
1655 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1808 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1809 | checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" | ||
1656 | 1810 | ||
1657 | [[package]] | 1811 | [[package]] |
1658 | name = "unicode-xid" | 1812 | name = "unicode-xid" |
1659 | version = "0.2.0" | 1813 | version = "0.2.0" |
1660 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1814 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1815 | checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" | ||
1661 | 1816 | ||
1662 | [[package]] | 1817 | [[package]] |
1663 | name = "url" | 1818 | name = "url" |
1664 | version = "2.1.1" | 1819 | version = "2.1.1" |
1665 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1820 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1821 | checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb" | ||
1666 | dependencies = [ | 1822 | dependencies = [ |
1667 | "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1823 | "idna", |
1668 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1824 | "matches", |
1669 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1825 | "percent-encoding", |
1670 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", | 1826 | "serde", |
1671 | ] | 1827 | ] |
1672 | 1828 | ||
1673 | [[package]] | 1829 | [[package]] |
1674 | name = "version_check" | 1830 | name = "version_check" |
1675 | version = "0.9.1" | 1831 | version = "0.9.1" |
1676 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1832 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1833 | checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" | ||
1677 | 1834 | ||
1678 | [[package]] | 1835 | [[package]] |
1679 | name = "walkdir" | 1836 | name = "walkdir" |
1680 | version = "2.3.1" | 1837 | version = "2.3.1" |
1681 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1838 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1839 | checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d" | ||
1682 | dependencies = [ | 1840 | dependencies = [ |
1683 | "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1841 | "same-file", |
1684 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1842 | "winapi 0.3.8", |
1685 | "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1843 | "winapi-util", |
1686 | ] | 1844 | ] |
1687 | 1845 | ||
1688 | [[package]] | 1846 | [[package]] |
1689 | name = "wasi" | 1847 | name = "wasi" |
1690 | version = "0.9.0+wasi-snapshot-preview1" | 1848 | version = "0.9.0+wasi-snapshot-preview1" |
1691 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1849 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1850 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" | ||
1692 | 1851 | ||
1693 | [[package]] | 1852 | [[package]] |
1694 | name = "winapi" | 1853 | name = "winapi" |
1695 | version = "0.2.8" | 1854 | version = "0.2.8" |
1696 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1855 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1856 | checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" | ||
1697 | 1857 | ||
1698 | [[package]] | 1858 | [[package]] |
1699 | name = "winapi" | 1859 | name = "winapi" |
1700 | version = "0.3.8" | 1860 | version = "0.3.8" |
1701 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1861 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1862 | checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" | ||
1702 | dependencies = [ | 1863 | dependencies = [ |
1703 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1864 | "winapi-i686-pc-windows-gnu", |
1704 | "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1865 | "winapi-x86_64-pc-windows-gnu", |
1705 | ] | 1866 | ] |
1706 | 1867 | ||
1707 | [[package]] | 1868 | [[package]] |
1708 | name = "winapi-build" | 1869 | name = "winapi-build" |
1709 | version = "0.1.1" | 1870 | version = "0.1.1" |
1710 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1871 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1872 | checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" | ||
1711 | 1873 | ||
1712 | [[package]] | 1874 | [[package]] |
1713 | name = "winapi-i686-pc-windows-gnu" | 1875 | name = "winapi-i686-pc-windows-gnu" |
1714 | version = "0.4.0" | 1876 | version = "0.4.0" |
1715 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1877 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1878 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
1716 | 1879 | ||
1717 | [[package]] | 1880 | [[package]] |
1718 | name = "winapi-util" | 1881 | name = "winapi-util" |
1719 | version = "0.1.3" | 1882 | version = "0.1.3" |
1720 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1883 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1884 | checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" | ||
1721 | dependencies = [ | 1885 | dependencies = [ |
1722 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1886 | "winapi 0.3.8", |
1723 | ] | 1887 | ] |
1724 | 1888 | ||
1725 | [[package]] | 1889 | [[package]] |
1726 | name = "winapi-x86_64-pc-windows-gnu" | 1890 | name = "winapi-x86_64-pc-windows-gnu" |
1727 | version = "0.4.0" | 1891 | version = "0.4.0" |
1728 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1892 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1893 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
1729 | 1894 | ||
1730 | [[package]] | 1895 | [[package]] |
1731 | name = "ws2_32-sys" | 1896 | name = "ws2_32-sys" |
1732 | version = "0.2.1" | 1897 | version = "0.2.1" |
1733 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1898 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1899 | checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" | ||
1734 | dependencies = [ | 1900 | dependencies = [ |
1735 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1901 | "winapi 0.2.8", |
1736 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1902 | "winapi-build", |
1737 | ] | 1903 | ] |
1738 | 1904 | ||
1739 | [[package]] | 1905 | [[package]] |
1740 | name = "xtask" | 1906 | name = "xtask" |
1741 | version = "0.1.0" | 1907 | version = "0.1.0" |
1742 | dependencies = [ | 1908 | dependencies = [ |
1743 | "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", | 1909 | "anyhow", |
1744 | "pico-args 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1910 | "pico-args", |
1745 | "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1911 | "proc-macro2", |
1746 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1912 | "quote", |
1747 | "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1913 | "walkdir", |
1748 | ] | 1914 | ] |
1749 | 1915 | ||
1750 | [[package]] | 1916 | [[package]] |
1751 | name = "yaml-rust" | 1917 | name = "yaml-rust" |
1752 | version = "0.4.3" | 1918 | version = "0.4.3" |
1753 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1919 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1920 | checksum = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d" | ||
1754 | dependencies = [ | 1921 | dependencies = [ |
1755 | "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1922 | "linked-hash-map", |
1756 | ] | 1923 | ] |
1757 | |||
1758 | [metadata] | ||
1759 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" | ||
1760 | "checksum anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "7825f6833612eb2414095684fcf6c635becf3ce97fe48cf6421321e93bfbd53c" | ||
1761 | "checksum anymap 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344" | ||
1762 | "checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" | ||
1763 | "checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
1764 | "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" | ||
1765 | "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" | ||
1766 | "checksum backtrace 0.3.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b4b1549d804b6c73f4817df2ba073709e96e426f12987127c48e6745568c350b" | ||
1767 | "checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" | ||
1768 | "checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" | ||
1769 | "checksum bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e84c238982c4b1e1ee668d136c510c67a13465279c0cb367ea6baf6310620a80" | ||
1770 | "checksum bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f59bbe95d4e52a6398ec21238d31577f2b28a9d86807f06ca59d191d8440d0bb" | ||
1771 | "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | ||
1772 | "checksum bstr 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "fe8a65814ca90dfc9705af76bb6ba3c6e2534489a72270e797e603783bb4990b" | ||
1773 | "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" | ||
1774 | "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" | ||
1775 | "checksum cargo_metadata 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202" | ||
1776 | "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" | ||
1777 | "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | ||
1778 | "checksum chalk-derive 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)" = "<none>" | ||
1779 | "checksum chalk-engine 0.9.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)" = "<none>" | ||
1780 | "checksum chalk-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)" = "<none>" | ||
1781 | "checksum chalk-macros 0.1.1 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)" = "<none>" | ||
1782 | "checksum chalk-rust-ir 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)" = "<none>" | ||
1783 | "checksum chalk-solve 0.1.0 (git+https://github.com/rust-lang/chalk.git?rev=af48f302a1f571b3ca418f7c5aa639a144a34f75)" = "<none>" | ||
1784 | "checksum clicolors-control 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e" | ||
1785 | "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" | ||
1786 | "checksum console 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "45e0f3986890b3acbc782009e2629dfe2baa430ac091519ce3be26164a2ae6c0" | ||
1787 | "checksum crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "69323bff1fb41c635347b8ead484a5ca6c3f11914d784170b158d8449ab07f8e" | ||
1788 | "checksum crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" | ||
1789 | "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" | ||
1790 | "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" | ||
1791 | "checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" | ||
1792 | "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" | ||
1793 | "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" | ||
1794 | "checksum drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "69b26e475fd29098530e709294e94e661974c851aed42512793f120fed4e199f" | ||
1795 | "checksum dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e" | ||
1796 | "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" | ||
1797 | "checksum ena 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8944dc8fa28ce4a38f778bd46bf7d923fe73eed5a439398507246c8e017e6f36" | ||
1798 | "checksum encode_unicode 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" | ||
1799 | "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" | ||
1800 | "checksum filetime 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1ff6d4dab0aa0c8e6346d46052e93b13a16cf847b54ed357087c35011048cc7d" | ||
1801 | "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" | ||
1802 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" | ||
1803 | "checksum format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f7aea5a5909a74969507051a3b17adc84737e31a5f910559892aedce026f4d53" | ||
1804 | "checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674" | ||
1805 | "checksum fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" | ||
1806 | "checksum fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" | ||
1807 | "checksum fst 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "927fb434ff9f0115b215dc0efd2e4fbdd7448522a92a1aa37c77d6a2f8f1ebd6" | ||
1808 | "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" | ||
1809 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | ||
1810 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | ||
1811 | "checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" | ||
1812 | "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" | ||
1813 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" | ||
1814 | "checksum hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" | ||
1815 | "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" | ||
1816 | "checksum indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b54058f0a6ff80b6803da8faf8997cde53872b38f4023728f6830b06cd3c0dc" | ||
1817 | "checksum inotify 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "24e40d6fd5d64e2082e0c796495c8ef5ad667a96d03e5aaa0becfd9d47bcbfb8" | ||
1818 | "checksum inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" | ||
1819 | "checksum insta 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8df742abee84dbf27d20869c9adf77b0d8f7ea3eead13c2c9e3998d136a97058" | ||
1820 | "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" | ||
1821 | "checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" | ||
1822 | "checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" | ||
1823 | "checksum jemalloc-ctl 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c502a5ff9dd2924f1ed32ba96e3b65735d837b4bfd978d3161b1702e66aca4b7" | ||
1824 | "checksum jemalloc-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d3b9f3f5c9b31aa0f5ed3260385ac205db665baa41d49bb8338008ae94ede45" | ||
1825 | "checksum jemallocator 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "43ae63fcfc45e99ab3d1b29a46782ad679e98436c3169d15a167a1108a724b69" | ||
1826 | "checksum jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f52a11f73b88fab829a0e4d9e13ea5982c7ac457c72eb3541d82a4afdfce4ff" | ||
1827 | "checksum join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4dc7a5290e8c2606ce2be49f456d50f69173cb96d1541e4f66e34ac8b331a98f" | ||
1828 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" | ||
1829 | "checksum lalrpop-intern 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cc4fd87be4a815fd373e02773983940f0d75fb26fde8c098e9e45f7af03154c0" | ||
1830 | "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
1831 | "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" | ||
1832 | "checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" | ||
1833 | "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" | ||
1834 | "checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b" | ||
1835 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" | ||
1836 | "checksum lsp-server 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5383e043329615624bbf45e1ba27bd75c176762b2592855c659bc28ac580a06b" | ||
1837 | "checksum lsp-types 0.70.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef197b24cb3f12fc3984667a505691fec9d683204ddff56f12b2d1940e09a988" | ||
1838 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" | ||
1839 | "checksum memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3197e20c7edb283f87c071ddfc7a2cca8f8e0b888c242959846a6fce03c72223" | ||
1840 | "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" | ||
1841 | "checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" | ||
1842 | "checksum mio-extras 2.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" | ||
1843 | "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" | ||
1844 | "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" | ||
1845 | "checksum notify 4.0.15 (registry+https://github.com/rust-lang/crates.io-index)" = "80ae4a7688d1fab81c5bf19c64fc8db920be8d519ce6336ed4e7efe024724dbd" | ||
1846 | "checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" | ||
1847 | "checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" | ||
1848 | "checksum once_cell 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1c601810575c99596d4afc46f78a678c80105117c379eb3650cf99b8a21ce5b" | ||
1849 | "checksum ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063" | ||
1850 | "checksum parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc" | ||
1851 | "checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1" | ||
1852 | "checksum paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "423a519e1c6e828f1e73b720f9d9ed2fa643dce8a7737fb43235ce0b41eeaa49" | ||
1853 | "checksum paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4214c9e912ef61bf42b81ba9a47e8aad1b2ffaf739ab162bf96d1e011f54e6c5" | ||
1854 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" | ||
1855 | "checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" | ||
1856 | "checksum pico-args 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ad1f1b834a05d42dae330066e9699a173b28185b3bdc3dbf14ca239585de8cc" | ||
1857 | "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" | ||
1858 | "checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" | ||
1859 | "checksum proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548" | ||
1860 | "checksum proptest 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bf6147d103a7c9d7598f4105cf049b15c99e2ecd93179bf024f0fd349be5ada4" | ||
1861 | "checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" | ||
1862 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | ||
1863 | "checksum ra_vfs 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bc898f237e4b4498959ae0100c688793a23e77624d44ef710ba70094217f98e0" | ||
1864 | "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" | ||
1865 | "checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" | ||
1866 | "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" | ||
1867 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" | ||
1868 | "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" | ||
1869 | "checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" | ||
1870 | "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" | ||
1871 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" | ||
1872 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | ||
1873 | "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" | ||
1874 | "checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" | ||
1875 | "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" | ||
1876 | "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" | ||
1877 | "checksum rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" | ||
1878 | "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" | ||
1879 | "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" | ||
1880 | "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" | ||
1881 | "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" | ||
1882 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" | ||
1883 | "checksum regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b5508c1941e4e7cb19965abef075d35a9a8b5cdf0846f30b4050e9b55dc55e87" | ||
1884 | "checksum regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90" | ||
1885 | "checksum relative-path 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bedde000f40f2921ce439ea165c9c53fd629bfa115140c72e22aceacb4a21954" | ||
1886 | "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" | ||
1887 | "checksum rowan 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6d03d4eff7a4e8dcc362e4c06bb2b1b33af4bcd64336c7f40a31a05850336b6c" | ||
1888 | "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" | ||
1889 | "checksum rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8" | ||
1890 | "checksum rustc_lexer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c86aae0c77166108c01305ee1a36a1e77289d7dc6ca0a3cd91ff4992de2d16a5" | ||
1891 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | ||
1892 | "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" | ||
1893 | "checksum salsa 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4a006c56096acaaa5e82e5974c28d05ff1e84aa70615f19c53fecf8a1afb2fd2" | ||
1894 | "checksum salsa-macros 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "038a09b6271446f1123f142fe7e5bef6d4687c4cf82e6986be574c2af3745530" | ||
1895 | "checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" | ||
1896 | "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" | ||
1897 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | ||
1898 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | ||
1899 | "checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" | ||
1900 | "checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" | ||
1901 | "checksum serde_json 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)" = "eab8f15f15d6c41a154c1b128a22f2dfabe350ef53c40953d84e36155c91192b" | ||
1902 | "checksum serde_repr 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "cd02c7587ec314570041b2754829f84d873ced14a96d1fd1823531e11db40573" | ||
1903 | "checksum serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = "691b17f19fc1ec9d94ec0b5864859290dff279dbd7b03f017afda54eb36c3c35" | ||
1904 | "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" | ||
1905 | "checksum smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44e59e0c9fa00817912ae6e4e6e3c4fe04455e75699d06eedc7d85917ed8e8f4" | ||
1906 | "checksum smol_str 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "34836c9a295c62c2ce3514471117c5cb269891e8421b2aafdd910050576c4d8b" | ||
1907 | "checksum superslice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab16ced94dbd8a46c82fd81e3ed9a8727dac2977ea869d217bcc4ea1f122e81f" | ||
1908 | "checksum syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5" | ||
1909 | "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" | ||
1910 | "checksum termios 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72b620c5ea021d75a735c943269bb07d30c9b77d6ac6b236bc8b5c496ef05625" | ||
1911 | "checksum text_unit 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e08bbcb7a3adbda0eb23431206b653bdad3d8dea311e72d36bf2215e27a42579" | ||
1912 | "checksum thin-dst 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c52fd98a9e4913c466d83381a59245691875d2f3e04611fca57f964bd8aa96e1" | ||
1913 | "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" | ||
1914 | "checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" | ||
1915 | "checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" | ||
1916 | "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" | ||
1917 | "checksum unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4" | ||
1918 | "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" | ||
1919 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" | ||
1920 | "checksum url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb" | ||
1921 | "checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" | ||
1922 | "checksum walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d" | ||
1923 | "checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" | ||
1924 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" | ||
1925 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" | ||
1926 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" | ||
1927 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
1928 | "checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" | ||
1929 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
1930 | "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" | ||
1931 | "checksum yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d" | ||