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