macroblog.rs @ 49a58e285b2078bfd5883ef79789f27b4450d040

   1# This file is automatically @generated by Cargo.
   2# It is not intended for manual editing.
   3version = 3
   4
   5[[package]]
   6name = "actix-codec"
   7version = "0.5.0"
   8source = "registry+https://github.com/rust-lang/crates.io-index"
   9checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
  10dependencies = [
  11 "bitflags",
  12 "bytes",
  13 "futures-core",
  14 "futures-sink",
  15 "log",
  16 "memchr",
  17 "pin-project-lite",
  18 "tokio",
  19 "tokio-util",
  20]
  21
  22[[package]]
  23name = "actix-http"
  24version = "3.0.4"
  25source = "registry+https://github.com/rust-lang/crates.io-index"
  26checksum = "a5885cb81a0d4d0d322864bea1bb6c2a8144626b4fdc625d4c51eba197e7797a"
  27dependencies = [
  28 "actix-codec",
  29 "actix-rt",
  30 "actix-service",
  31 "actix-utils",
  32 "ahash",
  33 "base64",
  34 "bitflags",
  35 "brotli",
  36 "bytes",
  37 "bytestring",
  38 "derive_more",
  39 "encoding_rs",
  40 "flate2",
  41 "futures-core",
  42 "h2",
  43 "http",
  44 "httparse",
  45 "httpdate",
  46 "itoa",
  47 "language-tags",
  48 "local-channel",
  49 "log",
  50 "mime",
  51 "percent-encoding",
  52 "pin-project-lite",
  53 "rand",
  54 "sha-1",
  55 "smallvec",
  56 "zstd",
  57]
  58
  59[[package]]
  60name = "actix-macros"
  61version = "0.2.3"
  62source = "registry+https://github.com/rust-lang/crates.io-index"
  63checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
  64dependencies = [
  65 "quote",
  66 "syn",
  67]
  68
  69[[package]]
  70name = "actix-router"
  71version = "0.5.0"
  72source = "registry+https://github.com/rust-lang/crates.io-index"
  73checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
  74dependencies = [
  75 "bytestring",
  76 "firestorm",
  77 "http",
  78 "log",
  79 "regex",
  80 "serde",
  81]
  82
  83[[package]]
  84name = "actix-rt"
  85version = "2.7.0"
  86source = "registry+https://github.com/rust-lang/crates.io-index"
  87checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
  88dependencies = [
  89 "futures-core",
  90 "tokio",
  91]
  92
  93[[package]]
  94name = "actix-server"
  95version = "2.1.1"
  96source = "registry+https://github.com/rust-lang/crates.io-index"
  97checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
  98dependencies = [
  99 "actix-rt",
 100 "actix-service",
 101 "actix-utils",
 102 "futures-core",
 103 "futures-util",
 104 "mio",
 105 "num_cpus",
 106 "socket2",
 107 "tokio",
 108 "tracing",
 109]
 110
 111[[package]]
 112name = "actix-service"
 113version = "2.0.2"
 114source = "registry+https://github.com/rust-lang/crates.io-index"
 115checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
 116dependencies = [
 117 "futures-core",
 118 "paste",
 119 "pin-project-lite",
 120]
 121
 122[[package]]
 123name = "actix-utils"
 124version = "3.0.0"
 125source = "registry+https://github.com/rust-lang/crates.io-index"
 126checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
 127dependencies = [
 128 "local-waker",
 129 "pin-project-lite",
 130]
 131
 132[[package]]
 133name = "actix-web"
 134version = "4.0.1"
 135source = "registry+https://github.com/rust-lang/crates.io-index"
 136checksum = "f4e5ebffd51d50df56a3ae0de0e59487340ca456f05dd0b90c0a7a6dd6a74d31"
 137dependencies = [
 138 "actix-codec",
 139 "actix-http",
 140 "actix-macros",
 141 "actix-router",
 142 "actix-rt",
 143 "actix-server",
 144 "actix-service",
 145 "actix-utils",
 146 "actix-web-codegen",
 147 "ahash",
 148 "bytes",
 149 "bytestring",
 150 "cfg-if",
 151 "cookie",
 152 "derive_more",
 153 "encoding_rs",
 154 "futures-core",
 155 "futures-util",
 156 "itoa",
 157 "language-tags",
 158 "log",
 159 "mime",
 160 "once_cell",
 161 "pin-project-lite",
 162 "regex",
 163 "serde",
 164 "serde_json",
 165 "serde_urlencoded",
 166 "smallvec",
 167 "socket2",
 168 "time 0.3.9",
 169 "url",
 170]
 171
 172[[package]]
 173name = "actix-web-codegen"
 174version = "4.0.0"
 175source = "registry+https://github.com/rust-lang/crates.io-index"
 176checksum = "7525bedf54704abb1d469e88d7e7e9226df73778798a69cea5022d53b2ae91bc"
 177dependencies = [
 178 "actix-router",
 179 "proc-macro2",
 180 "quote",
 181 "syn",
 182]
 183
 184[[package]]
 185name = "adler"
 186version = "1.0.2"
 187source = "registry+https://github.com/rust-lang/crates.io-index"
 188checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
 189
 190[[package]]
 191name = "ahash"
 192version = "0.7.6"
 193source = "registry+https://github.com/rust-lang/crates.io-index"
 194checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
 195dependencies = [
 196 "getrandom",
 197 "once_cell",
 198 "version_check",
 199]
 200
 201[[package]]
 202name = "aho-corasick"
 203version = "0.7.18"
 204source = "registry+https://github.com/rust-lang/crates.io-index"
 205checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
 206dependencies = [
 207 "memchr",
 208]
 209
 210[[package]]
 211name = "alloc-no-stdlib"
 212version = "2.0.3"
 213source = "registry+https://github.com/rust-lang/crates.io-index"
 214checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
 215
 216[[package]]
 217name = "alloc-stdlib"
 218version = "0.2.1"
 219source = "registry+https://github.com/rust-lang/crates.io-index"
 220checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
 221dependencies = [
 222 "alloc-no-stdlib",
 223]
 224
 225[[package]]
 226name = "autocfg"
 227version = "1.1.0"
 228source = "registry+https://github.com/rust-lang/crates.io-index"
 229checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
 230
 231[[package]]
 232name = "base64"
 233version = "0.13.0"
 234source = "registry+https://github.com/rust-lang/crates.io-index"
 235checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
 236
 237[[package]]
 238name = "bitflags"
 239version = "1.3.2"
 240source = "registry+https://github.com/rust-lang/crates.io-index"
 241checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
 242
 243[[package]]
 244name = "block-buffer"
 245version = "0.9.0"
 246source = "registry+https://github.com/rust-lang/crates.io-index"
 247checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
 248dependencies = [
 249 "generic-array",
 250]
 251
 252[[package]]
 253name = "block-buffer"
 254version = "0.10.2"
 255source = "registry+https://github.com/rust-lang/crates.io-index"
 256checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
 257dependencies = [
 258 "generic-array",
 259]
 260
 261[[package]]
 262name = "brotli"
 263version = "3.3.4"
 264source = "registry+https://github.com/rust-lang/crates.io-index"
 265checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
 266dependencies = [
 267 "alloc-no-stdlib",
 268 "alloc-stdlib",
 269 "brotli-decompressor",
 270]
 271
 272[[package]]
 273name = "brotli-decompressor"
 274version = "2.3.2"
 275source = "registry+https://github.com/rust-lang/crates.io-index"
 276checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
 277dependencies = [
 278 "alloc-no-stdlib",
 279 "alloc-stdlib",
 280]
 281
 282[[package]]
 283name = "bytes"
 284version = "1.1.0"
 285source = "registry+https://github.com/rust-lang/crates.io-index"
 286checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
 287
 288[[package]]
 289name = "bytestring"
 290version = "1.0.0"
 291source = "registry+https://github.com/rust-lang/crates.io-index"
 292checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
 293dependencies = [
 294 "bytes",
 295]
 296
 297[[package]]
 298name = "cc"
 299version = "1.0.73"
 300source = "registry+https://github.com/rust-lang/crates.io-index"
 301checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
 302dependencies = [
 303 "jobserver",
 304]
 305
 306[[package]]
 307name = "cfg-if"
 308version = "1.0.0"
 309source = "registry+https://github.com/rust-lang/crates.io-index"
 310checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
 311
 312[[package]]
 313name = "chrono"
 314version = "0.4.19"
 315source = "registry+https://github.com/rust-lang/crates.io-index"
 316checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
 317dependencies = [
 318 "libc",
 319 "num-integer",
 320 "num-traits",
 321 "time 0.1.44",
 322 "winapi",
 323]
 324
 325[[package]]
 326name = "convert_case"
 327version = "0.4.0"
 328source = "registry+https://github.com/rust-lang/crates.io-index"
 329checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
 330
 331[[package]]
 332name = "cookie"
 333version = "0.16.0"
 334source = "registry+https://github.com/rust-lang/crates.io-index"
 335checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
 336dependencies = [
 337 "percent-encoding",
 338 "time 0.3.9",
 339 "version_check",
 340]
 341
 342[[package]]
 343name = "cpufeatures"
 344version = "0.2.2"
 345source = "registry+https://github.com/rust-lang/crates.io-index"
 346checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
 347dependencies = [
 348 "libc",
 349]
 350
 351[[package]]
 352name = "crc32fast"
 353version = "1.3.2"
 354source = "registry+https://github.com/rust-lang/crates.io-index"
 355checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
 356dependencies = [
 357 "cfg-if",
 358]
 359
 360[[package]]
 361name = "crypto-common"
 362version = "0.1.3"
 363source = "registry+https://github.com/rust-lang/crates.io-index"
 364checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
 365dependencies = [
 366 "generic-array",
 367 "typenum",
 368]
 369
 370[[package]]
 371name = "derive_more"
 372version = "0.99.17"
 373source = "registry+https://github.com/rust-lang/crates.io-index"
 374checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
 375dependencies = [
 376 "convert_case",
 377 "proc-macro2",
 378 "quote",
 379 "rustc_version",
 380 "syn",
 381]
 382
 383[[package]]
 384name = "digest"
 385version = "0.9.0"
 386source = "registry+https://github.com/rust-lang/crates.io-index"
 387checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
 388dependencies = [
 389 "generic-array",
 390]
 391
 392[[package]]
 393name = "digest"
 394version = "0.10.3"
 395source = "registry+https://github.com/rust-lang/crates.io-index"
 396checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
 397dependencies = [
 398 "block-buffer 0.10.2",
 399 "crypto-common",
 400]
 401
 402[[package]]
 403name = "encoding_rs"
 404version = "0.8.31"
 405source = "registry+https://github.com/rust-lang/crates.io-index"
 406checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
 407dependencies = [
 408 "cfg-if",
 409]
 410
 411[[package]]
 412name = "filetime"
 413version = "0.2.16"
 414source = "registry+https://github.com/rust-lang/crates.io-index"
 415checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c"
 416dependencies = [
 417 "cfg-if",
 418 "libc",
 419 "redox_syscall",
 420 "winapi",
 421]
 422
 423[[package]]
 424name = "firestorm"
 425version = "0.5.0"
 426source = "registry+https://github.com/rust-lang/crates.io-index"
 427checksum = "4d3d6188b8804df28032815ea256b6955c9625c24da7525f387a7af02fbb8f01"
 428
 429[[package]]
 430name = "flate2"
 431version = "1.0.23"
 432source = "registry+https://github.com/rust-lang/crates.io-index"
 433checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
 434dependencies = [
 435 "cfg-if",
 436 "crc32fast",
 437 "libc",
 438 "miniz_oxide",
 439]
 440
 441[[package]]
 442name = "fnv"
 443version = "1.0.7"
 444source = "registry+https://github.com/rust-lang/crates.io-index"
 445checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
 446
 447[[package]]
 448name = "form_urlencoded"
 449version = "1.0.1"
 450source = "registry+https://github.com/rust-lang/crates.io-index"
 451checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
 452dependencies = [
 453 "matches",
 454 "percent-encoding",
 455]
 456
 457[[package]]
 458name = "futures-channel"
 459version = "0.3.21"
 460source = "registry+https://github.com/rust-lang/crates.io-index"
 461checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
 462dependencies = [
 463 "futures-core",
 464]
 465
 466[[package]]
 467name = "futures-core"
 468version = "0.3.21"
 469source = "registry+https://github.com/rust-lang/crates.io-index"
 470checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
 471
 472[[package]]
 473name = "futures-sink"
 474version = "0.3.21"
 475source = "registry+https://github.com/rust-lang/crates.io-index"
 476checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
 477
 478[[package]]
 479name = "futures-task"
 480version = "0.3.21"
 481source = "registry+https://github.com/rust-lang/crates.io-index"
 482checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
 483
 484[[package]]
 485name = "futures-util"
 486version = "0.3.21"
 487source = "registry+https://github.com/rust-lang/crates.io-index"
 488checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
 489dependencies = [
 490 "futures-core",
 491 "futures-task",
 492 "pin-project-lite",
 493 "pin-utils",
 494]
 495
 496[[package]]
 497name = "generic-array"
 498version = "0.14.5"
 499source = "registry+https://github.com/rust-lang/crates.io-index"
 500checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
 501dependencies = [
 502 "typenum",
 503 "version_check",
 504]
 505
 506[[package]]
 507name = "getrandom"
 508version = "0.2.6"
 509source = "registry+https://github.com/rust-lang/crates.io-index"
 510checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
 511dependencies = [
 512 "cfg-if",
 513 "libc",
 514 "wasi 0.10.0+wasi-snapshot-preview1",
 515]
 516
 517[[package]]
 518name = "h2"
 519version = "0.3.13"
 520source = "registry+https://github.com/rust-lang/crates.io-index"
 521checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
 522dependencies = [
 523 "bytes",
 524 "fnv",
 525 "futures-core",
 526 "futures-sink",
 527 "futures-util",
 528 "http",
 529 "indexmap",
 530 "slab",
 531 "tokio",
 532 "tokio-util",
 533 "tracing",
 534]
 535
 536[[package]]
 537name = "hashbrown"
 538version = "0.11.2"
 539source = "registry+https://github.com/rust-lang/crates.io-index"
 540checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
 541
 542[[package]]
 543name = "hermit-abi"
 544version = "0.1.19"
 545source = "registry+https://github.com/rust-lang/crates.io-index"
 546checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
 547dependencies = [
 548 "libc",
 549]
 550
 551[[package]]
 552name = "home"
 553version = "0.5.3"
 554source = "registry+https://github.com/rust-lang/crates.io-index"
 555checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
 556dependencies = [
 557 "winapi",
 558]
 559
 560[[package]]
 561name = "http"
 562version = "0.2.7"
 563source = "registry+https://github.com/rust-lang/crates.io-index"
 564checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
 565dependencies = [
 566 "bytes",
 567 "fnv",
 568 "itoa",
 569]
 570
 571[[package]]
 572name = "http-body"
 573version = "0.4.4"
 574source = "registry+https://github.com/rust-lang/crates.io-index"
 575checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
 576dependencies = [
 577 "bytes",
 578 "http",
 579 "pin-project-lite",
 580]
 581
 582[[package]]
 583name = "httparse"
 584version = "1.7.1"
 585source = "registry+https://github.com/rust-lang/crates.io-index"
 586checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
 587
 588[[package]]
 589name = "httpdate"
 590version = "1.0.2"
 591source = "registry+https://github.com/rust-lang/crates.io-index"
 592checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
 593
 594[[package]]
 595name = "hyper"
 596version = "0.14.18"
 597source = "registry+https://github.com/rust-lang/crates.io-index"
 598checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
 599dependencies = [
 600 "bytes",
 601 "futures-channel",
 602 "futures-core",
 603 "futures-util",
 604 "h2",
 605 "http",
 606 "http-body",
 607 "httparse",
 608 "httpdate",
 609 "itoa",
 610 "pin-project-lite",
 611 "socket2",
 612 "tokio",
 613 "tower-service",
 614 "tracing",
 615 "want",
 616]
 617
 618[[package]]
 619name = "idna"
 620version = "0.2.3"
 621source = "registry+https://github.com/rust-lang/crates.io-index"
 622checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
 623dependencies = [
 624 "matches",
 625 "unicode-bidi",
 626 "unicode-normalization",
 627]
 628
 629[[package]]
 630name = "indexmap"
 631version = "1.8.1"
 632source = "registry+https://github.com/rust-lang/crates.io-index"
 633checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
 634dependencies = [
 635 "autocfg",
 636 "hashbrown",
 637]
 638
 639[[package]]
 640name = "itoa"
 641version = "1.0.1"
 642source = "registry+https://github.com/rust-lang/crates.io-index"
 643checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
 644
 645[[package]]
 646name = "itoap"
 647version = "1.0.1"
 648source = "registry+https://github.com/rust-lang/crates.io-index"
 649checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
 650
 651[[package]]
 652name = "jobserver"
 653version = "0.1.24"
 654source = "registry+https://github.com/rust-lang/crates.io-index"
 655checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
 656dependencies = [
 657 "libc",
 658]
 659
 660[[package]]
 661name = "language-tags"
 662version = "0.3.2"
 663source = "registry+https://github.com/rust-lang/crates.io-index"
 664checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
 665
 666[[package]]
 667name = "lazy_static"
 668version = "1.4.0"
 669source = "registry+https://github.com/rust-lang/crates.io-index"
 670checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 671
 672[[package]]
 673name = "libc"
 674version = "0.2.125"
 675source = "registry+https://github.com/rust-lang/crates.io-index"
 676checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
 677
 678[[package]]
 679name = "local-channel"
 680version = "0.1.3"
 681source = "registry+https://github.com/rust-lang/crates.io-index"
 682checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
 683dependencies = [
 684 "futures-core",
 685 "futures-sink",
 686 "futures-util",
 687 "local-waker",
 688]
 689
 690[[package]]
 691name = "local-waker"
 692version = "0.1.3"
 693source = "registry+https://github.com/rust-lang/crates.io-index"
 694checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
 695
 696[[package]]
 697name = "lock_api"
 698version = "0.4.7"
 699source = "registry+https://github.com/rust-lang/crates.io-index"
 700checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
 701dependencies = [
 702 "autocfg",
 703 "scopeguard",
 704]
 705
 706[[package]]
 707name = "log"
 708version = "0.4.17"
 709source = "registry+https://github.com/rust-lang/crates.io-index"
 710checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
 711dependencies = [
 712 "cfg-if",
 713]
 714
 715[[package]]
 716name = "macroblog"
 717version = "0.1.0"
 718dependencies = [
 719 "actix-web",
 720 "chrono",
 721 "hyper",
 722 "regex",
 723 "rust-embed",
 724 "sailfish",
 725 "tokio",
 726]
 727
 728[[package]]
 729name = "matches"
 730version = "0.1.9"
 731source = "registry+https://github.com/rust-lang/crates.io-index"
 732checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
 733
 734[[package]]
 735name = "memchr"
 736version = "2.5.0"
 737source = "registry+https://github.com/rust-lang/crates.io-index"
 738checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
 739
 740[[package]]
 741name = "mime"
 742version = "0.3.16"
 743source = "registry+https://github.com/rust-lang/crates.io-index"
 744checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
 745
 746[[package]]
 747name = "miniz_oxide"
 748version = "0.5.1"
 749source = "registry+https://github.com/rust-lang/crates.io-index"
 750checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
 751dependencies = [
 752 "adler",
 753]
 754
 755[[package]]
 756name = "mio"
 757version = "0.8.2"
 758source = "registry+https://github.com/rust-lang/crates.io-index"
 759checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
 760dependencies = [
 761 "libc",
 762 "log",
 763 "miow",
 764 "ntapi",
 765 "wasi 0.11.0+wasi-snapshot-preview1",
 766 "winapi",
 767]
 768
 769[[package]]
 770name = "miow"
 771version = "0.3.7"
 772source = "registry+https://github.com/rust-lang/crates.io-index"
 773checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
 774dependencies = [
 775 "winapi",
 776]
 777
 778[[package]]
 779name = "ntapi"
 780version = "0.3.7"
 781source = "registry+https://github.com/rust-lang/crates.io-index"
 782checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
 783dependencies = [
 784 "winapi",
 785]
 786
 787[[package]]
 788name = "num-integer"
 789version = "0.1.45"
 790source = "registry+https://github.com/rust-lang/crates.io-index"
 791checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
 792dependencies = [
 793 "autocfg",
 794 "num-traits",
 795]
 796
 797[[package]]
 798name = "num-traits"
 799version = "0.2.15"
 800source = "registry+https://github.com/rust-lang/crates.io-index"
 801checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
 802dependencies = [
 803 "autocfg",
 804]
 805
 806[[package]]
 807name = "num_cpus"
 808version = "1.13.1"
 809source = "registry+https://github.com/rust-lang/crates.io-index"
 810checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
 811dependencies = [
 812 "hermit-abi",
 813 "libc",
 814]
 815
 816[[package]]
 817name = "num_threads"
 818version = "0.1.6"
 819source = "registry+https://github.com/rust-lang/crates.io-index"
 820checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
 821dependencies = [
 822 "libc",
 823]
 824
 825[[package]]
 826name = "once_cell"
 827version = "1.10.0"
 828source = "registry+https://github.com/rust-lang/crates.io-index"
 829checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
 830
 831[[package]]
 832name = "opaque-debug"
 833version = "0.3.0"
 834source = "registry+https://github.com/rust-lang/crates.io-index"
 835checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
 836
 837[[package]]
 838name = "parking_lot"
 839version = "0.12.0"
 840source = "registry+https://github.com/rust-lang/crates.io-index"
 841checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
 842dependencies = [
 843 "lock_api",
 844 "parking_lot_core",
 845]
 846
 847[[package]]
 848name = "parking_lot_core"
 849version = "0.9.3"
 850source = "registry+https://github.com/rust-lang/crates.io-index"
 851checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
 852dependencies = [
 853 "cfg-if",
 854 "libc",
 855 "redox_syscall",
 856 "smallvec",
 857 "windows-sys",
 858]
 859
 860[[package]]
 861name = "paste"
 862version = "1.0.7"
 863source = "registry+https://github.com/rust-lang/crates.io-index"
 864checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
 865
 866[[package]]
 867name = "percent-encoding"
 868version = "2.1.0"
 869source = "registry+https://github.com/rust-lang/crates.io-index"
 870checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
 871
 872[[package]]
 873name = "pin-project-lite"
 874version = "0.2.9"
 875source = "registry+https://github.com/rust-lang/crates.io-index"
 876checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
 877
 878[[package]]
 879name = "pin-utils"
 880version = "0.1.0"
 881source = "registry+https://github.com/rust-lang/crates.io-index"
 882checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
 883
 884[[package]]
 885name = "ppv-lite86"
 886version = "0.2.16"
 887source = "registry+https://github.com/rust-lang/crates.io-index"
 888checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
 889
 890[[package]]
 891name = "proc-macro2"
 892version = "1.0.36"
 893source = "registry+https://github.com/rust-lang/crates.io-index"
 894checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
 895dependencies = [
 896 "unicode-xid",
 897]
 898
 899[[package]]
 900name = "quote"
 901version = "1.0.18"
 902source = "registry+https://github.com/rust-lang/crates.io-index"
 903checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
 904dependencies = [
 905 "proc-macro2",
 906]
 907
 908[[package]]
 909name = "rand"
 910version = "0.8.5"
 911source = "registry+https://github.com/rust-lang/crates.io-index"
 912checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
 913dependencies = [
 914 "libc",
 915 "rand_chacha",
 916 "rand_core",
 917]
 918
 919[[package]]
 920name = "rand_chacha"
 921version = "0.3.1"
 922source = "registry+https://github.com/rust-lang/crates.io-index"
 923checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
 924dependencies = [
 925 "ppv-lite86",
 926 "rand_core",
 927]
 928
 929[[package]]
 930name = "rand_core"
 931version = "0.6.3"
 932source = "registry+https://github.com/rust-lang/crates.io-index"
 933checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
 934dependencies = [
 935 "getrandom",
 936]
 937
 938[[package]]
 939name = "redox_syscall"
 940version = "0.2.13"
 941source = "registry+https://github.com/rust-lang/crates.io-index"
 942checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
 943dependencies = [
 944 "bitflags",
 945]
 946
 947[[package]]
 948name = "regex"
 949version = "1.5.5"
 950source = "registry+https://github.com/rust-lang/crates.io-index"
 951checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
 952dependencies = [
 953 "aho-corasick",
 954 "memchr",
 955 "regex-syntax",
 956]
 957
 958[[package]]
 959name = "regex-syntax"
 960version = "0.6.25"
 961source = "registry+https://github.com/rust-lang/crates.io-index"
 962checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
 963
 964[[package]]
 965name = "rust-embed"
 966version = "6.4.0"
 967source = "registry+https://github.com/rust-lang/crates.io-index"
 968checksum = "9a17e5ac65b318f397182ae94e532da0ba56b88dd1200b774715d36c4943b1c3"
 969dependencies = [
 970 "rust-embed-impl",
 971 "rust-embed-utils",
 972 "walkdir",
 973]
 974
 975[[package]]
 976name = "rust-embed-impl"
 977version = "6.2.0"
 978source = "registry+https://github.com/rust-lang/crates.io-index"
 979checksum = "94e763e24ba2bf0c72bc6be883f967f794a019fafd1b86ba1daff9c91a7edd30"
 980dependencies = [
 981 "proc-macro2",
 982 "quote",
 983 "rust-embed-utils",
 984 "syn",
 985 "walkdir",
 986]
 987
 988[[package]]
 989name = "rust-embed-utils"
 990version = "7.2.0"
 991source = "registry+https://github.com/rust-lang/crates.io-index"
 992checksum = "756feca3afcbb1487a1d01f4ecd94cf8ec98ea074c55a69e7136d29fb6166029"
 993dependencies = [
 994 "sha2",
 995 "walkdir",
 996]
 997
 998[[package]]
 999name = "rustc_version"
1000version = "0.4.0"
1001source = "registry+https://github.com/rust-lang/crates.io-index"
1002checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1003dependencies = [
1004 "semver",
1005]
1006
1007[[package]]
1008name = "ryu"
1009version = "1.0.9"
1010source = "registry+https://github.com/rust-lang/crates.io-index"
1011checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
1012
1013[[package]]
1014name = "sailfish"
1015version = "0.4.0"
1016source = "registry+https://github.com/rust-lang/crates.io-index"
1017checksum = "948a7edfc2f03d7c58a097dda25ed29440a72e8528894a6e182fe9171195fed1"
1018dependencies = [
1019 "itoap",
1020 "ryu",
1021 "sailfish-macros",
1022 "version_check",
1023]
1024
1025[[package]]
1026name = "sailfish-compiler"
1027version = "0.4.0"
1028source = "registry+https://github.com/rust-lang/crates.io-index"
1029checksum = "3f0a01133d6ce146020e6416ac6a823f813f1cbb30ff77548b4fa20749524947"
1030dependencies = [
1031 "filetime",
1032 "home",
1033 "memchr",
1034 "proc-macro2",
1035 "quote",
1036 "serde",
1037 "syn",
1038 "toml",
1039]
1040
1041[[package]]
1042name = "sailfish-macros"
1043version = "0.4.0"
1044source = "registry+https://github.com/rust-lang/crates.io-index"
1045checksum = "86326c1f1dce0b316e0a47071f683b185417dc64e1a704380b5c706b09e871b1"
1046dependencies = [
1047 "proc-macro2",
1048 "sailfish-compiler",
1049]
1050
1051[[package]]
1052name = "same-file"
1053version = "1.0.6"
1054source = "registry+https://github.com/rust-lang/crates.io-index"
1055checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1056dependencies = [
1057 "winapi-util",
1058]
1059
1060[[package]]
1061name = "scopeguard"
1062version = "1.1.0"
1063source = "registry+https://github.com/rust-lang/crates.io-index"
1064checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1065
1066[[package]]
1067name = "semver"
1068version = "1.0.9"
1069source = "registry+https://github.com/rust-lang/crates.io-index"
1070checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
1071
1072[[package]]
1073name = "serde"
1074version = "1.0.137"
1075source = "registry+https://github.com/rust-lang/crates.io-index"
1076checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
1077dependencies = [
1078 "serde_derive",
1079]
1080
1081[[package]]
1082name = "serde_derive"
1083version = "1.0.137"
1084source = "registry+https://github.com/rust-lang/crates.io-index"
1085checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
1086dependencies = [
1087 "proc-macro2",
1088 "quote",
1089 "syn",
1090]
1091
1092[[package]]
1093name = "serde_json"
1094version = "1.0.81"
1095source = "registry+https://github.com/rust-lang/crates.io-index"
1096checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
1097dependencies = [
1098 "itoa",
1099 "ryu",
1100 "serde",
1101]
1102
1103[[package]]
1104name = "serde_urlencoded"
1105version = "0.7.1"
1106source = "registry+https://github.com/rust-lang/crates.io-index"
1107checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1108dependencies = [
1109 "form_urlencoded",
1110 "itoa",
1111 "ryu",
1112 "serde",
1113]
1114
1115[[package]]
1116name = "sha-1"
1117version = "0.10.0"
1118source = "registry+https://github.com/rust-lang/crates.io-index"
1119checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
1120dependencies = [
1121 "cfg-if",
1122 "cpufeatures",
1123 "digest 0.10.3",
1124]
1125
1126[[package]]
1127name = "sha2"
1128version = "0.9.9"
1129source = "registry+https://github.com/rust-lang/crates.io-index"
1130checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
1131dependencies = [
1132 "block-buffer 0.9.0",
1133 "cfg-if",
1134 "cpufeatures",
1135 "digest 0.9.0",
1136 "opaque-debug",
1137]
1138
1139[[package]]
1140name = "signal-hook-registry"
1141version = "1.4.0"
1142source = "registry+https://github.com/rust-lang/crates.io-index"
1143checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
1144dependencies = [
1145 "libc",
1146]
1147
1148[[package]]
1149name = "slab"
1150version = "0.4.6"
1151source = "registry+https://github.com/rust-lang/crates.io-index"
1152checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
1153
1154[[package]]
1155name = "smallvec"
1156version = "1.8.0"
1157source = "registry+https://github.com/rust-lang/crates.io-index"
1158checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
1159
1160[[package]]
1161name = "socket2"
1162version = "0.4.4"
1163source = "registry+https://github.com/rust-lang/crates.io-index"
1164checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1165dependencies = [
1166 "libc",
1167 "winapi",
1168]
1169
1170[[package]]
1171name = "syn"
1172version = "1.0.92"
1173source = "registry+https://github.com/rust-lang/crates.io-index"
1174checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
1175dependencies = [
1176 "proc-macro2",
1177 "quote",
1178 "unicode-xid",
1179]
1180
1181[[package]]
1182name = "time"
1183version = "0.1.44"
1184source = "registry+https://github.com/rust-lang/crates.io-index"
1185checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1186dependencies = [
1187 "libc",
1188 "wasi 0.10.0+wasi-snapshot-preview1",
1189 "winapi",
1190]
1191
1192[[package]]
1193name = "time"
1194version = "0.3.9"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
1197dependencies = [
1198 "itoa",
1199 "libc",
1200 "num_threads",
1201 "time-macros",
1202]
1203
1204[[package]]
1205name = "time-macros"
1206version = "0.2.4"
1207source = "registry+https://github.com/rust-lang/crates.io-index"
1208checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
1209
1210[[package]]
1211name = "tinyvec"
1212version = "1.6.0"
1213source = "registry+https://github.com/rust-lang/crates.io-index"
1214checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1215dependencies = [
1216 "tinyvec_macros",
1217]
1218
1219[[package]]
1220name = "tinyvec_macros"
1221version = "0.1.0"
1222source = "registry+https://github.com/rust-lang/crates.io-index"
1223checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1224
1225[[package]]
1226name = "tokio"
1227version = "1.18.1"
1228source = "registry+https://github.com/rust-lang/crates.io-index"
1229checksum = "dce653fb475565de9f6fb0614b28bca8df2c430c0cf84bcd9c843f15de5414cc"
1230dependencies = [
1231 "bytes",
1232 "libc",
1233 "memchr",
1234 "mio",
1235 "num_cpus",
1236 "once_cell",
1237 "parking_lot",
1238 "pin-project-lite",
1239 "signal-hook-registry",
1240 "socket2",
1241 "tokio-macros",
1242 "winapi",
1243]
1244
1245[[package]]
1246name = "tokio-macros"
1247version = "1.7.0"
1248source = "registry+https://github.com/rust-lang/crates.io-index"
1249checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
1250dependencies = [
1251 "proc-macro2",
1252 "quote",
1253 "syn",
1254]
1255
1256[[package]]
1257name = "tokio-util"
1258version = "0.7.1"
1259source = "registry+https://github.com/rust-lang/crates.io-index"
1260checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
1261dependencies = [
1262 "bytes",
1263 "futures-core",
1264 "futures-sink",
1265 "pin-project-lite",
1266 "tokio",
1267 "tracing",
1268]
1269
1270[[package]]
1271name = "toml"
1272version = "0.5.9"
1273source = "registry+https://github.com/rust-lang/crates.io-index"
1274checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
1275dependencies = [
1276 "serde",
1277]
1278
1279[[package]]
1280name = "tower-service"
1281version = "0.3.1"
1282source = "registry+https://github.com/rust-lang/crates.io-index"
1283checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
1284
1285[[package]]
1286name = "tracing"
1287version = "0.1.34"
1288source = "registry+https://github.com/rust-lang/crates.io-index"
1289checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
1290dependencies = [
1291 "cfg-if",
1292 "log",
1293 "pin-project-lite",
1294 "tracing-attributes",
1295 "tracing-core",
1296]
1297
1298[[package]]
1299name = "tracing-attributes"
1300version = "0.1.21"
1301source = "registry+https://github.com/rust-lang/crates.io-index"
1302checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
1303dependencies = [
1304 "proc-macro2",
1305 "quote",
1306 "syn",
1307]
1308
1309[[package]]
1310name = "tracing-core"
1311version = "0.1.26"
1312source = "registry+https://github.com/rust-lang/crates.io-index"
1313checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
1314dependencies = [
1315 "lazy_static",
1316]
1317
1318[[package]]
1319name = "try-lock"
1320version = "0.2.3"
1321source = "registry+https://github.com/rust-lang/crates.io-index"
1322checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1323
1324[[package]]
1325name = "typenum"
1326version = "1.15.0"
1327source = "registry+https://github.com/rust-lang/crates.io-index"
1328checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1329
1330[[package]]
1331name = "unicode-bidi"
1332version = "0.3.8"
1333source = "registry+https://github.com/rust-lang/crates.io-index"
1334checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1335
1336[[package]]
1337name = "unicode-normalization"
1338version = "0.1.19"
1339source = "registry+https://github.com/rust-lang/crates.io-index"
1340checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
1341dependencies = [
1342 "tinyvec",
1343]
1344
1345[[package]]
1346name = "unicode-xid"
1347version = "0.2.3"
1348source = "registry+https://github.com/rust-lang/crates.io-index"
1349checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
1350
1351[[package]]
1352name = "url"
1353version = "2.2.2"
1354source = "registry+https://github.com/rust-lang/crates.io-index"
1355checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
1356dependencies = [
1357 "form_urlencoded",
1358 "idna",
1359 "matches",
1360 "percent-encoding",
1361]
1362
1363[[package]]
1364name = "version_check"
1365version = "0.9.4"
1366source = "registry+https://github.com/rust-lang/crates.io-index"
1367checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1368
1369[[package]]
1370name = "walkdir"
1371version = "2.3.2"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
1374dependencies = [
1375 "same-file",
1376 "winapi",
1377 "winapi-util",
1378]
1379
1380[[package]]
1381name = "want"
1382version = "0.3.0"
1383source = "registry+https://github.com/rust-lang/crates.io-index"
1384checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
1385dependencies = [
1386 "log",
1387 "try-lock",
1388]
1389
1390[[package]]
1391name = "wasi"
1392version = "0.10.0+wasi-snapshot-preview1"
1393source = "registry+https://github.com/rust-lang/crates.io-index"
1394checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
1395
1396[[package]]
1397name = "wasi"
1398version = "0.11.0+wasi-snapshot-preview1"
1399source = "registry+https://github.com/rust-lang/crates.io-index"
1400checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1401
1402[[package]]
1403name = "winapi"
1404version = "0.3.9"
1405source = "registry+https://github.com/rust-lang/crates.io-index"
1406checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1407dependencies = [
1408 "winapi-i686-pc-windows-gnu",
1409 "winapi-x86_64-pc-windows-gnu",
1410]
1411
1412[[package]]
1413name = "winapi-i686-pc-windows-gnu"
1414version = "0.4.0"
1415source = "registry+https://github.com/rust-lang/crates.io-index"
1416checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1417
1418[[package]]
1419name = "winapi-util"
1420version = "0.1.5"
1421source = "registry+https://github.com/rust-lang/crates.io-index"
1422checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1423dependencies = [
1424 "winapi",
1425]
1426
1427[[package]]
1428name = "winapi-x86_64-pc-windows-gnu"
1429version = "0.4.0"
1430source = "registry+https://github.com/rust-lang/crates.io-index"
1431checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1432
1433[[package]]
1434name = "windows-sys"
1435version = "0.36.1"
1436source = "registry+https://github.com/rust-lang/crates.io-index"
1437checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
1438dependencies = [
1439 "windows_aarch64_msvc",
1440 "windows_i686_gnu",
1441 "windows_i686_msvc",
1442 "windows_x86_64_gnu",
1443 "windows_x86_64_msvc",
1444]
1445
1446[[package]]
1447name = "windows_aarch64_msvc"
1448version = "0.36.1"
1449source = "registry+https://github.com/rust-lang/crates.io-index"
1450checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
1451
1452[[package]]
1453name = "windows_i686_gnu"
1454version = "0.36.1"
1455source = "registry+https://github.com/rust-lang/crates.io-index"
1456checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
1457
1458[[package]]
1459name = "windows_i686_msvc"
1460version = "0.36.1"
1461source = "registry+https://github.com/rust-lang/crates.io-index"
1462checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
1463
1464[[package]]
1465name = "windows_x86_64_gnu"
1466version = "0.36.1"
1467source = "registry+https://github.com/rust-lang/crates.io-index"
1468checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
1469
1470[[package]]
1471name = "windows_x86_64_msvc"
1472version = "0.36.1"
1473source = "registry+https://github.com/rust-lang/crates.io-index"
1474checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
1475
1476[[package]]
1477name = "zstd"
1478version = "0.10.2+zstd.1.5.2"
1479source = "registry+https://github.com/rust-lang/crates.io-index"
1480checksum = "5f4a6bd64f22b5e3e94b4e238669ff9f10815c27a5180108b849d24174a83847"
1481dependencies = [
1482 "zstd-safe",
1483]
1484
1485[[package]]
1486name = "zstd-safe"
1487version = "4.1.6+zstd.1.5.2"
1488source = "registry+https://github.com/rust-lang/crates.io-index"
1489checksum = "94b61c51bb270702d6167b8ce67340d2754b088d0c091b06e593aa772c3ee9bb"
1490dependencies = [
1491 "libc",
1492 "zstd-sys",
1493]
1494
1495[[package]]
1496name = "zstd-sys"
1497version = "1.6.3+zstd.1.5.2"
1498source = "registry+https://github.com/rust-lang/crates.io-index"
1499checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
1500dependencies = [
1501 "cc",
1502 "libc",
1503]