Cargo.lock 112.8 KB
Newer Older
1 2
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
3
[[package]]
4 5
name = "adler32"
version = "1.0.3"
6
source = "registry+https://github.com/rust-lang/crates.io-index"
7
checksum = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c"
8

E
Eric Huss 已提交
9 10
[[package]]
name = "aho-corasick"
Y
Yuki Okushi 已提交
11
version = "0.7.10"
E
Eric Huss 已提交
12
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
13
checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
E
Eric Huss 已提交
14
dependencies = [
15
 "memchr",
E
Eric Huss 已提交
16 17
]

18 19 20 21
[[package]]
name = "alloc"
version = "0.0.0"
dependencies = [
22 23
 "compiler_builtins",
 "core",
24
 "rand 0.7.3",
25
 "rand_xorshift 0.2.0",
26 27
]

S
steveklabnik 已提交
28 29
[[package]]
name = "ammonia"
30
version = "3.0.0"
E
Eric Huss 已提交
31
source = "registry+https://github.com/rust-lang/crates.io-index"
32
checksum = "9e266e1f4be5ffa05309f650e2586fe1d3ae6034eb24025a7ae1dfecc330823a"
E
Eric Huss 已提交
33
dependencies = [
34
 "html5ever",
Y
Yuki Okushi 已提交
35
 "lazy_static",
36 37 38
 "maplit",
 "matches",
 "tendril",
39
 "url 2.1.0",
E
Eric Huss 已提交
40 41
]

42 43 44 45
[[package]]
name = "annotate-snippets"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
46
checksum = "c7021ce4924a3f25f802b2cccd1af585e39ea1a363a1aa2e72afe54b67a3a7a7"
I
Igor Matuszewski 已提交
47
dependencies = [
48
 "ansi_term",
I
Igor Matuszewski 已提交
49
]
50

51 52 53 54 55 56
[[package]]
name = "annotate-snippets"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d78ea013094e5ea606b1c05fe35f1dd7ea1eb1ea259908d040b25bd5ec677ee5"

57 58
[[package]]
name = "ansi_term"
A
Aleksey Kladov 已提交
59
version = "0.11.0"
60
source = "registry+https://github.com/rust-lang/crates.io-index"
61
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
A
Aleksey Kladov 已提交
62
dependencies = [
E
Eric Huss 已提交
63
 "winapi 0.3.8",
A
Aleksey Kladov 已提交
64
]
65

E
Eric Huss 已提交
66 67
[[package]]
name = "anyhow"
E
Eric Huss 已提交
68
version = "1.0.31"
E
Eric Huss 已提交
69
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
70
checksum = "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f"
E
Eric Huss 已提交
71

72 73 74 75
[[package]]
name = "arc-swap"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
76
checksum = "1025aeae2b664ca0ea726a89d574fe8f4e77dd712d443236ad1de00379450cf6"
77

F
flip1995 已提交
78 79 80 81
[[package]]
name = "argon2rs"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
82
checksum = "3f67b0b6a86dae6e67ff4ca2b6201396074996379fba2b92ff649126f37cb392"
F
flip1995 已提交
83
dependencies = [
84 85
 "blake2-rfc",
 "scoped_threadpool",
F
flip1995 已提交
86 87
]

N
Nick Cameron 已提交
88 89 90 91
[[package]]
name = "arrayvec"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
92
checksum = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
N
Nick Cameron 已提交
93
dependencies = [
94
 "nodrop",
N
Nick Cameron 已提交
95 96
]

97 98 99 100 101 102
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"

103 104
[[package]]
name = "atty"
Y
Yuki Okushi 已提交
105
version = "0.2.14"
106
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
107
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
108
dependencies = [
Y
Yuki Okushi 已提交
109
 "hermit-abi",
110
 "libc",
E
Eric Huss 已提交
111
 "winapi 0.3.8",
112 113
]

114 115
[[package]]
name = "autocfg"
116
version = "0.1.7"
117
source = "registry+https://github.com/rust-lang/crates.io-index"
118
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
119

120 121 122 123 124 125
[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"

126 127
[[package]]
name = "backtrace"
128 129 130
version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
131
dependencies = [
132
 "backtrace-sys",
133
 "cfg-if",
134
 "compiler_builtins",
135 136
 "libc",
 "rustc-demangle",
137 138 139 140 141 142 143 144 145 146 147 148 149
 "rustc-std-workspace-core",
]

[[package]]
name = "backtrace-sys"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18fbebbe1c9d1f383a9cc7e8ccdb471b91c8d024ee9c2ca5b5346121fe8b4399"
dependencies = [
 "cc",
 "compiler_builtins",
 "libc",
 "rustc-std-workspace-core",
150 151
]

152 153
[[package]]
name = "bitflags"
V
varkor 已提交
154
version = "1.2.1"
155
source = "registry+https://github.com/rust-lang/crates.io-index"
V
varkor 已提交
156
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
157

E
Eric Huss 已提交
158 159 160 161 162 163 164 165 166
[[package]]
name = "bitmaps"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81e039a80914325b37fde728ef7693c212f0ac913d5599607d7b95a9484aae0b"
dependencies = [
 "typenum",
]

F
flip1995 已提交
167 168 169 170
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
171
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
F
flip1995 已提交
172
dependencies = [
173
 "arrayvec 0.4.7",
174
 "constant_time_eq",
F
flip1995 已提交
175 176
]

177 178
[[package]]
name = "block-buffer"
179
version = "0.7.3"
180
source = "registry+https://github.com/rust-lang/crates.io-index"
181 182 183 184 185 186 187 188 189 190 191 192 193
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
 "block-padding",
 "byte-tools",
 "byteorder",
 "generic-array",
]

[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
194
dependencies = [
195
 "byte-tools",
196 197
]

198 199 200 201
[[package]]
name = "bootstrap"
version = "0.0.0"
dependencies = [
202 203 204 205 206
 "build_helper",
 "cc",
 "cmake",
 "filetime",
 "getopts",
207
 "ignore",
Y
Yuki Okushi 已提交
208
 "lazy_static",
209 210
 "libc",
 "num_cpus",
211
 "opener",
212 213 214 215
 "pretty_assertions",
 "serde",
 "serde_json",
 "time",
E
Eric Huss 已提交
216
 "toml",
217
 "winapi 0.3.8",
218 219
]

E
Eric Huss 已提交
220 221 222 223
[[package]]
name = "bstr"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
224
checksum = "853b090ce0f45d0265902666bf88039ea3da825e33796716c511a1ec9c170036"
E
Eric Huss 已提交
225
dependencies = [
226
 "memchr",
E
Eric Huss 已提交
227 228
]

229 230 231 232
[[package]]
name = "build-manifest"
version = "0.1.0"
dependencies = [
233
 "serde",
234
 "serde_json",
E
Eric Huss 已提交
235
 "toml",
236 237 238 239 240 241
]

[[package]]
name = "build_helper"
version = "0.1.0"

242 243
[[package]]
name = "byte-tools"
244
version = "0.3.1"
245
source = "registry+https://github.com/rust-lang/crates.io-index"
246
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
247

248 249
[[package]]
name = "bytecount"
250
version = "0.6.0"
251
source = "registry+https://github.com/rust-lang/crates.io-index"
252
checksum = "b0017894339f586ccb943b01b9555de56770c11cda818e7e3d8bd93f4ed7f46e"
253
dependencies = [
254
 "packed_simd",
255 256
]

257 258
[[package]]
name = "byteorder"
R
Ralf Jung 已提交
259
version = "1.3.2"
260
source = "registry+https://github.com/rust-lang/crates.io-index"
R
Ralf Jung 已提交
261
checksum = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
262

263 264 265 266
[[package]]
name = "bytes"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
267
checksum = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa"
268
dependencies = [
269 270
 "byteorder",
 "iovec",
271 272
]

A
Alex Crichton 已提交
273 274 275 276
[[package]]
name = "bytesize"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
277
checksum = "716960a18f978640f25101b5cbf1c6f6b0d3192fab36a2d98ca96f0ecbe41010"
A
Alex Crichton 已提交
278

279 280
[[package]]
name = "cargo"
E
Eric Huss 已提交
281
version = "0.47.0"
282
dependencies = [
E
Eric Huss 已提交
283
 "anyhow",
284 285
 "atty",
 "bytesize",
A
Alex Crichton 已提交
286
 "cargo-platform",
287
 "cargo-test-macro",
A
Aaron Hill 已提交
288
 "cargo-test-support",
289
 "clap",
E
Eric Huss 已提交
290
 "core-foundation",
291
 "crates-io",
292
 "crossbeam-utils 0.7.2",
293 294 295
 "crypto-hash",
 "curl",
 "curl-sys",
R
Ralf Jung 已提交
296
 "env_logger 0.7.1",
297 298 299 300 301 302
 "filetime",
 "flate2",
 "fwdansi",
 "git2",
 "git2-curl",
 "glob",
A
Aaron Hill 已提交
303
 "hex 0.4.0",
304
 "home",
E
Eric Huss 已提交
305
 "humantime 2.0.0",
306 307 308
 "ignore",
 "im-rc",
 "jobserver",
Y
Yuki Okushi 已提交
309
 "lazy_static",
310 311 312 313 314 315 316 317 318
 "lazycell",
 "libc",
 "libgit2-sys",
 "log",
 "memchr",
 "miow 0.3.3",
 "num_cpus",
 "opener",
 "openssl",
E
Eric Huss 已提交
319
 "percent-encoding 2.1.0",
320 321
 "pretty_env_logger",
 "rustc-workspace-hack",
R
Ralf Jung 已提交
322
 "rustfix",
323
 "same-file",
E
Eric Huss 已提交
324
 "semver 0.10.0",
325
 "serde",
326
 "serde_ignored",
327 328 329 330 331 332
 "serde_json",
 "shell-escape",
 "strip-ansi-escapes",
 "tar",
 "tempfile",
 "termcolor",
E
Eric Huss 已提交
333
 "toml",
334
 "unicode-width",
E
Eric Huss 已提交
335
 "unicode-xid 0.2.0",
F
flip1995 已提交
336
 "url 2.1.0",
337
 "walkdir",
E
Eric Huss 已提交
338
 "winapi 0.3.8",
339 340
]

341 342 343 344 345 346 347 348 349 350 351 352 353
[[package]]
name = "cargo-miri"
version = "0.1.0"
dependencies = [
 "cargo_metadata 0.9.1",
 "directories",
 "rustc-workspace-hack",
 "rustc_version",
 "serde",
 "serde_json",
 "vergen",
]

A
Alex Crichton 已提交
354 355
[[package]]
name = "cargo-platform"
E
Eric Huss 已提交
356
version = "0.1.1"
A
Alex Crichton 已提交
357 358 359 360
dependencies = [
 "serde",
]

E
Eric Huss 已提交
361 362 363 364
[[package]]
name = "cargo-test-macro"
version = "0.1.0"

A
Aaron Hill 已提交
365 366 367 368 369 370 371 372 373 374
[[package]]
name = "cargo-test-support"
version = "0.1.0"
dependencies = [
 "cargo",
 "cargo-test-macro",
 "filetime",
 "flate2",
 "git2",
 "glob",
Y
Yuki Okushi 已提交
375
 "lazy_static",
A
Aaron Hill 已提交
376 377 378 379 380 381
 "remove_dir_all",
 "serde_json",
 "tar",
 "url 2.1.0",
]

M
Manish Goregaokar 已提交
382 383 384 385
[[package]]
name = "cargo_metadata"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
386
checksum = "929766d993a2fde7a0ae962ee82429069cd7b68839cd9375b98efd719df65d3a"
M
Manish Goregaokar 已提交
387
dependencies = [
388
 "failure",
E
Eric Huss 已提交
389
 "semver 0.9.0",
390 391 392
 "serde",
 "serde_derive",
 "serde_json",
M
Manish Goregaokar 已提交
393 394
]

M
Manish Goregaokar 已提交
395 396
[[package]]
name = "cargo_metadata"
397
version = "0.9.1"
M
Manish Goregaokar 已提交
398
source = "registry+https://github.com/rust-lang/crates.io-index"
399
checksum = "46e3374c604fb39d1a2f35ed5e4a4e30e60d01fab49446e08f1b3e9a90aef202"
M
Manish Goregaokar 已提交
400
dependencies = [
E
Eric Huss 已提交
401
 "semver 0.9.0",
M
Manish Goregaokar 已提交
402 403 404 405 406
 "serde",
 "serde_derive",
 "serde_json",
]

A
Alex Crichton 已提交
407 408 409 410
[[package]]
name = "cargotest2"
version = "0.1.0"

N
Nick Cameron 已提交
411 412
[[package]]
name = "cc"
413
version = "1.0.57"
N
Nick Cameron 已提交
414
source = "registry+https://github.com/rust-lang/crates.io-index"
415
checksum = "0fde55d2a2bfaa4c9668bbc63f531fbdeee3ffe188f4662511ce2c22b3eedebe"
E
Eric Huss 已提交
416 417 418
dependencies = [
 "jobserver",
]
N
Nick Cameron 已提交
419

420 421
[[package]]
name = "cfg-if"
422
version = "0.1.10"
423
source = "registry+https://github.com/rust-lang/crates.io-index"
424
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
425
dependencies = [
426 427
 "compiler_builtins",
 "rustc-std-workspace-core",
428
]
429

J
Jack Huey 已提交
430 431
[[package]]
name = "chalk-derive"
J
Jack Huey 已提交
432
version = "0.14.0"
J
Jack Huey 已提交
433
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
434
checksum = "d463e01905d607e181de72e8608721d3269f29176c9a14ce037011316ae7131d"
J
Jack Huey 已提交
435 436 437 438
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
439
 "synstructure",
J
Jack Huey 已提交
440 441 442 443
]

[[package]]
name = "chalk-engine"
J
Jack Huey 已提交
444
version = "0.14.0"
J
Jack Huey 已提交
445
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
446
checksum = "efaf428f5398d36284f79690cf988762b7c091249f50a6c11db613a46c057000"
J
Jack Huey 已提交
447
dependencies = [
J
Jack Huey 已提交
448 449
 "chalk-derive",
 "chalk-ir",
J
Jack Huey 已提交
450
 "rustc-hash",
J
Jack Huey 已提交
451
 "tracing",
J
Jack Huey 已提交
452 453 454 455
]

[[package]]
name = "chalk-ir"
J
Jack Huey 已提交
456
version = "0.14.0"
J
Jack Huey 已提交
457
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
458
checksum = "fd3fdc1e9f68498ffe80f4a23b0b95f1ca6fb21d5a4c9b0c085fab3ca712bdbe"
J
Jack Huey 已提交
459 460
dependencies = [
 "chalk-derive",
Y
Yuki Okushi 已提交
461
 "lazy_static",
J
Jack Huey 已提交
462 463 464 465
]

[[package]]
name = "chalk-solve"
J
Jack Huey 已提交
466
version = "0.14.0"
J
Jack Huey 已提交
467
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
468
checksum = "5b9fd4102807b7ebe8fb034fa0f488c5656e1966d3261b558b81a08d519cdb29"
J
Jack Huey 已提交
469 470 471 472
dependencies = [
 "chalk-derive",
 "chalk-engine",
 "chalk-ir",
J
Jack Huey 已提交
473
 "ena",
J
Jack Huey 已提交
474 475 476
 "itertools 0.9.0",
 "petgraph",
 "rustc-hash",
J
Jack Huey 已提交
477
 "tracing",
J
Jack Huey 已提交
478 479
]

A
Alex Crichton 已提交
480 481
[[package]]
name = "chrono"
482
version = "0.4.6"
A
Alex Crichton 已提交
483
source = "registry+https://github.com/rust-lang/crates.io-index"
484
checksum = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878"
A
Alex Crichton 已提交
485
dependencies = [
486 487 488
 "num-integer",
 "num-traits",
 "time",
A
Alex Crichton 已提交
489 490
]

491 492
[[package]]
name = "clap"
493
version = "2.33.0"
494
source = "registry+https://github.com/rust-lang/crates.io-index"
495
checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
496
dependencies = [
497 498 499 500 501 502 503
 "ansi_term",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
504
 "yaml-rust 0.3.5",
505 506
]

O
Oliver Schneider 已提交
507 508
[[package]]
name = "clippy"
O
Oliver Schneider 已提交
509
version = "0.0.212"
O
Oliver Schneider 已提交
510
dependencies = [
511
 "cargo_metadata 0.9.1",
512 513
 "clippy-mini-macro-test",
 "clippy_lints",
R
Ralf Jung 已提交
514
 "compiletest_rs",
515
 "derive-new",
Y
Yuki Okushi 已提交
516
 "lazy_static",
517
 "rustc-workspace-hack",
O
Oliver Scherer 已提交
518
 "rustc_tools_util 0.2.0",
E
Eric Huss 已提交
519
 "semver 0.9.0",
520
 "serde",
521
 "tempfile",
R
Ralf Jung 已提交
522
 "tester",
O
Oliver Schneider 已提交
523 524 525 526
]

[[package]]
name = "clippy-mini-macro-test"
527
version = "0.2.0"
O
Oliver Schneider 已提交
528

O
Oliver Schneider 已提交
529 530
[[package]]
name = "clippy_lints"
O
Oliver Schneider 已提交
531
version = "0.0.212"
532
dependencies = [
533
 "cargo_metadata 0.9.1",
534
 "if_chain",
535
 "itertools 0.9.0",
Y
Yuki Okushi 已提交
536
 "lazy_static",
E
Eric Huss 已提交
537
 "pulldown-cmark",
538
 "quine-mc_cluskey",
F
flip1995 已提交
539
 "quote 1.0.2",
540
 "regex-syntax",
E
Eric Huss 已提交
541
 "semver 0.9.0",
542
 "serde",
crlf0710's avatar
crlf0710 已提交
543
 "smallvec 1.4.0",
F
flip1995 已提交
544
 "syn 1.0.11",
E
Eric Huss 已提交
545
 "toml",
546
 "unicode-normalization",
F
flip1995 已提交
547
 "url 2.1.0",
548 549
]

K
kennytm 已提交
550 551 552 553
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
554
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
K
kennytm 已提交
555
dependencies = [
556
 "bitflags",
K
kennytm 已提交
557 558
]

559 560
[[package]]
name = "cmake"
561
version = "0.1.42"
562
source = "registry+https://github.com/rust-lang/crates.io-index"
563
checksum = "81fb25b677f8bf1eb325017cb6bb8452f87969db0fedb4f757b297bee78a7c62"
564
dependencies = [
565
 "cc",
566 567
]

N
Nick Cameron 已提交
568 569
[[package]]
name = "colored"
Y
Yuki Okushi 已提交
570
version = "1.9.3"
N
Nick Cameron 已提交
571
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
572
checksum = "f4ffc801dacf156c5854b9df4f425a626539c3a6ef7893cc0c5084a23f0b6c59"
N
Nick Cameron 已提交
573
dependencies = [
Y
Yuki Okushi 已提交
574 575 576
 "atty",
 "lazy_static",
 "winapi 0.3.8",
N
Nick Cameron 已提交
577 578
]

O
Oliver Schneider 已提交
579 580 581 582
[[package]]
name = "commoncrypto"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
583
checksum = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007"
O
Oliver Schneider 已提交
584
dependencies = [
585
 "commoncrypto-sys",
O
Oliver Schneider 已提交
586 587 588 589 590 591
]

[[package]]
name = "commoncrypto-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
592
checksum = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2"
O
Oliver Schneider 已提交
593
dependencies = [
594
 "libc",
595 596
]

597 598
[[package]]
name = "compiler_builtins"
599
version = "0.1.32"
600
source = "registry+https://github.com/rust-lang/crates.io-index"
601
checksum = "7bc4ac2c824d2bfc612cba57708198547e9a26943af0632aff033e0693074d5c"
602
dependencies = [
603 604
 "cc",
 "rustc-std-workspace-core",
605 606
]

607 608 609 610
[[package]]
name = "compiletest"
version = "0.0.0"
dependencies = [
611
 "diff",
R
Ralf Jung 已提交
612
 "env_logger 0.7.1",
613
 "getopts",
Y
Yuki Okushi 已提交
614
 "lazy_static",
615 616 617 618
 "libc",
 "log",
 "miow 0.3.3",
 "regex",
R
Ralf Jung 已提交
619
 "rustfix",
620 621 622
 "serde",
 "serde_json",
 "walkdir",
E
Eric Huss 已提交
623
 "winapi 0.3.8",
624 625
]

626 627 628 629 630 631 632 633 634 635 636 637 638
[[package]]
name = "compiletest_rs"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f737835bfbbe29ed1ff82d5137520338d7ed5bf1a1d4b9c1c7c58bb45b8fa29"
dependencies = [
 "diff",
 "filetime",
 "getopts",
 "libc",
 "log",
 "miow 0.3.3",
 "regex",
R
Ralf Jung 已提交
639
 "rustfix",
640 641 642 643 644 645 646 647
 "serde",
 "serde_derive",
 "serde_json",
 "tempfile",
 "tester",
 "winapi 0.3.8",
]

F
flip1995 已提交
648 649 650 651
[[package]]
name = "constant_time_eq"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
652
checksum = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
F
flip1995 已提交
653

654 655 656
[[package]]
name = "core"
version = "0.0.0"
A
Alex Crichton 已提交
657
dependencies = [
658
 "rand 0.7.3",
A
Alex Crichton 已提交
659
]
660

E
Eric Huss 已提交
661 662
[[package]]
name = "core-foundation"
E
Eric Huss 已提交
663
version = "0.9.0"
E
Eric Huss 已提交
664
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
665
checksum = "3b5ed8e7e76c45974e15e41bfa8d5b0483cd90191639e01d8f5f1e606299d3fb"
E
Eric Huss 已提交
666
dependencies = [
E
Eric Huss 已提交
667
 "core-foundation-sys",
668
 "libc",
N
Nick Cameron 已提交
669 670
]

E
Eric Huss 已提交
671 672
[[package]]
name = "core-foundation-sys"
E
Eric Huss 已提交
673
version = "0.8.0"
E
Eric Huss 已提交
674
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
675
checksum = "9a21fa21941700a3cd8fcb4091f361a6a712fac632f85d9f487cc892045d55c6"
E
Eric Huss 已提交
676

677 678
[[package]]
name = "crates-io"
E
Eric Huss 已提交
679
version = "0.31.1"
680
dependencies = [
E
Eric Huss 已提交
681
 "anyhow",
682
 "curl",
E
Eric Huss 已提交
683
 "percent-encoding 2.1.0",
684 685
 "serde",
 "serde_json",
F
flip1995 已提交
686
 "url 2.1.0",
687 688
]

689 690
[[package]]
name = "crc32fast"
691
version = "1.1.2"
692
source = "registry+https://github.com/rust-lang/crates.io-index"
693
checksum = "e91d5240c6975ef33aeb5f148f35275c25eda8e8a5f95abe421978b05b8bf192"
694
dependencies = [
695
 "cfg-if",
696
]
697

698 699 700 701 702 703
[[package]]
name = "crossbeam-channel"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c"
dependencies = [
704
 "crossbeam-utils 0.7.2",
705 706
]

J
Josh Stone 已提交
707 708 709 710 711 712
[[package]]
name = "crossbeam-deque"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71"
dependencies = [
I
Igor Matuszewski 已提交
713
 "crossbeam-epoch",
J
Josh Stone 已提交
714 715 716
 "crossbeam-utils 0.6.5",
]

717 718
[[package]]
name = "crossbeam-epoch"
R
Ralf Jung 已提交
719
version = "0.7.2"
720
source = "registry+https://github.com/rust-lang/crates.io-index"
721
checksum = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9"
722
dependencies = [
723
 "arrayvec 0.4.7",
724 725
 "cfg-if",
 "crossbeam-utils 0.6.5",
Y
Yuki Okushi 已提交
726
 "lazy_static",
I
Igor Matuszewski 已提交
727
 "memoffset",
728
 "scopeguard",
729 730
]

731 732 733 734
[[package]]
name = "crossbeam-queue"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
735
checksum = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
736
dependencies = [
737
 "crossbeam-utils 0.6.5",
738 739
]

A
Alex Crichton 已提交
740 741
[[package]]
name = "crossbeam-utils"
E
Eric Huss 已提交
742
version = "0.6.5"
A
Alex Crichton 已提交
743
source = "registry+https://github.com/rust-lang/crates.io-index"
744
checksum = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c"
A
Alex Crichton 已提交
745
dependencies = [
746
 "cfg-if",
Y
Yuki Okushi 已提交
747
 "lazy_static",
A
Alex Crichton 已提交
748 749
]

E
Eric Huss 已提交
750 751
[[package]]
name = "crossbeam-utils"
752
version = "0.7.2"
E
Eric Huss 已提交
753
source = "registry+https://github.com/rust-lang/crates.io-index"
754
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
E
Eric Huss 已提交
755
dependencies = [
756
 "autocfg 1.0.0",
E
Eric Huss 已提交
757
 "cfg-if",
Y
Yuki Okushi 已提交
758
 "lazy_static",
E
Eric Huss 已提交
759 760
]

O
Oliver Schneider 已提交
761 762
[[package]]
name = "crypto-hash"
A
Alex Crichton 已提交
763
version = "0.3.1"
O
Oliver Schneider 已提交
764
source = "registry+https://github.com/rust-lang/crates.io-index"
765
checksum = "09de9ee0fc255ace04c7fa0763c9395a945c37c8292bb554f8d48361d1dcf1b4"
O
Oliver Schneider 已提交
766
dependencies = [
767
 "commoncrypto",
A
Aaron Hill 已提交
768
 "hex 0.3.2",
769
 "openssl",
E
Eric Huss 已提交
770
 "winapi 0.3.8",
O
Oliver Schneider 已提交
771 772
]

773 774 775 776 777 778 779 780 781 782
[[package]]
name = "ctor"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47c5e5ac752e18207b12e16b10631ae5f7f68f8805f335f9b817ead83d9ffce1"
dependencies = [
 "quote 1.0.2",
 "syn 1.0.11",
]

783 784
[[package]]
name = "curl"
785
version = "0.4.25"
786
source = "registry+https://github.com/rust-lang/crates.io-index"
787
checksum = "06aa71e9208a54def20792d877bc663d6aae0732b9852e612c4a933177c31283"
788
dependencies = [
789 790 791 792 793 794
 "curl-sys",
 "libc",
 "openssl-probe",
 "openssl-sys",
 "schannel",
 "socket2",
E
Eric Huss 已提交
795
 "winapi 0.3.8",
796 797 798 799
]

[[package]]
name = "curl-sys"
800
version = "0.4.25"
801
source = "registry+https://github.com/rust-lang/crates.io-index"
802
checksum = "0c38ca47d60b86d0cc9d42caa90a0885669c2abc9791f871c81f58cdf39e979b"
803
dependencies = [
804 805 806 807 808 809 810
 "cc",
 "libc",
 "libnghttp2-sys",
 "libz-sys",
 "openssl-sys",
 "pkg-config",
 "vcpkg",
E
Eric Huss 已提交
811
 "winapi 0.3.8",
812 813
]

D
Douglas Campos 已提交
814 815
[[package]]
name = "datafrog"
N
Niko Matsakis 已提交
816
version = "2.0.1"
D
Douglas Campos 已提交
817
source = "registry+https://github.com/rust-lang/crates.io-index"
818
checksum = "a0afaad2b26fa326569eb264b1363e8ae3357618c43982b3f285f0774ce76b69"
D
Douglas Campos 已提交
819

820 821
[[package]]
name = "derive-new"
I
Igor Matuszewski 已提交
822
version = "0.5.8"
823
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
824
checksum = "71f31892cd5c62e414316f2963c5689242c43d8e7bbcaaeca97e5e28c95d91d9"
825
dependencies = [
I
Igor Matuszewski 已提交
826 827 828
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
829 830
]

K
kennytm 已提交
831 832
[[package]]
name = "derive_more"
I
Igor Matuszewski 已提交
833
version = "0.99.2"
K
kennytm 已提交
834
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
835
checksum = "2159be042979966de68315bce7034bb000c775f22e3e834e1c52ff78f041cae8"
K
kennytm 已提交
836
dependencies = [
I
Igor Matuszewski 已提交
837 838 839
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
K
kennytm 已提交
840 841
]

842 843
[[package]]
name = "diff"
O
Oliver Schneider 已提交
844
version = "0.1.11"
845
source = "registry+https://github.com/rust-lang/crates.io-index"
846
checksum = "3c2b69f912779fbb121ceb775d74d51e915af17aaebc38d28a592843a2dd0a3a"
847

M
Mark Simulacrum 已提交
848 849 850 851
[[package]]
name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
852
checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
M
Mark Simulacrum 已提交
853

854 855
[[package]]
name = "digest"
856
version = "0.8.1"
857
source = "registry+https://github.com/rust-lang/crates.io-index"
858
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
859
dependencies = [
860
 "generic-array",
861 862
]

R
Ralf Jung 已提交
863 864
[[package]]
name = "directories"
R
Ralf Jung 已提交
865
version = "2.0.1"
R
Ralf Jung 已提交
866
source = "registry+https://github.com/rust-lang/crates.io-index"
867
checksum = "2ccc83e029c3cebb4c8155c644d34e3a070ccdb4ff90d369c74cd73f7cb3c984"
R
Ralf Jung 已提交
868
dependencies = [
869 870
 "cfg-if",
 "dirs-sys",
R
Ralf Jung 已提交
871 872
]

F
flip1995 已提交
873 874
[[package]]
name = "dirs"
T
topecongiro 已提交
875
version = "2.0.1"
F
flip1995 已提交
876
source = "registry+https://github.com/rust-lang/crates.io-index"
877
checksum = "1c4ef5a8b902d393339e2a2c7fe573af92ce7e0ee5a3ff827b4c9ad7e07e4fa1"
F
flip1995 已提交
878
dependencies = [
879 880
 "cfg-if",
 "dirs-sys",
F
flip1995 已提交
881 882
]

R
Ralf Jung 已提交
883 884 885 886
[[package]]
name = "dirs-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
887
checksum = "937756392ec77d1f2dd9dc3ac9d69867d109a2121479d72c364e42f4cab21e2d"
R
Ralf Jung 已提交
888
dependencies = [
889 890 891
 "cfg-if",
 "libc",
 "redox_users",
E
Eric Huss 已提交
892
 "winapi 0.3.8",
R
Ralf Jung 已提交
893 894
]

O
Oliver Schneider 已提交
895 896
[[package]]
name = "dlmalloc"
897
version = "0.1.4"
898
source = "registry+https://github.com/rust-lang/crates.io-index"
899
checksum = "35055b1021724f4eb5262eb49130eebff23fc59fc5a14160e05faad8eeb36673"
O
Oliver Schneider 已提交
900
dependencies = [
901 902 903
 "compiler_builtins",
 "libc",
 "rustc-std-workspace-core",
O
Oliver Schneider 已提交
904 905 906 907
]

[[package]]
name = "either"
A
Alex Crichton 已提交
908
version = "1.5.0"
O
Oliver Schneider 已提交
909
source = "registry+https://github.com/rust-lang/crates.io-index"
910
checksum = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0"
O
Oliver Schneider 已提交
911

S
steveklabnik 已提交
912 913
[[package]]
name = "elasticlunr-rs"
914
version = "2.3.4"
S
steveklabnik 已提交
915
source = "registry+https://github.com/rust-lang/crates.io-index"
916
checksum = "a99a310cd1f9770e7bf8e48810c7bcbb0e078c8fb23a8c7bcf0da4c2bf61a455"
S
steveklabnik 已提交
917
dependencies = [
Y
Yuki Okushi 已提交
918
 "lazy_static",
919 920 921 922 923 924
 "regex",
 "serde",
 "serde_derive",
 "serde_json",
 "strum",
 "strum_macros",
S
steveklabnik 已提交
925 926
]

927 928 929 930 931
[[package]]
name = "ena"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3"
V
varkor 已提交
932
dependencies = [
933
 "log",
V
varkor 已提交
934 935
]

A
Alex Crichton 已提交
936 937
[[package]]
name = "env_logger"
M
Mateusz Mikuła 已提交
938
version = "0.6.2"
A
Alex Crichton 已提交
939
source = "registry+https://github.com/rust-lang/crates.io-index"
M
Mateusz Mikuła 已提交
940
checksum = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
A
Alex Crichton 已提交
941
dependencies = [
942
 "atty",
E
Eric Huss 已提交
943
 "humantime 1.3.0",
944 945 946
 "log",
 "regex",
 "termcolor",
A
Alex Crichton 已提交
947 948
]

A
Alex Crichton 已提交
949 950
[[package]]
name = "env_logger"
R
Ralf Jung 已提交
951
version = "0.7.1"
A
Alex Crichton 已提交
952
source = "registry+https://github.com/rust-lang/crates.io-index"
R
Ralf Jung 已提交
953
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
A
Alex Crichton 已提交
954 955
dependencies = [
 "atty",
E
Eric Huss 已提交
956
 "humantime 1.3.0",
A
Alex Crichton 已提交
957 958 959 960 961
 "log",
 "regex",
 "termcolor",
]

962 963 964
[[package]]
name = "error_index_generator"
version = "0.0.0"
M
Mark Simulacrum 已提交
965
dependencies = [
966
 "rustdoc",
967
 "walkdir",
M
Mark Simulacrum 已提交
968
]
969

970 971 972 973 974 975 976 977
[[package]]
name = "expand-yaml-anchors"
version = "0.1.0"
dependencies = [
 "yaml-merge-keys",
 "yaml-rust 0.4.3",
]

A
Alex Crichton 已提交
978 979
[[package]]
name = "failure"
E
Eric Huss 已提交
980
version = "0.1.5"
A
Alex Crichton 已提交
981
source = "registry+https://github.com/rust-lang/crates.io-index"
982
checksum = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
A
Alex Crichton 已提交
983
dependencies = [
984 985
 "backtrace",
 "failure_derive",
A
Alex Crichton 已提交
986 987 988 989
]

[[package]]
name = "failure_derive"
990
version = "0.1.8"
A
Alex Crichton 已提交
991
source = "registry+https://github.com/rust-lang/crates.io-index"
992
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
A
Alex Crichton 已提交
993
dependencies = [
994 995 996 997
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
 "synstructure",
A
Alex Crichton 已提交
998 999
]

1000 1001 1002 1003
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1004
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
1005

A
Alex Crichton 已提交
1006 1007
[[package]]
name = "filetime"
E
Eric Huss 已提交
1008
version = "0.2.9"
A
Alex Crichton 已提交
1009
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1010
checksum = "f59efc38004c988e4201d11d263b8171f49a2e7ec0bdbb71773433f271504a5e"
A
Alex Crichton 已提交
1011
dependencies = [
1012 1013 1014
 "cfg-if",
 "libc",
 "redox_syscall",
1015
 "winapi 0.3.8",
A
Alex Crichton 已提交
1016 1017
]

J
Jack Huey 已提交
1018 1019
[[package]]
name = "fixedbitset"
J
Jack Huey 已提交
1020
version = "0.2.0"
J
Jack Huey 已提交
1021
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
1022
checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"
J
Jack Huey 已提交
1023

F
Felix Schütt 已提交
1024 1025
[[package]]
name = "flate2"
1026
version = "1.0.12"
F
Felix Schütt 已提交
1027
source = "registry+https://github.com/rust-lang/crates.io-index"
1028
checksum = "ad3c5233c9a940c8719031b423d7e6c16af66e031cb0420b0896f5245bf181d3"
F
Felix Schütt 已提交
1029
dependencies = [
E
Eric Huss 已提交
1030
 "cfg-if",
1031 1032 1033
 "crc32fast",
 "libc",
 "libz-sys",
E
Eric Huss 已提交
1034
 "miniz_oxide",
F
Felix Schütt 已提交
1035 1036
]

1037 1038
[[package]]
name = "fnv"
O
Oliver Schneider 已提交
1039
version = "1.0.6"
1040
source = "registry+https://github.com/rust-lang/crates.io-index"
1041
checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
1042

1043 1044
[[package]]
name = "foreign-types"
O
Oliver Schneider 已提交
1045 1046
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1047
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
O
Oliver Schneider 已提交
1048
dependencies = [
1049
 "foreign-types-shared",
O
Oliver Schneider 已提交
1050 1051 1052 1053 1054
]

[[package]]
name = "foreign-types-shared"
version = "0.1.1"
1055
source = "registry+https://github.com/rust-lang/crates.io-index"
1056
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1057

1058 1059
[[package]]
name = "fortanix-sgx-abi"
1060
version = "0.3.2"
1061
source = "registry+https://github.com/rust-lang/crates.io-index"
1062
checksum = "3f8cbee5e872cf7db61a999a041f9bc4706ca7bf7df4cb914f53fabb1c1bc550"
1063
dependencies = [
1064 1065
 "compiler_builtins",
 "rustc-std-workspace-core",
1066 1067
]

1068 1069 1070 1071
[[package]]
name = "fs_extra"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1072
checksum = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
1073

1074 1075 1076 1077
[[package]]
name = "fst"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1078
checksum = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f"
1079
dependencies = [
1080
 "byteorder",
1081 1082
]

1083 1084 1085 1086
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1087
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
1088

O
Oliver Schneider 已提交
1089 1090
[[package]]
name = "fuchsia-zircon"
1091
version = "0.3.3"
O
Oliver Schneider 已提交
1092
source = "registry+https://github.com/rust-lang/crates.io-index"
1093
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
O
Oliver Schneider 已提交
1094
dependencies = [
1095 1096
 "bitflags",
 "fuchsia-zircon-sys",
O
Oliver Schneider 已提交
1097 1098 1099 1100
]

[[package]]
name = "fuchsia-zircon-sys"
1101
version = "0.3.3"
O
Oliver Schneider 已提交
1102
source = "registry+https://github.com/rust-lang/crates.io-index"
1103
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
O
Oliver Schneider 已提交
1104

S
steveklabnik 已提交
1105 1106
[[package]]
name = "futf"
A
Alex Crichton 已提交
1107
version = "0.1.4"
S
steveklabnik 已提交
1108
source = "registry+https://github.com/rust-lang/crates.io-index"
1109
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
S
steveklabnik 已提交
1110
dependencies = [
1111 1112
 "mac",
 "new_debug_unreachable",
S
steveklabnik 已提交
1113 1114
]

1115 1116
[[package]]
name = "futures"
1117
version = "0.1.28"
1118
source = "registry+https://github.com/rust-lang/crates.io-index"
1119
checksum = "45dc39533a6cae6da2b56da48edae506bb767ec07370f86f70fc062e9d435869"
1120

E
Eric Huss 已提交
1121 1122 1123 1124
[[package]]
name = "fwdansi"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1125
checksum = "34dd4c507af68d37ffef962063dfa1944ce0dd4d5b82043dbab1dabe088610c3"
E
Eric Huss 已提交
1126
dependencies = [
1127 1128
 "memchr",
 "termcolor",
E
Eric Huss 已提交
1129 1130
]

1131 1132
[[package]]
name = "generic-array"
1133
version = "0.12.3"
1134
source = "registry+https://github.com/rust-lang/crates.io-index"
1135
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
1136
dependencies = [
1137
 "typenum",
1138 1139
]

1140 1141
[[package]]
name = "getopts"
1142
version = "0.2.21"
1143
source = "registry+https://github.com/rust-lang/crates.io-index"
1144
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
V
varkor 已提交
1145
dependencies = [
1146 1147
 "rustc-std-workspace-core",
 "rustc-std-workspace-std",
1148
 "unicode-width",
V
varkor 已提交
1149
]
1150

G
gnzlbg 已提交
1151 1152
[[package]]
name = "getrandom"
1153
version = "0.1.14"
G
gnzlbg 已提交
1154
source = "registry+https://github.com/rust-lang/crates.io-index"
1155
checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
G
gnzlbg 已提交
1156
dependencies = [
1157 1158
 "cfg-if",
 "libc",
1159
 "wasi",
G
gnzlbg 已提交
1160 1161
]

1162 1163
[[package]]
name = "git2"
E
Eric Huss 已提交
1164
version = "0.13.5"
1165
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1166
checksum = "e1e02a51cd90229028c9bd8be0a0364f85b6b3199cccaa0ef39005ddbd5ac165"
1167
dependencies = [
1168 1169 1170 1171 1172 1173
 "bitflags",
 "libc",
 "libgit2-sys",
 "log",
 "openssl-probe",
 "openssl-sys",
F
flip1995 已提交
1174
 "url 2.1.0",
1175 1176 1177 1178
]

[[package]]
name = "git2-curl"
E
Eric Huss 已提交
1179
version = "0.14.0"
1180
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1181
checksum = "502d532a2d06184beb3bc869d4d90236e60934e3382c921b203fa3c33e212bd7"
1182
dependencies = [
1183 1184 1185
 "curl",
 "git2",
 "log",
F
flip1995 已提交
1186
 "url 2.1.0",
1187 1188 1189 1190
]

[[package]]
name = "glob"
E
Eric Huss 已提交
1191
version = "0.3.0"
1192
source = "registry+https://github.com/rust-lang/crates.io-index"
1193
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
1194

1195 1196
[[package]]
name = "globset"
E
Eric Huss 已提交
1197
version = "0.4.3"
1198
source = "registry+https://github.com/rust-lang/crates.io-index"
1199
checksum = "ef4feaabe24a0a658fd9cf4a9acf6ed284f045c77df0f49020ba3245cfb7b454"
1200
dependencies = [
1201 1202 1203 1204 1205
 "aho-corasick",
 "bstr",
 "fnv",
 "log",
 "regex",
1206 1207
]

1208 1209
[[package]]
name = "handlebars"
1210
version = "3.0.1"
1211
source = "registry+https://github.com/rust-lang/crates.io-index"
1212
checksum = "ba758d094d31274eb49d15da6f326b96bf3185239a6359bf684f3d5321148900"
1213
dependencies = [
1214 1215 1216 1217 1218 1219
 "log",
 "pest",
 "pest_derive",
 "quick-error",
 "serde",
 "serde_json",
1220 1221
]

1222 1223
[[package]]
name = "hashbrown"
A
Alex Crichton 已提交
1224
version = "0.6.2"
1225
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1226
checksum = "3cd9867f119b19fecb08cd5c326ad4488d7a1da4bf75b4d95d71db742525aaab"
1227
dependencies = [
1228
 "autocfg 0.1.7",
1229 1230 1231
 "compiler_builtins",
 "rustc-std-workspace-alloc",
 "rustc-std-workspace-core",
E
Eric Huss 已提交
1232 1233
]

1234 1235 1236 1237
[[package]]
name = "heck"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1238
checksum = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82"
1239
dependencies = [
1240
 "unicode-segmentation",
1241 1242
]

1243 1244
[[package]]
name = "hermit-abi"
1245
version = "0.1.14"
1246
source = "registry+https://github.com/rust-lang/crates.io-index"
1247
checksum = "b9586eedd4ce6b3c498bc3b4dd92fc9f11166aa908a914071953768066c67909"
1248 1249 1250 1251 1252 1253
dependencies = [
 "compiler_builtins",
 "libc",
 "rustc-std-workspace-core",
]

1254 1255
[[package]]
name = "hex"
A
Alex Crichton 已提交
1256
version = "0.3.2"
1257
source = "registry+https://github.com/rust-lang/crates.io-index"
1258
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
1259

A
Aaron Hill 已提交
1260 1261 1262 1263 1264 1265
[[package]]
name = "hex"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e"

F
flip1995 已提交
1266 1267
[[package]]
name = "home"
L
Lzu Tao 已提交
1268
version = "0.5.1"
F
flip1995 已提交
1269
source = "registry+https://github.com/rust-lang/crates.io-index"
L
Lzu Tao 已提交
1270
checksum = "a3753954f7bd71f0e671afb8b5a992d1724cf43b7f95a563cd4a0bde94659ca8"
F
flip1995 已提交
1271
dependencies = [
1272
 "scopeguard",
E
Eric Huss 已提交
1273
 "winapi 0.3.8",
F
flip1995 已提交
1274 1275
]

E
Eric Huss 已提交
1276 1277
[[package]]
name = "html5ever"
1278
version = "0.24.1"
E
Eric Huss 已提交
1279
source = "registry+https://github.com/rust-lang/crates.io-index"
1280
checksum = "025483b0a1e4577bb28578318c886ee5f817dda6eb62473269349044406644cb"
E
Eric Huss 已提交
1281
dependencies = [
1282 1283 1284
 "log",
 "mac",
 "markup5ever",
1285 1286
 "proc-macro2 1.0.3",
 "quote 1.0.2",
I
Igor Matuszewski 已提交
1287
 "syn 1.0.11",
E
Eric Huss 已提交
1288 1289
]

A
Alex Crichton 已提交
1290 1291
[[package]]
name = "humantime"
A
Alex Crichton 已提交
1292
version = "1.3.0"
A
Alex Crichton 已提交
1293
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1294
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
A
Alex Crichton 已提交
1295
dependencies = [
1296
 "quick-error",
A
Alex Crichton 已提交
1297 1298
]

E
Eric Huss 已提交
1299 1300 1301 1302 1303 1304
[[package]]
name = "humantime"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9b6c53306532d3c8e8087b44e6580e10db51a023cf9b433cea2ac38066b92da"

1305 1306
[[package]]
name = "idna"
A
Alex Crichton 已提交
1307
version = "0.1.5"
1308
source = "registry+https://github.com/rust-lang/crates.io-index"
1309
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
1310
dependencies = [
1311 1312 1313
 "matches",
 "unicode-bidi",
 "unicode-normalization",
A
Alex Crichton 已提交
1314 1315
]

E
Eric Huss 已提交
1316 1317 1318 1319
[[package]]
name = "idna"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1320
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
E
Eric Huss 已提交
1321
dependencies = [
1322 1323 1324
 "matches",
 "unicode-bidi",
 "unicode-normalization",
E
Eric Huss 已提交
1325 1326
]

O
Oliver Schneider 已提交
1327 1328
[[package]]
name = "if_chain"
O
Oliver Scherer 已提交
1329
version = "1.0.0"
O
Oliver Schneider 已提交
1330
source = "registry+https://github.com/rust-lang/crates.io-index"
1331
checksum = "c3360c7b59e5ffa2653671fb74b4741a5d343c03f331c0a4aeda42b5c2b0ec7d"
O
Oliver Schneider 已提交
1332

1333 1334
[[package]]
name = "ignore"
I
Igor Matuszewski 已提交
1335
version = "0.4.11"
1336
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1337
checksum = "522daefc3b69036f80c7d2990b28ff9e0471c683bad05ca258e0a01dd22c5a1e"
1338
dependencies = [
I
Igor Matuszewski 已提交
1339
 "crossbeam-channel",
1340
 "globset",
Y
Yuki Okushi 已提交
1341
 "lazy_static",
1342 1343 1344 1345
 "log",
 "memchr",
 "regex",
 "same-file",
Y
Yuki Okushi 已提交
1346
 "thread_local",
1347 1348
 "walkdir",
 "winapi-util",
1349 1350
]

E
Eric Huss 已提交
1351 1352
[[package]]
name = "im-rc"
E
Eric Huss 已提交
1353
version = "15.0.0"
E
Eric Huss 已提交
1354
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1355
checksum = "3ca8957e71f04a205cb162508f9326aea04676c8dfd0711220190d6b83664f3f"
E
Eric Huss 已提交
1356
dependencies = [
E
Eric Huss 已提交
1357 1358 1359
 "bitmaps",
 "rand_core 0.5.1",
 "rand_xoshiro",
1360 1361
 "sized-chunks",
 "typenum",
1362
 "version_check",
E
Eric Huss 已提交
1363 1364
]

1365 1366 1367 1368
[[package]]
name = "indexmap"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1369
checksum = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
1370

1371 1372 1373 1374
[[package]]
name = "installer"
version = "0.0.0"
dependencies = [
1375
 "anyhow",
1376 1377
 "clap",
 "flate2",
Y
Yuki Okushi 已提交
1378
 "lazy_static",
1379 1380 1381 1382 1383
 "num_cpus",
 "rayon",
 "remove_dir_all",
 "tar",
 "walkdir",
E
Eric Huss 已提交
1384
 "winapi 0.3.8",
1385
 "xz2",
1386 1387
]

1388 1389
[[package]]
name = "iovec"
1390
version = "0.1.4"
1391
source = "registry+https://github.com/rust-lang/crates.io-index"
1392
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
1393
dependencies = [
1394
 "libc",
1395 1396 1397 1398 1399 1400
]

[[package]]
name = "itertools"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
1401
checksum = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358"
1402
dependencies = [
1403
 "either",
1404 1405
]

1406 1407 1408 1409 1410 1411 1412 1413 1414
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
 "either",
]

1415
[[package]]
A
Alex Crichton 已提交
1416
name = "itoa"
E
Eric Huss 已提交
1417
version = "0.4.4"
1418
source = "registry+https://github.com/rust-lang/crates.io-index"
1419
checksum = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
1420

1421 1422
[[package]]
name = "jemalloc-sys"
G
gnzlbg 已提交
1423
version = "0.3.0"
1424
source = "registry+https://github.com/rust-lang/crates.io-index"
1425
checksum = "7bef0d4ce37578dfd80b466e3d8324bd9de788e249f1accebb0c472ea4b52bdc"
1426
dependencies = [
1427 1428 1429
 "cc",
 "fs_extra",
 "libc",
1430 1431
]

S
Steve Klabnik 已提交
1432
[[package]]
A
Alex Crichton 已提交
1433
name = "jobserver"
A
Alex Crichton 已提交
1434
version = "0.1.21"
S
Steve Klabnik 已提交
1435
source = "registry+https://github.com/rust-lang/crates.io-index"
A
Alex Crichton 已提交
1436
checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
A
Alex Crichton 已提交
1437
dependencies = [
1438
 "libc",
A
Alex Crichton 已提交
1439
]
S
Steve Klabnik 已提交
1440

1441 1442 1443 1444
[[package]]
name = "json"
version = "0.11.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
1445
checksum = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be"
1446

1447 1448
[[package]]
name = "jsonrpc-client-transports"
I
Igor Matuszewski 已提交
1449
version = "14.0.5"
1450
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1451
checksum = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b"
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
dependencies = [
 "failure",
 "futures",
 "jsonrpc-core",
 "jsonrpc-pubsub",
 "jsonrpc-server-utils",
 "log",
 "parity-tokio-ipc",
 "serde",
 "serde_json",
 "tokio",
 "url 1.7.2",
]

1466 1467
[[package]]
name = "jsonrpc-core"
I
Igor Matuszewski 已提交
1468
version = "14.0.5"
1469
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1470
checksum = "fe3b688648f1ef5d5072229e2d672ecb92cbff7d1c79bcf3fd5898f3f3df0970"
1471
dependencies = [
1472 1473 1474 1475 1476
 "futures",
 "log",
 "serde",
 "serde_derive",
 "serde_json",
1477 1478
]

1479 1480
[[package]]
name = "jsonrpc-core-client"
I
Igor Matuszewski 已提交
1481
version = "14.0.5"
1482
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1483
checksum = "080dc110be17701097df238fad3c816d4a478a1899dfbcf8ec8957dd40ec7304"
1484 1485 1486 1487 1488 1489
dependencies = [
 "jsonrpc-client-transports",
]

[[package]]
name = "jsonrpc-derive"
I
Igor Matuszewski 已提交
1490
version = "14.0.5"
1491
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1492
checksum = "8609af8f63b626e8e211f52441fcdb6ec54f1a446606b10d5c89ae9bf8a20058"
1493 1494
dependencies = [
 "proc-macro-crate",
I
Igor Matuszewski 已提交
1495 1496 1497
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
1498 1499 1500 1501
]

[[package]]
name = "jsonrpc-ipc-server"
I
Igor Matuszewski 已提交
1502
version = "14.0.3"
1503
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1504
checksum = "b579cd0840d7db3ebaadf52f6f31ec601a260e78d610e44f68634f919e34497a"
1505 1506 1507 1508 1509
dependencies = [
 "jsonrpc-core",
 "jsonrpc-server-utils",
 "log",
 "parity-tokio-ipc",
I
Igor Matuszewski 已提交
1510
 "parking_lot 0.9.0",
1511 1512 1513 1514 1515
 "tokio-service",
]

[[package]]
name = "jsonrpc-pubsub"
I
Igor Matuszewski 已提交
1516
version = "14.0.6"
1517
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1518
checksum = "5b31c9b90731276fdd24d896f31bb10aecf2e5151733364ae81123186643d939"
1519 1520 1521
dependencies = [
 "jsonrpc-core",
 "log",
1522
 "parking_lot 0.10.2",
1523 1524 1525 1526 1527
 "serde",
]

[[package]]
name = "jsonrpc-server-utils"
I
Igor Matuszewski 已提交
1528
version = "14.0.5"
1529
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
1530
checksum = "95b7635e618a0edbbe0d2a2bbbc69874277c49383fcf6c3c0414491cfb517d22"
1531 1532 1533 1534
dependencies = [
 "bytes",
 "globset",
 "jsonrpc-core",
Y
Yuki Okushi 已提交
1535
 "lazy_static",
1536 1537 1538
 "log",
 "tokio",
 "tokio-codec",
E
Eric Huss 已提交
1539
 "unicase",
1540 1541
]

1542 1543 1544 1545
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1546
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1547
dependencies = [
1548 1549
 "winapi 0.2.8",
 "winapi-build",
1550 1551
]

A
Alex Crichton 已提交
1552 1553
[[package]]
name = "lazy_static"
1554
version = "1.4.0"
A
Alex Crichton 已提交
1555
source = "registry+https://github.com/rust-lang/crates.io-index"
1556
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
A
Alex Crichton 已提交
1557

A
Alex Crichton 已提交
1558 1559
[[package]]
name = "lazycell"
1560
version = "1.2.1"
A
Alex Crichton 已提交
1561
source = "registry+https://github.com/rust-lang/crates.io-index"
1562
checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
A
Alex Crichton 已提交
1563

1564 1565
[[package]]
name = "libc"
1566
version = "0.2.71"
1567
source = "registry+https://github.com/rust-lang/crates.io-index"
1568
checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49"
1569
dependencies = [
1570
 "rustc-std-workspace-core",
1571
]
1572

1573 1574
[[package]]
name = "libgit2-sys"
E
Eric Huss 已提交
1575
version = "0.12.7+1.0.0"
1576
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1577
checksum = "bcd07968649bcb7b9351ecfde53ca4d27673cccfdf57c84255ec18710f3153e0"
1578
dependencies = [
1579 1580 1581 1582 1583 1584
 "cc",
 "libc",
 "libssh2-sys",
 "libz-sys",
 "openssl-sys",
 "pkg-config",
1585 1586
]

A
Alex Crichton 已提交
1587 1588
[[package]]
name = "libnghttp2-sys"
1589
version = "0.1.2"
A
Alex Crichton 已提交
1590
source = "registry+https://github.com/rust-lang/crates.io-index"
1591
checksum = "02254d44f4435dd79e695f2c2b83cd06a47919adea30216ceaf0c57ca0a72463"
A
Alex Crichton 已提交
1592
dependencies = [
1593 1594
 "cc",
 "libc",
A
Alex Crichton 已提交
1595 1596
]

1597 1598
[[package]]
name = "libssh2-sys"
1599
version = "0.2.14"
1600
source = "registry+https://github.com/rust-lang/crates.io-index"
1601
checksum = "36aa6e813339d3a063292b77091dfbbb6152ff9006a459895fa5bebed7d34f10"
1602
dependencies = [
1603 1604 1605 1606 1607 1608
 "cc",
 "libc",
 "libz-sys",
 "openssl-sys",
 "pkg-config",
 "vcpkg",
1609 1610 1611 1612
]

[[package]]
name = "libz-sys"
1613
version = "1.0.25"
1614
source = "registry+https://github.com/rust-lang/crates.io-index"
1615
checksum = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"
1616
dependencies = [
1617 1618 1619 1620
 "cc",
 "libc",
 "pkg-config",
 "vcpkg",
1621 1622
]

1623 1624 1625 1626
[[package]]
name = "linkchecker"
version = "0.1.0"

1627 1628 1629 1630 1631 1632
[[package]]
name = "linked-hash-map"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"

1633 1634
[[package]]
name = "lock_api"
1635
version = "0.3.4"
1636
source = "registry+https://github.com/rust-lang/crates.io-index"
1637
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
1638
dependencies = [
1639
 "scopeguard",
1640 1641
]

1642 1643
[[package]]
name = "log"
E
Eric Huss 已提交
1644
version = "0.4.8"
1645
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1646
checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
1647
dependencies = [
1648
 "cfg-if",
1649
]
1650

1651 1652
[[package]]
name = "log_settings"
A
Alex Crichton 已提交
1653
version = "0.1.2"
1654
source = "registry+https://github.com/rust-lang/crates.io-index"
1655
checksum = "19af41f0565d7c19b2058153ad0b42d4d5ce89ec4dbf06ed6741114a8b63e7cd"
1656
dependencies = [
Y
Yuki Okushi 已提交
1657
 "lazy_static",
1658 1659
]

1660 1661
[[package]]
name = "lsp-codec"
E
Eric Huss 已提交
1662
version = "0.1.2"
1663
source = "registry+https://github.com/rust-lang/crates.io-index"
1664
checksum = "169d737ad89cf8ddd82d1804d9122f54568c49377665157277cc90d747b1d31a"
1665
dependencies = [
1666 1667 1668
 "bytes",
 "serde_json",
 "tokio-codec",
1669 1670 1671 1672
]

[[package]]
name = "lsp-types"
1673
version = "0.60.0"
1674
source = "registry+https://github.com/rust-lang/crates.io-index"
1675
checksum = "fe3edefcd66dde1f7f1df706f46520a3c93adc5ca4bc5747da6621195e894efd"
1676
dependencies = [
1677 1678 1679
 "bitflags",
 "serde",
 "serde_json",
1680 1681
 "serde_repr",
 "url 2.1.0",
1682 1683
]

1684 1685
[[package]]
name = "lzma-sys"
1686
version = "0.1.14"
1687
source = "registry+https://github.com/rust-lang/crates.io-index"
1688
checksum = "16b5c59c57cc4d39e7999f50431aa312ea78af7c93b23fbb0c3567bd672e7f35"
1689
dependencies = [
1690 1691 1692
 "cc",
 "libc",
 "pkg-config",
1693 1694
]

S
steveklabnik 已提交
1695 1696 1697 1698
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1699
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
S
steveklabnik 已提交
1700

G
Guillaume Gomez 已提交
1701 1702 1703 1704
[[package]]
name = "macro-utils"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1705
checksum = "f2c4deaccc2ead6a28c16c0ba82f07d52b6475397415ce40876e559b0b0ea510"
G
Guillaume Gomez 已提交
1706

S
steveklabnik 已提交
1707 1708 1709 1710
[[package]]
name = "maplit"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1711
checksum = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43"
S
steveklabnik 已提交
1712

E
Eric Huss 已提交
1713 1714
[[package]]
name = "markup5ever"
1715
version = "0.9.0"
E
Eric Huss 已提交
1716
source = "registry+https://github.com/rust-lang/crates.io-index"
1717
checksum = "65381d9d47506b8592b97c4efd936afcf673b09b059f2bef39c7211ee78b9d03"
E
Eric Huss 已提交
1718
dependencies = [
1719 1720 1721 1722 1723 1724 1725 1726 1727
 "log",
 "phf",
 "phf_codegen",
 "serde",
 "serde_derive",
 "serde_json",
 "string_cache",
 "string_cache_codegen",
 "tendril",
E
Eric Huss 已提交
1728 1729
]

1730 1731
[[package]]
name = "matches"
A
Alex Crichton 已提交
1732
version = "0.1.8"
1733
source = "registry+https://github.com/rust-lang/crates.io-index"
1734
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
1735

1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
[[package]]
name = "md-5"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18af3dcaf2b0219366cdb4e2af65a6101457b415c3d1a5c71dd9c2b7c77b9c8"
dependencies = [
 "block-buffer",
 "digest",
 "opaque-debug",
]

1747 1748
[[package]]
name = "mdbook"
E
Eric Huss 已提交
1749
version = "0.4.0"
1750
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1751
checksum = "2567ffadc0fd26fe15d6f6e0a80639f19f6a50082fdb460d0ae5d1f7298181be"
1752 1753
dependencies = [
 "ammonia",
E
Eric Huss 已提交
1754
 "anyhow",
1755 1756 1757
 "chrono",
 "clap",
 "elasticlunr-rs",
E
Eric Huss 已提交
1758
 "env_logger 0.7.1",
1759
 "handlebars",
Y
Yuki Okushi 已提交
1760
 "lazy_static",
1761 1762 1763
 "log",
 "memchr",
 "open",
E
Eric Huss 已提交
1764
 "pulldown-cmark",
1765 1766 1767 1768 1769 1770
 "regex",
 "serde",
 "serde_derive",
 "serde_json",
 "shlex",
 "tempfile",
E
Eric Huss 已提交
1771
 "toml",
1772 1773
]

W
Wesley Wiser 已提交
1774 1775
[[package]]
name = "measureme"
1776
version = "0.7.1"
W
Wesley Wiser 已提交
1777
source = "registry+https://github.com/rust-lang/crates.io-index"
1778
checksum = "fef709d3257013bba7cff14fc504e07e80631d3fe0f6d38ce63b8f6510ccb932"
W
Wesley Wiser 已提交
1779
dependencies = [
1780 1781
 "byteorder",
 "memmap",
I
Igor Matuszewski 已提交
1782
 "parking_lot 0.9.0",
1783
 "rustc-hash",
W
Wesley Wiser 已提交
1784 1785
]

O
Oliver Schneider 已提交
1786 1787
[[package]]
name = "memchr"
Y
Yuki Okushi 已提交
1788
version = "2.3.3"
O
Oliver Schneider 已提交
1789
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
1790
checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
1791

1792 1793
[[package]]
name = "memmap"
1794
version = "0.7.0"
1795
source = "registry+https://github.com/rust-lang/crates.io-index"
1796
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
1797
dependencies = [
1798
 "libc",
E
Eric Huss 已提交
1799
 "winapi 0.3.8",
1800 1801
]

R
Ralf Jung 已提交
1802 1803 1804 1805
[[package]]
name = "memoffset"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1806
checksum = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f"
R
Ralf Jung 已提交
1807
dependencies = [
1808
 "rustc_version",
R
Ralf Jung 已提交
1809 1810
]

G
Guillaume Gomez 已提交
1811 1812
[[package]]
name = "minifier"
G
Guillaume Gomez 已提交
1813
version = "0.0.33"
G
Guillaume Gomez 已提交
1814
source = "registry+https://github.com/rust-lang/crates.io-index"
1815
checksum = "70bf0db2475f5e627787da77ca52fe33c294063f49f4134b8bc662eedb5e7332"
G
Guillaume Gomez 已提交
1816
dependencies = [
1817
 "macro-utils",
G
Guillaume Gomez 已提交
1818 1819
]

1820 1821
[[package]]
name = "miniz_oxide"
1822
version = "0.3.5"
1823
source = "registry+https://github.com/rust-lang/crates.io-index"
1824
checksum = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625"
1825
dependencies = [
1826
 "adler32",
1827 1828
]

1829 1830 1831 1832
[[package]]
name = "mio"
version = "0.6.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
1833
checksum = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432"
1834
dependencies = [
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
 "fuchsia-zircon",
 "fuchsia-zircon-sys",
 "iovec",
 "kernel32-sys",
 "lazycell",
 "libc",
 "log",
 "miow 0.2.1",
 "net2",
 "slab",
 "winapi 0.2.8",
1846 1847 1848 1849 1850 1851
]

[[package]]
name = "mio-named-pipes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
1852
checksum = "f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3"
1853
dependencies = [
1854 1855 1856
 "log",
 "mio",
 "miow 0.3.3",
E
Eric Huss 已提交
1857
 "winapi 0.3.8",
1858 1859 1860 1861 1862 1863
]

[[package]]
name = "mio-uds"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
1864
checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
1865
dependencies = [
1866 1867 1868
 "iovec",
 "libc",
 "mio",
1869 1870 1871 1872 1873 1874
]

[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
1875
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
1876
dependencies = [
1877 1878 1879 1880
 "kernel32-sys",
 "net2",
 "winapi 0.2.8",
 "ws2_32-sys",
1881 1882
]

A
Alex Crichton 已提交
1883 1884
[[package]]
name = "miow"
A
Alex Crichton 已提交
1885
version = "0.3.3"
A
Alex Crichton 已提交
1886
source = "registry+https://github.com/rust-lang/crates.io-index"
1887
checksum = "396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226"
A
Alex Crichton 已提交
1888
dependencies = [
1889
 "socket2",
E
Eric Huss 已提交
1890
 "winapi 0.3.8",
A
Alex Crichton 已提交
1891 1892
]

1893 1894 1895 1896
[[package]]
name = "miri"
version = "0.1.0"
dependencies = [
1897 1898
 "byteorder",
 "colored",
R
Ralf Jung 已提交
1899
 "compiletest_rs",
R
Ralf Jung 已提交
1900
 "env_logger 0.7.1",
R
Ralf Jung 已提交
1901
 "getrandom",
R
Ralf Jung 已提交
1902
 "hex 0.4.0",
1903
 "libc",
1904
 "log",
1905
 "rand 0.7.3",
1906 1907 1908
 "rustc-workspace-hack",
 "rustc_version",
 "shell-escape",
1909 1910
]

1911 1912 1913 1914
[[package]]
name = "net2"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
1915
checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
1916
dependencies = [
1917 1918
 "cfg-if",
 "libc",
E
Eric Huss 已提交
1919
 "winapi 0.3.8",
1920 1921
]

A
Alex Crichton 已提交
1922 1923
[[package]]
name = "new_debug_unreachable"
Y
Yuki Okushi 已提交
1924
version = "1.0.3"
A
Alex Crichton 已提交
1925
source = "registry+https://github.com/rust-lang/crates.io-index"
1926
checksum = "f40f005c60db6e03bae699e414c58bf9aa7ea02a2d0b9bfbcf19286cc4c82b30"
A
Alex Crichton 已提交
1927

N
Nick Cameron 已提交
1928 1929 1930 1931
[[package]]
name = "nodrop"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
1932
checksum = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
N
Nick Cameron 已提交
1933

1934
[[package]]
O
Oliver Schneider 已提交
1935 1936
name = "num-integer"
version = "0.1.39"
1937
source = "registry+https://github.com/rust-lang/crates.io-index"
1938
checksum = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea"
1939
dependencies = [
1940
 "num-traits",
1941 1942
]

S
Steve Klabnik 已提交
1943 1944
[[package]]
name = "num-traits"
1945
version = "0.2.6"
S
Steve Klabnik 已提交
1946
source = "registry+https://github.com/rust-lang/crates.io-index"
1947
checksum = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1"
S
Steve Klabnik 已提交
1948

1949 1950
[[package]]
name = "num_cpus"
E
Eric Huss 已提交
1951
version = "1.10.1"
1952
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
1953
checksum = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273"
1954
dependencies = [
1955
 "libc",
1956 1957
]

1958 1959 1960 1961 1962
[[package]]
name = "once_cell"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6a04cb71e910d0034815600180f62a95bf6e67942d7ab52a166a68c7d7e9cd0"
1963 1964 1965
dependencies = [
 "parking_lot 0.9.0",
]
1966

1967 1968 1969 1970 1971 1972
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"

S
Steve Klabnik 已提交
1973 1974
[[package]]
name = "open"
A
Alex Crichton 已提交
1975
version = "1.2.1"
S
Steve Klabnik 已提交
1976
source = "registry+https://github.com/rust-lang/crates.io-index"
1977
checksum = "c281318d992e4432cfa799969467003d05921582a7489a8325e37f8a450d5113"
S
Steve Klabnik 已提交
1978

A
Alex Crichton 已提交
1979 1980
[[package]]
name = "opener"
E
Eric Huss 已提交
1981
version = "0.4.0"
A
Alex Crichton 已提交
1982
source = "registry+https://github.com/rust-lang/crates.io-index"
1983
checksum = "998c59e83d9474c01127a96e023b7a04bb061dd286bf8bb939d31dc8d31a7448"
A
Alex Crichton 已提交
1984
dependencies = [
E
Eric Huss 已提交
1985
 "winapi 0.3.8",
A
Alex Crichton 已提交
1986 1987
]

1988 1989
[[package]]
name = "openssl"
L
Lzu Tao 已提交
1990
version = "0.10.25"
1991
source = "registry+https://github.com/rust-lang/crates.io-index"
L
Lzu Tao 已提交
1992
checksum = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449"
1993
dependencies = [
1994 1995 1996
 "bitflags",
 "cfg-if",
 "foreign-types",
Y
Yuki Okushi 已提交
1997
 "lazy_static",
1998 1999
 "libc",
 "openssl-sys",
2000 2001 2002 2003
]

[[package]]
name = "openssl-probe"
A
Alex Crichton 已提交
2004
version = "0.1.2"
2005
source = "registry+https://github.com/rust-lang/crates.io-index"
2006
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
2007

E
Eric Huss 已提交
2008 2009
[[package]]
name = "openssl-src"
P
Pietro Albini 已提交
2010
version = "111.9.0+1.1.1g"
E
Eric Huss 已提交
2011
source = "registry+https://github.com/rust-lang/crates.io-index"
P
Pietro Albini 已提交
2012
checksum = "a2dbe10ddd1eb335aba3780eb2eaa13e1b7b441d2562fd962398740927f39ec4"
E
Eric Huss 已提交
2013
dependencies = [
2014
 "cc",
E
Eric Huss 已提交
2015 2016
]

2017 2018
[[package]]
name = "openssl-sys"
2019
version = "0.9.54"
2020
source = "registry+https://github.com/rust-lang/crates.io-index"
2021
checksum = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986"
2022
dependencies = [
2023
 "autocfg 1.0.0",
2024 2025 2026 2027 2028
 "cc",
 "libc",
 "openssl-src",
 "pkg-config",
 "vcpkg",
2029 2030
]

2031 2032 2033 2034
[[package]]
name = "ordslice"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2035
checksum = "dd20eec3dbe4376829cb7d80ae6ac45e0a766831dca50202ff2d40db46a8a024"
2036

2037 2038 2039 2040 2041 2042 2043 2044 2045
[[package]]
name = "output_vt100"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
dependencies = [
 "winapi 0.3.8",
]

N
Nick Cameron 已提交
2046 2047 2048 2049
[[package]]
name = "packed_simd"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2050
checksum = "25d36de864f7218ec5633572a800109bbe5a1cc8d9d95a967f3daf93ea7e6ddc"
N
Nick Cameron 已提交
2051
dependencies = [
2052
 "cfg-if",
N
Nick Cameron 已提交
2053 2054
]

2055 2056 2057 2058
[[package]]
name = "panic_abort"
version = "0.0.0"
dependencies = [
E
Eric Huss 已提交
2059
 "cfg-if",
2060 2061 2062
 "compiler_builtins",
 "core",
 "libc",
2063 2064 2065 2066 2067 2068
]

[[package]]
name = "panic_unwind"
version = "0.0.0"
dependencies = [
2069 2070 2071 2072 2073 2074
 "alloc",
 "cfg-if",
 "compiler_builtins",
 "core",
 "libc",
 "unwind",
2075 2076
]

2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087
[[package]]
name = "parity-tokio-ipc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8281bf4f1d6429573f89589bf68d89451c46750977a8264f8ea3edbabeba7947"
dependencies = [
 "bytes",
 "futures",
 "log",
 "mio-named-pipes",
 "miow 0.3.3",
2088
 "rand 0.7.3",
2089 2090 2091
 "tokio",
 "tokio-named-pipes",
 "tokio-uds",
E
Eric Huss 已提交
2092
 "winapi 0.3.8",
2093 2094 2095 2096 2097 2098 2099 2100
]

[[package]]
name = "parking_lot"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
dependencies = [
2101
 "lock_api",
I
Igor Matuszewski 已提交
2102
 "parking_lot_core 0.6.2",
2103
 "rustc_version",
2104 2105
]

I
Igor Matuszewski 已提交
2106 2107
[[package]]
name = "parking_lot"
2108
version = "0.10.2"
I
Igor Matuszewski 已提交
2109
source = "registry+https://github.com/rust-lang/crates.io-index"
2110
checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
I
Igor Matuszewski 已提交
2111 2112
dependencies = [
 "lock_api",
2113
 "parking_lot_core 0.7.1",
I
Igor Matuszewski 已提交
2114 2115
]

2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
[[package]]
name = "parking_lot_core"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
dependencies = [
 "cfg-if",
 "cloudabi",
 "libc",
 "redox_syscall",
 "rustc_version",
R
Ralf Jung 已提交
2127
 "smallvec 0.6.10",
E
Eric Huss 已提交
2128
 "winapi 0.3.8",
2129 2130
]

I
Igor Matuszewski 已提交
2131 2132
[[package]]
name = "parking_lot_core"
2133
version = "0.7.1"
I
Igor Matuszewski 已提交
2134
source = "registry+https://github.com/rust-lang/crates.io-index"
2135
checksum = "0e136c1904604defe99ce5fd71a28d473fa60a12255d511aa78a9ddf11237aeb"
I
Igor Matuszewski 已提交
2136 2137 2138 2139 2140
dependencies = [
 "cfg-if",
 "cloudabi",
 "libc",
 "redox_syscall",
crlf0710's avatar
crlf0710 已提交
2141
 "smallvec 1.4.0",
I
Igor Matuszewski 已提交
2142 2143 2144
 "winapi 0.3.8",
]

2145 2146 2147 2148 2149 2150
[[package]]
name = "pathdiff"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "877630b3de15c0b64cc52f659345724fbf6bdad9bd9566699fc53688f3c34a34"

2151 2152
[[package]]
name = "percent-encoding"
O
Oliver Schneider 已提交
2153
version = "1.0.1"
2154
source = "registry+https://github.com/rust-lang/crates.io-index"
2155
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
2156

E
Eric Huss 已提交
2157 2158
[[package]]
name = "percent-encoding"
E
Eric Huss 已提交
2159
version = "2.1.0"
E
Eric Huss 已提交
2160
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
2161
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
E
Eric Huss 已提交
2162

2163 2164 2165 2166
[[package]]
name = "pest"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2167
checksum = "54f0c72a98d8ab3c99560bfd16df8059cc10e1f9a8e83e6e3b97718dd766e9c3"
2168
dependencies = [
2169
 "ucd-trie",
2170 2171 2172 2173 2174 2175
]

[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2176
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
2177
dependencies = [
2178 2179
 "pest",
 "pest_generator",
2180 2181 2182 2183
]

[[package]]
name = "pest_generator"
2184
version = "2.1.3"
2185
source = "registry+https://github.com/rust-lang/crates.io-index"
2186
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
2187
dependencies = [
2188 2189
 "pest",
 "pest_meta",
2190 2191 2192
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
2193 2194 2195 2196
]

[[package]]
name = "pest_meta"
2197
version = "2.1.3"
2198
source = "registry+https://github.com/rust-lang/crates.io-index"
2199
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
2200
dependencies = [
2201 2202 2203
 "maplit",
 "pest",
 "sha-1",
2204 2205
]

J
Jack Huey 已提交
2206 2207
[[package]]
name = "petgraph"
J
Jack Huey 已提交
2208
version = "0.5.1"
J
Jack Huey 已提交
2209
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
2210
checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"
J
Jack Huey 已提交
2211 2212
dependencies = [
 "fixedbitset",
J
Jack Huey 已提交
2213
 "indexmap",
J
Jack Huey 已提交
2214 2215
]

S
steveklabnik 已提交
2216 2217
[[package]]
name = "phf"
2218
version = "0.7.24"
S
steveklabnik 已提交
2219
source = "registry+https://github.com/rust-lang/crates.io-index"
2220
checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18"
S
steveklabnik 已提交
2221
dependencies = [
2222
 "phf_shared",
S
steveklabnik 已提交
2223 2224 2225 2226
]

[[package]]
name = "phf_codegen"
2227
version = "0.7.24"
S
steveklabnik 已提交
2228
source = "registry+https://github.com/rust-lang/crates.io-index"
2229
checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e"
S
steveklabnik 已提交
2230
dependencies = [
2231 2232
 "phf_generator",
 "phf_shared",
S
steveklabnik 已提交
2233 2234 2235 2236
]

[[package]]
name = "phf_generator"
2237
version = "0.7.24"
S
steveklabnik 已提交
2238
source = "registry+https://github.com/rust-lang/crates.io-index"
2239
checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
S
steveklabnik 已提交
2240
dependencies = [
2241 2242
 "phf_shared",
 "rand 0.6.1",
S
steveklabnik 已提交
2243 2244 2245 2246
]

[[package]]
name = "phf_shared"
2247
version = "0.7.24"
S
steveklabnik 已提交
2248
source = "registry+https://github.com/rust-lang/crates.io-index"
2249
checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
S
steveklabnik 已提交
2250
dependencies = [
2251
 "siphasher",
S
steveklabnik 已提交
2252 2253
]

2254 2255
[[package]]
name = "pkg-config"
2256
version = "0.3.17"
2257
source = "registry+https://github.com/rust-lang/crates.io-index"
2258
checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
2259

2260 2261
[[package]]
name = "polonius-engine"
R
Remy Rakic 已提交
2262
version = "0.12.1"
2263
source = "registry+https://github.com/rust-lang/crates.io-index"
R
Remy Rakic 已提交
2264
checksum = "ef2558a4b464e185b36ee08a2937ebb62ea5464c38856cfb1465c97cb38db52d"
D
Douglas Campos 已提交
2265
dependencies = [
2266 2267 2268
 "datafrog",
 "log",
 "rustc-hash",
D
Douglas Campos 已提交
2269
]
2270

G
gnzlbg 已提交
2271 2272
[[package]]
name = "ppv-lite86"
Y
Yuki Okushi 已提交
2273
version = "0.2.8"
G
gnzlbg 已提交
2274
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
2275
checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea"
G
gnzlbg 已提交
2276

S
steveklabnik 已提交
2277 2278 2279 2280
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2281
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
S
steveklabnik 已提交
2282

M
Mark Simulacrum 已提交
2283 2284
[[package]]
name = "pretty_assertions"
2285
version = "0.6.1"
M
Mark Simulacrum 已提交
2286
source = "registry+https://github.com/rust-lang/crates.io-index"
2287
checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
M
Mark Simulacrum 已提交
2288
dependencies = [
2289
 "ansi_term",
2290
 "ctor",
2291
 "difference",
2292
 "output_vt100",
M
Mark Simulacrum 已提交
2293 2294
]

E
Eric Huss 已提交
2295 2296
[[package]]
name = "pretty_env_logger"
2297
version = "0.4.0"
E
Eric Huss 已提交
2298
source = "registry+https://github.com/rust-lang/crates.io-index"
2299
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
E
Eric Huss 已提交
2300
dependencies = [
2301
 "env_logger 0.7.1",
2302
 "log",
E
Eric Huss 已提交
2303 2304
]

2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
[[package]]
name = "proc-macro-crate"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e"
dependencies = [
 "toml",
]

[[package]]
name = "proc-macro-error"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
I
Igor Matuszewski 已提交
2322
 "syn 1.0.11",
2323 2324
]

A
Alex Crichton 已提交
2325 2326
[[package]]
name = "proc-macro2"
E
Eric Huss 已提交
2327
version = "0.4.30"
A
Alex Crichton 已提交
2328
source = "registry+https://github.com/rust-lang/crates.io-index"
2329
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
A
Alex Crichton 已提交
2330
dependencies = [
2331
 "unicode-xid 0.1.0",
A
Alex Crichton 已提交
2332 2333
]

2334 2335 2336 2337 2338 2339 2340 2341 2342
[[package]]
name = "proc-macro2"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8"
dependencies = [
 "unicode-xid 0.2.0",
]

2343 2344 2345
[[package]]
name = "proc_macro"
version = "0.0.0"
2346 2347 2348
dependencies = [
 "std",
]
2349

2350 2351 2352 2353
[[package]]
name = "profiler_builtins"
version = "0.0.0"
dependencies = [
2354 2355 2356
 "cc",
 "compiler_builtins",
 "core",
2357 2358
]

2359 2360
[[package]]
name = "psm"
S
Simonas Kazlauskas 已提交
2361
version = "0.1.10"
2362
source = "registry+https://github.com/rust-lang/crates.io-index"
S
Simonas Kazlauskas 已提交
2363
checksum = "092d385624a084892d07374caa7b0994956692cf40650419a1f1a787a8d229cf"
2364 2365 2366 2367
dependencies = [
 "cc",
]

L
Lzu Tao 已提交
2368 2369
[[package]]
name = "pulldown-cmark"
E
Eric Huss 已提交
2370
version = "0.7.1"
L
Lzu Tao 已提交
2371
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
2372
checksum = "3e142c3b8f49d2200605ee6ba0b1d757310e9e7a72afe78c36ee2ef67300ee00"
L
Lzu Tao 已提交
2373 2374
dependencies = [
 "bitflags",
E
Eric Huss 已提交
2375
 "getopts",
L
Lzu Tao 已提交
2376
 "memchr",
E
Eric Huss 已提交
2377
 "unicase",
2378 2379
]

2380 2381 2382 2383
[[package]]
name = "punycode"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2384
checksum = "6ddd112cca70a4d30883b2d21568a1d376ff8be4758649f64f973c6845128ad3"
2385

2386 2387
[[package]]
name = "quick-error"
2388
version = "1.2.3"
2389
source = "registry+https://github.com/rust-lang/crates.io-index"
2390
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2391 2392

[[package]]
O
Oliver Schneider 已提交
2393 2394
name = "quine-mc_cluskey"
version = "0.2.4"
2395
source = "registry+https://github.com/rust-lang/crates.io-index"
2396
checksum = "07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45"
2397

A
Alex Crichton 已提交
2398 2399
[[package]]
name = "quote"
E
Eric Huss 已提交
2400
version = "0.6.12"
A
Alex Crichton 已提交
2401
source = "registry+https://github.com/rust-lang/crates.io-index"
2402
checksum = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db"
A
Alex Crichton 已提交
2403
dependencies = [
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413
 "proc-macro2 0.4.30",
]

[[package]]
name = "quote"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
dependencies = [
 "proc-macro2 1.0.3",
A
Alex Crichton 已提交
2414 2415
]

2416 2417
[[package]]
name = "racer"
I
Igor Matuszewski 已提交
2418
version = "2.1.35"
2419
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2420
checksum = "421174f19211ba9e5fda34aa0cbc292188aae8e0cfbff4aebbae23f1a416bfb3"
2421
dependencies = [
2422 2423 2424
 "bitflags",
 "clap",
 "derive_more",
I
Igor Matuszewski 已提交
2425 2426
 "env_logger 0.7.1",
 "humantime 2.0.0",
Y
Yuki Okushi 已提交
2427
 "lazy_static",
2428 2429
 "log",
 "rls-span",
2430
 "rustc-ap-rustc_ast",
I
Igor Matuszewski 已提交
2431 2432 2433 2434 2435 2436
 "rustc-ap-rustc_ast_pretty",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
 "rustc-ap-rustc_parse",
 "rustc-ap-rustc_session",
 "rustc-ap-rustc_span",
2437
]
2438

2439 2440 2441 2442
[[package]]
name = "rand"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2443
checksum = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a"
2444
dependencies = [
2445 2446 2447 2448 2449 2450 2451 2452 2453 2454
 "cloudabi",
 "fuchsia-zircon",
 "libc",
 "rand_chacha 0.1.0",
 "rand_core 0.3.0",
 "rand_hc 0.1.0",
 "rand_isaac",
 "rand_pcg",
 "rand_xorshift 0.1.0",
 "rustc_version",
E
Eric Huss 已提交
2455
 "winapi 0.3.8",
2456 2457
]

G
gnzlbg 已提交
2458 2459
[[package]]
name = "rand"
2460
version = "0.7.3"
G
gnzlbg 已提交
2461
source = "registry+https://github.com/rust-lang/crates.io-index"
2462
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
G
gnzlbg 已提交
2463
dependencies = [
2464 2465
 "getrandom",
 "libc",
Y
Yuki Okushi 已提交
2466
 "rand_chacha 0.2.2",
E
Eric Huss 已提交
2467
 "rand_core 0.5.1",
2468
 "rand_hc 0.2.0",
G
gnzlbg 已提交
2469 2470
]

2471 2472 2473 2474
[[package]]
name = "rand_chacha"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2475
checksum = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a"
2476
dependencies = [
2477 2478
 "rand_core 0.3.0",
 "rustc_version",
2479 2480
]

G
gnzlbg 已提交
2481 2482
[[package]]
name = "rand_chacha"
Y
Yuki Okushi 已提交
2483
version = "0.2.2"
G
gnzlbg 已提交
2484
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
2485
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
G
gnzlbg 已提交
2486
dependencies = [
Y
Yuki Okushi 已提交
2487
 "ppv-lite86",
E
Eric Huss 已提交
2488
 "rand_core 0.5.1",
G
gnzlbg 已提交
2489 2490
]

2491 2492 2493 2494
[[package]]
name = "rand_core"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2495
checksum = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
2496

2497 2498 2499 2500
[[package]]
name = "rand_core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2501
checksum = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
2502

G
gnzlbg 已提交
2503 2504
[[package]]
name = "rand_core"
E
Eric Huss 已提交
2505
version = "0.5.1"
G
gnzlbg 已提交
2506
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
2507
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
G
gnzlbg 已提交
2508
dependencies = [
2509
 "getrandom",
G
gnzlbg 已提交
2510 2511
]

2512 2513 2514 2515
[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2516
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
2517
dependencies = [
2518
 "rand_core 0.3.0",
2519 2520
]

G
gnzlbg 已提交
2521 2522 2523 2524
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2525
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
G
gnzlbg 已提交
2526
dependencies = [
E
Eric Huss 已提交
2527
 "rand_core 0.5.1",
G
gnzlbg 已提交
2528 2529
]

2530 2531 2532
[[package]]
name = "rand_isaac"
version = "0.1.1"
K
kennytm 已提交
2533
source = "registry+https://github.com/rust-lang/crates.io-index"
2534
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
2535
dependencies = [
2536
 "rand_core 0.3.0",
2537 2538
]

2539 2540 2541 2542
[[package]]
name = "rand_os"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2543
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
2544
dependencies = [
2545 2546 2547 2548 2549
 "cloudabi",
 "fuchsia-cprng",
 "libc",
 "rand_core 0.4.0",
 "rdrand",
E
Eric Huss 已提交
2550
 "winapi 0.3.8",
2551 2552
]

2553 2554 2555 2556
[[package]]
name = "rand_pcg"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2557
checksum = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
2558
dependencies = [
2559 2560
 "rand_core 0.3.0",
 "rustc_version",
2561 2562 2563 2564 2565 2566
]

[[package]]
name = "rand_xorshift"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2567
checksum = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3"
2568
dependencies = [
2569
 "rand_core 0.3.0",
2570
]
K
kennytm 已提交
2571

R
Ralf Jung 已提交
2572 2573 2574 2575
[[package]]
name = "rand_xorshift"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2576
checksum = "77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8"
R
Ralf Jung 已提交
2577
dependencies = [
E
Eric Huss 已提交
2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
 "rand_core 0.5.1",
]

[[package]]
name = "rand_xoshiro"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9fcdd2e881d02f1d9390ae47ad8e5696a9e4be7b547a1da2afbc61973217004"
dependencies = [
 "rand_core 0.5.1",
R
Ralf Jung 已提交
2588 2589
]

N
Nick Cameron 已提交
2590 2591
[[package]]
name = "rayon"
J
Josh Stone 已提交
2592
version = "1.2.0"
N
Nick Cameron 已提交
2593
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Josh Stone 已提交
2594
checksum = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123"
N
Nick Cameron 已提交
2595
dependencies = [
2596
 "crossbeam-deque",
2597 2598
 "either",
 "rayon-core",
O
Oliver Schneider 已提交
2599 2600 2601 2602
]

[[package]]
name = "rayon-core"
J
Josh Stone 已提交
2603
version = "1.6.0"
O
Oliver Schneider 已提交
2604
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Josh Stone 已提交
2605
checksum = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b"
O
Oliver Schneider 已提交
2606
dependencies = [
2607
 "crossbeam-deque",
2608 2609
 "crossbeam-queue",
 "crossbeam-utils 0.6.5",
Y
Yuki Okushi 已提交
2610
 "lazy_static",
2611
 "num_cpus",
2612 2613 2614 2615 2616 2617
]

[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2618
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2619
dependencies = [
2620
 "rand_core 0.3.0",
2621 2622
]

N
Nick Cameron 已提交
2623 2624
[[package]]
name = "redox_syscall"
2625
version = "0.1.56"
O
Oliver Schneider 已提交
2626
source = "registry+https://github.com/rust-lang/crates.io-index"
2627
checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
O
Oliver Schneider 已提交
2628

F
flip1995 已提交
2629 2630
[[package]]
name = "redox_users"
2631
version = "0.3.0"
F
flip1995 已提交
2632
source = "registry+https://github.com/rust-lang/crates.io-index"
2633
checksum = "3fe5204c3a17e97dde73f285d49be585df59ed84b50a872baf416e73b62c3828"
F
flip1995 已提交
2634
dependencies = [
2635 2636 2637 2638
 "argon2rs",
 "failure",
 "rand_os",
 "redox_syscall",
F
flip1995 已提交
2639 2640
]

2641 2642
[[package]]
name = "regex"
Y
Yuki Okushi 已提交
2643
version = "1.3.7"
2644
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
2645
checksum = "a6020f034922e3194c711b82a627453881bc4682166cabb07134a10c26ba7692"
2646
dependencies = [
2647 2648 2649
 "aho-corasick",
 "memchr",
 "regex-syntax",
Y
Yuki Okushi 已提交
2650
 "thread_local",
2651 2652 2653 2654
]

[[package]]
name = "regex-syntax"
Y
Yuki Okushi 已提交
2655
version = "0.6.17"
2656
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
2657
checksum = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
2658

2659 2660 2661 2662 2663 2664 2665 2666
[[package]]
name = "remote-test-client"
version = "0.1.0"

[[package]]
name = "remote-test-server"
version = "0.1.0"

A
Alex Crichton 已提交
2667 2668
[[package]]
name = "remove_dir_all"
E
Eric Huss 已提交
2669
version = "0.5.2"
A
Alex Crichton 已提交
2670
source = "registry+https://github.com/rust-lang/crates.io-index"
2671
checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
A
Alex Crichton 已提交
2672
dependencies = [
E
Eric Huss 已提交
2673
 "winapi 0.3.8",
A
Alex Crichton 已提交
2674 2675
]

2676 2677
[[package]]
name = "rls"
I
Igor Matuszewski 已提交
2678
version = "1.41.0"
2679
dependencies = [
E
Eric Huss 已提交
2680
 "anyhow",
2681
 "cargo",
M
Manish Goregaokar 已提交
2682
 "cargo_metadata 0.8.0",
2683
 "clippy_lints",
I
Igor Matuszewski 已提交
2684
 "crossbeam-channel",
2685
 "difference",
R
Ralf Jung 已提交
2686
 "env_logger 0.7.1",
2687 2688
 "futures",
 "heck",
2689
 "home",
2690 2691
 "itertools 0.8.0",
 "jsonrpc-core",
Y
Yuki Okushi 已提交
2692
 "lazy_static",
2693 2694 2695 2696 2697 2698
 "log",
 "lsp-codec",
 "lsp-types",
 "num_cpus",
 "ordslice",
 "racer",
2699
 "rand 0.7.3",
2700 2701 2702 2703
 "rayon",
 "regex",
 "rls-analysis",
 "rls-data",
2704
 "rls-ipc",
2705 2706 2707 2708
 "rls-rustc",
 "rls-span",
 "rls-vfs",
 "rustc-workspace-hack",
I
Igor Matuszewski 已提交
2709
 "rustc_tools_util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
2710 2711 2712
 "rustfmt-nightly",
 "serde",
 "serde_derive",
2713
 "serde_ignored",
2714 2715 2716 2717 2718
 "serde_json",
 "tempfile",
 "tokio",
 "tokio-process",
 "tokio-timer",
E
Eric Huss 已提交
2719
 "toml",
2720
 "url 2.1.0",
2721
 "walkdir",
2722 2723 2724 2725
]

[[package]]
name = "rls-analysis"
Y
Yuki Okushi 已提交
2726
version = "0.18.1"
2727
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
2728
checksum = "534032993e1b60e5db934eab2dde54da7afd1e46c3465fddb2b29eb47cb1ed3a"
2729
dependencies = [
2730 2731
 "derive-new",
 "fst",
Y
Yuki Okushi 已提交
2732
 "itertools 0.8.0",
2733 2734 2735 2736 2737 2738
 "json",
 "log",
 "rls-data",
 "rls-span",
 "serde",
 "serde_json",
A
Alex Crichton 已提交
2739 2740
]

2741 2742
[[package]]
name = "rls-data"
2743
version = "0.19.0"
2744
source = "registry+https://github.com/rust-lang/crates.io-index"
2745
checksum = "76c72ea97e045be5f6290bb157ebdc5ee9f2b093831ff72adfaf59025cf5c491"
2746
dependencies = [
2747 2748
 "rls-span",
 "serde",
2749 2750
]

2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762
[[package]]
name = "rls-ipc"
version = "0.1.0"
dependencies = [
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "jsonrpc-ipc-server",
 "rls-data",
 "serde",
]

N
Nick Cameron 已提交
2763 2764
[[package]]
name = "rls-rustc"
I
Igor Matuszewski 已提交
2765
version = "0.6.0"
2766 2767
dependencies = [
 "clippy_lints",
R
Ralf Jung 已提交
2768
 "env_logger 0.7.1",
2769 2770
 "futures",
 "log",
2771
 "rand 0.7.3",
2772 2773 2774 2775 2776
 "rls-data",
 "rls-ipc",
 "serde",
 "tokio",
]
N
Nick Cameron 已提交
2777

2778 2779
[[package]]
name = "rls-span"
Y
Yuki Okushi 已提交
2780
version = "0.5.2"
2781
source = "registry+https://github.com/rust-lang/crates.io-index"
Y
Yuki Okushi 已提交
2782
checksum = "f2e9bed56f6272bd85d9d06d1aaeef80c5fddc78a82199eb36dceb5f94e7d934"
2783
dependencies = [
2784
 "serde",
2785 2786 2787 2788
]

[[package]]
name = "rls-vfs"
2789
version = "0.8.0"
2790
source = "registry+https://github.com/rust-lang/crates.io-index"
2791
checksum = "ce4b57b25b4330ed5ec14028fc02141e083ddafda327e7eb598dc0569c8c83c9"
2792
dependencies = [
2793 2794
 "log",
 "rls-span",
2795 2796
]

R
Rich Kadel 已提交
2797 2798 2799 2800 2801 2802 2803
[[package]]
name = "rust-demangler"
version = "0.0.0"
dependencies = [
 "rustc-demangle",
]

2804 2805
[[package]]
name = "rustbook"
2806 2807
version = "0.1.0"
dependencies = [
2808 2809
 "clap",
 "mdbook",
2810
]
2811

I
Igor Matuszewski 已提交
2812
[[package]]
I
Igor Matuszewski 已提交
2813 2814
name = "rustc-ap-rustc_arena"
version = "664.0.0"
I
Igor Matuszewski 已提交
2815
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2816
checksum = "0c6683b49209f8b132bec33dc6b6c8f9958c8c94eb3586d4cb495e092b61c1da"
I
Igor Matuszewski 已提交
2817
dependencies = [
2818
 "rustc-ap-rustc_data_structures",
crlf0710's avatar
crlf0710 已提交
2819
 "smallvec 1.4.0",
I
Igor Matuszewski 已提交
2820 2821
]

2822 2823
[[package]]
name = "rustc-ap-rustc_ast"
I
Igor Matuszewski 已提交
2824
version = "664.0.0"
2825
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2826
checksum = "5b21784d92fb2d584800f528866f00fe814f73abda794f406bfd1fbb2f1ca7f7"
2827
dependencies = [
I
Igor Matuszewski 已提交
2828
 "bitflags",
2829 2830 2831 2832 2833
 "log",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_index",
 "rustc-ap-rustc_lexer",
 "rustc-ap-rustc_macros",
I
Igor Matuszewski 已提交
2834
 "rustc-ap-rustc_serialize",
2835 2836
 "rustc-ap-rustc_span",
 "scoped-tls",
crlf0710's avatar
crlf0710 已提交
2837
 "smallvec 1.4.0",
2838 2839 2840 2841
]

[[package]]
name = "rustc-ap-rustc_ast_passes"
I
Igor Matuszewski 已提交
2842
version = "664.0.0"
I
Igor Matuszewski 已提交
2843
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2844
checksum = "820c46fde7ef1df0432073090d775f097b7279ca75ea34ba954081ce4b884d4c"
2845
dependencies = [
T
topecongiro 已提交
2846
 "itertools 0.8.0",
2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857
 "log",
 "rustc-ap-rustc_ast",
 "rustc-ap-rustc_ast_pretty",
 "rustc-ap-rustc_attr",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
 "rustc-ap-rustc_feature",
 "rustc-ap-rustc_parse",
 "rustc-ap-rustc_session",
 "rustc-ap-rustc_span",
]
I
Igor Matuszewski 已提交
2858 2859 2860

[[package]]
name = "rustc-ap-rustc_ast_pretty"
I
Igor Matuszewski 已提交
2861
version = "664.0.0"
I
Igor Matuszewski 已提交
2862
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2863
checksum = "013db7dd198fe95962d2cefa5bd0b350cf2028af77c169b17b4baa9c3bbf77d1"
I
Igor Matuszewski 已提交
2864 2865
dependencies = [
 "log",
2866
 "rustc-ap-rustc_ast",
I
Igor Matuszewski 已提交
2867
 "rustc-ap-rustc_span",
I
Igor Matuszewski 已提交
2868
 "rustc-ap-rustc_target",
I
Igor Matuszewski 已提交
2869 2870 2871 2872
]

[[package]]
name = "rustc-ap-rustc_attr"
I
Igor Matuszewski 已提交
2873
version = "664.0.0"
I
Igor Matuszewski 已提交
2874
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2875
checksum = "35b5a85c90eb341eec543600ffdd9e262da5ea72a73a23ae4ca2f4ab8cd1a188"
I
Igor Matuszewski 已提交
2876
dependencies = [
2877
 "rustc-ap-rustc_ast",
I
Igor Matuszewski 已提交
2878 2879 2880 2881 2882
 "rustc-ap-rustc_ast_pretty",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
 "rustc-ap-rustc_feature",
 "rustc-ap-rustc_macros",
I
Igor Matuszewski 已提交
2883
 "rustc-ap-rustc_serialize",
I
Igor Matuszewski 已提交
2884 2885
 "rustc-ap-rustc_session",
 "rustc-ap-rustc_span",
2886
 "version_check",
I
Igor Matuszewski 已提交
2887
]
I
Igor Matuszewski 已提交
2888 2889 2890

[[package]]
name = "rustc-ap-rustc_data_structures"
I
Igor Matuszewski 已提交
2891
version = "664.0.0"
I
Igor Matuszewski 已提交
2892
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2893
checksum = "b92e4c6cb6c43ee9031a71709dc12853b358253c2b41d12a26379994fab625e0"
I
Igor Matuszewski 已提交
2894
dependencies = [
I
Igor Matuszewski 已提交
2895
 "bitflags",
2896
 "cfg-if",
2897
 "crossbeam-utils 0.7.2",
J
Jack Huey 已提交
2898
 "ena",
2899 2900
 "indexmap",
 "jobserver",
Y
Yuki Okushi 已提交
2901
 "lazy_static",
T
topecongiro 已提交
2902
 "libc",
2903
 "log",
I
Igor Matuszewski 已提交
2904
 "measureme",
I
Igor Matuszewski 已提交
2905
 "once_cell",
2906
 "parking_lot 0.10.2",
I
Igor Matuszewski 已提交
2907
 "rustc-ap-rustc_graphviz",
I
Igor Matuszewski 已提交
2908
 "rustc-ap-rustc_index",
I
Igor Matuszewski 已提交
2909
 "rustc-ap-rustc_serialize",
2910
 "rustc-hash",
I
Igor Matuszewski 已提交
2911 2912
 "rustc-rayon",
 "rustc-rayon-core",
crlf0710's avatar
crlf0710 已提交
2913
 "smallvec 1.4.0",
2914
 "stable_deref_trait",
2915
 "stacker",
I
Igor Matuszewski 已提交
2916
 "winapi 0.3.8",
I
Igor Matuszewski 已提交
2917 2918 2919 2920
]

[[package]]
name = "rustc-ap-rustc_errors"
I
Igor Matuszewski 已提交
2921
version = "664.0.0"
I
Igor Matuszewski 已提交
2922
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2923
checksum = "6b0aa79423260c1b9e2f856e144e040f606b0f5d43644408375becf9d7bcdf86"
I
Igor Matuszewski 已提交
2924
dependencies = [
I
Igor Matuszewski 已提交
2925
 "annotate-snippets 0.8.0",
2926 2927 2928
 "atty",
 "log",
 "rustc-ap-rustc_data_structures",
I
Igor Matuszewski 已提交
2929
 "rustc-ap-rustc_serialize",
I
Igor Matuszewski 已提交
2930
 "rustc-ap-rustc_span",
2931
 "termcolor",
I
Igor Matuszewski 已提交
2932
 "termize",
2933
 "unicode-width",
I
Igor Matuszewski 已提交
2934
 "winapi 0.3.8",
I
Igor Matuszewski 已提交
2935 2936
]

2937 2938
[[package]]
name = "rustc-ap-rustc_expand"
I
Igor Matuszewski 已提交
2939
version = "664.0.0"
2940
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2941
checksum = "c07d76ba2a1b7d4325a2ed21d6345ccebd89ddc6666a1535a6edd489fb4cbc11"
2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952
dependencies = [
 "log",
 "rustc-ap-rustc_ast",
 "rustc-ap-rustc_ast_passes",
 "rustc-ap-rustc_ast_pretty",
 "rustc-ap-rustc_attr",
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
 "rustc-ap-rustc_feature",
 "rustc-ap-rustc_lexer",
 "rustc-ap-rustc_parse",
I
Igor Matuszewski 已提交
2953
 "rustc-ap-rustc_serialize",
2954 2955
 "rustc-ap-rustc_session",
 "rustc-ap-rustc_span",
crlf0710's avatar
crlf0710 已提交
2956
 "smallvec 1.4.0",
2957 2958
]

I
Igor Matuszewski 已提交
2959 2960
[[package]]
name = "rustc-ap-rustc_feature"
I
Igor Matuszewski 已提交
2961
version = "664.0.0"
I
Igor Matuszewski 已提交
2962
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2963
checksum = "1bbd625705c1db42a0c7503736292813d7b76ada5da20578fb55c63228c80ab5"
I
Igor Matuszewski 已提交
2964
dependencies = [
Y
Yuki Okushi 已提交
2965
 "lazy_static",
I
Igor Matuszewski 已提交
2966 2967 2968 2969 2970 2971
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_span",
]

[[package]]
name = "rustc-ap-rustc_fs_util"
I
Igor Matuszewski 已提交
2972 2973 2974 2975 2976 2977 2978
version = "664.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34cca6e2942fa0b059c582437ead666d5bcf20fa7c242599e2bbea9b609f29ae"

[[package]]
name = "rustc-ap-rustc_graphviz"
version = "664.0.0"
I
Igor Matuszewski 已提交
2979
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2980
checksum = "13d6a029b81f5e02da85763f82c135507f278a4a0c776432c728520563059529"
I
Igor Matuszewski 已提交
2981

I
Igor Matuszewski 已提交
2982 2983
[[package]]
name = "rustc-ap-rustc_index"
I
Igor Matuszewski 已提交
2984
version = "664.0.0"
I
Igor Matuszewski 已提交
2985
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2986
checksum = "bae50852d303e230b2781c994513788136dc6c2fe4ebe032959f0b990a425767"
I
Igor Matuszewski 已提交
2987
dependencies = [
I
Igor Matuszewski 已提交
2988
 "rustc-ap-rustc_serialize",
crlf0710's avatar
crlf0710 已提交
2989
 "smallvec 1.4.0",
I
Igor Matuszewski 已提交
2990 2991
]

I
Igor Matuszewski 已提交
2992 2993
[[package]]
name = "rustc-ap-rustc_lexer"
I
Igor Matuszewski 已提交
2994
version = "664.0.0"
I
Igor Matuszewski 已提交
2995
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
2996
checksum = "b7186e74aa2d31bf0e2454325fefcdf0a3da77d9344134592144b9e40d45b15d"
2997 2998 2999
dependencies = [
 "unicode-xid 0.2.0",
]
I
Igor Matuszewski 已提交
3000 3001 3002

[[package]]
name = "rustc-ap-rustc_macros"
I
Igor Matuszewski 已提交
3003
version = "664.0.0"
I
Igor Matuszewski 已提交
3004
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3005
checksum = "4fc1add04e9d2301164118660ee0bc3266e9a7b1973fc2303fdbe002a12e5401"
I
Igor Matuszewski 已提交
3006
dependencies = [
I
Igor Matuszewski 已提交
3007 3008 3009
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
3010
 "synstructure",
I
Igor Matuszewski 已提交
3011 3012 3013
]

[[package]]
I
Igor Matuszewski 已提交
3014
name = "rustc-ap-rustc_parse"
I
Igor Matuszewski 已提交
3015
version = "664.0.0"
I
Igor Matuszewski 已提交
3016
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3017
checksum = "9cd7fc4968bd60084f2fa4f280fa450b0cf98660a7983d6b93a7ae41b6d1d322"
I
Igor Matuszewski 已提交
3018
dependencies = [
3019 3020
 "bitflags",
 "log",
3021
 "rustc-ap-rustc_ast",
I
Igor Matuszewski 已提交
3022
 "rustc-ap-rustc_ast_pretty",
3023
 "rustc-ap-rustc_data_structures",
I
Igor Matuszewski 已提交
3024 3025 3026 3027 3028 3029 3030 3031
 "rustc-ap-rustc_errors",
 "rustc-ap-rustc_feature",
 "rustc-ap-rustc_lexer",
 "rustc-ap-rustc_session",
 "rustc-ap-rustc_span",
 "unicode-normalization",
]

I
Igor Matuszewski 已提交
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041
[[package]]
name = "rustc-ap-rustc_serialize"
version = "664.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00bf4c110271d9a2b7dfd2c6eb82e56fd80606a8bad6c102e158c54e44044046"
dependencies = [
 "indexmap",
 "smallvec 1.4.0",
]

I
Igor Matuszewski 已提交
3042 3043
[[package]]
name = "rustc-ap-rustc_session"
I
Igor Matuszewski 已提交
3044
version = "664.0.0"
I
Igor Matuszewski 已提交
3045
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3046
checksum = "431cf962de71d4c03fb877d54f331ec36eca77350b0539017abc40a4410d6501"
I
Igor Matuszewski 已提交
3047
dependencies = [
T
topecongiro 已提交
3048
 "getopts",
I
Igor Matuszewski 已提交
3049 3050
 "log",
 "num_cpus",
3051
 "rustc-ap-rustc_ast",
I
Igor Matuszewski 已提交
3052 3053 3054 3055
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
 "rustc-ap-rustc_feature",
 "rustc-ap-rustc_fs_util",
I
Igor Matuszewski 已提交
3056
 "rustc-ap-rustc_serialize",
I
Igor Matuszewski 已提交
3057 3058
 "rustc-ap-rustc_span",
 "rustc-ap-rustc_target",
I
Igor Matuszewski 已提交
3059 3060 3061
]

[[package]]
I
Igor Matuszewski 已提交
3062
name = "rustc-ap-rustc_span"
I
Igor Matuszewski 已提交
3063
version = "664.0.0"
I
Igor Matuszewski 已提交
3064
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3065
checksum = "b912039640597624f4bcb75f1e1fcfa5710267d715a7f73a6336baef341b23d1"
I
Igor Matuszewski 已提交
3066
dependencies = [
I
Igor Matuszewski 已提交
3067 3068
 "cfg-if",
 "log",
T
topecongiro 已提交
3069
 "md-5",
I
Igor Matuszewski 已提交
3070
 "rustc-ap-rustc_arena",
I
Igor Matuszewski 已提交
3071 3072 3073
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_index",
 "rustc-ap-rustc_macros",
I
Igor Matuszewski 已提交
3074
 "rustc-ap-rustc_serialize",
I
Igor Matuszewski 已提交
3075
 "scoped-tls",
T
topecongiro 已提交
3076
 "sha-1",
I
Igor Matuszewski 已提交
3077
 "unicode-width",
I
Igor Matuszewski 已提交
3078 3079 3080
]

[[package]]
I
Igor Matuszewski 已提交
3081
name = "rustc-ap-rustc_target"
I
Igor Matuszewski 已提交
3082
version = "664.0.0"
I
Igor Matuszewski 已提交
3083
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
3084
checksum = "51347a9dadc5ad0b5916cc12d42624b31955285ad13745dbe72f0140038b84e9"
I
Igor Matuszewski 已提交
3085
dependencies = [
3086 3087 3088
 "bitflags",
 "log",
 "rustc-ap-rustc_data_structures",
I
Igor Matuszewski 已提交
3089
 "rustc-ap-rustc_index",
I
Igor Matuszewski 已提交
3090
 "rustc-ap-rustc_macros",
I
Igor Matuszewski 已提交
3091
 "rustc-ap-rustc_serialize",
I
Igor Matuszewski 已提交
3092 3093 3094
 "rustc-ap-rustc_span",
]

3095 3096
[[package]]
name = "rustc-demangle"
3097
version = "0.1.16"
3098
source = "registry+https://github.com/rust-lang/crates.io-index"
3099
checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
3100
dependencies = [
3101 3102
 "compiler_builtins",
 "rustc-std-workspace-core",
3103
]
3104

3105 3106
[[package]]
name = "rustc-hash"
J
Jack Huey 已提交
3107
version = "1.1.0"
3108
source = "registry+https://github.com/rust-lang/crates.io-index"
J
Jack Huey 已提交
3109
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3110

3111 3112 3113 3114
[[package]]
name = "rustc-main"
version = "0.0.0"
dependencies = [
3115 3116 3117
 "jemalloc-sys",
 "rustc_codegen_ssa",
 "rustc_driver",
3118 3119
]

J
Josh Stone 已提交
3120 3121 3122 3123 3124 3125
[[package]]
name = "rustc-rayon"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f32767f90d938f1b7199a174ef249ae1924f6e5bbdb9d112fea141e016f25b3a"
dependencies = [
3126
 "crossbeam-deque",
J
Josh Stone 已提交
3127
 "either",
I
Igor Matuszewski 已提交
3128
 "rustc-rayon-core",
J
John Kåre Alsaker 已提交
3129 3130
]

J
Josh Stone 已提交
3131 3132 3133 3134 3135 3136
[[package]]
name = "rustc-rayon-core"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2427831f0053ea3ea73559c8eabd893133a51b251d142bacee53c62a288cb3"
dependencies = [
3137
 "crossbeam-deque",
J
Josh Stone 已提交
3138 3139
 "crossbeam-queue",
 "crossbeam-utils 0.6.5",
Y
Yuki Okushi 已提交
3140
 "lazy_static",
J
Josh Stone 已提交
3141 3142 3143
 "num_cpus",
]

3144 3145
[[package]]
name = "rustc-std-workspace-alloc"
3146
version = "1.99.0"
3147
dependencies = [
3148
 "alloc",
3149 3150
]

3151 3152
[[package]]
name = "rustc-std-workspace-core"
3153
version = "1.99.0"
3154
dependencies = [
3155
 "core",
3156 3157
]

3158 3159
[[package]]
name = "rustc-std-workspace-std"
3160
version = "1.99.0"
3161 3162 3163 3164
dependencies = [
 "std",
]

A
Alex Crichton 已提交
3165 3166 3167 3168
[[package]]
name = "rustc-workspace-hack"
version = "1.0.0"
dependencies = [
3169
 "crossbeam-utils 0.7.2",
3170 3171
 "proc-macro2 1.0.3",
 "quote 1.0.2",
3172 3173
 "serde",
 "serde_json",
R
Ralf Jung 已提交
3174
 "smallvec 0.6.10",
crlf0710's avatar
crlf0710 已提交
3175
 "smallvec 1.4.0",
3176
 "syn 1.0.11",
A
Aaron Hill 已提交
3177
 "url 2.1.0",
E
Eric Huss 已提交
3178
 "winapi 0.3.8",
A
Alex Crichton 已提交
3179 3180
]

3181 3182 3183 3184
[[package]]
name = "rustc_apfloat"
version = "0.0.0"
dependencies = [
3185
 "bitflags",
crlf0710's avatar
crlf0710 已提交
3186
 "smallvec 1.4.0",
3187 3188
]

V
Vadim Petrochenkov 已提交
3189 3190 3191 3192 3193 3194 3195 3196
[[package]]
name = "rustc_arena"
version = "0.0.0"
dependencies = [
 "rustc_data_structures",
 "smallvec 1.4.0",
]

V
Vadim Petrochenkov 已提交
3197 3198 3199 3200
[[package]]
name = "rustc_ast"
version = "0.0.0"
dependencies = [
3201
 "bitflags",
V
Vadim Petrochenkov 已提交
3202 3203 3204 3205 3206
 "log",
 "rustc_data_structures",
 "rustc_index",
 "rustc_lexer",
 "rustc_macros",
V
Vadim Petrochenkov 已提交
3207
 "rustc_serialize",
V
Vadim Petrochenkov 已提交
3208 3209
 "rustc_span",
 "scoped-tls",
crlf0710's avatar
crlf0710 已提交
3210
 "smallvec 1.4.0",
V
Vadim Petrochenkov 已提交
3211 3212
]

3213 3214 3215 3216 3217
[[package]]
name = "rustc_ast_lowering"
version = "0.0.0"
dependencies = [
 "log",
V
Vadim Petrochenkov 已提交
3218
 "rustc_arena",
V
Vadim Petrochenkov 已提交
3219
 "rustc_ast",
3220
 "rustc_ast_pretty",
3221 3222
 "rustc_data_structures",
 "rustc_errors",
3223
 "rustc_hir",
3224
 "rustc_index",
3225
 "rustc_session",
3226 3227
 "rustc_span",
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3228
 "smallvec 1.4.0",
3229 3230
]

3231 3232 3233 3234
[[package]]
name = "rustc_ast_passes"
version = "0.0.0"
dependencies = [
3235
 "itertools 0.8.0",
3236
 "log",
V
Vadim Petrochenkov 已提交
3237
 "rustc_ast",
3238
 "rustc_ast_pretty",
3239
 "rustc_attr",
3240 3241
 "rustc_data_structures",
 "rustc_errors",
3242
 "rustc_feature",
3243 3244 3245 3246 3247
 "rustc_parse",
 "rustc_session",
 "rustc_span",
]

3248 3249 3250 3251 3252
[[package]]
name = "rustc_ast_pretty"
version = "0.0.0"
dependencies = [
 "log",
V
Vadim Petrochenkov 已提交
3253
 "rustc_ast",
3254
 "rustc_span",
A
Amanieu d'Antras 已提交
3255
 "rustc_target",
3256 3257
]

3258 3259 3260 3261
[[package]]
name = "rustc_attr"
version = "0.0.0"
dependencies = [
V
Vadim Petrochenkov 已提交
3262
 "rustc_ast",
3263
 "rustc_ast_pretty",
3264 3265 3266 3267
 "rustc_data_structures",
 "rustc_errors",
 "rustc_feature",
 "rustc_macros",
V
Vadim Petrochenkov 已提交
3268
 "rustc_serialize",
3269 3270
 "rustc_session",
 "rustc_span",
3271
 "version_check",
3272 3273
]

V
Vadim Petrochenkov 已提交
3274 3275 3276 3277 3278
[[package]]
name = "rustc_builtin_macros"
version = "0.0.0"
dependencies = [
 "log",
V
Vadim Petrochenkov 已提交
3279
 "rustc_ast",
3280
 "rustc_ast_pretty",
3281
 "rustc_attr",
V
Vadim Petrochenkov 已提交
3282 3283 3284 3285 3286
 "rustc_data_structures",
 "rustc_errors",
 "rustc_expand",
 "rustc_feature",
 "rustc_parse",
V
Vadim Petrochenkov 已提交
3287
 "rustc_parse_format",
3288
 "rustc_session",
V
Vadim Petrochenkov 已提交
3289 3290
 "rustc_span",
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3291
 "smallvec 1.4.0",
V
Vadim Petrochenkov 已提交
3292 3293
]

I
Irina Popa 已提交
3294 3295 3296 3297
[[package]]
name = "rustc_codegen_llvm"
version = "0.0.0"
dependencies = [
3298 3299 3300 3301
 "bitflags",
 "flate2",
 "libc",
 "log",
3302
 "measureme",
3303
 "rustc-demangle",
V
Vadim Petrochenkov 已提交
3304
 "rustc_ast",
3305
 "rustc_attr",
3306 3307 3308
 "rustc_codegen_ssa",
 "rustc_data_structures",
 "rustc_errors",
A
Aaron Hill 已提交
3309
 "rustc_feature",
3310
 "rustc_fs_util",
3311
 "rustc_hir",
3312 3313
 "rustc_incremental",
 "rustc_index",
3314
 "rustc_llvm",
M
Mazdak Farrokhzad 已提交
3315
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3316
 "rustc_serialize",
A
Aaron Hill 已提交
3317
 "rustc_session",
V
Vadim Petrochenkov 已提交
3318
 "rustc_span",
3319
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3320
 "smallvec 1.4.0",
I
Irina Popa 已提交
3321 3322
]

3323 3324 3325
[[package]]
name = "rustc_codegen_ssa"
version = "0.0.0"
3326
dependencies = [
3327 3328 3329 3330 3331 3332 3333
 "bitflags",
 "cc",
 "jobserver",
 "libc",
 "log",
 "memmap",
 "num_cpus",
3334
 "pathdiff",
3335
 "rustc_apfloat",
V
Vadim Petrochenkov 已提交
3336
 "rustc_ast",
3337
 "rustc_attr",
3338 3339 3340
 "rustc_data_structures",
 "rustc_errors",
 "rustc_fs_util",
3341
 "rustc_hir",
3342
 "rustc_incremental",
3343
 "rustc_index",
M
Mazdak Farrokhzad 已提交
3344
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3345
 "rustc_serialize",
3346
 "rustc_session",
V
Vadim Petrochenkov 已提交
3347
 "rustc_span",
3348
 "rustc_symbol_mangling",
3349 3350
 "rustc_target",
 "tempfile",
3351
]
3352

3353 3354 3355 3356
[[package]]
name = "rustc_data_structures"
version = "0.0.0"
dependencies = [
3357
 "bitflags",
3358
 "cfg-if",
3359
 "crossbeam-utils 0.7.2",
J
Jack Huey 已提交
3360
 "ena",
3361 3362
 "indexmap",
 "jobserver",
Y
Yuki Okushi 已提交
3363
 "lazy_static",
L
Luca Barbieri 已提交
3364
 "libc",
3365
 "log",
3366
 "measureme",
3367
 "once_cell",
3368
 "parking_lot 0.10.2",
3369
 "rustc-hash",
I
Igor Matuszewski 已提交
3370 3371
 "rustc-rayon",
 "rustc-rayon-core",
V
Vadim Petrochenkov 已提交
3372
 "rustc_graphviz",
C
csmoe 已提交
3373
 "rustc_index",
V
Vadim Petrochenkov 已提交
3374
 "rustc_serialize",
crlf0710's avatar
crlf0710 已提交
3375
 "smallvec 1.4.0",
3376
 "stable_deref_trait",
3377
 "stacker",
3378
 "winapi 0.3.8",
3379 3380 3381 3382 3383 3384
]

[[package]]
name = "rustc_driver"
version = "0.0.0"
dependencies = [
R
Ralf Jung 已提交
3385
 "env_logger 0.7.1",
Y
Yuki Okushi 已提交
3386
 "lazy_static",
L
Luca Barbieri 已提交
3387
 "libc",
3388
 "log",
V
Vadim Petrochenkov 已提交
3389
 "rustc_ast",
3390
 "rustc_ast_pretty",
V
Victor Ding 已提交
3391
 "rustc_codegen_ssa",
3392
 "rustc_data_structures",
3393
 "rustc_error_codes",
3394
 "rustc_errors",
3395
 "rustc_feature",
3396
 "rustc_hir",
3397
 "rustc_hir_pretty",
3398
 "rustc_interface",
3399
 "rustc_lint",
3400
 "rustc_metadata",
M
Mazdak Farrokhzad 已提交
3401
 "rustc_middle",
3402
 "rustc_mir",
3403
 "rustc_parse",
3404
 "rustc_plugin_impl",
3405
 "rustc_save_analysis",
V
Vadim Petrochenkov 已提交
3406
 "rustc_serialize",
3407
 "rustc_session",
V
Vadim Petrochenkov 已提交
3408
 "rustc_span",
3409
 "rustc_target",
3410
 "winapi 0.3.8",
3411 3412
]

G
regen  
Guillaume Gomez 已提交
3413 3414 3415 3416
[[package]]
name = "rustc_error_codes"
version = "0.0.0"

3417 3418 3419 3420
[[package]]
name = "rustc_errors"
version = "0.0.0"
dependencies = [
3421
 "annotate-snippets 0.8.0",
3422 3423 3424
 "atty",
 "log",
 "rustc_data_structures",
V
Vadim Petrochenkov 已提交
3425
 "rustc_serialize",
V
Vadim Petrochenkov 已提交
3426
 "rustc_span",
3427
 "termcolor",
3428
 "termize",
3429
 "unicode-width",
3430
 "winapi 0.3.8",
3431 3432
]

V
Vadim Petrochenkov 已提交
3433 3434 3435 3436 3437
[[package]]
name = "rustc_expand"
version = "0.0.0"
dependencies = [
 "log",
V
Vadim Petrochenkov 已提交
3438
 "rustc_ast",
3439
 "rustc_ast_passes",
3440
 "rustc_ast_pretty",
3441
 "rustc_attr",
V
Vadim Petrochenkov 已提交
3442 3443 3444 3445 3446
 "rustc_data_structures",
 "rustc_errors",
 "rustc_feature",
 "rustc_lexer",
 "rustc_parse",
V
Vadim Petrochenkov 已提交
3447
 "rustc_serialize",
3448
 "rustc_session",
V
Vadim Petrochenkov 已提交
3449
 "rustc_span",
crlf0710's avatar
crlf0710 已提交
3450
 "smallvec 1.4.0",
V
Vadim Petrochenkov 已提交
3451 3452
]

3453 3454 3455 3456
[[package]]
name = "rustc_feature"
version = "0.0.0"
dependencies = [
Y
Yuki Okushi 已提交
3457
 "lazy_static",
3458
 "rustc_data_structures",
V
Vadim Petrochenkov 已提交
3459
 "rustc_span",
3460 3461
]

3462 3463 3464 3465
[[package]]
name = "rustc_fs_util"
version = "0.0.0"

V
Vadim Petrochenkov 已提交
3466 3467 3468 3469
[[package]]
name = "rustc_graphviz"
version = "0.0.0"

3470 3471 3472 3473
[[package]]
name = "rustc_hir"
version = "0.0.0"
dependencies = [
Y
Yuki Okushi 已提交
3474
 "lazy_static",
3475
 "log",
V
Vadim Petrochenkov 已提交
3476
 "rustc_ast",
3477 3478 3479
 "rustc_data_structures",
 "rustc_index",
 "rustc_macros",
V
Vadim Petrochenkov 已提交
3480
 "rustc_serialize",
3481 3482
 "rustc_span",
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3483
 "smallvec 1.4.0",
3484 3485
]

3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496
[[package]]
name = "rustc_hir_pretty"
version = "0.0.0"
dependencies = [
 "rustc_ast",
 "rustc_ast_pretty",
 "rustc_hir",
 "rustc_span",
 "rustc_target",
]

3497 3498 3499 3500
[[package]]
name = "rustc_incremental"
version = "0.0.0"
dependencies = [
3501
 "log",
3502
 "rand 0.7.3",
V
Vadim Petrochenkov 已提交
3503
 "rustc_ast",
3504 3505
 "rustc_data_structures",
 "rustc_fs_util",
V
Vadim Petrochenkov 已提交
3506
 "rustc_graphviz",
3507
 "rustc_hir",
M
Mazdak Farrokhzad 已提交
3508
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3509
 "rustc_serialize",
3510
 "rustc_session",
V
Vadim Petrochenkov 已提交
3511
 "rustc_span",
3512 3513
]

C
csmoe 已提交
3514 3515 3516 3517
[[package]]
name = "rustc_index"
version = "0.0.0"
dependencies = [
3518
 "arrayvec 0.5.1",
V
Vadim Petrochenkov 已提交
3519
 "rustc_serialize",
C
csmoe 已提交
3520 3521
]

C
Camille GILLOT 已提交
3522 3523 3524 3525 3526
[[package]]
name = "rustc_infer"
version = "0.0.0"
dependencies = [
 "log",
V
Vadim Petrochenkov 已提交
3527
 "rustc_ast",
C
Camille GILLOT 已提交
3528 3529
 "rustc_data_structures",
 "rustc_errors",
V
Vadim Petrochenkov 已提交
3530
 "rustc_graphviz",
C
Camille GILLOT 已提交
3531 3532 3533
 "rustc_hir",
 "rustc_index",
 "rustc_macros",
M
Mazdak Farrokhzad 已提交
3534
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3535
 "rustc_serialize",
3536
 "rustc_session",
C
Camille GILLOT 已提交
3537 3538
 "rustc_span",
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3539
 "smallvec 1.4.0",
C
Camille GILLOT 已提交
3540 3541
]

3542 3543 3544 3545
[[package]]
name = "rustc_interface"
version = "0.0.0"
dependencies = [
L
Luca Barbieri 已提交
3546
 "libc",
3547
 "log",
3548
 "once_cell",
I
Igor Matuszewski 已提交
3549
 "rustc-rayon",
V
Vadim Petrochenkov 已提交
3550
 "rustc_ast",
3551
 "rustc_ast_lowering",
3552
 "rustc_ast_passes",
3553
 "rustc_attr",
V
Vadim Petrochenkov 已提交
3554
 "rustc_builtin_macros",
3555
 "rustc_codegen_llvm",
3556 3557 3558
 "rustc_codegen_ssa",
 "rustc_data_structures",
 "rustc_errors",
V
Vadim Petrochenkov 已提交
3559
 "rustc_expand",
3560
 "rustc_hir",
3561 3562 3563
 "rustc_incremental",
 "rustc_lint",
 "rustc_metadata",
M
Mazdak Farrokhzad 已提交
3564
 "rustc_middle",
3565
 "rustc_mir",
3566
 "rustc_mir_build",
3567
 "rustc_parse",
3568
 "rustc_passes",
3569
 "rustc_plugin_impl",
3570 3571
 "rustc_privacy",
 "rustc_resolve",
V
Vadim Petrochenkov 已提交
3572
 "rustc_serialize",
3573
 "rustc_session",
V
Vadim Petrochenkov 已提交
3574
 "rustc_span",
3575
 "rustc_symbol_mangling",
3576
 "rustc_target",
3577
 "rustc_trait_selection",
3578
 "rustc_traits",
C
Camille GILLOT 已提交
3579
 "rustc_ty",
3580
 "rustc_typeck",
crlf0710's avatar
crlf0710 已提交
3581
 "smallvec 1.4.0",
3582
 "tempfile",
3583
 "winapi 0.3.8",
3584 3585
]

A
Aleksey Kladov 已提交
3586 3587 3588 3589
[[package]]
name = "rustc_lexer"
version = "0.1.0"
dependencies = [
3590
 "unicode-xid 0.2.0",
A
Aleksey Kladov 已提交
3591 3592
]

3593 3594 3595 3596
[[package]]
name = "rustc_lint"
version = "0.0.0"
dependencies = [
3597
 "log",
V
Vadim Petrochenkov 已提交
3598
 "rustc_ast",
3599
 "rustc_ast_pretty",
3600
 "rustc_attr",
3601
 "rustc_data_structures",
3602
 "rustc_errors",
3603
 "rustc_feature",
3604
 "rustc_hir",
3605
 "rustc_index",
M
Mazdak Farrokhzad 已提交
3606
 "rustc_middle",
3607
 "rustc_session",
V
Vadim Petrochenkov 已提交
3608
 "rustc_span",
3609
 "rustc_target",
3610
 "rustc_trait_selection",
crlf0710's avatar
crlf0710 已提交
3611
 "unicode-security",
3612 3613 3614 3615 3616 3617
]

[[package]]
name = "rustc_llvm"
version = "0.0.0"
dependencies = [
3618 3619
 "build_helper",
 "cc",
3620
 "libc",
3621 3622
]

J
John Kåre Alsaker 已提交
3623 3624 3625 3626
[[package]]
name = "rustc_macros"
version = "0.1.0"
dependencies = [
3627 3628
 "proc-macro2 1.0.3",
 "quote 1.0.2",
I
Igor Matuszewski 已提交
3629
 "syn 1.0.11",
3630
 "synstructure",
J
John Kåre Alsaker 已提交
3631 3632
]

3633 3634 3635 3636
[[package]]
name = "rustc_metadata"
version = "0.0.0"
dependencies = [
3637
 "flate2",
L
Luca Barbieri 已提交
3638
 "libc",
3639 3640
 "log",
 "memmap",
V
Vadim Petrochenkov 已提交
3641
 "rustc_ast",
3642
 "rustc_attr",
3643 3644
 "rustc_data_structures",
 "rustc_errors",
V
Vadim Petrochenkov 已提交
3645
 "rustc_expand",
3646
 "rustc_hir",
3647
 "rustc_hir_pretty",
3648
 "rustc_index",
M
Mazdak Farrokhzad 已提交
3649
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3650
 "rustc_serialize",
3651
 "rustc_session",
V
Vadim Petrochenkov 已提交
3652
 "rustc_span",
3653
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3654
 "smallvec 1.4.0",
3655
 "stable_deref_trait",
3656
 "winapi 0.3.8",
3657 3658
]

M
Mazdak Farrokhzad 已提交
3659 3660 3661 3662 3663 3664
[[package]]
name = "rustc_middle"
version = "0.0.0"
dependencies = [
 "bitflags",
 "byteorder",
J
Jack Huey 已提交
3665
 "chalk-ir",
M
Mazdak Farrokhzad 已提交
3666 3667 3668 3669 3670
 "log",
 "measureme",
 "polonius-engine",
 "rustc-rayon-core",
 "rustc_apfloat",
V
Vadim Petrochenkov 已提交
3671
 "rustc_arena",
M
Mazdak Farrokhzad 已提交
3672 3673 3674 3675 3676 3677 3678 3679 3680
 "rustc_ast",
 "rustc_attr",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_feature",
 "rustc_hir",
 "rustc_index",
 "rustc_macros",
 "rustc_query_system",
V
Vadim Petrochenkov 已提交
3681
 "rustc_serialize",
M
Mazdak Farrokhzad 已提交
3682 3683 3684 3685
 "rustc_session",
 "rustc_span",
 "rustc_target",
 "scoped-tls",
crlf0710's avatar
crlf0710 已提交
3686
 "smallvec 1.4.0",
M
Mazdak Farrokhzad 已提交
3687 3688
]

3689 3690 3691 3692
[[package]]
name = "rustc_mir"
version = "0.0.0"
dependencies = [
3693
 "either",
3694
 "itertools 0.8.0",
3695 3696 3697 3698
 "log",
 "log_settings",
 "polonius-engine",
 "rustc_apfloat",
V
Vadim Petrochenkov 已提交
3699
 "rustc_ast",
3700
 "rustc_attr",
3701 3702
 "rustc_data_structures",
 "rustc_errors",
V
Vadim Petrochenkov 已提交
3703
 "rustc_graphviz",
3704
 "rustc_hir",
3705
 "rustc_index",
C
Camille GILLOT 已提交
3706
 "rustc_infer",
3707
 "rustc_lexer",
3708
 "rustc_macros",
M
Mazdak Farrokhzad 已提交
3709
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3710
 "rustc_serialize",
3711
 "rustc_session",
V
Vadim Petrochenkov 已提交
3712
 "rustc_span",
3713
 "rustc_target",
3714
 "rustc_trait_selection",
crlf0710's avatar
crlf0710 已提交
3715
 "smallvec 1.4.0",
3716 3717
]

3718 3719 3720 3721 3722 3723
[[package]]
name = "rustc_mir_build"
version = "0.0.0"
dependencies = [
 "log",
 "rustc_apfloat",
V
Vadim Petrochenkov 已提交
3724
 "rustc_arena",
V
Vadim Petrochenkov 已提交
3725
 "rustc_ast",
3726
 "rustc_attr",
3727 3728 3729 3730
 "rustc_data_structures",
 "rustc_errors",
 "rustc_hir",
 "rustc_index",
C
Camille GILLOT 已提交
3731
 "rustc_infer",
M
Mazdak Farrokhzad 已提交
3732
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3733
 "rustc_serialize",
3734
 "rustc_session",
3735 3736
 "rustc_span",
 "rustc_target",
3737
 "rustc_trait_selection",
crlf0710's avatar
crlf0710 已提交
3738
 "smallvec 1.4.0",
3739 3740
]

3741 3742 3743 3744 3745 3746
[[package]]
name = "rustc_parse"
version = "0.0.0"
dependencies = [
 "bitflags",
 "log",
V
Vadim Petrochenkov 已提交
3747
 "rustc_ast",
3748
 "rustc_ast_pretty",
3749 3750
 "rustc_data_structures",
 "rustc_errors",
3751
 "rustc_feature",
3752
 "rustc_lexer",
3753
 "rustc_session",
V
Vadim Petrochenkov 已提交
3754
 "rustc_span",
3755
 "unicode-normalization",
3756 3757
]

V
Vadim Petrochenkov 已提交
3758 3759 3760 3761 3762 3763 3764 3765
[[package]]
name = "rustc_parse_format"
version = "0.0.0"
dependencies = [
 "rustc_lexer",
 "rustc_span",
]

3766 3767 3768 3769
[[package]]
name = "rustc_passes"
version = "0.0.0"
dependencies = [
3770
 "log",
V
Vadim Petrochenkov 已提交
3771
 "rustc_ast",
3772
 "rustc_attr",
3773 3774
 "rustc_data_structures",
 "rustc_errors",
3775
 "rustc_hir",
3776
 "rustc_index",
M
Mazdak Farrokhzad 已提交
3777
 "rustc_middle",
3778
 "rustc_session",
V
Vadim Petrochenkov 已提交
3779
 "rustc_span",
3780
 "rustc_target",
3781
 "rustc_trait_selection",
3782 3783 3784
]

[[package]]
3785
name = "rustc_plugin_impl"
3786 3787
version = "0.0.0"
dependencies = [
V
Vadim Petrochenkov 已提交
3788
 "rustc_ast",
3789
 "rustc_errors",
3790
 "rustc_hir",
3791
 "rustc_lint",
3792
 "rustc_metadata",
M
Mazdak Farrokhzad 已提交
3793
 "rustc_middle",
3794
 "rustc_session",
V
Vadim Petrochenkov 已提交
3795
 "rustc_span",
3796 3797 3798 3799 3800 3801
]

[[package]]
name = "rustc_privacy"
version = "0.0.0"
dependencies = [
3802
 "log",
3803
 "rustc_attr",
3804
 "rustc_data_structures",
3805
 "rustc_errors",
3806
 "rustc_hir",
M
Mazdak Farrokhzad 已提交
3807
 "rustc_middle",
3808
 "rustc_session",
V
Vadim Petrochenkov 已提交
3809
 "rustc_span",
3810
 "rustc_typeck",
3811 3812
]

3813 3814 3815 3816 3817
[[package]]
name = "rustc_query_system"
version = "0.0.0"
dependencies = [
 "log",
3818
 "parking_lot 0.10.2",
3819
 "rustc-rayon-core",
V
Vadim Petrochenkov 已提交
3820
 "rustc_arena",
3821 3822 3823
 "rustc_data_structures",
 "rustc_errors",
 "rustc_index",
V
Vadim Petrochenkov 已提交
3824
 "rustc_serialize",
3825
 "rustc_span",
crlf0710's avatar
crlf0710 已提交
3826
 "smallvec 1.4.0",
3827 3828
]

3829 3830 3831 3832
[[package]]
name = "rustc_resolve"
version = "0.0.0"
dependencies = [
3833 3834
 "bitflags",
 "log",
V
Vadim Petrochenkov 已提交
3835
 "rustc_arena",
V
Vadim Petrochenkov 已提交
3836
 "rustc_ast",
3837
 "rustc_ast_lowering",
3838
 "rustc_ast_pretty",
3839
 "rustc_attr",
3840 3841
 "rustc_data_structures",
 "rustc_errors",
V
Vadim Petrochenkov 已提交
3842
 "rustc_expand",
3843
 "rustc_feature",
3844
 "rustc_hir",
3845
 "rustc_index",
3846
 "rustc_metadata",
M
Mazdak Farrokhzad 已提交
3847
 "rustc_middle",
3848
 "rustc_session",
V
Vadim Petrochenkov 已提交
3849
 "rustc_span",
crlf0710's avatar
crlf0710 已提交
3850
 "smallvec 1.4.0",
3851 3852 3853 3854 3855 3856
]

[[package]]
name = "rustc_save_analysis"
version = "0.0.0"
dependencies = [
3857 3858 3859
 "log",
 "rls-data",
 "rls-span",
V
Vadim Petrochenkov 已提交
3860
 "rustc_ast",
3861
 "rustc_ast_pretty",
3862
 "rustc_data_structures",
3863
 "rustc_hir",
3864
 "rustc_hir_pretty",
M
Mazdak Farrokhzad 已提交
3865
 "rustc_middle",
3866
 "rustc_parse",
3867
 "rustc_session",
V
Vadim Petrochenkov 已提交
3868
 "rustc_span",
3869
 "serde_json",
3870 3871
]

V
Vadim Petrochenkov 已提交
3872 3873 3874 3875 3876 3877 3878 3879
[[package]]
name = "rustc_serialize"
version = "0.0.0"
dependencies = [
 "indexmap",
 "smallvec 1.4.0",
]

M
Mark Rousskov 已提交
3880 3881 3882 3883
[[package]]
name = "rustc_session"
version = "0.0.0"
dependencies = [
3884
 "bitflags",
L
Luca Barbieri 已提交
3885
 "getopts",
M
Mark Rousskov 已提交
3886
 "log",
M
Mark Rousskov 已提交
3887
 "num_cpus",
V
Vadim Petrochenkov 已提交
3888
 "rustc_ast",
M
Mark Rousskov 已提交
3889 3890
 "rustc_data_structures",
 "rustc_errors",
M
Mark Rousskov 已提交
3891 3892
 "rustc_feature",
 "rustc_fs_util",
V
Vadim Petrochenkov 已提交
3893
 "rustc_serialize",
V
Vadim Petrochenkov 已提交
3894
 "rustc_span",
M
Mark Rousskov 已提交
3895
 "rustc_target",
V
Vadim Petrochenkov 已提交
3896 3897 3898 3899 3900 3901 3902 3903
]

[[package]]
name = "rustc_span"
version = "0.0.0"
dependencies = [
 "cfg-if",
 "log",
3904
 "md-5",
V
Vadim Petrochenkov 已提交
3905
 "rustc_arena",
V
Vadim Petrochenkov 已提交
3906 3907 3908
 "rustc_data_structures",
 "rustc_index",
 "rustc_macros",
V
Vadim Petrochenkov 已提交
3909
 "rustc_serialize",
V
Vadim Petrochenkov 已提交
3910
 "scoped-tls",
3911
 "sha-1",
V
Vadim Petrochenkov 已提交
3912
 "unicode-width",
M
Mark Rousskov 已提交
3913 3914
]

3915 3916 3917 3918 3919 3920 3921 3922 3923 3924
[[package]]
name = "rustc_symbol_mangling"
version = "0.0.0"
dependencies = [
 "log",
 "punycode",
 "rustc-demangle",
 "rustc_ast",
 "rustc_data_structures",
 "rustc_hir",
M
Mazdak Farrokhzad 已提交
3925
 "rustc_middle",
3926 3927 3928 3929 3930
 "rustc_session",
 "rustc_span",
 "rustc_target",
]

3931 3932 3933 3934
[[package]]
name = "rustc_target"
version = "0.0.0"
dependencies = [
3935 3936 3937
 "bitflags",
 "log",
 "rustc_data_structures",
3938
 "rustc_index",
3939
 "rustc_macros",
V
Vadim Petrochenkov 已提交
3940
 "rustc_serialize",
V
Vadim Petrochenkov 已提交
3941
 "rustc_span",
3942 3943
]

M
Matthias Krüger 已提交
3944 3945
[[package]]
name = "rustc_tools_util"
I
Igor Matuszewski 已提交
3946
version = "0.2.0"
3947 3948 3949

[[package]]
name = "rustc_tools_util"
O
Oliver Scherer 已提交
3950
version = "0.2.0"
I
Igor Matuszewski 已提交
3951
source = "registry+https://github.com/rust-lang/crates.io-index"
3952
checksum = "b725dadae9fabc488df69a287f5a99c5eaf5d10853842a8a3dfac52476f544ee"
M
Matthias Krüger 已提交
3953

3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966
[[package]]
name = "rustc_trait_selection"
version = "0.0.0"
dependencies = [
 "log",
 "rustc_ast",
 "rustc_attr",
 "rustc_data_structures",
 "rustc_errors",
 "rustc_hir",
 "rustc_index",
 "rustc_infer",
 "rustc_macros",
M
Mazdak Farrokhzad 已提交
3967
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3968
 "rustc_parse_format",
3969 3970 3971
 "rustc_session",
 "rustc_span",
 "rustc_target",
crlf0710's avatar
crlf0710 已提交
3972
 "smallvec 1.4.0",
3973 3974
]

3975 3976 3977 3978
[[package]]
name = "rustc_traits"
version = "0.0.0"
dependencies = [
J
Jack Huey 已提交
3979 3980
 "chalk-ir",
 "chalk-solve",
3981
 "log",
V
Vadim Petrochenkov 已提交
3982
 "rustc_ast",
3983
 "rustc_data_structures",
3984
 "rustc_hir",
J
Jack Huey 已提交
3985
 "rustc_index",
C
Camille GILLOT 已提交
3986
 "rustc_infer",
M
Mazdak Farrokhzad 已提交
3987
 "rustc_middle",
V
Vadim Petrochenkov 已提交
3988
 "rustc_span",
3989
 "rustc_trait_selection",
crlf0710's avatar
crlf0710 已提交
3990
 "smallvec 1.4.0",
3991 3992
]

C
Camille GILLOT 已提交
3993 3994 3995 3996 3997 3998
[[package]]
name = "rustc_ty"
version = "0.0.0"
dependencies = [
 "log",
 "rustc_data_structures",
3999
 "rustc_errors",
C
Camille GILLOT 已提交
4000
 "rustc_hir",
C
Camille GILLOT 已提交
4001
 "rustc_infer",
M
Mazdak Farrokhzad 已提交
4002
 "rustc_middle",
4003
 "rustc_session",
C
Camille GILLOT 已提交
4004
 "rustc_span",
4005
 "rustc_target",
4006
 "rustc_trait_selection",
C
Camille GILLOT 已提交
4007
]
4008

4009 4010 4011 4012
[[package]]
name = "rustc_typeck"
version = "0.0.0"
dependencies = [
4013
 "log",
V
Vadim Petrochenkov 已提交
4014
 "rustc_arena",
V
Vadim Petrochenkov 已提交
4015
 "rustc_ast",
4016
 "rustc_attr",
4017 4018
 "rustc_data_structures",
 "rustc_errors",
4019
 "rustc_hir",
4020
 "rustc_hir_pretty",
4021
 "rustc_index",
C
Camille GILLOT 已提交
4022
 "rustc_infer",
M
Mazdak Farrokhzad 已提交
4023
 "rustc_middle",
4024
 "rustc_session",
V
Vadim Petrochenkov 已提交
4025
 "rustc_span",
4026
 "rustc_target",
4027
 "rustc_trait_selection",
crlf0710's avatar
crlf0710 已提交
4028
 "smallvec 1.4.0",
4029 4030
]

4031 4032
[[package]]
name = "rustc_version"
4033
version = "0.2.3"
4034
source = "registry+https://github.com/rust-lang/crates.io-index"
4035
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
4036
dependencies = [
E
Eric Huss 已提交
4037
 "semver 0.9.0",
4038 4039
]

4040 4041 4042 4043
[[package]]
name = "rustdoc"
version = "0.0.0"
dependencies = [
4044
 "itertools 0.8.0",
4045
 "minifier",
E
Eric Huss 已提交
4046
 "pulldown-cmark",
I
Igor Matuszewski 已提交
4047
 "rustc-rayon",
4048 4049
 "serde",
 "serde_json",
4050
 "tempfile",
M
Mark Simulacrum 已提交
4051 4052
]

G
Guillaume Gomez 已提交
4053 4054 4055 4056
[[package]]
name = "rustdoc-themes"
version = "0.1.0"

M
Mark Simulacrum 已提交
4057 4058 4059 4060
[[package]]
name = "rustdoc-tool"
version = "0.0.0"
dependencies = [
4061
 "rustdoc",
4062 4063
]

E
Eric Huss 已提交
4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075
[[package]]
name = "rustfix"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "804b11883a5ce0ad0378fbf95a8dea59ee6b51c331a73b8f471b6bdaa3bd40c1"
dependencies = [
 "anyhow",
 "log",
 "serde",
 "serde_json",
]

T
topecongiro 已提交
4076 4077
[[package]]
name = "rustfmt-config_proc_macro"
4078
version = "0.2.0"
T
topecongiro 已提交
4079
dependencies = [
4080 4081
 "proc-macro2 1.0.3",
 "quote 1.0.2",
4082
 "serde",
I
Igor Matuszewski 已提交
4083
 "syn 1.0.11",
T
topecongiro 已提交
4084 4085
]

I
Igor Matuszewski 已提交
4086 4087
[[package]]
name = "rustfmt-nightly"
I
Igor Matuszewski 已提交
4088
version = "1.4.18"
I
Igor Matuszewski 已提交
4089
dependencies = [
4090
 "annotate-snippets 0.6.1",
I
Igor Matuszewski 已提交
4091
 "anyhow",
4092
 "bytecount",
M
Manish Goregaokar 已提交
4093
 "cargo_metadata 0.8.0",
4094 4095 4096
 "derive-new",
 "diff",
 "dirs",
A
Alex Crichton 已提交
4097
 "env_logger 0.6.2",
4098 4099 4100
 "getopts",
 "ignore",
 "itertools 0.8.0",
Y
Yuki Okushi 已提交
4101
 "lazy_static",
4102 4103
 "log",
 "regex",
4104
 "rustc-ap-rustc_ast",
I
Igor Matuszewski 已提交
4105
 "rustc-ap-rustc_ast_pretty",
4106
 "rustc-ap-rustc_attr",
I
Igor Matuszewski 已提交
4107 4108
 "rustc-ap-rustc_data_structures",
 "rustc-ap-rustc_errors",
4109
 "rustc-ap-rustc_expand",
I
Igor Matuszewski 已提交
4110 4111 4112
 "rustc-ap-rustc_parse",
 "rustc-ap-rustc_session",
 "rustc-ap-rustc_span",
4113 4114 4115 4116
 "rustc-workspace-hack",
 "rustfmt-config_proc_macro",
 "serde",
 "serde_json",
E
Eric Huss 已提交
4117
 "structopt",
4118
 "term 0.6.0",
I
Igor Matuszewski 已提交
4119
 "thiserror",
E
Eric Huss 已提交
4120
 "toml",
4121 4122 4123
 "unicode-segmentation",
 "unicode-width",
 "unicode_categories",
I
Igor Matuszewski 已提交
4124 4125
]

A
Alex Crichton 已提交
4126 4127
[[package]]
name = "ryu"
E
Eric Huss 已提交
4128
version = "1.0.0"
A
Alex Crichton 已提交
4129
source = "registry+https://github.com/rust-lang/crates.io-index"
4130
checksum = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997"
A
Alex Crichton 已提交
4131

4132 4133
[[package]]
name = "same-file"
4134
version = "1.0.4"
4135
source = "registry+https://github.com/rust-lang/crates.io-index"
4136
checksum = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267"
4137
dependencies = [
4138
 "winapi-util",
4139 4140 4141 4142
]

[[package]]
name = "schannel"
4143
version = "0.1.16"
4144
source = "registry+https://github.com/rust-lang/crates.io-index"
4145
checksum = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021"
4146
dependencies = [
Y
Yuki Okushi 已提交
4147
 "lazy_static",
E
Eric Huss 已提交
4148
 "winapi 0.3.8",
4149 4150
]

M
Marcel Hellwig 已提交
4151 4152 4153 4154
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4155
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
M
Marcel Hellwig 已提交
4156

F
flip1995 已提交
4157 4158 4159 4160
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
4161
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
F
flip1995 已提交
4162

R
Ralf Jung 已提交
4163 4164 4165 4166
[[package]]
name = "scopeguard"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4167
checksum = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
R
Ralf Jung 已提交
4168

4169 4170 4171 4172
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4173
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
4174
dependencies = [
4175 4176
 "semver-parser",
 "serde",
4177 4178
]

E
Eric Huss 已提交
4179 4180 4181 4182 4183 4184 4185 4186 4187 4188
[[package]]
name = "semver"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "394cec28fa623e00903caf7ba4fa6fb9a0e260280bb8cdbbba029611108a0190"
dependencies = [
 "semver-parser",
 "serde",
]

4189 4190 4191 4192
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4193
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
4194 4195 4196

[[package]]
name = "serde"
F
flip1995 已提交
4197
version = "1.0.99"
4198
source = "registry+https://github.com/rust-lang/crates.io-index"
F
flip1995 已提交
4199
checksum = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f"
E
Eric Huss 已提交
4200
dependencies = [
4201
 "serde_derive",
E
Eric Huss 已提交
4202
]
4203 4204 4205

[[package]]
name = "serde_derive"
I
Igor Matuszewski 已提交
4206
version = "1.0.106"
4207
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
4208
checksum = "9e549e3abf4fb8621bd1609f11dfc9f5e50320802273b12f3811a67e6716ea6c"
4209
dependencies = [
I
Igor Matuszewski 已提交
4210 4211 4212
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
4213
]
S
Steve Klabnik 已提交
4214

F
flip1995 已提交
4215 4216 4217 4218 4219 4220 4221 4222 4223
[[package]]
name = "serde_ignored"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c24bbb8f4b81834f618cd3e28698235c2fba06ddf7f4fbe30519dd081364e59"
dependencies = [
 "serde",
]

S
Steve Klabnik 已提交
4224 4225
[[package]]
name = "serde_json"
E
Eric Huss 已提交
4226
version = "1.0.40"
S
Steve Klabnik 已提交
4227
source = "registry+https://github.com/rust-lang/crates.io-index"
4228
checksum = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704"
S
Steve Klabnik 已提交
4229
dependencies = [
4230 4231 4232
 "itoa",
 "ryu",
 "serde",
S
Steve Klabnik 已提交
4233 4234
]

4235 4236 4237 4238 4239 4240 4241 4242
[[package]]
name = "serde_repr"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd02c7587ec314570041b2754829f84d873ced14a96d1fd1823531e11db40573"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
I
Igor Matuszewski 已提交
4243
 "syn 1.0.11",
4244 4245
]

4246 4247
[[package]]
name = "sha-1"
4248
version = "0.8.2"
4249
source = "registry+https://github.com/rust-lang/crates.io-index"
4250
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
4251
dependencies = [
4252 4253 4254
 "block-buffer",
 "digest",
 "fake-simd",
4255
 "opaque-debug",
4256 4257
]

4258 4259
[[package]]
name = "shell-escape"
A
Alex Crichton 已提交
4260
version = "0.1.4"
4261
source = "registry+https://github.com/rust-lang/crates.io-index"
4262
checksum = "170a13e64f2a51b77a45702ba77287f5c6829375b04a69cf2222acd17d0cfab9"
4263

S
steveklabnik 已提交
4264 4265 4266 4267
[[package]]
name = "shlex"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4268
checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
S
steveklabnik 已提交
4269

4270 4271 4272 4273
[[package]]
name = "signal-hook"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
4274
checksum = "1f272d1b7586bec132ed427f532dd418d8beca1ca7f2caf7df35569b1415a4b4"
4275
dependencies = [
4276 4277
 "arc-swap",
 "libc",
4278 4279
]

S
steveklabnik 已提交
4280 4281 4282 4283
[[package]]
name = "siphasher"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4284
checksum = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537"
S
steveklabnik 已提交
4285

E
Eric Huss 已提交
4286 4287
[[package]]
name = "sized-chunks"
E
Eric Huss 已提交
4288
version = "0.6.2"
E
Eric Huss 已提交
4289
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
4290
checksum = "1ec31ceca5644fa6d444cc77548b88b67f46db6f7c71683b0f9336e671830d2f"
E
Eric Huss 已提交
4291
dependencies = [
E
Eric Huss 已提交
4292
 "bitmaps",
4293
 "typenum",
E
Eric Huss 已提交
4294 4295
]

4296 4297 4298 4299
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
4300
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
4301

4302 4303
[[package]]
name = "smallvec"
E
Eric Huss 已提交
4304
version = "0.6.10"
4305
source = "registry+https://github.com/rust-lang/crates.io-index"
4306
checksum = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
4307

R
Ralf Jung 已提交
4308 4309
[[package]]
name = "smallvec"
crlf0710's avatar
crlf0710 已提交
4310
version = "1.4.0"
R
Ralf Jung 已提交
4311
source = "registry+https://github.com/rust-lang/crates.io-index"
crlf0710's avatar
crlf0710 已提交
4312
checksum = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
R
Ralf Jung 已提交
4313

M
Mark Simulacrum 已提交
4314 4315
[[package]]
name = "socket2"
P
Patrick Mooney 已提交
4316
version = "0.3.12"
M
Mark Simulacrum 已提交
4317
source = "registry+https://github.com/rust-lang/crates.io-index"
P
Patrick Mooney 已提交
4318
checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
M
Mark Simulacrum 已提交
4319
dependencies = [
4320 4321 4322
 "cfg-if",
 "libc",
 "redox_syscall",
E
Eric Huss 已提交
4323
 "winapi 0.3.8",
M
Mark Simulacrum 已提交
4324 4325
]

4326 4327
[[package]]
name = "stable_deref_trait"
A
Alex Crichton 已提交
4328
version = "1.1.0"
4329
source = "registry+https://github.com/rust-lang/crates.io-index"
4330
checksum = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa"
4331

4332 4333
[[package]]
name = "stacker"
4334
version = "0.1.9"
4335
source = "registry+https://github.com/rust-lang/crates.io-index"
4336
checksum = "72dd941b456e1c006d6b9f27c526d5b69281288aeea8cba82c19d3843d8ccdd2"
4337 4338 4339 4340 4341 4342 4343 4344
dependencies = [
 "cc",
 "cfg-if",
 "libc",
 "psm",
 "winapi 0.3.8",
]

4345 4346 4347 4348
[[package]]
name = "std"
version = "0.0.0"
dependencies = [
4349
 "alloc",
4350
 "backtrace",
4351 4352 4353 4354 4355
 "cfg-if",
 "compiler_builtins",
 "core",
 "dlmalloc",
 "fortanix-sgx-abi",
4356
 "hashbrown",
4357
 "hermit-abi",
4358 4359 4360 4361
 "libc",
 "panic_abort",
 "panic_unwind",
 "profiler_builtins",
4362
 "rand 0.7.3",
4363
 "unwind",
4364
 "wasi",
4365 4366
]

S
steveklabnik 已提交
4367 4368
[[package]]
name = "string_cache"
A
Alex Crichton 已提交
4369
version = "0.7.3"
S
steveklabnik 已提交
4370
source = "registry+https://github.com/rust-lang/crates.io-index"
4371
checksum = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423"
S
steveklabnik 已提交
4372
dependencies = [
Y
Yuki Okushi 已提交
4373
 "lazy_static",
4374 4375 4376 4377 4378 4379
 "new_debug_unreachable",
 "phf_shared",
 "precomputed-hash",
 "serde",
 "string_cache_codegen",
 "string_cache_shared",
S
steveklabnik 已提交
4380 4381 4382 4383
]

[[package]]
name = "string_cache_codegen"
4384
version = "0.4.2"
S
steveklabnik 已提交
4385
source = "registry+https://github.com/rust-lang/crates.io-index"
4386
checksum = "1eea1eee654ef80933142157fdad9dd8bc43cf7c74e999e369263496f04ff4da"
S
steveklabnik 已提交
4387
dependencies = [
4388 4389
 "phf_generator",
 "phf_shared",
4390 4391
 "proc-macro2 0.4.30",
 "quote 0.6.12",
4392
 "string_cache_shared",
S
steveklabnik 已提交
4393 4394 4395 4396 4397 4398
]

[[package]]
name = "string_cache_shared"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4399
checksum = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc"
S
steveklabnik 已提交
4400

E
Eric Huss 已提交
4401 4402 4403 4404
[[package]]
name = "strip-ansi-escapes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4405
checksum = "9d63676e2abafa709460982ddc02a3bb586b6d15a49b75c212e06edd3933acee"
E
Eric Huss 已提交
4406
dependencies = [
4407
 "vte",
E
Eric Huss 已提交
4408 4409
]

4410 4411
[[package]]
name = "strsim"
4412
version = "0.8.0"
4413
source = "registry+https://github.com/rust-lang/crates.io-index"
4414
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
4415

4416 4417 4418 4419 4420 4421 4422
[[package]]
name = "structopt"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ac9d6e93dd792b217bf89cda5c14566e3043960c6f9da890c2ba5d09d07804c"
dependencies = [
 "clap",
E
Eric Huss 已提交
4423
 "structopt-derive",
4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435
]

[[package]]
name = "structopt-derive"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ae9e5165d463a0dea76967d021f8d0f9316057bf5163aa2a4843790e842ff37"
dependencies = [
 "heck",
 "proc-macro-error",
 "proc-macro2 1.0.3",
 "quote 1.0.2",
I
Igor Matuszewski 已提交
4436
 "syn 1.0.11",
T
topecongiro 已提交
4437 4438
]

M
Matt Ickstadt 已提交
4439 4440
[[package]]
name = "strum"
4441
version = "0.11.0"
M
Matt Ickstadt 已提交
4442
source = "registry+https://github.com/rust-lang/crates.io-index"
4443
checksum = "f6c3a2071519ab6a48f465808c4c1ffdd00dfc8e93111d02b4fc5abab177676e"
M
Matt Ickstadt 已提交
4444 4445 4446

[[package]]
name = "strum_macros"
4447
version = "0.11.0"
M
Matt Ickstadt 已提交
4448
source = "registry+https://github.com/rust-lang/crates.io-index"
4449
checksum = "8baacebd7b7c9b864d83a6ba7a246232983e277b86fa5cdec77f565715a4b136"
M
Matt Ickstadt 已提交
4450
dependencies = [
4451
 "heck",
4452 4453 4454
 "proc-macro2 0.4.30",
 "quote 0.6.12",
 "syn 0.15.35",
M
Matt Ickstadt 已提交
4455 4456
]

N
Nick Cameron 已提交
4457 4458
[[package]]
name = "syn"
E
Eric Huss 已提交
4459
version = "0.15.35"
N
Nick Cameron 已提交
4460
source = "registry+https://github.com/rust-lang/crates.io-index"
4461
checksum = "641e117d55514d6d918490e47102f7e08d096fdde360247e4a10f7a91a8478d3"
N
Nick Cameron 已提交
4462
dependencies = [
4463 4464
 "proc-macro2 0.4.30",
 "quote 0.6.12",
4465
 "unicode-xid 0.1.0",
A
Alex Crichton 已提交
4466 4467
]

4468 4469
[[package]]
name = "syn"
I
Igor Matuszewski 已提交
4470
version = "1.0.11"
4471
source = "registry+https://github.com/rust-lang/crates.io-index"
I
Igor Matuszewski 已提交
4472
checksum = "dff0acdb207ae2fe6d5976617f887eb1e35a2ba52c13c7234c790960cdad9238"
4473 4474 4475 4476 4477 4478
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "unicode-xid 0.2.0",
]

4479 4480 4481 4482 4483 4484 4485 4486
[[package]]
name = "synstructure"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
I
Igor Matuszewski 已提交
4487
 "syn 1.0.11",
4488 4489 4490
 "unicode-xid 0.2.0",
]

4491 4492
[[package]]
name = "tar"
4493
version = "0.4.26"
4494
source = "registry+https://github.com/rust-lang/crates.io-index"
4495
checksum = "b3196bfbffbba3e57481b6ea32249fbaf590396a52505a2615adbb79d9d826d3"
4496
dependencies = [
4497 4498 4499 4500
 "filetime",
 "libc",
 "redox_syscall",
 "xattr",
4501 4502
]

A
Aleksey Kladov 已提交
4503 4504
[[package]]
name = "tempfile"
4505
version = "3.1.0"
A
Aleksey Kladov 已提交
4506
source = "registry+https://github.com/rust-lang/crates.io-index"
4507
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
A
Aleksey Kladov 已提交
4508
dependencies = [
4509 4510
 "cfg-if",
 "libc",
4511
 "rand 0.7.3",
4512 4513
 "redox_syscall",
 "remove_dir_all",
E
Eric Huss 已提交
4514
 "winapi 0.3.8",
A
Aleksey Kladov 已提交
4515 4516
]

S
steveklabnik 已提交
4517 4518 4519 4520
[[package]]
name = "tendril"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4521
checksum = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
S
steveklabnik 已提交
4522
dependencies = [
4523 4524 4525
 "futf",
 "mac",
 "utf-8",
S
steveklabnik 已提交
4526 4527
]

4528 4529 4530
[[package]]
name = "term"
version = "0.0.0"
4531 4532 4533 4534
dependencies = [
 "core",
 "std",
]
4535

I
Igor Matuszewski 已提交
4536 4537 4538 4539
[[package]]
name = "term"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
4540
checksum = "0dd90505d5006a4422d3520b30c781d480b3f36768c2fa2187c3e950bc110464"
I
Igor Matuszewski 已提交
4541
dependencies = [
4542 4543
 "byteorder",
 "dirs",
E
Eric Huss 已提交
4544
 "winapi 0.3.8",
I
Igor Matuszewski 已提交
4545 4546
]

4547 4548
[[package]]
name = "termcolor"
4549
version = "1.0.4"
4550
source = "registry+https://github.com/rust-lang/crates.io-index"
4551
checksum = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f"
4552
dependencies = [
4553
 "wincolor",
4554 4555
]

4556 4557 4558 4559 4560 4561 4562 4563 4564 4565
[[package]]
name = "termize"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1706be6b564323ce7092f5f7e6b118a14c8ef7ed0e69c8c5329c914a9f101295"
dependencies = [
 "libc",
 "winapi 0.3.8",
]

4566 4567 4568 4569
[[package]]
name = "test"
version = "0.0.0"
dependencies = [
E
Eric Huss 已提交
4570
 "cfg-if",
4571
 "core",
4572
 "getopts",
4573 4574 4575
 "libc",
 "panic_abort",
 "panic_unwind",
4576
 "proc_macro",
4577
 "std",
4578
 "term 0.0.0",
4579 4580
]

F
flip1995 已提交
4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591
[[package]]
name = "tester"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee72ec31009a42b53de9a6b7d8f462b493ab3b1e4767bda1fcdbb52127f13b6c"
dependencies = [
 "getopts",
 "libc",
 "term 0.6.0",
]

S
steveklabnik 已提交
4592 4593
[[package]]
name = "textwrap"
4594
version = "0.11.0"
S
steveklabnik 已提交
4595
source = "registry+https://github.com/rust-lang/crates.io-index"
4596
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
S
steveklabnik 已提交
4597
dependencies = [
4598
 "unicode-width",
S
steveklabnik 已提交
4599 4600
]

4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620
[[package]]
name = "thiserror"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9fb62ff737e573b1e677459bea6fd023cd5d6e868c3242d3cdf3ef2f0554824"
dependencies = [
 "thiserror-impl",
]

[[package]]
name = "thiserror-impl"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24069c0ba08aab54289d6a25f5036d94afc61e1538bbc42ae5501df141c9027d"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
]

I
Igor Matuszewski 已提交
4621 4622 4623 4624 4625 4626
[[package]]
name = "thread_local"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
dependencies = [
Y
Yuki Okushi 已提交
4627
 "lazy_static",
I
Igor Matuszewski 已提交
4628 4629
]

4630 4631 4632
[[package]]
name = "tidy"
version = "0.1.0"
4633
dependencies = [
4634
 "cargo_metadata 0.9.1",
Y
Yuki Okushi 已提交
4635
 "lazy_static",
4636 4637
 "regex",
 "walkdir",
4638
]
4639

A
Alex Crichton 已提交
4640 4641
[[package]]
name = "time"
E
Eric Huss 已提交
4642
version = "0.1.42"
A
Alex Crichton 已提交
4643
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
4644
checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
A
Alex Crichton 已提交
4645
dependencies = [
4646 4647
 "libc",
 "redox_syscall",
E
Eric Huss 已提交
4648
 "winapi 0.3.8",
A
Alex Crichton 已提交
4649 4650
]

4651 4652
[[package]]
name = "tokio"
4653
version = "0.1.22"
4654
source = "registry+https://github.com/rust-lang/crates.io-index"
4655
checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
4656
dependencies = [
4657 4658 4659 4660 4661 4662 4663 4664 4665 4666
 "bytes",
 "futures",
 "mio",
 "num_cpus",
 "tokio-codec",
 "tokio-current-thread",
 "tokio-executor",
 "tokio-fs",
 "tokio-io",
 "tokio-reactor",
4667
 "tokio-sync",
4668 4669 4670 4671 4672
 "tokio-tcp",
 "tokio-threadpool",
 "tokio-timer",
 "tokio-udp",
 "tokio-uds",
4673 4674 4675 4676 4677 4678
]

[[package]]
name = "tokio-codec"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4679
checksum = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f"
4680
dependencies = [
4681 4682 4683
 "bytes",
 "futures",
 "tokio-io",
4684 4685 4686 4687
]

[[package]]
name = "tokio-current-thread"
4688
version = "0.1.6"
4689
source = "registry+https://github.com/rust-lang/crates.io-index"
4690
checksum = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443"
4691
dependencies = [
4692 4693
 "futures",
 "tokio-executor",
4694 4695 4696 4697
]

[[package]]
name = "tokio-executor"
4698
version = "0.1.9"
4699
source = "registry+https://github.com/rust-lang/crates.io-index"
4700
checksum = "ca6df436c42b0c3330a82d855d2ef017cd793090ad550a6bc2184f4b933532ab"
4701
dependencies = [
4702 4703
 "crossbeam-utils 0.6.5",
 "futures",
4704 4705 4706 4707
]

[[package]]
name = "tokio-fs"
4708
version = "0.1.6"
4709
source = "registry+https://github.com/rust-lang/crates.io-index"
4710
checksum = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af"
4711
dependencies = [
4712 4713 4714
 "futures",
 "tokio-io",
 "tokio-threadpool",
4715 4716 4717 4718
]

[[package]]
name = "tokio-io"
4719
version = "0.1.12"
4720
source = "registry+https://github.com/rust-lang/crates.io-index"
4721
checksum = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926"
4722
dependencies = [
4723 4724 4725
 "bytes",
 "futures",
 "log",
4726 4727
]

4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740
[[package]]
name = "tokio-named-pipes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d282d483052288b2308ba5ee795f5673b159c9bdf63c385a05609da782a5eae"
dependencies = [
 "bytes",
 "futures",
 "mio",
 "mio-named-pipes",
 "tokio",
]

4741 4742
[[package]]
name = "tokio-process"
4743
version = "0.2.4"
4744
source = "registry+https://github.com/rust-lang/crates.io-index"
4745
checksum = "afbd6ef1b8cc2bd2c2b580d882774d443ebb1c6ceefe35ba9ea4ab586c89dbe8"
4746
dependencies = [
4747
 "crossbeam-queue",
4748
 "futures",
Y
Yuki Okushi 已提交
4749
 "lazy_static",
4750
 "libc",
4751
 "log",
4752 4753 4754 4755 4756
 "mio",
 "mio-named-pipes",
 "tokio-io",
 "tokio-reactor",
 "tokio-signal",
E
Eric Huss 已提交
4757
 "winapi 0.3.8",
4758 4759 4760 4761
]

[[package]]
name = "tokio-reactor"
4762
version = "0.1.11"
4763
source = "registry+https://github.com/rust-lang/crates.io-index"
4764
checksum = "6732fe6b53c8d11178dcb77ac6d9682af27fc6d4cb87789449152e5377377146"
4765
dependencies = [
4766 4767
 "crossbeam-utils 0.6.5",
 "futures",
Y
Yuki Okushi 已提交
4768
 "lazy_static",
4769 4770 4771
 "log",
 "mio",
 "num_cpus",
I
Igor Matuszewski 已提交
4772
 "parking_lot 0.9.0",
4773 4774 4775
 "slab",
 "tokio-executor",
 "tokio-io",
4776
 "tokio-sync",
4777 4778
]

4779 4780 4781 4782 4783 4784 4785 4786 4787
[[package]]
name = "tokio-service"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162"
dependencies = [
 "futures",
]

4788 4789 4790 4791
[[package]]
name = "tokio-signal"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
4792
checksum = "dd6dc5276ea05ce379a16de90083ec80836440d5ef8a6a39545a3207373b8296"
4793
dependencies = [
4794 4795 4796 4797 4798 4799 4800 4801
 "futures",
 "libc",
 "mio",
 "mio-uds",
 "signal-hook",
 "tokio-executor",
 "tokio-io",
 "tokio-reactor",
E
Eric Huss 已提交
4802
 "winapi 0.3.8",
4803 4804
]

4805 4806 4807 4808 4809 4810 4811 4812 4813 4814
[[package]]
name = "tokio-sync"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76"
dependencies = [
 "fnv",
 "futures",
]

4815 4816 4817 4818
[[package]]
name = "tokio-tcp"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
4819
checksum = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119"
4820
dependencies = [
4821 4822 4823 4824 4825 4826
 "bytes",
 "futures",
 "iovec",
 "mio",
 "tokio-io",
 "tokio-reactor",
4827 4828 4829 4830
]

[[package]]
name = "tokio-threadpool"
4831
version = "0.1.17"
4832
source = "registry+https://github.com/rust-lang/crates.io-index"
4833
checksum = "f0c32ffea4827978e9aa392d2f743d973c1dfa3730a2ed3f22ce1e6984da848c"
4834
dependencies = [
4835 4836
 "crossbeam-deque",
 "crossbeam-queue",
4837 4838
 "crossbeam-utils 0.6.5",
 "futures",
Y
Yuki Okushi 已提交
4839
 "lazy_static",
4840 4841
 "log",
 "num_cpus",
4842
 "slab",
4843
 "tokio-executor",
4844 4845 4846 4847
]

[[package]]
name = "tokio-timer"
4848
version = "0.2.12"
4849
source = "registry+https://github.com/rust-lang/crates.io-index"
4850
checksum = "1739638e364e558128461fc1ad84d997702c8e31c2e6b18fb99842268199e827"
4851
dependencies = [
4852 4853 4854 4855
 "crossbeam-utils 0.6.5",
 "futures",
 "slab",
 "tokio-executor",
4856 4857 4858 4859
]

[[package]]
name = "tokio-udp"
4860
version = "0.1.5"
4861
source = "registry+https://github.com/rust-lang/crates.io-index"
4862
checksum = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b"
4863
dependencies = [
4864 4865 4866 4867 4868 4869 4870
 "bytes",
 "futures",
 "log",
 "mio",
 "tokio-codec",
 "tokio-io",
 "tokio-reactor",
4871 4872 4873 4874 4875 4876
]

[[package]]
name = "tokio-uds"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
4877
checksum = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445"
4878
dependencies = [
4879 4880 4881 4882 4883 4884 4885 4886 4887 4888
 "bytes",
 "futures",
 "iovec",
 "libc",
 "log",
 "mio",
 "mio-uds",
 "tokio-codec",
 "tokio-io",
 "tokio-reactor",
4889 4890
]

E
Eric Huss 已提交
4891 4892
[[package]]
name = "toml"
F
flip1995 已提交
4893
version = "0.5.3"
E
Eric Huss 已提交
4894
source = "registry+https://github.com/rust-lang/crates.io-index"
F
flip1995 已提交
4895
checksum = "c7aabe75941d914b72bf3e5d3932ed92ce0664d49d8432305a8b547c37227724"
E
Eric Huss 已提交
4896
dependencies = [
4897
 "serde",
E
Eric Huss 已提交
4898 4899
]

J
Jack Huey 已提交
4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930
[[package]]
name = "tracing"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a41f40ed0e162c911ac6fcb53ecdc8134c46905fdbbae8c50add462a538b495f"
dependencies = [
 "cfg-if",
 "tracing-attributes",
 "tracing-core",
]

[[package]]
name = "tracing-attributes"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99bbad0de3fd923c9c3232ead88510b783e5a4d16a6154adffa3d53308de984c"
dependencies = [
 "proc-macro2 1.0.3",
 "quote 1.0.2",
 "syn 1.0.11",
]

[[package]]
name = "tracing-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0aa83a9a47081cd522c09c81b31aec2c9273424976f922ad61c053b58350b715"
dependencies = [
 "lazy_static",
]

E
Eric Huss 已提交
4931 4932
[[package]]
name = "typenum"
E
Eric Huss 已提交
4933
version = "1.12.0"
E
Eric Huss 已提交
4934
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
4935
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
E
Eric Huss 已提交
4936

M
Mark Rousskov 已提交
4937 4938 4939 4940 4941 4942
[[package]]
name = "ucd-parse"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca6b52bf4da6512f0f07785a04769222e50d29639e7ecd016b7806fd2de306b4"
dependencies = [
Y
Yuki Okushi 已提交
4943
 "lazy_static",
M
Mark Rousskov 已提交
4944 4945 4946
 "regex",
]

4947 4948 4949 4950
[[package]]
name = "ucd-trie"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
4951
checksum = "71a9c5b1fe77426cf144cc30e49e955270f5086e31a6441dfa8b32efc09b9d77"
4952

4953 4954
[[package]]
name = "unicase"
4955
version = "2.6.0"
4956
source = "registry+https://github.com/rust-lang/crates.io-index"
4957
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
4958
dependencies = [
4959
 "version_check",
4960 4961
]

M
Mark Rousskov 已提交
4962 4963 4964 4965 4966 4967 4968
[[package]]
name = "unicode-bdd"
version = "0.1.0"
dependencies = [
 "ucd-parse",
]

4969 4970
[[package]]
name = "unicode-bidi"
S
steveklabnik 已提交
4971
version = "0.3.4"
S
Steve Klabnik 已提交
4972
source = "registry+https://github.com/rust-lang/crates.io-index"
4973
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
S
Steve Klabnik 已提交
4974
dependencies = [
4975
 "matches",
4976 4977
]

4978 4979
[[package]]
name = "unicode-normalization"
crlf0710's avatar
crlf0710 已提交
4980
version = "0.1.12"
4981
source = "registry+https://github.com/rust-lang/crates.io-index"
crlf0710's avatar
crlf0710 已提交
4982
checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
4983
dependencies = [
crlf0710's avatar
crlf0710 已提交
4984
 "smallvec 1.4.0",
4985
]
4986

crlf0710's avatar
crlf0710 已提交
4987 4988
[[package]]
name = "unicode-script"
4989
version = "0.5.1"
crlf0710's avatar
crlf0710 已提交
4990
source = "registry+https://github.com/rust-lang/crates.io-index"
4991
checksum = "58b33414ea8db4b7ea0343548dbdc31d27aef06beacf7044a87e564d9b0feb7d"
crlf0710's avatar
crlf0710 已提交
4992 4993 4994

[[package]]
name = "unicode-security"
4995
version = "0.0.5"
crlf0710's avatar
crlf0710 已提交
4996
source = "registry+https://github.com/rust-lang/crates.io-index"
4997
checksum = "5d87c28edc5b263377e448d6cdcb935c06b95413d8013ba6fae470558ccab18f"
crlf0710's avatar
crlf0710 已提交
4998
dependencies = [
crlf0710's avatar
crlf0710 已提交
4999
 "unicode-normalization",
crlf0710's avatar
crlf0710 已提交
5000 5001 5002
 "unicode-script",
]

5003 5004
[[package]]
name = "unicode-segmentation"
E
Eric Huss 已提交
5005
version = "1.6.0"
5006
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
5007
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
5008 5009 5010

[[package]]
name = "unicode-width"
5011
version = "0.1.6"
5012
source = "registry+https://github.com/rust-lang/crates.io-index"
5013 5014 5015 5016 5017 5018
checksum = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20"
dependencies = [
 "compiler_builtins",
 "rustc-std-workspace-core",
 "rustc-std-workspace-std",
]
5019

A
Alex Crichton 已提交
5020 5021 5022 5023
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
5024
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
A
Alex Crichton 已提交
5025

5026 5027 5028 5029 5030 5031
[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"

F
flip1995 已提交
5032 5033 5034 5035
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
5036
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
F
flip1995 已提交
5037

5038 5039 5040 5041
[[package]]
name = "unstable-book-gen"
version = "0.1.0"
dependencies = [
5042 5043
 "num-traits",
 "tidy",
5044 5045
]

N
Nick Cameron 已提交
5046 5047 5048 5049
[[package]]
name = "unwind"
version = "0.0.0"
dependencies = [
5050 5051 5052 5053 5054
 "cc",
 "cfg-if",
 "compiler_builtins",
 "core",
 "libc",
N
Nick Cameron 已提交
5055 5056
]

5057 5058
[[package]]
name = "url"
5059
version = "1.7.2"
5060
source = "registry+https://github.com/rust-lang/crates.io-index"
5061
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
5062
dependencies = [
5063 5064 5065
 "idna 0.1.5",
 "matches",
 "percent-encoding 1.0.1",
5066 5067
]

E
Eric Huss 已提交
5068 5069
[[package]]
name = "url"
F
flip1995 已提交
5070
version = "2.1.0"
E
Eric Huss 已提交
5071
source = "registry+https://github.com/rust-lang/crates.io-index"
F
flip1995 已提交
5072
checksum = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61"
E
Eric Huss 已提交
5073
dependencies = [
5074 5075
 "idna 0.2.0",
 "matches",
E
Eric Huss 已提交
5076
 "percent-encoding 2.1.0",
5077
 "serde",
E
Eric Huss 已提交
5078 5079
]

S
steveklabnik 已提交
5080 5081 5082 5083
[[package]]
name = "utf-8"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
5084
checksum = "f1262dfab4c30d5cb7c07026be00ee343a6cf5027fdc0104a9160f354e5db75c"
S
steveklabnik 已提交
5085

E
Eric Huss 已提交
5086 5087 5088 5089
[[package]]
name = "utf8parse"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
5090
checksum = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d"
E
Eric Huss 已提交
5091

5092 5093
[[package]]
name = "vcpkg"
5094
version = "0.2.8"
5095
source = "registry+https://github.com/rust-lang/crates.io-index"
5096
checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168"
5097

5098 5099
[[package]]
name = "vec_map"
A
Alex Crichton 已提交
5100
version = "0.8.1"
5101
source = "registry+https://github.com/rust-lang/crates.io-index"
5102
checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
5103

R
Ralf Jung 已提交
5104 5105
[[package]]
name = "vergen"
5106
version = "3.1.0"
R
Ralf Jung 已提交
5107
source = "registry+https://github.com/rust-lang/crates.io-index"
5108
checksum = "4ce50d8996df1f85af15f2cd8d33daae6e479575123ef4314a51a70a230739cb"
R
Ralf Jung 已提交
5109
dependencies = [
5110 5111
 "bitflags",
 "chrono",
R
Ralf Jung 已提交
5112 5113
]

E
Eric Huss 已提交
5114 5115 5116 5117 5118 5119
[[package]]
name = "version_check"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"

E
Eric Huss 已提交
5120 5121 5122 5123
[[package]]
name = "vte"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
5124
checksum = "4f42f536e22f7fcbb407639765c8fd78707a33109301f834a594758bedd6e8cf"
E
Eric Huss 已提交
5125
dependencies = [
5126
 "utf8parse",
E
Eric Huss 已提交
5127 5128
]

5129 5130
[[package]]
name = "walkdir"
5131
version = "2.2.7"
5132
source = "registry+https://github.com/rust-lang/crates.io-index"
5133
checksum = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1"
5134
dependencies = [
5135
 "same-file",
E
Eric Huss 已提交
5136
 "winapi 0.3.8",
5137
 "winapi-util",
5138 5139
]

5140 5141 5142 5143 5144
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
N
newpavlov 已提交
5145 5146 5147 5148 5149 5150
dependencies = [
 "compiler_builtins",
 "rustc-std-workspace-alloc",
 "rustc-std-workspace-core",
]

5151 5152 5153 5154
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
5155
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
5156

5157 5158
[[package]]
name = "winapi"
E
Eric Huss 已提交
5159
version = "0.3.8"
5160
source = "registry+https://github.com/rust-lang/crates.io-index"
E
Eric Huss 已提交
5161
checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
5162
dependencies = [
5163 5164
 "winapi-i686-pc-windows-gnu",
 "winapi-x86_64-pc-windows-gnu",
5165 5166
]

5167 5168 5169 5170
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
5171
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
5172

5173 5174 5175 5176
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
5177
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
5178

A
Alex Crichton 已提交
5179 5180
[[package]]
name = "winapi-util"
E
Eric Huss 已提交
5181
version = "0.1.2"
A
Alex Crichton 已提交
5182
source = "registry+https://github.com/rust-lang/crates.io-index"
5183
checksum = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
A
Alex Crichton 已提交
5184
dependencies = [
E
Eric Huss 已提交
5185
 "winapi 0.3.8",
A
Alex Crichton 已提交
5186 5187
]

5188 5189 5190 5191
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
5192
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
5193

5194 5195
[[package]]
name = "wincolor"
A
Alex Crichton 已提交
5196
version = "1.0.1"
5197
source = "registry+https://github.com/rust-lang/crates.io-index"
5198
checksum = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
5199
dependencies = [
E
Eric Huss 已提交
5200
 "winapi 0.3.8",
5201
 "winapi-util",
5202 5203
]

5204 5205 5206 5207
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
5208
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
5209
dependencies = [
5210 5211
 "winapi 0.2.8",
 "winapi-build",
5212 5213
]

5214 5215
[[package]]
name = "xattr"
A
Alex Crichton 已提交
5216
version = "0.2.2"
5217
source = "registry+https://github.com/rust-lang/crates.io-index"
5218
checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
5219
dependencies = [
5220
 "libc",
5221 5222 5223 5224
]

[[package]]
name = "xz2"
A
Alex Crichton 已提交
5225
version = "0.1.5"
5226
source = "registry+https://github.com/rust-lang/crates.io-index"
5227
checksum = "df8bf41d3030c3577c9458fd6640a05afbf43b150d0b531b16bd77d3f794f27a"
5228
dependencies = [
5229
 "lzma-sys",
5230 5231
]

5232 5233 5234 5235 5236 5237
[[package]]
name = "yaml-merge-keys"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59893318ba3ad2b704498c7761214a10eaf42c5f838bce9fc0145bf2ba658cfa"
dependencies = [
Y
Yuki Okushi 已提交
5238
 "lazy_static",
5239 5240 5241 5242
 "thiserror",
 "yaml-rust 0.4.3",
]

5243 5244 5245 5246
[[package]]
name = "yaml-rust"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
5247
checksum = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"
5248 5249 5250 5251 5252 5253 5254 5255 5256

[[package]]
name = "yaml-rust"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d"
dependencies = [
 "linked-hash-map",
]