Cargo.lock

   1# This file is automatically @generated by Cargo.
   2# It is not intended for manual editing.
   3[[package]]
   4name = "adler"
   5version = "1.0.2"
   6source = "registry+https://github.com/rust-lang/crates.io-index"
   7checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
   8
   9[[package]]
  10name = "adler32"
  11version = "1.2.0"
  12source = "registry+https://github.com/rust-lang/crates.io-index"
  13checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
  14
  15[[package]]
  16name = "aho-corasick"
  17version = "0.7.15"
  18source = "registry+https://github.com/rust-lang/crates.io-index"
  19checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
  20dependencies = [
  21 "memchr",
  22]
  23
  24[[package]]
  25name = "ansi_term"
  26version = "0.11.0"
  27source = "registry+https://github.com/rust-lang/crates.io-index"
  28checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  29dependencies = [
  30 "winapi",
  31]
  32
  33[[package]]
  34name = "anyhow"
  35version = "1.0.38"
  36source = "registry+https://github.com/rust-lang/crates.io-index"
  37checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
  38
  39[[package]]
  40name = "arrayref"
  41version = "0.3.6"
  42source = "registry+https://github.com/rust-lang/crates.io-index"
  43checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
  44
  45[[package]]
  46name = "arrayvec"
  47version = "0.5.2"
  48source = "registry+https://github.com/rust-lang/crates.io-index"
  49checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  50
  51[[package]]
  52name = "async-channel"
  53version = "1.6.1"
  54source = "registry+https://github.com/rust-lang/crates.io-index"
  55checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
  56dependencies = [
  57 "concurrent-queue",
  58 "event-listener",
  59 "futures-core",
  60]
  61
  62[[package]]
  63name = "async-executor"
  64version = "1.4.0"
  65source = "registry+https://github.com/rust-lang/crates.io-index"
  66checksum = "eb877970c7b440ead138f6321a3b5395d6061183af779340b65e20c0fede9146"
  67dependencies = [
  68 "async-task",
  69 "concurrent-queue",
  70 "fastrand",
  71 "futures-lite",
  72 "once_cell",
  73 "vec-arena",
  74]
  75
  76[[package]]
  77name = "async-fs"
  78version = "1.5.0"
  79source = "registry+https://github.com/rust-lang/crates.io-index"
  80checksum = "8b3ca4f8ff117c37c278a2f7415ce9be55560b846b5bc4412aaa5d29c1c3dae2"
  81dependencies = [
  82 "async-lock",
  83 "blocking",
  84 "futures-lite",
  85]
  86
  87[[package]]
  88name = "async-global-executor"
  89version = "2.0.2"
  90source = "registry+https://github.com/rust-lang/crates.io-index"
  91checksum = "9586ec52317f36de58453159d48351bc244bc24ced3effc1fce22f3d48664af6"
  92dependencies = [
  93 "async-channel",
  94 "async-executor",
  95 "async-io",
  96 "async-mutex",
  97 "blocking",
  98 "futures-lite",
  99 "num_cpus",
 100 "once_cell",
 101]
 102
 103[[package]]
 104name = "async-io"
 105version = "1.3.1"
 106source = "registry+https://github.com/rust-lang/crates.io-index"
 107checksum = "9315f8f07556761c3e48fec2e6b276004acf426e6dc068b2c2251854d65ee0fd"
 108dependencies = [
 109 "concurrent-queue",
 110 "fastrand",
 111 "futures-lite",
 112 "libc",
 113 "log",
 114 "nb-connect",
 115 "once_cell",
 116 "parking",
 117 "polling",
 118 "vec-arena",
 119 "waker-fn",
 120 "winapi",
 121]
 122
 123[[package]]
 124name = "async-lock"
 125version = "2.3.0"
 126source = "registry+https://github.com/rust-lang/crates.io-index"
 127checksum = "1996609732bde4a9988bc42125f55f2af5f3c36370e27c778d5191a4a1b63bfb"
 128dependencies = [
 129 "event-listener",
 130]
 131
 132[[package]]
 133name = "async-mutex"
 134version = "1.4.0"
 135source = "registry+https://github.com/rust-lang/crates.io-index"
 136checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
 137dependencies = [
 138 "event-listener",
 139]
 140
 141[[package]]
 142name = "async-net"
 143version = "1.5.0"
 144source = "registry+https://github.com/rust-lang/crates.io-index"
 145checksum = "06de475c85affe184648202401d7622afb32f0f74e02192857d0201a16defbe5"
 146dependencies = [
 147 "async-io",
 148 "blocking",
 149 "fastrand",
 150 "futures-lite",
 151]
 152
 153[[package]]
 154name = "async-process"
 155version = "1.0.2"
 156source = "registry+https://github.com/rust-lang/crates.io-index"
 157checksum = "ef37b86e2fa961bae5a4d212708ea0154f904ce31d1a4a7f47e1bbc33a0c040b"
 158dependencies = [
 159 "async-io",
 160 "blocking",
 161 "cfg-if 1.0.0",
 162 "event-listener",
 163 "futures-lite",
 164 "once_cell",
 165 "signal-hook",
 166 "winapi",
 167]
 168
 169[[package]]
 170name = "async-std"
 171version = "1.9.0"
 172source = "registry+https://github.com/rust-lang/crates.io-index"
 173checksum = "d9f06685bad74e0570f5213741bea82158279a4103d988e57bfada11ad230341"
 174dependencies = [
 175 "async-channel",
 176 "async-global-executor",
 177 "async-io",
 178 "async-lock",
 179 "async-process",
 180 "crossbeam-utils 0.8.2",
 181 "futures-channel",
 182 "futures-core",
 183 "futures-io",
 184 "futures-lite",
 185 "gloo-timers",
 186 "kv-log-macro",
 187 "log",
 188 "memchr",
 189 "num_cpus",
 190 "once_cell",
 191 "pin-project-lite",
 192 "pin-utils",
 193 "slab",
 194 "wasm-bindgen-futures",
 195]
 196
 197[[package]]
 198name = "async-task"
 199version = "4.0.3"
 200source = "git+https://github.com/zed-industries/async-task?rev=341b57d6de98cdfd7b418567b8de2022ca993a6e#341b57d6de98cdfd7b418567b8de2022ca993a6e"
 201
 202[[package]]
 203name = "atomic-waker"
 204version = "1.0.0"
 205source = "registry+https://github.com/rust-lang/crates.io-index"
 206checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
 207
 208[[package]]
 209name = "atty"
 210version = "0.2.14"
 211source = "registry+https://github.com/rust-lang/crates.io-index"
 212checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
 213dependencies = [
 214 "hermit-abi",
 215 "libc",
 216 "winapi",
 217]
 218
 219[[package]]
 220name = "autocfg"
 221version = "1.0.1"
 222source = "registry+https://github.com/rust-lang/crates.io-index"
 223checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
 224
 225[[package]]
 226name = "base64"
 227version = "0.13.0"
 228source = "registry+https://github.com/rust-lang/crates.io-index"
 229checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
 230
 231[[package]]
 232name = "bindgen"
 233version = "0.57.0"
 234source = "registry+https://github.com/rust-lang/crates.io-index"
 235checksum = "fd4865004a46a0aafb2a0a5eb19d3c9fc46ee5f063a6cfc605c69ac9ecf5263d"
 236dependencies = [
 237 "bitflags",
 238 "cexpr",
 239 "clang-sys",
 240 "clap",
 241 "env_logger",
 242 "lazy_static",
 243 "lazycell",
 244 "log",
 245 "peeking_take_while",
 246 "proc-macro2",
 247 "quote",
 248 "regex",
 249 "rustc-hash",
 250 "shlex",
 251 "which",
 252]
 253
 254[[package]]
 255name = "bitflags"
 256version = "1.2.1"
 257source = "registry+https://github.com/rust-lang/crates.io-index"
 258checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
 259
 260[[package]]
 261name = "blake2b_simd"
 262version = "0.5.11"
 263source = "registry+https://github.com/rust-lang/crates.io-index"
 264checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
 265dependencies = [
 266 "arrayref",
 267 "arrayvec",
 268 "constant_time_eq",
 269]
 270
 271[[package]]
 272name = "block"
 273version = "0.1.6"
 274source = "registry+https://github.com/rust-lang/crates.io-index"
 275checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
 276
 277[[package]]
 278name = "blocking"
 279version = "1.0.2"
 280source = "registry+https://github.com/rust-lang/crates.io-index"
 281checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"
 282dependencies = [
 283 "async-channel",
 284 "async-task",
 285 "atomic-waker",
 286 "fastrand",
 287 "futures-lite",
 288 "once_cell",
 289]
 290
 291[[package]]
 292name = "bstr"
 293version = "0.2.15"
 294source = "registry+https://github.com/rust-lang/crates.io-index"
 295checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
 296dependencies = [
 297 "memchr",
 298]
 299
 300[[package]]
 301name = "bumpalo"
 302version = "3.6.1"
 303source = "registry+https://github.com/rust-lang/crates.io-index"
 304checksum = "63396b8a4b9de3f4fdfb320ab6080762242f66a8ef174c49d8e19b674db4cdbe"
 305
 306[[package]]
 307name = "bytemuck"
 308version = "1.5.1"
 309source = "registry+https://github.com/rust-lang/crates.io-index"
 310checksum = "bed57e2090563b83ba8f83366628ce535a7584c9afa4c9fc0612a03925c6df58"
 311
 312[[package]]
 313name = "byteorder"
 314version = "1.4.2"
 315source = "registry+https://github.com/rust-lang/crates.io-index"
 316checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
 317
 318[[package]]
 319name = "cache-padded"
 320version = "1.1.1"
 321source = "registry+https://github.com/rust-lang/crates.io-index"
 322checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"
 323
 324[[package]]
 325name = "cc"
 326version = "1.0.67"
 327source = "registry+https://github.com/rust-lang/crates.io-index"
 328checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
 329
 330[[package]]
 331name = "cexpr"
 332version = "0.4.0"
 333source = "registry+https://github.com/rust-lang/crates.io-index"
 334checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
 335dependencies = [
 336 "nom",
 337]
 338
 339[[package]]
 340name = "cfg-if"
 341version = "0.1.10"
 342source = "registry+https://github.com/rust-lang/crates.io-index"
 343checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
 344
 345[[package]]
 346name = "cfg-if"
 347version = "1.0.0"
 348source = "registry+https://github.com/rust-lang/crates.io-index"
 349checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
 350
 351[[package]]
 352name = "chrono"
 353version = "0.4.19"
 354source = "registry+https://github.com/rust-lang/crates.io-index"
 355checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
 356dependencies = [
 357 "libc",
 358 "num-integer",
 359 "num-traits",
 360 "time",
 361 "winapi",
 362]
 363
 364[[package]]
 365name = "clang-sys"
 366version = "1.1.1"
 367source = "registry+https://github.com/rust-lang/crates.io-index"
 368checksum = "f54d78e30b388d4815220c8dd03fea5656b6c6d32adb59e89061552a102f8da1"
 369dependencies = [
 370 "glob",
 371 "libc",
 372 "libloading",
 373]
 374
 375[[package]]
 376name = "clap"
 377version = "2.33.3"
 378source = "registry+https://github.com/rust-lang/crates.io-index"
 379checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
 380dependencies = [
 381 "ansi_term",
 382 "atty",
 383 "bitflags",
 384 "strsim",
 385 "textwrap",
 386 "unicode-width",
 387 "vec_map",
 388]
 389
 390[[package]]
 391name = "cmake"
 392version = "0.1.45"
 393source = "registry+https://github.com/rust-lang/crates.io-index"
 394checksum = "eb6210b637171dfba4cda12e579ac6dc73f5165ad56133e5d72ef3131f320855"
 395dependencies = [
 396 "cc",
 397]
 398
 399[[package]]
 400name = "cocoa"
 401version = "0.24.0"
 402source = "registry+https://github.com/rust-lang/crates.io-index"
 403checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
 404dependencies = [
 405 "bitflags",
 406 "block",
 407 "cocoa-foundation",
 408 "core-foundation",
 409 "core-graphics",
 410 "foreign-types",
 411 "libc",
 412 "objc",
 413]
 414
 415[[package]]
 416name = "cocoa-foundation"
 417version = "0.1.0"
 418source = "registry+https://github.com/rust-lang/crates.io-index"
 419checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
 420dependencies = [
 421 "bitflags",
 422 "block",
 423 "core-foundation",
 424 "core-graphics-types",
 425 "foreign-types",
 426 "libc",
 427 "objc",
 428]
 429
 430[[package]]
 431name = "concurrent-queue"
 432version = "1.2.2"
 433source = "registry+https://github.com/rust-lang/crates.io-index"
 434checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
 435dependencies = [
 436 "cache-padded",
 437]
 438
 439[[package]]
 440name = "constant_time_eq"
 441version = "0.1.5"
 442source = "registry+https://github.com/rust-lang/crates.io-index"
 443checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
 444
 445[[package]]
 446name = "core-foundation"
 447version = "0.9.1"
 448source = "registry+https://github.com/rust-lang/crates.io-index"
 449checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
 450dependencies = [
 451 "core-foundation-sys",
 452 "libc",
 453]
 454
 455[[package]]
 456name = "core-foundation-sys"
 457version = "0.8.2"
 458source = "registry+https://github.com/rust-lang/crates.io-index"
 459checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
 460
 461[[package]]
 462name = "core-graphics"
 463version = "0.22.2"
 464source = "registry+https://github.com/rust-lang/crates.io-index"
 465checksum = "269f35f69b542b80e736a20a89a05215c0ce80c2c03c514abb2e318b78379d86"
 466dependencies = [
 467 "bitflags",
 468 "core-foundation",
 469 "core-graphics-types",
 470 "foreign-types",
 471 "libc",
 472]
 473
 474[[package]]
 475name = "core-graphics-types"
 476version = "0.1.1"
 477source = "registry+https://github.com/rust-lang/crates.io-index"
 478checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
 479dependencies = [
 480 "bitflags",
 481 "core-foundation",
 482 "foreign-types",
 483 "libc",
 484]
 485
 486[[package]]
 487name = "core-text"
 488version = "19.2.0"
 489source = "registry+https://github.com/rust-lang/crates.io-index"
 490checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25"
 491dependencies = [
 492 "core-foundation",
 493 "core-graphics",
 494 "foreign-types",
 495 "libc",
 496]
 497
 498[[package]]
 499name = "crc32fast"
 500version = "1.2.1"
 501source = "registry+https://github.com/rust-lang/crates.io-index"
 502checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
 503dependencies = [
 504 "cfg-if 1.0.0",
 505]
 506
 507[[package]]
 508name = "crossbeam-channel"
 509version = "0.4.4"
 510source = "registry+https://github.com/rust-lang/crates.io-index"
 511checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
 512dependencies = [
 513 "crossbeam-utils 0.7.2",
 514 "maybe-uninit",
 515]
 516
 517[[package]]
 518name = "crossbeam-channel"
 519version = "0.5.0"
 520source = "registry+https://github.com/rust-lang/crates.io-index"
 521checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
 522dependencies = [
 523 "cfg-if 1.0.0",
 524 "crossbeam-utils 0.8.2",
 525]
 526
 527[[package]]
 528name = "crossbeam-utils"
 529version = "0.7.2"
 530source = "registry+https://github.com/rust-lang/crates.io-index"
 531checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
 532dependencies = [
 533 "autocfg",
 534 "cfg-if 0.1.10",
 535 "lazy_static",
 536]
 537
 538[[package]]
 539name = "crossbeam-utils"
 540version = "0.8.2"
 541source = "registry+https://github.com/rust-lang/crates.io-index"
 542checksum = "bae8f328835f8f5a6ceb6a7842a7f2d0c03692adb5c889347235d59194731fe3"
 543dependencies = [
 544 "autocfg",
 545 "cfg-if 1.0.0",
 546 "lazy_static",
 547 "loom",
 548]
 549
 550[[package]]
 551name = "ctor"
 552version = "0.1.19"
 553source = "registry+https://github.com/rust-lang/crates.io-index"
 554checksum = "e8f45d9ad417bcef4817d614a501ab55cdd96a6fdb24f49aab89a54acfd66b19"
 555dependencies = [
 556 "quote",
 557 "syn",
 558]
 559
 560[[package]]
 561name = "data-url"
 562version = "0.1.0"
 563source = "registry+https://github.com/rust-lang/crates.io-index"
 564checksum = "d33fe99ccedd6e84bc035f1931bb2e6be79739d6242bd895e7311c886c50dc9c"
 565dependencies = [
 566 "matches",
 567]
 568
 569[[package]]
 570name = "deflate"
 571version = "0.8.6"
 572source = "registry+https://github.com/rust-lang/crates.io-index"
 573checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
 574dependencies = [
 575 "adler32",
 576 "byteorder",
 577]
 578
 579[[package]]
 580name = "dirs"
 581version = "3.0.1"
 582source = "registry+https://github.com/rust-lang/crates.io-index"
 583checksum = "142995ed02755914747cc6ca76fc7e4583cd18578746716d0508ea6ed558b9ff"
 584dependencies = [
 585 "dirs-sys",
 586]
 587
 588[[package]]
 589name = "dirs-next"
 590version = "2.0.0"
 591source = "registry+https://github.com/rust-lang/crates.io-index"
 592checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
 593dependencies = [
 594 "cfg-if 1.0.0",
 595 "dirs-sys-next",
 596]
 597
 598[[package]]
 599name = "dirs-sys"
 600version = "0.3.5"
 601source = "registry+https://github.com/rust-lang/crates.io-index"
 602checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
 603dependencies = [
 604 "libc",
 605 "redox_users 0.3.5",
 606 "winapi",
 607]
 608
 609[[package]]
 610name = "dirs-sys-next"
 611version = "0.1.2"
 612source = "registry+https://github.com/rust-lang/crates.io-index"
 613checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
 614dependencies = [
 615 "libc",
 616 "redox_users 0.4.0",
 617 "winapi",
 618]
 619
 620[[package]]
 621name = "dwrote"
 622version = "0.11.0"
 623source = "registry+https://github.com/rust-lang/crates.io-index"
 624checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b"
 625dependencies = [
 626 "lazy_static",
 627 "libc",
 628 "winapi",
 629 "wio",
 630]
 631
 632[[package]]
 633name = "easy-parallel"
 634version = "3.1.0"
 635source = "registry+https://github.com/rust-lang/crates.io-index"
 636checksum = "1dd4afd79212583ff429b913ad6605242ed7eec277e950b1438f300748f948f4"
 637
 638[[package]]
 639name = "env_logger"
 640version = "0.8.3"
 641source = "registry+https://github.com/rust-lang/crates.io-index"
 642checksum = "17392a012ea30ef05a610aa97dfb49496e71c9f676b27879922ea5bdf60d9d3f"
 643dependencies = [
 644 "atty",
 645 "humantime",
 646 "log",
 647 "regex",
 648 "termcolor",
 649]
 650
 651[[package]]
 652name = "etagere"
 653version = "0.2.4"
 654source = "registry+https://github.com/rust-lang/crates.io-index"
 655checksum = "520d7de540904fd09b11c03a47d50a7ce4ff37d1aa763f454fa60d9088ef8356"
 656dependencies = [
 657 "euclid",
 658 "svg_fmt",
 659]
 660
 661[[package]]
 662name = "euclid"
 663version = "0.22.2"
 664source = "registry+https://github.com/rust-lang/crates.io-index"
 665checksum = "51e5bac4ec41ece6346fd867815a57a221abdf48f4eb931b033789b5b4b6fc70"
 666dependencies = [
 667 "num-traits",
 668]
 669
 670[[package]]
 671name = "event-listener"
 672version = "2.5.1"
 673source = "registry+https://github.com/rust-lang/crates.io-index"
 674checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59"
 675
 676[[package]]
 677name = "expat-sys"
 678version = "2.1.6"
 679source = "registry+https://github.com/rust-lang/crates.io-index"
 680checksum = "658f19728920138342f68408b7cf7644d90d4784353d8ebc32e7e8663dbe45fa"
 681dependencies = [
 682 "cmake",
 683 "pkg-config",
 684]
 685
 686[[package]]
 687name = "fastrand"
 688version = "1.4.0"
 689source = "registry+https://github.com/rust-lang/crates.io-index"
 690checksum = "ca5faf057445ce5c9d4329e382b2ce7ca38550ef3b73a5348362d5f24e0c7fe3"
 691dependencies = [
 692 "instant",
 693]
 694
 695[[package]]
 696name = "flate2"
 697version = "1.0.20"
 698source = "registry+https://github.com/rust-lang/crates.io-index"
 699checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
 700dependencies = [
 701 "cfg-if 1.0.0",
 702 "crc32fast",
 703 "libc",
 704 "miniz_oxide 0.4.4",
 705]
 706
 707[[package]]
 708name = "float-cmp"
 709version = "0.5.3"
 710source = "registry+https://github.com/rust-lang/crates.io-index"
 711checksum = "75224bec9bfe1a65e2d34132933f2de7fe79900c96a0174307554244ece8150e"
 712
 713[[package]]
 714name = "float-ord"
 715version = "0.2.0"
 716source = "registry+https://github.com/rust-lang/crates.io-index"
 717checksum = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e"
 718
 719[[package]]
 720name = "fnv"
 721version = "1.0.7"
 722source = "registry+https://github.com/rust-lang/crates.io-index"
 723checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
 724
 725[[package]]
 726name = "font-kit"
 727version = "0.10.0"
 728source = "git+https://github.com/zed-industries/font-kit?rev=8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1#8eaf7a918eafa28b0a37dc759e2e0e7683fa24f1"
 729dependencies = [
 730 "bitflags",
 731 "byteorder",
 732 "core-foundation",
 733 "core-graphics",
 734 "core-text",
 735 "dirs-next",
 736 "dwrote",
 737 "float-ord",
 738 "freetype",
 739 "lazy_static",
 740 "libc",
 741 "log",
 742 "pathfinder_geometry",
 743 "pathfinder_simd",
 744 "servo-fontconfig",
 745 "walkdir",
 746 "winapi",
 747]
 748
 749[[package]]
 750name = "fontdb"
 751version = "0.5.1"
 752source = "registry+https://github.com/rust-lang/crates.io-index"
 753checksum = "428948a0f39fb83fe55991d4423e35a793cdbb0322ebe23853f6024124a330d7"
 754dependencies = [
 755 "log",
 756 "memmap2 0.1.0",
 757 "ttf-parser 0.9.0",
 758]
 759
 760[[package]]
 761name = "foreign-types"
 762version = "0.3.2"
 763source = "registry+https://github.com/rust-lang/crates.io-index"
 764checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
 765dependencies = [
 766 "foreign-types-shared",
 767]
 768
 769[[package]]
 770name = "foreign-types-shared"
 771version = "0.1.1"
 772source = "registry+https://github.com/rust-lang/crates.io-index"
 773checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
 774
 775[[package]]
 776name = "freetype"
 777version = "0.7.0"
 778source = "registry+https://github.com/rust-lang/crates.io-index"
 779checksum = "bee38378a9e3db1cc693b4f88d166ae375338a0ff75cb8263e1c601d51f35dc6"
 780dependencies = [
 781 "freetype-sys",
 782 "libc",
 783]
 784
 785[[package]]
 786name = "freetype-sys"
 787version = "0.13.1"
 788source = "registry+https://github.com/rust-lang/crates.io-index"
 789checksum = "a37d4011c0cc628dfa766fcc195454f4b068d7afdc2adfd28861191d866e731a"
 790dependencies = [
 791 "cmake",
 792 "libc",
 793 "pkg-config",
 794]
 795
 796[[package]]
 797name = "fuchsia-cprng"
 798version = "0.1.1"
 799source = "registry+https://github.com/rust-lang/crates.io-index"
 800checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
 801
 802[[package]]
 803name = "futures-channel"
 804version = "0.3.12"
 805source = "registry+https://github.com/rust-lang/crates.io-index"
 806checksum = "f2d31b7ec7efab6eefc7c57233bb10b847986139d88cc2f5a02a1ae6871a1846"
 807dependencies = [
 808 "futures-core",
 809]
 810
 811[[package]]
 812name = "futures-core"
 813version = "0.3.12"
 814source = "registry+https://github.com/rust-lang/crates.io-index"
 815checksum = "79e5145dde8da7d1b3892dad07a9c98fc04bc39892b1ecc9692cf53e2b780a65"
 816
 817[[package]]
 818name = "futures-io"
 819version = "0.3.12"
 820source = "registry+https://github.com/rust-lang/crates.io-index"
 821checksum = "28be053525281ad8259d47e4de5de657b25e7bac113458555bb4b70bc6870500"
 822
 823[[package]]
 824name = "futures-lite"
 825version = "1.11.3"
 826source = "registry+https://github.com/rust-lang/crates.io-index"
 827checksum = "b4481d0cd0de1d204a4fa55e7d45f07b1d958abcb06714b3446438e2eff695fb"
 828dependencies = [
 829 "fastrand",
 830 "futures-core",
 831 "futures-io",
 832 "memchr",
 833 "parking",
 834 "pin-project-lite",
 835 "waker-fn",
 836]
 837
 838[[package]]
 839name = "generator"
 840version = "0.6.23"
 841source = "registry+https://github.com/rust-lang/crates.io-index"
 842checksum = "8cdc09201b2e8ca1b19290cf7e65de2246b8e91fb6874279722189c4de7b94dc"
 843dependencies = [
 844 "cc",
 845 "libc",
 846 "log",
 847 "rustc_version",
 848 "winapi",
 849]
 850
 851[[package]]
 852name = "getrandom"
 853version = "0.1.16"
 854source = "registry+https://github.com/rust-lang/crates.io-index"
 855checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
 856dependencies = [
 857 "cfg-if 1.0.0",
 858 "libc",
 859 "wasi 0.9.0+wasi-snapshot-preview1",
 860]
 861
 862[[package]]
 863name = "getrandom"
 864version = "0.2.2"
 865source = "registry+https://github.com/rust-lang/crates.io-index"
 866checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
 867dependencies = [
 868 "cfg-if 1.0.0",
 869 "libc",
 870 "wasi 0.10.0+wasi-snapshot-preview1",
 871]
 872
 873[[package]]
 874name = "glob"
 875version = "0.3.0"
 876source = "registry+https://github.com/rust-lang/crates.io-index"
 877checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
 878
 879[[package]]
 880name = "globset"
 881version = "0.4.4"
 882source = "git+https://github.com/zed-industries/ripgrep?rev=1d152118f35b3e3590216709b86277062d79b8a0#1d152118f35b3e3590216709b86277062d79b8a0"
 883dependencies = [
 884 "aho-corasick",
 885 "bstr",
 886 "fnv",
 887 "log",
 888 "regex",
 889]
 890
 891[[package]]
 892name = "gloo-timers"
 893version = "0.2.1"
 894source = "registry+https://github.com/rust-lang/crates.io-index"
 895checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"
 896dependencies = [
 897 "futures-channel",
 898 "futures-core",
 899 "js-sys",
 900 "wasm-bindgen",
 901 "web-sys",
 902]
 903
 904[[package]]
 905name = "gpui"
 906version = "0.1.0"
 907dependencies = [
 908 "anyhow",
 909 "async-std",
 910 "async-task",
 911 "bindgen",
 912 "cc",
 913 "cocoa",
 914 "core-foundation",
 915 "core-graphics",
 916 "core-text",
 917 "ctor",
 918 "etagere",
 919 "font-kit",
 920 "foreign-types",
 921 "log",
 922 "metal",
 923 "num_cpus",
 924 "objc",
 925 "ordered-float",
 926 "parking_lot",
 927 "pathfinder_color",
 928 "pathfinder_geometry",
 929 "png",
 930 "rand 0.8.3",
 931 "replace_with",
 932 "resvg",
 933 "simplelog",
 934 "smallvec",
 935 "smol",
 936 "tiny-skia",
 937 "tree-sitter",
 938 "usvg",
 939]
 940
 941[[package]]
 942name = "hermit-abi"
 943version = "0.1.18"
 944source = "registry+https://github.com/rust-lang/crates.io-index"
 945checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
 946dependencies = [
 947 "libc",
 948]
 949
 950[[package]]
 951name = "humantime"
 952version = "2.1.0"
 953source = "registry+https://github.com/rust-lang/crates.io-index"
 954checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
 955
 956[[package]]
 957name = "ignore"
 958version = "0.4.11"
 959source = "git+https://github.com/zed-industries/ripgrep?rev=1d152118f35b3e3590216709b86277062d79b8a0#1d152118f35b3e3590216709b86277062d79b8a0"
 960dependencies = [
 961 "crossbeam-channel 0.4.4",
 962 "crossbeam-utils 0.7.2",
 963 "globset",
 964 "lazy_static",
 965 "log",
 966 "memchr",
 967 "regex",
 968 "same-file",
 969 "thread_local",
 970 "walkdir",
 971 "winapi-util",
 972]
 973
 974[[package]]
 975name = "instant"
 976version = "0.1.9"
 977source = "registry+https://github.com/rust-lang/crates.io-index"
 978checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
 979dependencies = [
 980 "cfg-if 1.0.0",
 981]
 982
 983[[package]]
 984name = "itoa"
 985version = "0.4.7"
 986source = "registry+https://github.com/rust-lang/crates.io-index"
 987checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
 988
 989[[package]]
 990name = "jpeg-decoder"
 991version = "0.1.22"
 992source = "registry+https://github.com/rust-lang/crates.io-index"
 993checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
 994
 995[[package]]
 996name = "js-sys"
 997version = "0.3.50"
 998source = "registry+https://github.com/rust-lang/crates.io-index"
 999checksum = "2d99f9e3e84b8f67f846ef5b4cbbc3b1c29f6c759fcbce6f01aa0e73d932a24c"
1000dependencies = [
1001 "wasm-bindgen",
1002]
1003
1004[[package]]
1005name = "kurbo"
1006version = "0.8.1"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "e30b1df631d23875f230ed3ddd1a88c231f269a04b2044eb6ca87e763b5f4c42"
1009dependencies = [
1010 "arrayvec",
1011]
1012
1013[[package]]
1014name = "kv-log-macro"
1015version = "1.0.7"
1016source = "registry+https://github.com/rust-lang/crates.io-index"
1017checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
1018dependencies = [
1019 "log",
1020]
1021
1022[[package]]
1023name = "lazy_static"
1024version = "1.4.0"
1025source = "registry+https://github.com/rust-lang/crates.io-index"
1026checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1027
1028[[package]]
1029name = "lazycell"
1030version = "1.3.0"
1031source = "registry+https://github.com/rust-lang/crates.io-index"
1032checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1033
1034[[package]]
1035name = "libc"
1036version = "0.2.86"
1037source = "registry+https://github.com/rust-lang/crates.io-index"
1038checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
1039
1040[[package]]
1041name = "libloading"
1042version = "0.7.0"
1043source = "registry+https://github.com/rust-lang/crates.io-index"
1044checksum = "6f84d96438c15fcd6c3f244c8fce01d1e2b9c6b5623e9c711dc9286d8fc92d6a"
1045dependencies = [
1046 "cfg-if 1.0.0",
1047 "winapi",
1048]
1049
1050[[package]]
1051name = "lock_api"
1052version = "0.4.2"
1053source = "registry+https://github.com/rust-lang/crates.io-index"
1054checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
1055dependencies = [
1056 "scopeguard",
1057]
1058
1059[[package]]
1060name = "log"
1061version = "0.4.14"
1062source = "registry+https://github.com/rust-lang/crates.io-index"
1063checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
1064dependencies = [
1065 "cfg-if 1.0.0",
1066 "value-bag",
1067]
1068
1069[[package]]
1070name = "loom"
1071version = "0.4.0"
1072source = "registry+https://github.com/rust-lang/crates.io-index"
1073checksum = "d44c73b4636e497b4917eb21c33539efa3816741a2d3ff26c6316f1b529481a4"
1074dependencies = [
1075 "cfg-if 1.0.0",
1076 "generator",
1077 "scoped-tls",
1078]
1079
1080[[package]]
1081name = "malloc_buf"
1082version = "0.0.6"
1083source = "registry+https://github.com/rust-lang/crates.io-index"
1084checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1085dependencies = [
1086 "libc",
1087]
1088
1089[[package]]
1090name = "matches"
1091version = "0.1.8"
1092source = "registry+https://github.com/rust-lang/crates.io-index"
1093checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
1094
1095[[package]]
1096name = "maybe-uninit"
1097version = "2.0.0"
1098source = "registry+https://github.com/rust-lang/crates.io-index"
1099checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
1100
1101[[package]]
1102name = "memchr"
1103version = "2.3.4"
1104source = "registry+https://github.com/rust-lang/crates.io-index"
1105checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
1106
1107[[package]]
1108name = "memmap2"
1109version = "0.1.0"
1110source = "registry+https://github.com/rust-lang/crates.io-index"
1111checksum = "d9b70ca2a6103ac8b665dc150b142ef0e4e89df640c9e6cf295d189c3caebe5a"
1112dependencies = [
1113 "libc",
1114]
1115
1116[[package]]
1117name = "memmap2"
1118version = "0.2.2"
1119source = "registry+https://github.com/rust-lang/crates.io-index"
1120checksum = "397d1a6d6d0563c0f5462bbdae662cf6c784edf5e828e40c7257f85d82bf56dd"
1121dependencies = [
1122 "libc",
1123]
1124
1125[[package]]
1126name = "metal"
1127version = "0.21.0"
1128source = "registry+https://github.com/rust-lang/crates.io-index"
1129checksum = "4598d719460ade24c7d91f335daf055bf2a7eec030728ce751814c50cdd6a26c"
1130dependencies = [
1131 "bitflags",
1132 "block",
1133 "cocoa-foundation",
1134 "foreign-types",
1135 "log",
1136 "objc",
1137]
1138
1139[[package]]
1140name = "miniz_oxide"
1141version = "0.3.7"
1142source = "registry+https://github.com/rust-lang/crates.io-index"
1143checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
1144dependencies = [
1145 "adler32",
1146]
1147
1148[[package]]
1149name = "miniz_oxide"
1150version = "0.4.4"
1151source = "registry+https://github.com/rust-lang/crates.io-index"
1152checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
1153dependencies = [
1154 "adler",
1155 "autocfg",
1156]
1157
1158[[package]]
1159name = "nb-connect"
1160version = "1.0.3"
1161source = "registry+https://github.com/rust-lang/crates.io-index"
1162checksum = "670361df1bc2399ee1ff50406a0d422587dd3bb0da596e1978fe8e05dabddf4f"
1163dependencies = [
1164 "libc",
1165 "socket2",
1166]
1167
1168[[package]]
1169name = "nom"
1170version = "5.1.2"
1171source = "registry+https://github.com/rust-lang/crates.io-index"
1172checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
1173dependencies = [
1174 "memchr",
1175 "version_check",
1176]
1177
1178[[package]]
1179name = "num-integer"
1180version = "0.1.44"
1181source = "registry+https://github.com/rust-lang/crates.io-index"
1182checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
1183dependencies = [
1184 "autocfg",
1185 "num-traits",
1186]
1187
1188[[package]]
1189name = "num-traits"
1190version = "0.2.14"
1191source = "registry+https://github.com/rust-lang/crates.io-index"
1192checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
1193dependencies = [
1194 "autocfg",
1195]
1196
1197[[package]]
1198name = "num_cpus"
1199version = "1.13.0"
1200source = "registry+https://github.com/rust-lang/crates.io-index"
1201checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
1202dependencies = [
1203 "hermit-abi",
1204 "libc",
1205]
1206
1207[[package]]
1208name = "objc"
1209version = "0.2.7"
1210source = "registry+https://github.com/rust-lang/crates.io-index"
1211checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1212dependencies = [
1213 "malloc_buf",
1214 "objc_exception",
1215]
1216
1217[[package]]
1218name = "objc_exception"
1219version = "0.1.2"
1220source = "registry+https://github.com/rust-lang/crates.io-index"
1221checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
1222dependencies = [
1223 "cc",
1224]
1225
1226[[package]]
1227name = "once_cell"
1228version = "1.5.2"
1229source = "registry+https://github.com/rust-lang/crates.io-index"
1230checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
1231
1232[[package]]
1233name = "ordered-float"
1234version = "2.1.1"
1235source = "registry+https://github.com/rust-lang/crates.io-index"
1236checksum = "766f840da25490628d8e63e529cd21c014f6600c6b8517add12a6fa6167a6218"
1237dependencies = [
1238 "num-traits",
1239]
1240
1241[[package]]
1242name = "parking"
1243version = "2.0.0"
1244source = "registry+https://github.com/rust-lang/crates.io-index"
1245checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
1246
1247[[package]]
1248name = "parking_lot"
1249version = "0.11.1"
1250source = "registry+https://github.com/rust-lang/crates.io-index"
1251checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
1252dependencies = [
1253 "instant",
1254 "lock_api",
1255 "parking_lot_core",
1256]
1257
1258[[package]]
1259name = "parking_lot_core"
1260version = "0.8.3"
1261source = "registry+https://github.com/rust-lang/crates.io-index"
1262checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
1263dependencies = [
1264 "cfg-if 1.0.0",
1265 "instant",
1266 "libc",
1267 "redox_syscall 0.2.5",
1268 "smallvec",
1269 "winapi",
1270]
1271
1272[[package]]
1273name = "pathfinder_color"
1274version = "0.5.0"
1275source = "registry+https://github.com/rust-lang/crates.io-index"
1276checksum = "69bdc0d277d559e35e1b374de56df9262a6b71e091ca04a8831a239f8c7f0c62"
1277dependencies = [
1278 "pathfinder_simd",
1279]
1280
1281[[package]]
1282name = "pathfinder_geometry"
1283version = "0.5.1"
1284source = "registry+https://github.com/rust-lang/crates.io-index"
1285checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3"
1286dependencies = [
1287 "log",
1288 "pathfinder_simd",
1289]
1290
1291[[package]]
1292name = "pathfinder_simd"
1293version = "0.5.0"
1294source = "registry+https://github.com/rust-lang/crates.io-index"
1295checksum = "b451513912d6b3440e443aa75a73ab22203afedc4a90df8526d008c0f86f7cb3"
1296dependencies = [
1297 "rustc_version",
1298]
1299
1300[[package]]
1301name = "peeking_take_while"
1302version = "0.1.2"
1303source = "registry+https://github.com/rust-lang/crates.io-index"
1304checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1305
1306[[package]]
1307name = "pico-args"
1308version = "0.4.0"
1309source = "registry+https://github.com/rust-lang/crates.io-index"
1310checksum = "d70072c20945e1ab871c472a285fc772aefd4f5407723c206242f2c6f94595d6"
1311
1312[[package]]
1313name = "pin-project-lite"
1314version = "0.2.4"
1315source = "registry+https://github.com/rust-lang/crates.io-index"
1316checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
1317
1318[[package]]
1319name = "pin-utils"
1320version = "0.1.0"
1321source = "registry+https://github.com/rust-lang/crates.io-index"
1322checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1323
1324[[package]]
1325name = "pkg-config"
1326version = "0.3.19"
1327source = "registry+https://github.com/rust-lang/crates.io-index"
1328checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
1329
1330[[package]]
1331name = "png"
1332version = "0.16.8"
1333source = "registry+https://github.com/rust-lang/crates.io-index"
1334checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
1335dependencies = [
1336 "bitflags",
1337 "crc32fast",
1338 "deflate",
1339 "miniz_oxide 0.3.7",
1340]
1341
1342[[package]]
1343name = "polling"
1344version = "2.0.2"
1345source = "registry+https://github.com/rust-lang/crates.io-index"
1346checksum = "a2a7bc6b2a29e632e45451c941832803a18cce6781db04de8a04696cdca8bde4"
1347dependencies = [
1348 "cfg-if 0.1.10",
1349 "libc",
1350 "log",
1351 "wepoll-sys",
1352 "winapi",
1353]
1354
1355[[package]]
1356name = "ppv-lite86"
1357version = "0.2.10"
1358source = "registry+https://github.com/rust-lang/crates.io-index"
1359checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
1360
1361[[package]]
1362name = "proc-macro2"
1363version = "1.0.24"
1364source = "registry+https://github.com/rust-lang/crates.io-index"
1365checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
1366dependencies = [
1367 "unicode-xid",
1368]
1369
1370[[package]]
1371name = "quote"
1372version = "1.0.9"
1373source = "registry+https://github.com/rust-lang/crates.io-index"
1374checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
1375dependencies = [
1376 "proc-macro2",
1377]
1378
1379[[package]]
1380name = "rand"
1381version = "0.4.6"
1382source = "registry+https://github.com/rust-lang/crates.io-index"
1383checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
1384dependencies = [
1385 "fuchsia-cprng",
1386 "libc",
1387 "rand_core 0.3.1",
1388 "rdrand",
1389 "winapi",
1390]
1391
1392[[package]]
1393name = "rand"
1394version = "0.8.3"
1395source = "registry+https://github.com/rust-lang/crates.io-index"
1396checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
1397dependencies = [
1398 "libc",
1399 "rand_chacha",
1400 "rand_core 0.6.2",
1401 "rand_hc",
1402]
1403
1404[[package]]
1405name = "rand_chacha"
1406version = "0.3.0"
1407source = "registry+https://github.com/rust-lang/crates.io-index"
1408checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
1409dependencies = [
1410 "ppv-lite86",
1411 "rand_core 0.6.2",
1412]
1413
1414[[package]]
1415name = "rand_core"
1416version = "0.3.1"
1417source = "registry+https://github.com/rust-lang/crates.io-index"
1418checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1419dependencies = [
1420 "rand_core 0.4.2",
1421]
1422
1423[[package]]
1424name = "rand_core"
1425version = "0.4.2"
1426source = "registry+https://github.com/rust-lang/crates.io-index"
1427checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1428
1429[[package]]
1430name = "rand_core"
1431version = "0.6.2"
1432source = "registry+https://github.com/rust-lang/crates.io-index"
1433checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
1434dependencies = [
1435 "getrandom 0.2.2",
1436]
1437
1438[[package]]
1439name = "rand_hc"
1440version = "0.3.0"
1441source = "registry+https://github.com/rust-lang/crates.io-index"
1442checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
1443dependencies = [
1444 "rand_core 0.6.2",
1445]
1446
1447[[package]]
1448name = "rctree"
1449version = "0.3.3"
1450source = "registry+https://github.com/rust-lang/crates.io-index"
1451checksum = "be9e29cb19c8fe84169fcb07f8f11e66bc9e6e0280efd4715c54818296f8a4a8"
1452
1453[[package]]
1454name = "rdrand"
1455version = "0.4.0"
1456source = "registry+https://github.com/rust-lang/crates.io-index"
1457checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1458dependencies = [
1459 "rand_core 0.3.1",
1460]
1461
1462[[package]]
1463name = "redox_syscall"
1464version = "0.1.57"
1465source = "registry+https://github.com/rust-lang/crates.io-index"
1466checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
1467
1468[[package]]
1469name = "redox_syscall"
1470version = "0.2.5"
1471source = "registry+https://github.com/rust-lang/crates.io-index"
1472checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
1473dependencies = [
1474 "bitflags",
1475]
1476
1477[[package]]
1478name = "redox_users"
1479version = "0.3.5"
1480source = "registry+https://github.com/rust-lang/crates.io-index"
1481checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
1482dependencies = [
1483 "getrandom 0.1.16",
1484 "redox_syscall 0.1.57",
1485 "rust-argon2",
1486]
1487
1488[[package]]
1489name = "redox_users"
1490version = "0.4.0"
1491source = "registry+https://github.com/rust-lang/crates.io-index"
1492checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
1493dependencies = [
1494 "getrandom 0.2.2",
1495 "redox_syscall 0.2.5",
1496]
1497
1498[[package]]
1499name = "regex"
1500version = "1.4.3"
1501source = "registry+https://github.com/rust-lang/crates.io-index"
1502checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a"
1503dependencies = [
1504 "aho-corasick",
1505 "memchr",
1506 "regex-syntax",
1507 "thread_local",
1508]
1509
1510[[package]]
1511name = "regex-syntax"
1512version = "0.6.22"
1513source = "registry+https://github.com/rust-lang/crates.io-index"
1514checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
1515
1516[[package]]
1517name = "remove_dir_all"
1518version = "0.5.3"
1519source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1521dependencies = [
1522 "winapi",
1523]
1524
1525[[package]]
1526name = "replace_with"
1527version = "0.1.7"
1528source = "registry+https://github.com/rust-lang/crates.io-index"
1529checksum = "e3a8614ee435691de62bcffcf4a66d91b3594bf1428a5722e79103249a095690"
1530
1531[[package]]
1532name = "resvg"
1533version = "0.14.0"
1534source = "registry+https://github.com/rust-lang/crates.io-index"
1535checksum = "ac9efbe9c239253e11e518352c5f015ec0c69e73658eed153670e853e1b78e40"
1536dependencies = [
1537 "jpeg-decoder",
1538 "log",
1539 "pico-args",
1540 "png",
1541 "rgb",
1542 "svgfilters",
1543 "tiny-skia",
1544 "usvg",
1545]
1546
1547[[package]]
1548name = "rgb"
1549version = "0.8.27"
1550source = "registry+https://github.com/rust-lang/crates.io-index"
1551checksum = "8fddb3b23626145d1776addfc307e1a1851f60ef6ca64f376bcb889697144cf0"
1552dependencies = [
1553 "bytemuck",
1554]
1555
1556[[package]]
1557name = "roxmltree"
1558version = "0.14.1"
1559source = "registry+https://github.com/rust-lang/crates.io-index"
1560checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b"
1561dependencies = [
1562 "xmlparser",
1563]
1564
1565[[package]]
1566name = "rust-argon2"
1567version = "0.8.3"
1568source = "registry+https://github.com/rust-lang/crates.io-index"
1569checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
1570dependencies = [
1571 "base64",
1572 "blake2b_simd",
1573 "constant_time_eq",
1574 "crossbeam-utils 0.8.2",
1575]
1576
1577[[package]]
1578name = "rust-embed"
1579version = "5.9.0"
1580source = "registry+https://github.com/rust-lang/crates.io-index"
1581checksum = "2fe1fe6aac5d6bb9e1ffd81002340363272a7648234ec7bdfac5ee202cb65523"
1582dependencies = [
1583 "rust-embed-impl",
1584 "rust-embed-utils",
1585 "walkdir",
1586]
1587
1588[[package]]
1589name = "rust-embed-impl"
1590version = "5.9.0"
1591source = "registry+https://github.com/rust-lang/crates.io-index"
1592checksum = "3ed91c41c42ef7bf687384439c312e75e0da9c149b0390889b94de3c7d9d9e66"
1593dependencies = [
1594 "proc-macro2",
1595 "quote",
1596 "rust-embed-utils",
1597 "syn",
1598 "walkdir",
1599]
1600
1601[[package]]
1602name = "rust-embed-utils"
1603version = "5.1.0"
1604source = "registry+https://github.com/rust-lang/crates.io-index"
1605checksum = "2a512219132473ab0a77b52077059f1c47ce4af7fbdc94503e9862a34422876d"
1606dependencies = [
1607 "walkdir",
1608]
1609
1610[[package]]
1611name = "rustc-hash"
1612version = "1.1.0"
1613source = "registry+https://github.com/rust-lang/crates.io-index"
1614checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1615
1616[[package]]
1617name = "rustc_version"
1618version = "0.2.3"
1619source = "registry+https://github.com/rust-lang/crates.io-index"
1620checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1621dependencies = [
1622 "semver",
1623]
1624
1625[[package]]
1626name = "rustybuzz"
1627version = "0.3.0"
1628source = "registry+https://github.com/rust-lang/crates.io-index"
1629checksum = "0ab463a295d00f3692e0974a0bfd83c7a9bcd119e27e07c2beecdb1b44a09d10"
1630dependencies = [
1631 "bitflags",
1632 "bytemuck",
1633 "smallvec",
1634 "ttf-parser 0.9.0",
1635 "unicode-bidi-mirroring",
1636 "unicode-ccc",
1637 "unicode-general-category",
1638 "unicode-script",
1639]
1640
1641[[package]]
1642name = "ryu"
1643version = "1.0.5"
1644source = "registry+https://github.com/rust-lang/crates.io-index"
1645checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
1646
1647[[package]]
1648name = "safe_arch"
1649version = "0.5.2"
1650source = "registry+https://github.com/rust-lang/crates.io-index"
1651checksum = "c1ff3d6d9696af502cc3110dacce942840fb06ff4514cad92236ecc455f2ce05"
1652dependencies = [
1653 "bytemuck",
1654]
1655
1656[[package]]
1657name = "same-file"
1658version = "1.0.6"
1659source = "registry+https://github.com/rust-lang/crates.io-index"
1660checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1661dependencies = [
1662 "winapi-util",
1663]
1664
1665[[package]]
1666name = "scoped-tls"
1667version = "1.0.0"
1668source = "registry+https://github.com/rust-lang/crates.io-index"
1669checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
1670
1671[[package]]
1672name = "scopeguard"
1673version = "1.1.0"
1674source = "registry+https://github.com/rust-lang/crates.io-index"
1675checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1676
1677[[package]]
1678name = "semver"
1679version = "0.9.0"
1680source = "registry+https://github.com/rust-lang/crates.io-index"
1681checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1682dependencies = [
1683 "semver-parser",
1684]
1685
1686[[package]]
1687name = "semver-parser"
1688version = "0.7.0"
1689source = "registry+https://github.com/rust-lang/crates.io-index"
1690checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1691
1692[[package]]
1693name = "serde"
1694version = "1.0.124"
1695source = "registry+https://github.com/rust-lang/crates.io-index"
1696checksum = "bd761ff957cb2a45fbb9ab3da6512de9de55872866160b23c25f1a841e99d29f"
1697
1698[[package]]
1699name = "serde_json"
1700version = "1.0.64"
1701source = "registry+https://github.com/rust-lang/crates.io-index"
1702checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
1703dependencies = [
1704 "itoa",
1705 "ryu",
1706 "serde",
1707]
1708
1709[[package]]
1710name = "servo-fontconfig"
1711version = "0.5.1"
1712source = "registry+https://github.com/rust-lang/crates.io-index"
1713checksum = "c7e3e22fe5fd73d04ebf0daa049d3efe3eae55369ce38ab16d07ddd9ac5c217c"
1714dependencies = [
1715 "libc",
1716 "servo-fontconfig-sys",
1717]
1718
1719[[package]]
1720name = "servo-fontconfig-sys"
1721version = "5.1.0"
1722source = "registry+https://github.com/rust-lang/crates.io-index"
1723checksum = "e36b879db9892dfa40f95da1c38a835d41634b825fbd8c4c418093d53c24b388"
1724dependencies = [
1725 "expat-sys",
1726 "freetype-sys",
1727 "pkg-config",
1728]
1729
1730[[package]]
1731name = "shlex"
1732version = "0.1.1"
1733source = "registry+https://github.com/rust-lang/crates.io-index"
1734checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
1735
1736[[package]]
1737name = "signal-hook"
1738version = "0.3.6"
1739source = "registry+https://github.com/rust-lang/crates.io-index"
1740checksum = "8a7f3f92a1da3d6b1d32245d0cbcbbab0cfc45996d8df619c42bccfa6d2bbb5f"
1741dependencies = [
1742 "libc",
1743 "signal-hook-registry",
1744]
1745
1746[[package]]
1747name = "signal-hook-registry"
1748version = "1.3.0"
1749source = "registry+https://github.com/rust-lang/crates.io-index"
1750checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
1751dependencies = [
1752 "libc",
1753]
1754
1755[[package]]
1756name = "simplecss"
1757version = "0.2.0"
1758source = "registry+https://github.com/rust-lang/crates.io-index"
1759checksum = "596554e63596d556a0dbd681416342ca61c75f1a45203201e7e77d3fa2fa9014"
1760dependencies = [
1761 "log",
1762]
1763
1764[[package]]
1765name = "simplelog"
1766version = "0.9.0"
1767source = "registry+https://github.com/rust-lang/crates.io-index"
1768checksum = "4bc0ffd69814a9b251d43afcabf96dad1b29f5028378056257be9e3fecc9f720"
1769dependencies = [
1770 "chrono",
1771 "log",
1772 "termcolor",
1773]
1774
1775[[package]]
1776name = "siphasher"
1777version = "0.2.3"
1778source = "registry+https://github.com/rust-lang/crates.io-index"
1779checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac"
1780
1781[[package]]
1782name = "slab"
1783version = "0.4.2"
1784source = "registry+https://github.com/rust-lang/crates.io-index"
1785checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
1786
1787[[package]]
1788name = "smallvec"
1789version = "1.6.1"
1790source = "registry+https://github.com/rust-lang/crates.io-index"
1791checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
1792
1793[[package]]
1794name = "smol"
1795version = "1.2.5"
1796source = "registry+https://github.com/rust-lang/crates.io-index"
1797checksum = "85cf3b5351f3e783c1d79ab5fc604eeed8b8ae9abd36b166e8b87a089efd85e4"
1798dependencies = [
1799 "async-channel",
1800 "async-executor",
1801 "async-fs",
1802 "async-io",
1803 "async-lock",
1804 "async-net",
1805 "async-process",
1806 "blocking",
1807 "futures-lite",
1808 "once_cell",
1809]
1810
1811[[package]]
1812name = "socket2"
1813version = "0.3.19"
1814source = "registry+https://github.com/rust-lang/crates.io-index"
1815checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
1816dependencies = [
1817 "cfg-if 1.0.0",
1818 "libc",
1819 "winapi",
1820]
1821
1822[[package]]
1823name = "strsim"
1824version = "0.8.0"
1825source = "registry+https://github.com/rust-lang/crates.io-index"
1826checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1827
1828[[package]]
1829name = "svg_fmt"
1830version = "0.4.1"
1831source = "registry+https://github.com/rust-lang/crates.io-index"
1832checksum = "8fb1df15f412ee2e9dfc1c504260fa695c1c3f10fe9f4a6ee2d2184d7d6450e2"
1833
1834[[package]]
1835name = "svgfilters"
1836version = "0.3.0"
1837source = "registry+https://github.com/rust-lang/crates.io-index"
1838checksum = "fb0dce2fee79ac40c21dafba48565ff7a5fa275e23ffe9ce047a40c9574ba34e"
1839dependencies = [
1840 "float-cmp",
1841 "rgb",
1842]
1843
1844[[package]]
1845name = "svgtypes"
1846version = "0.5.0"
1847source = "registry+https://github.com/rust-lang/crates.io-index"
1848checksum = "9c536faaff1a10837cfe373142583f6e27d81e96beba339147e77b67c9f260ff"
1849dependencies = [
1850 "float-cmp",
1851 "siphasher",
1852]
1853
1854[[package]]
1855name = "syn"
1856version = "1.0.67"
1857source = "registry+https://github.com/rust-lang/crates.io-index"
1858checksum = "6498a9efc342871f91cc2d0d694c674368b4ceb40f62b65a7a08c3792935e702"
1859dependencies = [
1860 "proc-macro2",
1861 "quote",
1862 "unicode-xid",
1863]
1864
1865[[package]]
1866name = "tempdir"
1867version = "0.3.7"
1868source = "registry+https://github.com/rust-lang/crates.io-index"
1869checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
1870dependencies = [
1871 "rand 0.4.6",
1872 "remove_dir_all",
1873]
1874
1875[[package]]
1876name = "termcolor"
1877version = "1.1.2"
1878source = "registry+https://github.com/rust-lang/crates.io-index"
1879checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
1880dependencies = [
1881 "winapi-util",
1882]
1883
1884[[package]]
1885name = "textwrap"
1886version = "0.11.0"
1887source = "registry+https://github.com/rust-lang/crates.io-index"
1888checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1889dependencies = [
1890 "unicode-width",
1891]
1892
1893[[package]]
1894name = "thread_local"
1895version = "1.1.3"
1896source = "registry+https://github.com/rust-lang/crates.io-index"
1897checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
1898dependencies = [
1899 "once_cell",
1900]
1901
1902[[package]]
1903name = "time"
1904version = "0.1.44"
1905source = "registry+https://github.com/rust-lang/crates.io-index"
1906checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1907dependencies = [
1908 "libc",
1909 "wasi 0.10.0+wasi-snapshot-preview1",
1910 "winapi",
1911]
1912
1913[[package]]
1914name = "tiny-skia"
1915version = "0.5.1"
1916source = "registry+https://github.com/rust-lang/crates.io-index"
1917checksum = "1bf81f2900d2e235220e6f31ec9f63ade6a7f59090c556d74fe949bb3b15e9fe"
1918dependencies = [
1919 "arrayref",
1920 "arrayvec",
1921 "bytemuck",
1922 "cfg-if 1.0.0",
1923 "png",
1924 "safe_arch",
1925]
1926
1927[[package]]
1928name = "tree-sitter"
1929version = "0.17.1"
1930source = "registry+https://github.com/rust-lang/crates.io-index"
1931checksum = "d18dcb776d3affaba6db04d11d645946d34a69b3172e588af96ce9fecd20faac"
1932dependencies = [
1933 "cc",
1934 "regex",
1935]
1936
1937[[package]]
1938name = "ttf-parser"
1939version = "0.9.0"
1940source = "registry+https://github.com/rust-lang/crates.io-index"
1941checksum = "62ddb402ac6c2af6f7a2844243887631c4e94b51585b229fcfddb43958cd55ca"
1942
1943[[package]]
1944name = "ttf-parser"
1945version = "0.12.0"
1946source = "registry+https://github.com/rust-lang/crates.io-index"
1947checksum = "85e00391c1f3d171490a3f8bd79999b0002ae38d3da0d6a3a306c754b053d71b"
1948
1949[[package]]
1950name = "unicode-bidi"
1951version = "0.3.4"
1952source = "registry+https://github.com/rust-lang/crates.io-index"
1953checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
1954dependencies = [
1955 "matches",
1956]
1957
1958[[package]]
1959name = "unicode-bidi-mirroring"
1960version = "0.1.0"
1961source = "registry+https://github.com/rust-lang/crates.io-index"
1962checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694"
1963
1964[[package]]
1965name = "unicode-ccc"
1966version = "0.1.1"
1967source = "registry+https://github.com/rust-lang/crates.io-index"
1968checksum = "28ae07c514c335bbd0251147bb1de333e28ebc8f57d792014f919ed212d119f6"
1969
1970[[package]]
1971name = "unicode-general-category"
1972version = "0.2.0"
1973source = "registry+https://github.com/rust-lang/crates.io-index"
1974checksum = "7f9af028e052a610d99e066b33304625dea9613170a2563314490a4e6ec5cf7f"
1975
1976[[package]]
1977name = "unicode-script"
1978version = "0.5.2"
1979source = "registry+https://github.com/rust-lang/crates.io-index"
1980checksum = "79bf4d5fc96546fdb73f9827097810bbda93b11a6770ff3a54e1f445d4135787"
1981
1982[[package]]
1983name = "unicode-vo"
1984version = "0.1.0"
1985source = "registry+https://github.com/rust-lang/crates.io-index"
1986checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
1987
1988[[package]]
1989name = "unicode-width"
1990version = "0.1.8"
1991source = "registry+https://github.com/rust-lang/crates.io-index"
1992checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
1993
1994[[package]]
1995name = "unicode-xid"
1996version = "0.2.1"
1997source = "registry+https://github.com/rust-lang/crates.io-index"
1998checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
1999
2000[[package]]
2001name = "unindent"
2002version = "0.1.7"
2003source = "registry+https://github.com/rust-lang/crates.io-index"
2004checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7"
2005
2006[[package]]
2007name = "usvg"
2008version = "0.14.0"
2009source = "registry+https://github.com/rust-lang/crates.io-index"
2010checksum = "5ffbeb91d06989028c9c5e44d14d78b0cacdec56a613bb146e7a70007b1b6163"
2011dependencies = [
2012 "base64",
2013 "data-url",
2014 "flate2",
2015 "fontdb",
2016 "kurbo",
2017 "log",
2018 "memmap2 0.2.2",
2019 "pico-args",
2020 "rctree",
2021 "roxmltree",
2022 "rustybuzz",
2023 "simplecss",
2024 "siphasher",
2025 "svgtypes",
2026 "ttf-parser 0.12.0",
2027 "unicode-bidi",
2028 "unicode-script",
2029 "unicode-vo",
2030 "xmlwriter",
2031]
2032
2033[[package]]
2034name = "value-bag"
2035version = "1.0.0-alpha.6"
2036source = "registry+https://github.com/rust-lang/crates.io-index"
2037checksum = "6b676010e055c99033117c2343b33a40a30b91fecd6c49055ac9cd2d6c305ab1"
2038dependencies = [
2039 "ctor",
2040]
2041
2042[[package]]
2043name = "vec-arena"
2044version = "1.0.0"
2045source = "registry+https://github.com/rust-lang/crates.io-index"
2046checksum = "eafc1b9b2dfc6f5529177b62cf806484db55b32dc7c9658a118e11bbeb33061d"
2047
2048[[package]]
2049name = "vec_map"
2050version = "0.8.2"
2051source = "registry+https://github.com/rust-lang/crates.io-index"
2052checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2053
2054[[package]]
2055name = "version_check"
2056version = "0.9.2"
2057source = "registry+https://github.com/rust-lang/crates.io-index"
2058checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2059
2060[[package]]
2061name = "waker-fn"
2062version = "1.1.0"
2063source = "registry+https://github.com/rust-lang/crates.io-index"
2064checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2065
2066[[package]]
2067name = "walkdir"
2068version = "2.3.1"
2069source = "registry+https://github.com/rust-lang/crates.io-index"
2070checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2071dependencies = [
2072 "same-file",
2073 "winapi",
2074 "winapi-util",
2075]
2076
2077[[package]]
2078name = "wasi"
2079version = "0.9.0+wasi-snapshot-preview1"
2080source = "registry+https://github.com/rust-lang/crates.io-index"
2081checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2082
2083[[package]]
2084name = "wasi"
2085version = "0.10.0+wasi-snapshot-preview1"
2086source = "registry+https://github.com/rust-lang/crates.io-index"
2087checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2088
2089[[package]]
2090name = "wasm-bindgen"
2091version = "0.2.73"
2092source = "registry+https://github.com/rust-lang/crates.io-index"
2093checksum = "83240549659d187488f91f33c0f8547cbfef0b2088bc470c116d1d260ef623d9"
2094dependencies = [
2095 "cfg-if 1.0.0",
2096 "wasm-bindgen-macro",
2097]
2098
2099[[package]]
2100name = "wasm-bindgen-backend"
2101version = "0.2.73"
2102source = "registry+https://github.com/rust-lang/crates.io-index"
2103checksum = "ae70622411ca953215ca6d06d3ebeb1e915f0f6613e3b495122878d7ebec7dae"
2104dependencies = [
2105 "bumpalo",
2106 "lazy_static",
2107 "log",
2108 "proc-macro2",
2109 "quote",
2110 "syn",
2111 "wasm-bindgen-shared",
2112]
2113
2114[[package]]
2115name = "wasm-bindgen-futures"
2116version = "0.4.23"
2117source = "registry+https://github.com/rust-lang/crates.io-index"
2118checksum = "81b8b767af23de6ac18bf2168b690bed2902743ddf0fb39252e36f9e2bfc63ea"
2119dependencies = [
2120 "cfg-if 1.0.0",
2121 "js-sys",
2122 "wasm-bindgen",
2123 "web-sys",
2124]
2125
2126[[package]]
2127name = "wasm-bindgen-macro"
2128version = "0.2.73"
2129source = "registry+https://github.com/rust-lang/crates.io-index"
2130checksum = "3e734d91443f177bfdb41969de821e15c516931c3c3db3d318fa1b68975d0f6f"
2131dependencies = [
2132 "quote",
2133 "wasm-bindgen-macro-support",
2134]
2135
2136[[package]]
2137name = "wasm-bindgen-macro-support"
2138version = "0.2.73"
2139source = "registry+https://github.com/rust-lang/crates.io-index"
2140checksum = "d53739ff08c8a68b0fdbcd54c372b8ab800b1449ab3c9d706503bc7dd1621b2c"
2141dependencies = [
2142 "proc-macro2",
2143 "quote",
2144 "syn",
2145 "wasm-bindgen-backend",
2146 "wasm-bindgen-shared",
2147]
2148
2149[[package]]
2150name = "wasm-bindgen-shared"
2151version = "0.2.73"
2152source = "registry+https://github.com/rust-lang/crates.io-index"
2153checksum = "d9a543ae66aa233d14bb765ed9af4a33e81b8b58d1584cf1b47ff8cd0b9e4489"
2154
2155[[package]]
2156name = "web-sys"
2157version = "0.3.50"
2158source = "registry+https://github.com/rust-lang/crates.io-index"
2159checksum = "a905d57e488fec8861446d3393670fb50d27a262344013181c2cdf9fff5481be"
2160dependencies = [
2161 "js-sys",
2162 "wasm-bindgen",
2163]
2164
2165[[package]]
2166name = "wepoll-sys"
2167version = "3.0.1"
2168source = "registry+https://github.com/rust-lang/crates.io-index"
2169checksum = "0fcb14dea929042224824779fbc82d9fab8d2e6d3cbc0ac404de8edf489e77ff"
2170dependencies = [
2171 "cc",
2172]
2173
2174[[package]]
2175name = "which"
2176version = "3.1.1"
2177source = "registry+https://github.com/rust-lang/crates.io-index"
2178checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
2179dependencies = [
2180 "libc",
2181]
2182
2183[[package]]
2184name = "winapi"
2185version = "0.3.9"
2186source = "registry+https://github.com/rust-lang/crates.io-index"
2187checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2188dependencies = [
2189 "winapi-i686-pc-windows-gnu",
2190 "winapi-x86_64-pc-windows-gnu",
2191]
2192
2193[[package]]
2194name = "winapi-i686-pc-windows-gnu"
2195version = "0.4.0"
2196source = "registry+https://github.com/rust-lang/crates.io-index"
2197checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2198
2199[[package]]
2200name = "winapi-util"
2201version = "0.1.5"
2202source = "registry+https://github.com/rust-lang/crates.io-index"
2203checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2204dependencies = [
2205 "winapi",
2206]
2207
2208[[package]]
2209name = "winapi-x86_64-pc-windows-gnu"
2210version = "0.4.0"
2211source = "registry+https://github.com/rust-lang/crates.io-index"
2212checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2213
2214[[package]]
2215name = "wio"
2216version = "0.2.2"
2217source = "registry+https://github.com/rust-lang/crates.io-index"
2218checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5"
2219dependencies = [
2220 "winapi",
2221]
2222
2223[[package]]
2224name = "xmlparser"
2225version = "0.13.3"
2226source = "registry+https://github.com/rust-lang/crates.io-index"
2227checksum = "114ba2b24d2167ef6d67d7d04c8cc86522b87f490025f39f0303b7db5bf5e3d8"
2228
2229[[package]]
2230name = "xmlwriter"
2231version = "0.1.0"
2232source = "registry+https://github.com/rust-lang/crates.io-index"
2233checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
2234
2235[[package]]
2236name = "zed"
2237version = "0.1.0"
2238dependencies = [
2239 "anyhow",
2240 "arrayvec",
2241 "crossbeam-channel 0.5.0",
2242 "dirs",
2243 "easy-parallel",
2244 "futures-core",
2245 "gpui",
2246 "ignore",
2247 "lazy_static",
2248 "libc",
2249 "log",
2250 "num_cpus",
2251 "parking_lot",
2252 "rand 0.8.3",
2253 "rust-embed",
2254 "serde_json",
2255 "simplelog",
2256 "smallvec",
2257 "smol",
2258 "tempdir",
2259 "unindent",
2260]