Annotation For Cargo.lock
Logged in as anonymous

Lines of Cargo.lock from check-in 6fdbbcc8f8 that are changed by the sequence of edits moving toward check-in 4fcde0f30f:

                         1: # This file is automatically @generated by Cargo.
                         2: # It is not intended for manual editing.
                         3: version = 3
                         4: 
                         5: [[package]]
                         6: name = "addr2line"
                         7: version = "0.17.0"
                         8: source = "registry+https://github.com/rust-lang/crates.io-index"
                         9: checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
                        10: dependencies = [
                        11:  "gimli",
                        12: ]
                        13: 
                        14: [[package]]
                        15: name = "adler"
                        16: version = "1.0.2"
                        17: source = "registry+https://github.com/rust-lang/crates.io-index"
                        18: checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
                        19: 
                        20: [[package]]
                        21: name = "ahash"
                        22: version = "0.7.6"
                        23: source = "registry+https://github.com/rust-lang/crates.io-index"
                        24: checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
                        25: dependencies = [
                        26:  "getrandom 0.2.7",
                        27:  "once_cell",
                        28:  "version_check",
                        29: ]
                        30: 
                        31: [[package]]
                        32: name = "aho-corasick"
                        33: version = "0.7.18"
                        34: source = "registry+https://github.com/rust-lang/crates.io-index"
                        35: checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
                        36: dependencies = [
                        37:  "memchr",
                        38: ]
                        39: 
                        40: [[package]]
                        41: name = "alloc-no-stdlib"
                        42: version = "2.0.3"
                        43: source = "registry+https://github.com/rust-lang/crates.io-index"
                        44: checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
                        45: 
                        46: [[package]]
                        47: name = "alloc-stdlib"
                        48: version = "0.2.1"
                        49: source = "registry+https://github.com/rust-lang/crates.io-index"
                        50: checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
                        51: dependencies = [
                        52:  "alloc-no-stdlib",
                        53: ]
                        54: 
                        55: [[package]]
                        56: name = "android_system_properties"
                        57: version = "0.1.4"
                        58: source = "registry+https://github.com/rust-lang/crates.io-index"
                        59: checksum = "d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e"
                        60: dependencies = [
                        61:  "libc",
                        62: ]
                        63: 
                        64: [[package]]
                        65: name = "anyhow"
6fdbbcc8f8 2022-08-14   66: version = "1.0.61"
                        67: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14   68: checksum = "508b352bb5c066aac251f6daf6b36eccd03e8a88e8081cd44959ea277a3af9a8"
                        69: 
                        70: [[package]]
                        71: name = "async-channel"
                        72: version = "1.7.1"
                        73: source = "registry+https://github.com/rust-lang/crates.io-index"
                        74: checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
                        75: dependencies = [
                        76:  "concurrent-queue",
                        77:  "event-listener",
                        78:  "futures-core",
                        79: ]
                        80: 
                        81: [[package]]
                        82: name = "async-compression"
                        83: version = "0.3.14"
                        84: source = "registry+https://github.com/rust-lang/crates.io-index"
                        85: checksum = "345fd392ab01f746c717b1357165b76f0b67a60192007b234058c9045fdcf695"
                        86: dependencies = [
                        87:  "brotli",
                        88:  "flate2",
                        89:  "futures-core",
                        90:  "memchr",
                        91:  "pin-project-lite",
                        92:  "tokio 1.20.1",
                        93: ]
                        94: 
                        95: [[package]]
                        96: name = "async-executor"
                        97: version = "1.4.1"
                        98: source = "registry+https://github.com/rust-lang/crates.io-index"
                        99: checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
                       100: dependencies = [
                       101:  "async-task",
                       102:  "concurrent-queue",
                       103:  "fastrand",
                       104:  "futures-lite",
                       105:  "once_cell",
                       106:  "slab",
                       107: ]
                       108: 
                       109: [[package]]
                       110: name = "async-global-executor"
                       111: version = "2.2.0"
                       112: source = "registry+https://github.com/rust-lang/crates.io-index"
                       113: checksum = "5262ed948da60dd8956c6c5aca4d4163593dddb7b32d73267c93dab7b2e98940"
                       114: dependencies = [
                       115:  "async-channel",
                       116:  "async-executor",
                       117:  "async-io",
                       118:  "async-lock",
                       119:  "blocking",
                       120:  "futures-lite",
                       121:  "num_cpus",
                       122:  "once_cell",
                       123:  "tokio 1.20.1",
                       124: ]
                       125: 
                       126: [[package]]
                       127: name = "async-io"
6fdbbcc8f8 2022-08-14  128: version = "1.7.0"
                       129: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14  130: checksum = "e5e18f61464ae81cde0a23e713ae8fd299580c54d697a35820cfd0625b8b0e07"
                       131: dependencies = [
                       132:  "concurrent-queue",
                       133:  "futures-lite",
                       134:  "libc",
                       135:  "log",
                       136:  "once_cell",
                       137:  "parking",
                       138:  "polling",
                       139:  "slab",
                       140:  "socket2",
                       141:  "waker-fn",
                       142:  "winapi 0.3.9",
                       143: ]
                       144: 
                       145: [[package]]
                       146: name = "async-lock"
                       147: version = "2.5.0"
                       148: source = "registry+https://github.com/rust-lang/crates.io-index"
                       149: checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
                       150: dependencies = [
                       151:  "event-listener",
                       152: ]
                       153: 
                       154: [[package]]
                       155: name = "async-process"
6fdbbcc8f8 2022-08-14  156: version = "1.4.0"
                       157: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14  158: checksum = "cf2c06e30a24e8c78a3987d07f0930edf76ef35e027e7bdb063fccafdad1f60c"
                       159: dependencies = [
                       160:  "async-io",
                       161:  "blocking",
                       162:  "cfg-if 1.0.0",
                       163:  "event-listener",
                       164:  "futures-lite",
                       165:  "libc",
                       166:  "once_cell",
                       167:  "signal-hook",
                       168:  "winapi 0.3.9",
                       169: ]
                       170: 
                       171: [[package]]
                       172: name = "async-std"
                       173: version = "1.12.0"
                       174: source = "registry+https://github.com/rust-lang/crates.io-index"
                       175: checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
                       176: dependencies = [
                       177:  "async-channel",
                       178:  "async-global-executor",
                       179:  "async-io",
                       180:  "async-lock",
                       181:  "async-process",
                       182:  "crossbeam-utils 0.8.11",
                       183:  "futures-channel",
                       184:  "futures-core",
                       185:  "futures-io",
                       186:  "futures-lite",
                       187:  "gloo-timers",
                       188:  "kv-log-macro",
                       189:  "log",
                       190:  "memchr",
                       191:  "once_cell",
                       192:  "pin-project-lite",
                       193:  "pin-utils",
                       194:  "slab",
                       195:  "wasm-bindgen-futures",
                       196: ]
                       197: 
                       198: [[package]]
                       199: name = "async-task"
                       200: version = "4.3.0"
                       201: source = "registry+https://github.com/rust-lang/crates.io-index"
                       202: checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
                       203: 
                       204: [[package]]
                       205: name = "async-trait"
                       206: version = "0.1.57"
                       207: source = "registry+https://github.com/rust-lang/crates.io-index"
                       208: checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
                       209: dependencies = [
                       210:  "proc-macro2",
                       211:  "quote",
                       212:  "syn",
                       213: ]
                       214: 
                       215: [[package]]
                       216: name = "atoi"
                       217: version = "1.0.0"
                       218: source = "registry+https://github.com/rust-lang/crates.io-index"
                       219: checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
                       220: dependencies = [
                       221:  "num-traits",
                       222: ]
                       223: 
                       224: [[package]]
                       225: name = "atom_syndication"
                       226: version = "0.11.0"
                       227: source = "registry+https://github.com/rust-lang/crates.io-index"
                       228: checksum = "21fb6a0b39c6517edafe46f8137e53c51742425a4dae1c73ee12264a37ad7541"
                       229: dependencies = [
                       230:  "chrono",
                       231:  "derive_builder 0.10.2",
                       232:  "diligent-date-parser",
                       233:  "never",
                       234:  "quick-xml 0.22.0",
                       235:  "serde",
                       236: ]
                       237: 
                       238: [[package]]
                       239: name = "atomic-waker"
                       240: version = "1.0.0"
                       241: source = "registry+https://github.com/rust-lang/crates.io-index"
                       242: checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
                       243: 
                       244: [[package]]
                       245: name = "autocfg"
                       246: version = "0.1.8"
                       247: source = "registry+https://github.com/rust-lang/crates.io-index"
                       248: checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
                       249: dependencies = [
                       250:  "autocfg 1.1.0",
                       251: ]
                       252: 
                       253: [[package]]
                       254: name = "autocfg"
                       255: version = "1.1.0"
                       256: source = "registry+https://github.com/rust-lang/crates.io-index"
                       257: checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
                       258: 
                       259: [[package]]
                       260: name = "backtrace"
                       261: version = "0.3.66"
                       262: source = "registry+https://github.com/rust-lang/crates.io-index"
                       263: checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
                       264: dependencies = [
                       265:  "addr2line",
                       266:  "cc",
                       267:  "cfg-if 1.0.0",
                       268:  "libc",
                       269:  "miniz_oxide",
                       270:  "object",
                       271:  "rustc-demangle",
                       272: ]
                       273: 
                       274: [[package]]
                       275: name = "base64"
                       276: version = "0.10.1"
                       277: source = "registry+https://github.com/rust-lang/crates.io-index"
                       278: checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
                       279: dependencies = [
                       280:  "byteorder",
                       281: ]
                       282: 
                       283: [[package]]
                       284: name = "base64"
                       285: version = "0.13.0"
                       286: source = "registry+https://github.com/rust-lang/crates.io-index"
                       287: checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
                       288: 
                       289: [[package]]
                       290: name = "bitflags"
                       291: version = "1.3.2"
                       292: source = "registry+https://github.com/rust-lang/crates.io-index"
                       293: checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
                       294: 
                       295: [[package]]
                       296: name = "block-buffer"
                       297: version = "0.10.2"
                       298: source = "registry+https://github.com/rust-lang/crates.io-index"
                       299: checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
                       300: dependencies = [
                       301:  "generic-array",
                       302: ]
                       303: 
                       304: [[package]]
                       305: name = "blocking"
                       306: version = "1.2.0"
                       307: source = "registry+https://github.com/rust-lang/crates.io-index"
                       308: checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
                       309: dependencies = [
                       310:  "async-channel",
                       311:  "async-task",
                       312:  "atomic-waker",
                       313:  "fastrand",
                       314:  "futures-lite",
                       315:  "once_cell",
                       316: ]
                       317: 
                       318: [[package]]
                       319: name = "brotli"
                       320: version = "3.3.4"
                       321: source = "registry+https://github.com/rust-lang/crates.io-index"
                       322: checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
                       323: dependencies = [
                       324:  "alloc-no-stdlib",
                       325:  "alloc-stdlib",
                       326:  "brotli-decompressor",
                       327: ]
                       328: 
                       329: [[package]]
                       330: name = "brotli-decompressor"
                       331: version = "2.3.2"
                       332: source = "registry+https://github.com/rust-lang/crates.io-index"
                       333: checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
                       334: dependencies = [
                       335:  "alloc-no-stdlib",
                       336:  "alloc-stdlib",
                       337: ]
                       338: 
                       339: [[package]]
                       340: name = "bumpalo"
6fdbbcc8f8 2022-08-14  341: version = "3.10.0"
                       342: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14  343: checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
                       344: 
                       345: [[package]]
                       346: name = "byteorder"
                       347: version = "1.4.3"
                       348: source = "registry+https://github.com/rust-lang/crates.io-index"
                       349: checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
                       350: 
                       351: [[package]]
                       352: name = "bytes"
                       353: version = "0.4.12"
                       354: source = "registry+https://github.com/rust-lang/crates.io-index"
                       355: checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
                       356: dependencies = [
                       357:  "byteorder",
                       358:  "either",
                       359:  "iovec",
                       360: ]
                       361: 
                       362: [[package]]
                       363: name = "bytes"
                       364: version = "1.2.1"
                       365: source = "registry+https://github.com/rust-lang/crates.io-index"
                       366: checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
                       367: 
                       368: [[package]]
                       369: name = "cache-padded"
                       370: version = "1.2.0"
                       371: source = "registry+https://github.com/rust-lang/crates.io-index"
                       372: checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
                       373: 
                       374: [[package]]
                       375: name = "cc"
                       376: version = "1.0.73"
                       377: source = "registry+https://github.com/rust-lang/crates.io-index"
                       378: checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
                       379: 
                       380: [[package]]
                       381: name = "cfg-if"
                       382: version = "0.1.10"
                       383: source = "registry+https://github.com/rust-lang/crates.io-index"
                       384: checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
                       385: 
                       386: [[package]]
                       387: name = "cfg-if"
                       388: version = "1.0.0"
                       389: source = "registry+https://github.com/rust-lang/crates.io-index"
                       390: checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
                       391: 
                       392: [[package]]
                       393: name = "chrono"
                       394: version = "0.4.22"
                       395: source = "registry+https://github.com/rust-lang/crates.io-index"
                       396: checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
                       397: dependencies = [
                       398:  "iana-time-zone",
                       399:  "js-sys",
                       400:  "num-integer",
                       401:  "num-traits",
                       402:  "serde",
                       403:  "time",
                       404:  "wasm-bindgen",
                       405:  "winapi 0.3.9",
                       406: ]
                       407: 
                       408: [[package]]
                       409: name = "cloudabi"
                       410: version = "0.0.3"
                       411: source = "registry+https://github.com/rust-lang/crates.io-index"
                       412: checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
                       413: dependencies = [
                       414:  "bitflags",
                       415: ]
                       416: 
                       417: [[package]]
                       418: name = "concurrent-queue"
                       419: version = "1.2.4"
                       420: source = "registry+https://github.com/rust-lang/crates.io-index"
                       421: checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
                       422: dependencies = [
                       423:  "cache-padded",
                       424: ]
                       425: 
                       426: [[package]]
                       427: name = "config"
                       428: version = "0.13.2"
                       429: source = "registry+https://github.com/rust-lang/crates.io-index"
                       430: checksum = "11f1667b8320afa80d69d8bbe40830df2c8a06003d86f73d8e003b2c48df416d"
                       431: dependencies = [
                       432:  "async-trait",
                       433:  "lazy_static",
                       434:  "nom",
                       435:  "pathdiff",
                       436:  "serde",
                       437:  "toml",
                       438: ]
                       439: 
                       440: [[package]]
                       441: name = "cookie"
                       442: version = "0.12.0"
                       443: source = "registry+https://github.com/rust-lang/crates.io-index"
                       444: checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
                       445: dependencies = [
                       446:  "time",
                       447:  "url 1.7.2",
                       448: ]
                       449: 
                       450: [[package]]
                       451: name = "cookie_store"
                       452: version = "0.7.0"
                       453: source = "registry+https://github.com/rust-lang/crates.io-index"
                       454: checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
                       455: dependencies = [
                       456:  "cookie",
                       457:  "failure",
                       458:  "idna 0.1.5",
                       459:  "log",
                       460:  "publicsuffix",
                       461:  "serde",
                       462:  "serde_json",
                       463:  "time",
                       464:  "try_from",
                       465:  "url 1.7.2",
                       466: ]
                       467: 
                       468: [[package]]
                       469: name = "core-foundation"
                       470: version = "0.9.3"
                       471: source = "registry+https://github.com/rust-lang/crates.io-index"
                       472: checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
                       473: dependencies = [
                       474:  "core-foundation-sys",
                       475:  "libc",
                       476: ]
                       477: 
                       478: [[package]]
                       479: name = "core-foundation-sys"
                       480: version = "0.8.3"
                       481: source = "registry+https://github.com/rust-lang/crates.io-index"
                       482: checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
                       483: 
                       484: [[package]]
                       485: name = "cpufeatures"
6fdbbcc8f8 2022-08-14  486: version = "0.2.2"
                       487: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14  488: checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
                       489: dependencies = [
                       490:  "libc",
                       491: ]
                       492: 
                       493: [[package]]
                       494: name = "crc"
                       495: version = "3.0.0"
                       496: source = "registry+https://github.com/rust-lang/crates.io-index"
                       497: checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
                       498: dependencies = [
                       499:  "crc-catalog",
                       500: ]
                       501: 
                       502: [[package]]
                       503: name = "crc-catalog"
                       504: version = "2.1.0"
                       505: source = "registry+https://github.com/rust-lang/crates.io-index"
                       506: checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
                       507: 
                       508: [[package]]
                       509: name = "crc32fast"
                       510: version = "1.3.2"
                       511: source = "registry+https://github.com/rust-lang/crates.io-index"
                       512: checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
                       513: dependencies = [
                       514:  "cfg-if 1.0.0",
                       515: ]
                       516: 
                       517: [[package]]
                       518: name = "crossbeam-deque"
                       519: version = "0.7.4"
                       520: source = "registry+https://github.com/rust-lang/crates.io-index"
                       521: checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
                       522: dependencies = [
                       523:  "crossbeam-epoch",
                       524:  "crossbeam-utils 0.7.2",
                       525:  "maybe-uninit",
                       526: ]
                       527: 
                       528: [[package]]
                       529: name = "crossbeam-epoch"
                       530: version = "0.8.2"
                       531: source = "registry+https://github.com/rust-lang/crates.io-index"
                       532: checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
                       533: dependencies = [
                       534:  "autocfg 1.1.0",
                       535:  "cfg-if 0.1.10",
                       536:  "crossbeam-utils 0.7.2",
                       537:  "lazy_static",
                       538:  "maybe-uninit",
                       539:  "memoffset",
                       540:  "scopeguard",
                       541: ]
                       542: 
                       543: [[package]]
                       544: name = "crossbeam-queue"
                       545: version = "0.2.3"
                       546: source = "registry+https://github.com/rust-lang/crates.io-index"
                       547: checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
                       548: dependencies = [
                       549:  "cfg-if 0.1.10",
                       550:  "crossbeam-utils 0.7.2",
                       551:  "maybe-uninit",
                       552: ]
                       553: 
                       554: [[package]]
                       555: name = "crossbeam-queue"
                       556: version = "0.3.6"
                       557: source = "registry+https://github.com/rust-lang/crates.io-index"
                       558: checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
                       559: dependencies = [
                       560:  "cfg-if 1.0.0",
                       561:  "crossbeam-utils 0.8.11",
                       562: ]
                       563: 
                       564: [[package]]
                       565: name = "crossbeam-utils"
                       566: version = "0.7.2"
                       567: source = "registry+https://github.com/rust-lang/crates.io-index"
                       568: checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
                       569: dependencies = [
                       570:  "autocfg 1.1.0",
                       571:  "cfg-if 0.1.10",
                       572:  "lazy_static",
                       573: ]
                       574: 
                       575: [[package]]
                       576: name = "crossbeam-utils"
                       577: version = "0.8.11"
                       578: source = "registry+https://github.com/rust-lang/crates.io-index"
                       579: checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
                       580: dependencies = [
                       581:  "cfg-if 1.0.0",
                       582:  "once_cell",
                       583: ]
                       584: 
                       585: [[package]]
                       586: name = "crypto-common"
                       587: version = "0.1.6"
                       588: source = "registry+https://github.com/rust-lang/crates.io-index"
                       589: checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
                       590: dependencies = [
                       591:  "generic-array",
                       592:  "typenum",
                       593: ]
                       594: 
                       595: [[package]]
                       596: name = "ctor"
                       597: version = "0.1.23"
                       598: source = "registry+https://github.com/rust-lang/crates.io-index"
                       599: checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
                       600: dependencies = [
                       601:  "quote",
                       602:  "syn",
                       603: ]
                       604: 
                       605: [[package]]
                       606: name = "darling"
                       607: version = "0.10.2"
                       608: source = "registry+https://github.com/rust-lang/crates.io-index"
                       609: checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
                       610: dependencies = [
                       611:  "darling_core 0.10.2",
                       612:  "darling_macro 0.10.2",
                       613: ]
                       614: 
                       615: [[package]]
                       616: name = "darling"
                       617: version = "0.12.4"
                       618: source = "registry+https://github.com/rust-lang/crates.io-index"
                       619: checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
                       620: dependencies = [
                       621:  "darling_core 0.12.4",
                       622:  "darling_macro 0.12.4",
                       623: ]
                       624: 
                       625: [[package]]
                       626: name = "darling_core"
                       627: version = "0.10.2"
                       628: source = "registry+https://github.com/rust-lang/crates.io-index"
                       629: checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
                       630: dependencies = [
                       631:  "fnv",
                       632:  "ident_case",
                       633:  "proc-macro2",
                       634:  "quote",
                       635:  "strsim 0.9.3",
                       636:  "syn",
                       637: ]
                       638: 
                       639: [[package]]
                       640: name = "darling_core"
                       641: version = "0.12.4"
                       642: source = "registry+https://github.com/rust-lang/crates.io-index"
                       643: checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
                       644: dependencies = [
                       645:  "fnv",
                       646:  "ident_case",
                       647:  "proc-macro2",
                       648:  "quote",
                       649:  "strsim 0.10.0",
                       650:  "syn",
                       651: ]
                       652: 
                       653: [[package]]
                       654: name = "darling_macro"
                       655: version = "0.10.2"
                       656: source = "registry+https://github.com/rust-lang/crates.io-index"
                       657: checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
                       658: dependencies = [
                       659:  "darling_core 0.10.2",
                       660:  "quote",
                       661:  "syn",
                       662: ]
                       663: 
                       664: [[package]]
                       665: name = "darling_macro"
                       666: version = "0.12.4"
                       667: source = "registry+https://github.com/rust-lang/crates.io-index"
                       668: checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
                       669: dependencies = [
                       670:  "darling_core 0.12.4",
                       671:  "quote",
                       672:  "syn",
                       673: ]
                       674: 
                       675: [[package]]
                       676: name = "derive_builder"
                       677: version = "0.9.0"
                       678: source = "registry+https://github.com/rust-lang/crates.io-index"
                       679: checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
                       680: dependencies = [
                       681:  "darling 0.10.2",
                       682:  "derive_builder_core 0.9.0",
                       683:  "proc-macro2",
                       684:  "quote",
                       685:  "syn",
                       686: ]
                       687: 
                       688: [[package]]
                       689: name = "derive_builder"
                       690: version = "0.10.2"
                       691: source = "registry+https://github.com/rust-lang/crates.io-index"
                       692: checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30"
                       693: dependencies = [
                       694:  "derive_builder_macro",
                       695: ]
                       696: 
                       697: [[package]]
                       698: name = "derive_builder_core"
                       699: version = "0.9.0"
                       700: source = "registry+https://github.com/rust-lang/crates.io-index"
                       701: checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
                       702: dependencies = [
                       703:  "darling 0.10.2",
                       704:  "proc-macro2",
                       705:  "quote",
                       706:  "syn",
                       707: ]
                       708: 
                       709: [[package]]
                       710: name = "derive_builder_core"
                       711: version = "0.10.2"
                       712: source = "registry+https://github.com/rust-lang/crates.io-index"
                       713: checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5"
                       714: dependencies = [
                       715:  "darling 0.12.4",
                       716:  "proc-macro2",
                       717:  "quote",
                       718:  "syn",
                       719: ]
                       720: 
                       721: [[package]]
                       722: name = "derive_builder_macro"
                       723: version = "0.10.2"
                       724: source = "registry+https://github.com/rust-lang/crates.io-index"
                       725: checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73"
                       726: dependencies = [
                       727:  "derive_builder_core 0.10.2",
                       728:  "syn",
                       729: ]
                       730: 
                       731: [[package]]
                       732: name = "digest"
                       733: version = "0.10.3"
                       734: source = "registry+https://github.com/rust-lang/crates.io-index"
                       735: checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
                       736: dependencies = [
                       737:  "block-buffer",
                       738:  "crypto-common",
                       739:  "subtle",
                       740: ]
                       741: 
                       742: [[package]]
                       743: name = "diligent-date-parser"
                       744: version = "0.1.3"
                       745: source = "registry+https://github.com/rust-lang/crates.io-index"
                       746: checksum = "c2d0fd95c7c02e2d6c588c6c5628466fff9bdde4b8c6196465e087b08e792720"
                       747: dependencies = [
                       748:  "chrono",
                       749: ]
                       750: 
                       751: [[package]]
                       752: name = "dirs"
                       753: version = "4.0.0"
                       754: source = "registry+https://github.com/rust-lang/crates.io-index"
                       755: checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
                       756: dependencies = [
                       757:  "dirs-sys",
                       758: ]
                       759: 
                       760: [[package]]
                       761: name = "dirs-sys"
                       762: version = "0.3.7"
                       763: source = "registry+https://github.com/rust-lang/crates.io-index"
                       764: checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
                       765: dependencies = [
                       766:  "libc",
                       767:  "redox_users",
                       768:  "winapi 0.3.9",
                       769: ]
                       770: 
                       771: [[package]]
                       772: name = "dotenvy"
6fdbbcc8f8 2022-08-14  773: version = "0.15.1"
                       774: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14  775: checksum = "7e851a83c30366fd01d75b913588e95e74a1705c1ecc5d58b1f8e1a6d556525f"
                       776: dependencies = [
                       777:  "dirs",
                       778: ]
                       779: 
                       780: [[package]]
                       781: name = "dtoa"
                       782: version = "0.4.8"
                       783: source = "registry+https://github.com/rust-lang/crates.io-index"
                       784: checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
                       785: 
                       786: [[package]]
                       787: name = "either"
6fdbbcc8f8 2022-08-14  788: version = "1.7.0"
                       789: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14  790: checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
                       791: 
                       792: [[package]]
                       793: name = "encoding_rs"
                       794: version = "0.8.31"
                       795: source = "registry+https://github.com/rust-lang/crates.io-index"
                       796: checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
                       797: dependencies = [
                       798:  "cfg-if 1.0.0",
                       799: ]
                       800: 
                       801: [[package]]
                       802: name = "event-listener"
                       803: version = "2.5.3"
                       804: source = "registry+https://github.com/rust-lang/crates.io-index"
                       805: checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
                       806: 
                       807: [[package]]
                       808: name = "failure"
                       809: version = "0.1.8"
                       810: source = "registry+https://github.com/rust-lang/crates.io-index"
                       811: checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
                       812: dependencies = [
                       813:  "backtrace",
                       814:  "failure_derive",
                       815: ]
                       816: 
                       817: [[package]]
                       818: name = "failure_derive"
                       819: version = "0.1.8"
                       820: source = "registry+https://github.com/rust-lang/crates.io-index"
                       821: checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
                       822: dependencies = [
                       823:  "proc-macro2",
                       824:  "quote",
                       825:  "syn",
                       826:  "synstructure",
                       827: ]
                       828: 
                       829: [[package]]
                       830: name = "fastrand"
                       831: version = "1.8.0"
                       832: source = "registry+https://github.com/rust-lang/crates.io-index"
                       833: checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
                       834: dependencies = [
                       835:  "instant",
                       836: ]
                       837: 
                       838: [[package]]
                       839: name = "flate2"
                       840: version = "1.0.24"
                       841: source = "registry+https://github.com/rust-lang/crates.io-index"
                       842: checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
                       843: dependencies = [
                       844:  "crc32fast",
                       845:  "miniz_oxide",
                       846: ]
                       847: 
                       848: [[package]]
                       849: name = "fnv"
                       850: version = "1.0.7"
                       851: source = "registry+https://github.com/rust-lang/crates.io-index"
                       852: checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
                       853: 
                       854: [[package]]
                       855: name = "foreign-types"
                       856: version = "0.3.2"
                       857: source = "registry+https://github.com/rust-lang/crates.io-index"
                       858: checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
                       859: dependencies = [
                       860:  "foreign-types-shared",
                       861: ]
                       862: 
                       863: [[package]]
                       864: name = "foreign-types-shared"
                       865: version = "0.1.1"
                       866: source = "registry+https://github.com/rust-lang/crates.io-index"
                       867: checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
                       868: 
                       869: [[package]]
                       870: name = "form_urlencoded"
                       871: version = "1.0.1"
                       872: source = "registry+https://github.com/rust-lang/crates.io-index"
                       873: checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
                       874: dependencies = [
                       875:  "matches",
                       876:  "percent-encoding 2.1.0",
                       877: ]
                       878: 
                       879: [[package]]
                       880: name = "fuchsia-cprng"
                       881: version = "0.1.1"
                       882: source = "registry+https://github.com/rust-lang/crates.io-index"
                       883: checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
                       884: 
                       885: [[package]]
                       886: name = "fuchsia-zircon"
                       887: version = "0.3.3"
                       888: source = "registry+https://github.com/rust-lang/crates.io-index"
                       889: checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
                       890: dependencies = [
                       891:  "bitflags",
                       892:  "fuchsia-zircon-sys",
                       893: ]
                       894: 
                       895: [[package]]
                       896: name = "fuchsia-zircon-sys"
                       897: version = "0.3.3"
                       898: source = "registry+https://github.com/rust-lang/crates.io-index"
                       899: checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
                       900: 
                       901: [[package]]
                       902: name = "futures"
                       903: version = "0.1.31"
                       904: source = "registry+https://github.com/rust-lang/crates.io-index"
                       905: checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
                       906: 
                       907: [[package]]
                       908: name = "futures"
                       909: version = "0.3.23"
                       910: source = "registry+https://github.com/rust-lang/crates.io-index"
                       911: checksum = "ab30e97ab6aacfe635fad58f22c2bb06c8b685f7421eb1e064a729e2a5f481fa"
                       912: dependencies = [
                       913:  "futures-channel",
                       914:  "futures-core",
                       915:  "futures-executor",
                       916:  "futures-io",
                       917:  "futures-sink",
                       918:  "futures-task",
                       919:  "futures-util",
                       920: ]
                       921: 
                       922: [[package]]
                       923: name = "futures-channel"
                       924: version = "0.3.23"
                       925: source = "registry+https://github.com/rust-lang/crates.io-index"
                       926: checksum = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1"
                       927: dependencies = [
                       928:  "futures-core",
                       929:  "futures-sink",
                       930: ]
                       931: 
                       932: [[package]]
                       933: name = "futures-core"
                       934: version = "0.3.23"
                       935: source = "registry+https://github.com/rust-lang/crates.io-index"
                       936: checksum = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115"
                       937: 
                       938: [[package]]
                       939: name = "futures-cpupool"
                       940: version = "0.1.8"
                       941: source = "registry+https://github.com/rust-lang/crates.io-index"
                       942: checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
                       943: dependencies = [
                       944:  "futures 0.1.31",
                       945:  "num_cpus",
                       946: ]
                       947: 
                       948: [[package]]
                       949: name = "futures-executor"
                       950: version = "0.3.23"
                       951: source = "registry+https://github.com/rust-lang/crates.io-index"
                       952: checksum = "1d11aa21b5b587a64682c0094c2bdd4df0076c5324961a40cc3abd7f37930528"
                       953: dependencies = [
                       954:  "futures-core",
                       955:  "futures-task",
                       956:  "futures-util",
                       957: ]
                       958: 
                       959: [[package]]
                       960: name = "futures-intrusive"
                       961: version = "0.4.0"
                       962: source = "registry+https://github.com/rust-lang/crates.io-index"
                       963: checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
                       964: dependencies = [
                       965:  "futures-core",
6fdbbcc8f8 2022-08-14  966:  "lock_api 0.4.7",
                       967:  "parking_lot 0.11.2",
                       968: ]
                       969: 
                       970: [[package]]
                       971: name = "futures-io"
                       972: version = "0.3.23"
                       973: source = "registry+https://github.com/rust-lang/crates.io-index"
                       974: checksum = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5"
                       975: 
                       976: [[package]]
                       977: name = "futures-lite"
                       978: version = "1.12.0"
                       979: source = "registry+https://github.com/rust-lang/crates.io-index"
                       980: checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
                       981: dependencies = [
                       982:  "fastrand",
                       983:  "futures-core",
                       984:  "futures-io",
                       985:  "memchr",
                       986:  "parking",
                       987:  "pin-project-lite",
                       988:  "waker-fn",
                       989: ]
                       990: 
                       991: [[package]]
                       992: name = "futures-macro"
                       993: version = "0.3.23"
                       994: source = "registry+https://github.com/rust-lang/crates.io-index"
                       995: checksum = "0db9cce532b0eae2ccf2766ab246f114b56b9cf6d445e00c2549fbc100ca045d"
                       996: dependencies = [
                       997:  "proc-macro2",
                       998:  "quote",
                       999:  "syn",
                      1000: ]
                      1001: 
                      1002: [[package]]
                      1003: name = "futures-rustls"
                      1004: version = "0.22.2"
                      1005: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1006: checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
                      1007: dependencies = [
                      1008:  "futures-io",
                      1009:  "rustls",
                      1010:  "webpki",
                      1011: ]
                      1012: 
                      1013: [[package]]
                      1014: name = "futures-sink"
                      1015: version = "0.3.23"
                      1016: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1017: checksum = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765"
                      1018: 
                      1019: [[package]]
                      1020: name = "futures-task"
                      1021: version = "0.3.23"
                      1022: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1023: checksum = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306"
                      1024: 
                      1025: [[package]]
                      1026: name = "futures-util"
                      1027: version = "0.3.23"
                      1028: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1029: checksum = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577"
                      1030: dependencies = [
                      1031:  "futures-channel",
                      1032:  "futures-core",
                      1033:  "futures-io",
                      1034:  "futures-macro",
                      1035:  "futures-sink",
                      1036:  "futures-task",
                      1037:  "memchr",
                      1038:  "pin-project-lite",
                      1039:  "pin-utils",
                      1040:  "slab",
                      1041: ]
                      1042: 
                      1043: [[package]]
                      1044: name = "generic-array"
                      1045: version = "0.14.6"
                      1046: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1047: checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
                      1048: dependencies = [
                      1049:  "typenum",
                      1050:  "version_check",
                      1051: ]
                      1052: 
                      1053: [[package]]
                      1054: name = "getrandom"
                      1055: version = "0.1.16"
                      1056: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1057: checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
                      1058: dependencies = [
                      1059:  "cfg-if 1.0.0",
                      1060:  "libc",
                      1061:  "wasi 0.9.0+wasi-snapshot-preview1",
                      1062: ]
                      1063: 
                      1064: [[package]]
                      1065: name = "getrandom"
                      1066: version = "0.2.7"
                      1067: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1068: checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
                      1069: dependencies = [
                      1070:  "cfg-if 1.0.0",
                      1071:  "libc",
                      1072:  "wasi 0.11.0+wasi-snapshot-preview1",
                      1073: ]
                      1074: 
                      1075: [[package]]
                      1076: name = "gimli"
                      1077: version = "0.26.2"
                      1078: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1079: checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
                      1080: 
                      1081: [[package]]
                      1082: name = "gloo-timers"
                      1083: version = "0.2.4"
                      1084: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1085: checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
                      1086: dependencies = [
                      1087:  "futures-channel",
                      1088:  "futures-core",
                      1089:  "js-sys",
                      1090:  "wasm-bindgen",
                      1091: ]
                      1092: 
                      1093: [[package]]
                      1094: name = "h2"
                      1095: version = "0.1.26"
                      1096: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1097: checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
                      1098: dependencies = [
                      1099:  "byteorder",
                      1100:  "bytes 0.4.12",
                      1101:  "fnv",
                      1102:  "futures 0.1.31",
                      1103:  "http 0.1.21",
                      1104:  "indexmap",
                      1105:  "log",
                      1106:  "slab",
                      1107:  "string",
                      1108:  "tokio-io",
                      1109: ]
                      1110: 
                      1111: [[package]]
                      1112: name = "h2"
6fdbbcc8f8 2022-08-14 1113: version = "0.3.13"
                      1114: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1115: checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
                      1116: dependencies = [
                      1117:  "bytes 1.2.1",
                      1118:  "fnv",
                      1119:  "futures-core",
                      1120:  "futures-sink",
                      1121:  "futures-util",
                      1122:  "http 0.2.8",
                      1123:  "indexmap",
                      1124:  "slab",
                      1125:  "tokio 1.20.1",
                      1126:  "tokio-util",
                      1127:  "tracing",
                      1128: ]
                      1129: 
                      1130: [[package]]
                      1131: name = "hashbrown"
                      1132: version = "0.12.3"
                      1133: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1134: checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
                      1135: dependencies = [
                      1136:  "ahash",
                      1137: ]
                      1138: 
                      1139: [[package]]
                      1140: name = "hashlink"
                      1141: version = "0.8.0"
                      1142: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1143: checksum = "d452c155cb93fecdfb02a73dd57b5d8e442c2063bd7aac72f1bc5e4263a43086"
                      1144: dependencies = [
                      1145:  "hashbrown",
                      1146: ]
                      1147: 
                      1148: [[package]]
                      1149: name = "heck"
                      1150: version = "0.4.0"
                      1151: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1152: checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
                      1153: dependencies = [
                      1154:  "unicode-segmentation",
                      1155: ]
                      1156: 
                      1157: [[package]]
                      1158: name = "hermit-abi"
                      1159: version = "0.1.19"
                      1160: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1161: checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
                      1162: dependencies = [
                      1163:  "libc",
                      1164: ]
                      1165: 
                      1166: [[package]]
                      1167: name = "hex"
                      1168: version = "0.4.3"
                      1169: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1170: checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
                      1171: 
                      1172: [[package]]
                      1173: name = "hkdf"
                      1174: version = "0.12.3"
                      1175: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1176: checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
                      1177: dependencies = [
                      1178:  "hmac",
                      1179: ]
                      1180: 
                      1181: [[package]]
                      1182: name = "hmac"
                      1183: version = "0.12.1"
                      1184: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1185: checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
                      1186: dependencies = [
                      1187:  "digest",
                      1188: ]
                      1189: 
                      1190: [[package]]
                      1191: name = "http"
                      1192: version = "0.1.21"
                      1193: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1194: checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
                      1195: dependencies = [
                      1196:  "bytes 0.4.12",
                      1197:  "fnv",
                      1198:  "itoa 0.4.8",
                      1199: ]
                      1200: 
                      1201: [[package]]
                      1202: name = "http"
                      1203: version = "0.2.8"
                      1204: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1205: checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
                      1206: dependencies = [
                      1207:  "bytes 1.2.1",
                      1208:  "fnv",
                      1209:  "itoa 1.0.3",
                      1210: ]
                      1211: 
                      1212: [[package]]
                      1213: name = "http-body"
                      1214: version = "0.1.0"
                      1215: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1216: checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
                      1217: dependencies = [
                      1218:  "bytes 0.4.12",
                      1219:  "futures 0.1.31",
                      1220:  "http 0.1.21",
                      1221:  "tokio-buf",
                      1222: ]
                      1223: 
                      1224: [[package]]
                      1225: name = "http-body"
                      1226: version = "0.4.5"
                      1227: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1228: checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
                      1229: dependencies = [
                      1230:  "bytes 1.2.1",
                      1231:  "http 0.2.8",
                      1232:  "pin-project-lite",
                      1233: ]
                      1234: 
                      1235: [[package]]
                      1236: name = "httparse"
                      1237: version = "1.7.1"
                      1238: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1239: checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
                      1240: 
                      1241: [[package]]
                      1242: name = "httpdate"
                      1243: version = "1.0.2"
                      1244: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1245: checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
                      1246: 
                      1247: [[package]]
                      1248: name = "hyper"
                      1249: version = "0.12.36"
                      1250: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1251: checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52"
                      1252: dependencies = [
                      1253:  "bytes 0.4.12",
                      1254:  "futures 0.1.31",
                      1255:  "futures-cpupool",
                      1256:  "h2 0.1.26",
                      1257:  "http 0.1.21",
                      1258:  "http-body 0.1.0",
                      1259:  "httparse",
                      1260:  "iovec",
                      1261:  "itoa 0.4.8",
                      1262:  "log",
                      1263:  "net2",
                      1264:  "rustc_version",
                      1265:  "time",
                      1266:  "tokio 0.1.22",
                      1267:  "tokio-buf",
                      1268:  "tokio-executor",
                      1269:  "tokio-io",
                      1270:  "tokio-reactor",
                      1271:  "tokio-tcp",
                      1272:  "tokio-threadpool",
                      1273:  "tokio-timer",
                      1274:  "want 0.2.0",
                      1275: ]
                      1276: 
                      1277: [[package]]
                      1278: name = "hyper"
                      1279: version = "0.14.20"
                      1280: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1281: checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
                      1282: dependencies = [
                      1283:  "bytes 1.2.1",
                      1284:  "futures-channel",
                      1285:  "futures-core",
                      1286:  "futures-util",
6fdbbcc8f8 2022-08-14 1287:  "h2 0.3.13",
                      1288:  "http 0.2.8",
                      1289:  "http-body 0.4.5",
                      1290:  "httparse",
                      1291:  "httpdate",
                      1292:  "itoa 1.0.3",
                      1293:  "pin-project-lite",
                      1294:  "socket2",
                      1295:  "tokio 1.20.1",
                      1296:  "tower-service",
                      1297:  "tracing",
                      1298:  "want 0.3.0",
                      1299: ]
                      1300: 
                      1301: [[package]]
                      1302: name = "hyper-tls"
                      1303: version = "0.3.2"
                      1304: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1305: checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
                      1306: dependencies = [
                      1307:  "bytes 0.4.12",
                      1308:  "futures 0.1.31",
                      1309:  "hyper 0.12.36",
                      1310:  "native-tls",
                      1311:  "tokio-io",
                      1312: ]
                      1313: 
                      1314: [[package]]
                      1315: name = "hyper-tls"
                      1316: version = "0.5.0"
                      1317: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1318: checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
                      1319: dependencies = [
                      1320:  "bytes 1.2.1",
                      1321:  "hyper 0.14.20",
                      1322:  "native-tls",
                      1323:  "tokio 1.20.1",
                      1324:  "tokio-native-tls",
                      1325: ]
                      1326: 
                      1327: [[package]]
                      1328: name = "iana-time-zone"
6fdbbcc8f8 2022-08-14 1329: version = "0.1.44"
                      1330: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1331: checksum = "808cf7d67cf4a22adc5be66e75ebdf769b3f2ea032041437a7061f97a63dad4b"
                      1332: dependencies = [
                      1333:  "android_system_properties",
                      1334:  "core-foundation-sys",
                      1335:  "js-sys",
                      1336:  "wasm-bindgen",
                      1337:  "winapi 0.3.9",
                      1338: ]
                      1339: 
                      1340: [[package]]
                      1341: name = "ident_case"
                      1342: version = "1.0.1"
                      1343: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1344: checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
                      1345: 
                      1346: [[package]]
                      1347: name = "idna"
                      1348: version = "0.1.5"
                      1349: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1350: checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
                      1351: dependencies = [
                      1352:  "matches",
                      1353:  "unicode-bidi",
                      1354:  "unicode-normalization",
                      1355: ]
                      1356: 
                      1357: [[package]]
                      1358: name = "idna"
                      1359: version = "0.2.3"
                      1360: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1361: checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
                      1362: dependencies = [
                      1363:  "matches",
                      1364:  "unicode-bidi",
                      1365:  "unicode-normalization",
                      1366: ]
                      1367: 
                      1368: [[package]]
                      1369: name = "indexmap"
                      1370: version = "1.9.1"
                      1371: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1372: checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
                      1373: dependencies = [
                      1374:  "autocfg 1.1.0",
                      1375:  "hashbrown",
                      1376: ]
                      1377: 
                      1378: [[package]]
                      1379: name = "instant"
                      1380: version = "0.1.12"
                      1381: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1382: checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
                      1383: dependencies = [
                      1384:  "cfg-if 1.0.0",
                      1385: ]
                      1386: 
                      1387: [[package]]
                      1388: name = "iovec"
                      1389: version = "0.1.4"
                      1390: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1391: checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
                      1392: dependencies = [
                      1393:  "libc",
                      1394: ]
                      1395: 
                      1396: [[package]]
                      1397: name = "ipnet"
                      1398: version = "2.5.0"
                      1399: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1400: checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
                      1401: 
                      1402: [[package]]
                      1403: name = "itertools"
                      1404: version = "0.10.3"
                      1405: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1406: checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
                      1407: dependencies = [
                      1408:  "either",
                      1409: ]
                      1410: 
                      1411: [[package]]
                      1412: name = "itoa"
                      1413: version = "0.4.8"
                      1414: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1415: checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
                      1416: 
                      1417: [[package]]
                      1418: name = "itoa"
                      1419: version = "1.0.3"
                      1420: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1421: checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
                      1422: 
                      1423: [[package]]
                      1424: name = "js-sys"
                      1425: version = "0.3.59"
                      1426: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1427: checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
                      1428: dependencies = [
                      1429:  "wasm-bindgen",
                      1430: ]
                      1431: 
                      1432: [[package]]
                      1433: name = "kernel32-sys"
                      1434: version = "0.2.2"
                      1435: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1436: checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
                      1437: dependencies = [
                      1438:  "winapi 0.2.8",
                      1439:  "winapi-build",
                      1440: ]
                      1441: 
                      1442: [[package]]
                      1443: name = "kv-log-macro"
                      1444: version = "1.0.7"
                      1445: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1446: checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
                      1447: dependencies = [
                      1448:  "log",
                      1449: ]
                      1450: 
                      1451: [[package]]
                      1452: name = "lazy_static"
                      1453: version = "1.4.0"
                      1454: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1455: checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
                      1456: 
                      1457: [[package]]
                      1458: name = "libc"
6fdbbcc8f8 2022-08-14 1459: version = "0.2.131"
                      1460: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1461: checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40"
                      1462: 
                      1463: [[package]]
                      1464: name = "lock_api"
                      1465: version = "0.3.4"
                      1466: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1467: checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
                      1468: dependencies = [
                      1469:  "scopeguard",
                      1470: ]
                      1471: 
                      1472: [[package]]
                      1473: name = "lock_api"
6fdbbcc8f8 2022-08-14 1474: version = "0.4.7"
                      1475: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1476: checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
                      1477: dependencies = [
                      1478:  "autocfg 1.1.0",
                      1479:  "scopeguard",
                      1480: ]
                      1481: 
                      1482: [[package]]
                      1483: name = "log"
                      1484: version = "0.4.17"
                      1485: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1486: checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
                      1487: dependencies = [
                      1488:  "cfg-if 1.0.0",
                      1489:  "value-bag",
                      1490: ]
                      1491: 
                      1492: [[package]]
                      1493: name = "matches"
                      1494: version = "0.1.9"
                      1495: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1496: checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
                      1497: 
                      1498: [[package]]
                      1499: name = "maybe-uninit"
                      1500: version = "2.0.0"
                      1501: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1502: checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
                      1503: 
                      1504: [[package]]
                      1505: name = "md-5"
                      1506: version = "0.10.1"
                      1507: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1508: checksum = "658646b21e0b72f7866c7038ab086d3d5e1cd6271f060fd37defb241949d0582"
                      1509: dependencies = [
                      1510:  "digest",
                      1511: ]
                      1512: 
                      1513: [[package]]
                      1514: name = "memchr"
                      1515: version = "2.5.0"
                      1516: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1517: checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
                      1518: 
                      1519: [[package]]
                      1520: name = "memoffset"
                      1521: version = "0.5.6"
                      1522: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1523: checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
                      1524: dependencies = [
                      1525:  "autocfg 1.1.0",
                      1526: ]
                      1527: 
                      1528: [[package]]
                      1529: name = "mime"
                      1530: version = "0.3.16"
                      1531: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1532: checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
                      1533: 
                      1534: [[package]]
                      1535: name = "mime_guess"
                      1536: version = "2.0.4"
                      1537: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1538: checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
                      1539: dependencies = [
                      1540:  "mime",
                      1541:  "unicase",
                      1542: ]
                      1543: 
                      1544: [[package]]
                      1545: name = "minimal-lexical"
                      1546: version = "0.2.1"
                      1547: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1548: checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
                      1549: 
                      1550: [[package]]
                      1551: name = "miniz_oxide"
                      1552: version = "0.5.3"
                      1553: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1554: checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
                      1555: dependencies = [
                      1556:  "adler",
                      1557: ]
                      1558: 
                      1559: [[package]]
                      1560: name = "mio"
                      1561: version = "0.6.23"
                      1562: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1563: checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
                      1564: dependencies = [
                      1565:  "cfg-if 0.1.10",
                      1566:  "fuchsia-zircon",
                      1567:  "fuchsia-zircon-sys",
                      1568:  "iovec",
                      1569:  "kernel32-sys",
                      1570:  "libc",
                      1571:  "log",
                      1572:  "miow",
                      1573:  "net2",
                      1574:  "slab",
                      1575:  "winapi 0.2.8",
                      1576: ]
                      1577: 
                      1578: [[package]]
                      1579: name = "mio"
                      1580: version = "0.8.4"
                      1581: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1582: checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
                      1583: dependencies = [
                      1584:  "libc",
                      1585:  "log",
                      1586:  "wasi 0.11.0+wasi-snapshot-preview1",
                      1587:  "windows-sys",
                      1588: ]
                      1589: 
                      1590: [[package]]
                      1591: name = "miow"
                      1592: version = "0.2.2"
                      1593: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1594: checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
                      1595: dependencies = [
                      1596:  "kernel32-sys",
                      1597:  "net2",
                      1598:  "winapi 0.2.8",
                      1599:  "ws2_32-sys",
                      1600: ]
                      1601: 
                      1602: [[package]]
                      1603: name = "multipart"
                      1604: version = "0.17.1"
                      1605: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1606: checksum = "d050aeedc89243f5347c3e237e3e13dc76fbe4ae3742a57b94dc14f69acf76d4"
                      1607: dependencies = [
                      1608:  "log",
                      1609:  "mime",
                      1610:  "mime_guess",
                      1611:  "rand 0.7.3",
                      1612:  "tempfile",
                      1613: ]
                      1614: 
                      1615: [[package]]
                      1616: name = "native-tls"
                      1617: version = "0.2.10"
                      1618: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1619: checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
                      1620: dependencies = [
                      1621:  "lazy_static",
                      1622:  "libc",
                      1623:  "log",
                      1624:  "openssl",
                      1625:  "openssl-probe",
                      1626:  "openssl-sys",
                      1627:  "schannel",
                      1628:  "security-framework",
                      1629:  "security-framework-sys",
                      1630:  "tempfile",
                      1631: ]
                      1632: 
                      1633: [[package]]
                      1634: name = "net2"
                      1635: version = "0.2.37"
                      1636: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1637: checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
                      1638: dependencies = [
                      1639:  "cfg-if 0.1.10",
                      1640:  "libc",
                      1641:  "winapi 0.3.9",
                      1642: ]
                      1643: 
                      1644: [[package]]
                      1645: name = "never"
                      1646: version = "0.1.0"
                      1647: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1648: checksum = "c96aba5aa877601bb3f6dd6a63a969e1f82e60646e81e71b14496995e9853c91"
                      1649: 
                      1650: [[package]]
                      1651: name = "nom"
                      1652: version = "7.1.1"
                      1653: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1654: checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
                      1655: dependencies = [
                      1656:  "memchr",
                      1657:  "minimal-lexical",
                      1658: ]
                      1659: 
                      1660: [[package]]
                      1661: name = "num-integer"
                      1662: version = "0.1.45"
                      1663: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1664: checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
                      1665: dependencies = [
                      1666:  "autocfg 1.1.0",
                      1667:  "num-traits",
                      1668: ]
                      1669: 
                      1670: [[package]]
                      1671: name = "num-traits"
                      1672: version = "0.2.15"
                      1673: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1674: checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
                      1675: dependencies = [
                      1676:  "autocfg 1.1.0",
                      1677: ]
                      1678: 
                      1679: [[package]]
                      1680: name = "num_cpus"
                      1681: version = "1.13.1"
                      1682: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1683: checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
                      1684: dependencies = [
                      1685:  "hermit-abi",
                      1686:  "libc",
                      1687: ]
                      1688: 
                      1689: [[package]]
                      1690: name = "object"
                      1691: version = "0.29.0"
                      1692: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1693: checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
                      1694: dependencies = [
                      1695:  "memchr",
                      1696: ]
                      1697: 
                      1698: [[package]]
                      1699: name = "once_cell"
6fdbbcc8f8 2022-08-14 1700: version = "1.13.0"
                      1701: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1702: checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
                      1703: 
                      1704: [[package]]
                      1705: name = "openssl"
                      1706: version = "0.10.41"
                      1707: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1708: checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
                      1709: dependencies = [
                      1710:  "bitflags",
                      1711:  "cfg-if 1.0.0",
                      1712:  "foreign-types",
                      1713:  "libc",
                      1714:  "once_cell",
                      1715:  "openssl-macros",
                      1716:  "openssl-sys",
                      1717: ]
                      1718: 
                      1719: [[package]]
                      1720: name = "openssl-macros"
                      1721: version = "0.1.0"
                      1722: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1723: checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
                      1724: dependencies = [
                      1725:  "proc-macro2",
                      1726:  "quote",
                      1727:  "syn",
                      1728: ]
                      1729: 
                      1730: [[package]]
                      1731: name = "openssl-probe"
                      1732: version = "0.1.5"
                      1733: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1734: checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
                      1735: 
                      1736: [[package]]
                      1737: name = "openssl-sys"
                      1738: version = "0.9.75"
                      1739: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1740: checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
                      1741: dependencies = [
                      1742:  "autocfg 1.1.0",
                      1743:  "cc",
                      1744:  "libc",
                      1745:  "pkg-config",
                      1746:  "vcpkg",
                      1747: ]
                      1748: 
                      1749: [[package]]
                      1750: name = "ordered-float"
                      1751: version = "2.10.0"
                      1752: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1753: checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87"
                      1754: dependencies = [
                      1755:  "num-traits",
                      1756: ]
                      1757: 
                      1758: [[package]]
                      1759: name = "parking"
                      1760: version = "2.0.0"
                      1761: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1762: checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
                      1763: 
                      1764: [[package]]
                      1765: name = "parking_lot"
                      1766: version = "0.9.0"
                      1767: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1768: checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
                      1769: dependencies = [
                      1770:  "lock_api 0.3.4",
                      1771:  "parking_lot_core 0.6.2",
                      1772:  "rustc_version",
                      1773: ]
                      1774: 
                      1775: [[package]]
                      1776: name = "parking_lot"
                      1777: version = "0.11.2"
                      1778: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1779: checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
                      1780: dependencies = [
                      1781:  "instant",
6fdbbcc8f8 2022-08-14 1782:  "lock_api 0.4.7",
                      1783:  "parking_lot_core 0.8.5",
                      1784: ]
                      1785: 
                      1786: [[package]]
                      1787: name = "parking_lot_core"
                      1788: version = "0.6.2"
                      1789: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1790: checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
                      1791: dependencies = [
                      1792:  "cfg-if 0.1.10",
                      1793:  "cloudabi",
                      1794:  "libc",
                      1795:  "redox_syscall 0.1.57",
                      1796:  "rustc_version",
                      1797:  "smallvec 0.6.14",
                      1798:  "winapi 0.3.9",
                      1799: ]
                      1800: 
                      1801: [[package]]
                      1802: name = "parking_lot_core"
                      1803: version = "0.8.5"
                      1804: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1805: checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
                      1806: dependencies = [
                      1807:  "cfg-if 1.0.0",
                      1808:  "instant",
                      1809:  "libc",
                      1810:  "redox_syscall 0.2.16",
                      1811:  "smallvec 1.9.0",
                      1812:  "winapi 0.3.9",
                      1813: ]
                      1814: 
                      1815: [[package]]
                      1816: name = "paste"
                      1817: version = "1.0.8"
                      1818: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1819: checksum = "9423e2b32f7a043629287a536f21951e8c6a82482d0acb1eeebfc90bc2225b22"
                      1820: 
                      1821: [[package]]
                      1822: name = "pathdiff"
                      1823: version = "0.2.1"
                      1824: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1825: checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
                      1826: 
                      1827: [[package]]
                      1828: name = "percent-encoding"
                      1829: version = "1.0.1"
                      1830: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1831: checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
                      1832: 
                      1833: [[package]]
                      1834: name = "percent-encoding"
                      1835: version = "2.1.0"
                      1836: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1837: checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
                      1838: 
                      1839: [[package]]
                      1840: name = "pin-project"
6fdbbcc8f8 2022-08-14 1841: version = "1.0.11"
                      1842: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1843: checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
                      1844: dependencies = [
                      1845:  "pin-project-internal",
                      1846: ]
                      1847: 
                      1848: [[package]]
                      1849: name = "pin-project-internal"
6fdbbcc8f8 2022-08-14 1850: version = "1.0.11"
                      1851: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1852: checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
                      1853: dependencies = [
                      1854:  "proc-macro2",
                      1855:  "quote",
                      1856:  "syn",
                      1857: ]
                      1858: 
                      1859: [[package]]
                      1860: name = "pin-project-lite"
                      1861: version = "0.2.9"
                      1862: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1863: checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
                      1864: 
                      1865: [[package]]
                      1866: name = "pin-utils"
                      1867: version = "0.1.0"
                      1868: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1869: checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
                      1870: 
                      1871: [[package]]
                      1872: name = "pkg-config"
                      1873: version = "0.3.25"
                      1874: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1875: checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
                      1876: 
                      1877: [[package]]
                      1878: name = "polling"
6fdbbcc8f8 2022-08-14 1879: version = "2.2.0"
                      1880: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 1881: checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
                      1882: dependencies = [
                      1883:  "cfg-if 1.0.0",
                      1884:  "libc",
                      1885:  "log",
                      1886:  "wepoll-ffi",
                      1887:  "winapi 0.3.9",
                      1888: ]
                      1889: 
                      1890: [[package]]
                      1891: name = "ppv-lite86"
                      1892: version = "0.2.16"
                      1893: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1894: checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
                      1895: 
                      1896: [[package]]
                      1897: name = "proc-macro2"
                      1898: version = "1.0.43"
                      1899: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1900: checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
                      1901: dependencies = [
                      1902:  "unicode-ident",
                      1903: ]
                      1904: 
                      1905: [[package]]
                      1906: name = "publicsuffix"
                      1907: version = "1.5.6"
                      1908: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1909: checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
                      1910: dependencies = [
                      1911:  "idna 0.2.3",
                      1912:  "url 2.2.2",
                      1913: ]
                      1914: 
                      1915: [[package]]
                      1916: name = "quick-xml"
                      1917: version = "0.17.2"
                      1918: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1919: checksum = "fe1e430bdcf30c9fdc25053b9c459bb1a4672af4617b6c783d7d91dc17c6bbb0"
                      1920: dependencies = [
                      1921:  "encoding_rs",
                      1922:  "memchr",
                      1923: ]
                      1924: 
                      1925: [[package]]
                      1926: name = "quick-xml"
                      1927: version = "0.22.0"
                      1928: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1929: checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
                      1930: dependencies = [
                      1931:  "encoding_rs",
                      1932:  "memchr",
                      1933: ]
                      1934: 
                      1935: [[package]]
                      1936: name = "quote"
                      1937: version = "1.0.21"
                      1938: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1939: checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
                      1940: dependencies = [
                      1941:  "proc-macro2",
                      1942: ]
                      1943: 
                      1944: [[package]]
                      1945: name = "rand"
                      1946: version = "0.6.5"
                      1947: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1948: checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
                      1949: dependencies = [
                      1950:  "autocfg 0.1.8",
                      1951:  "libc",
                      1952:  "rand_chacha 0.1.1",
                      1953:  "rand_core 0.4.2",
                      1954:  "rand_hc 0.1.0",
                      1955:  "rand_isaac",
                      1956:  "rand_jitter",
                      1957:  "rand_os",
                      1958:  "rand_pcg",
                      1959:  "rand_xorshift",
                      1960:  "winapi 0.3.9",
                      1961: ]
                      1962: 
                      1963: [[package]]
                      1964: name = "rand"
                      1965: version = "0.7.3"
                      1966: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1967: checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
                      1968: dependencies = [
                      1969:  "getrandom 0.1.16",
                      1970:  "libc",
                      1971:  "rand_chacha 0.2.2",
                      1972:  "rand_core 0.5.1",
                      1973:  "rand_hc 0.2.0",
                      1974: ]
                      1975: 
                      1976: [[package]]
                      1977: name = "rand"
                      1978: version = "0.8.5"
                      1979: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1980: checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
                      1981: dependencies = [
                      1982:  "libc",
                      1983:  "rand_chacha 0.3.1",
                      1984:  "rand_core 0.6.3",
                      1985: ]
                      1986: 
                      1987: [[package]]
                      1988: name = "rand_chacha"
                      1989: version = "0.1.1"
                      1990: source = "registry+https://github.com/rust-lang/crates.io-index"
                      1991: checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
                      1992: dependencies = [
                      1993:  "autocfg 0.1.8",
                      1994:  "rand_core 0.3.1",
                      1995: ]
                      1996: 
                      1997: [[package]]
                      1998: name = "rand_chacha"
                      1999: version = "0.2.2"
                      2000: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2001: checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
                      2002: dependencies = [
                      2003:  "ppv-lite86",
                      2004:  "rand_core 0.5.1",
                      2005: ]
                      2006: 
                      2007: [[package]]
                      2008: name = "rand_chacha"
                      2009: version = "0.3.1"
                      2010: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2011: checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
                      2012: dependencies = [
                      2013:  "ppv-lite86",
                      2014:  "rand_core 0.6.3",
                      2015: ]
                      2016: 
                      2017: [[package]]
                      2018: name = "rand_core"
                      2019: version = "0.3.1"
                      2020: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2021: checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
                      2022: dependencies = [
                      2023:  "rand_core 0.4.2",
                      2024: ]
                      2025: 
                      2026: [[package]]
                      2027: name = "rand_core"
                      2028: version = "0.4.2"
                      2029: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2030: checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
                      2031: 
                      2032: [[package]]
                      2033: name = "rand_core"
                      2034: version = "0.5.1"
                      2035: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2036: checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
                      2037: dependencies = [
                      2038:  "getrandom 0.1.16",
                      2039: ]
                      2040: 
                      2041: [[package]]
                      2042: name = "rand_core"
                      2043: version = "0.6.3"
                      2044: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2045: checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
                      2046: dependencies = [
                      2047:  "getrandom 0.2.7",
                      2048: ]
                      2049: 
                      2050: [[package]]
                      2051: name = "rand_hc"
                      2052: version = "0.1.0"
                      2053: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2054: checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
                      2055: dependencies = [
                      2056:  "rand_core 0.3.1",
                      2057: ]
                      2058: 
                      2059: [[package]]
                      2060: name = "rand_hc"
                      2061: version = "0.2.0"
                      2062: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2063: checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
                      2064: dependencies = [
                      2065:  "rand_core 0.5.1",
                      2066: ]
                      2067: 
                      2068: [[package]]
                      2069: name = "rand_isaac"
                      2070: version = "0.1.1"
                      2071: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2072: checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
                      2073: dependencies = [
                      2074:  "rand_core 0.3.1",
                      2075: ]
                      2076: 
                      2077: [[package]]
                      2078: name = "rand_jitter"
                      2079: version = "0.1.4"
                      2080: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2081: checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
                      2082: dependencies = [
                      2083:  "libc",
                      2084:  "rand_core 0.4.2",
                      2085:  "winapi 0.3.9",
                      2086: ]
                      2087: 
                      2088: [[package]]
                      2089: name = "rand_os"
                      2090: version = "0.1.3"
                      2091: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2092: checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
                      2093: dependencies = [
                      2094:  "cloudabi",
                      2095:  "fuchsia-cprng",
                      2096:  "libc",
                      2097:  "rand_core 0.4.2",
                      2098:  "rdrand",
                      2099:  "winapi 0.3.9",
                      2100: ]
                      2101: 
                      2102: [[package]]
                      2103: name = "rand_pcg"
                      2104: version = "0.1.2"
                      2105: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2106: checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
                      2107: dependencies = [
                      2108:  "autocfg 0.1.8",
                      2109:  "rand_core 0.4.2",
                      2110: ]
                      2111: 
                      2112: [[package]]
                      2113: name = "rand_xorshift"
                      2114: version = "0.1.1"
                      2115: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2116: checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
                      2117: dependencies = [
                      2118:  "rand_core 0.3.1",
                      2119: ]
                      2120: 
                      2121: [[package]]
                      2122: name = "rdrand"
                      2123: version = "0.4.0"
                      2124: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2125: checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
                      2126: dependencies = [
                      2127:  "rand_core 0.3.1",
                      2128: ]
                      2129: 
                      2130: [[package]]
                      2131: name = "redox_syscall"
                      2132: version = "0.1.57"
                      2133: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2134: checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
                      2135: 
                      2136: [[package]]
                      2137: name = "redox_syscall"
                      2138: version = "0.2.16"
                      2139: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2140: checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
                      2141: dependencies = [
                      2142:  "bitflags",
                      2143: ]
                      2144: 
                      2145: [[package]]
                      2146: name = "redox_users"
                      2147: version = "0.4.3"
                      2148: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2149: checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
                      2150: dependencies = [
                      2151:  "getrandom 0.2.7",
                      2152:  "redox_syscall 0.2.16",
                      2153:  "thiserror",
                      2154: ]
                      2155: 
                      2156: [[package]]
                      2157: name = "regex"
                      2158: version = "1.6.0"
                      2159: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2160: checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
                      2161: dependencies = [
                      2162:  "aho-corasick",
                      2163:  "memchr",
                      2164:  "regex-syntax",
                      2165: ]
                      2166: 
                      2167: [[package]]
                      2168: name = "regex-syntax"
                      2169: version = "0.6.27"
                      2170: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2171: checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
                      2172: 
                      2173: [[package]]
                      2174: name = "remove_dir_all"
                      2175: version = "0.5.3"
                      2176: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2177: checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
                      2178: dependencies = [
                      2179:  "winapi 0.3.9",
                      2180: ]
                      2181: 
                      2182: [[package]]
                      2183: name = "reqwest"
                      2184: version = "0.9.24"
                      2185: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2186: checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab"
                      2187: dependencies = [
                      2188:  "base64 0.10.1",
                      2189:  "bytes 0.4.12",
                      2190:  "cookie",
                      2191:  "cookie_store",
                      2192:  "encoding_rs",
                      2193:  "flate2",
                      2194:  "futures 0.1.31",
                      2195:  "http 0.1.21",
                      2196:  "hyper 0.12.36",
                      2197:  "hyper-tls 0.3.2",
                      2198:  "log",
                      2199:  "mime",
                      2200:  "mime_guess",
                      2201:  "native-tls",
                      2202:  "serde",
                      2203:  "serde_json",
                      2204:  "serde_urlencoded 0.5.5",
                      2205:  "time",
                      2206:  "tokio 0.1.22",
                      2207:  "tokio-executor",
                      2208:  "tokio-io",
                      2209:  "tokio-threadpool",
                      2210:  "tokio-timer",
                      2211:  "url 1.7.2",
                      2212:  "uuid",
                      2213:  "winreg 0.6.2",
                      2214: ]
                      2215: 
                      2216: [[package]]
                      2217: name = "reqwest"
                      2218: version = "0.11.11"
                      2219: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2220: checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
                      2221: dependencies = [
                      2222:  "async-compression",
                      2223:  "base64 0.13.0",
                      2224:  "bytes 1.2.1",
                      2225:  "encoding_rs",
                      2226:  "futures-core",
                      2227:  "futures-util",
6fdbbcc8f8 2022-08-14 2228:  "h2 0.3.13",
                      2229:  "http 0.2.8",
                      2230:  "http-body 0.4.5",
                      2231:  "hyper 0.14.20",
                      2232:  "hyper-tls 0.5.0",
                      2233:  "ipnet",
                      2234:  "js-sys",
                      2235:  "lazy_static",
                      2236:  "log",
                      2237:  "mime",
                      2238:  "native-tls",
                      2239:  "percent-encoding 2.1.0",
                      2240:  "pin-project-lite",
                      2241:  "serde",
                      2242:  "serde_json",
                      2243:  "serde_urlencoded 0.7.1",
                      2244:  "tokio 1.20.1",
                      2245:  "tokio-native-tls",
                      2246:  "tokio-util",
                      2247:  "tower-service",
                      2248:  "url 2.2.2",
                      2249:  "wasm-bindgen",
                      2250:  "wasm-bindgen-futures",
                      2251:  "web-sys",
                      2252:  "winreg 0.10.1",
                      2253: ]
                      2254: 
                      2255: [[package]]
                      2256: name = "ring"
                      2257: version = "0.16.20"
                      2258: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2259: checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
                      2260: dependencies = [
                      2261:  "cc",
                      2262:  "libc",
                      2263:  "once_cell",
                      2264:  "spin",
                      2265:  "untrusted",
                      2266:  "web-sys",
                      2267:  "winapi 0.3.9",
                      2268: ]
                      2269: 
                      2270: [[package]]
                      2271: name = "rss"
                      2272: version = "1.9.0"
                      2273: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2274: checksum = "99979205510c60f80a119dedbabd0b8426517384edf205322f8bcd51796bcef9"
                      2275: dependencies = [
                      2276:  "derive_builder 0.9.0",
                      2277:  "quick-xml 0.17.2",
                      2278:  "reqwest 0.9.24",
                      2279: ]
                      2280: 
                      2281: [[package]]
                      2282: name = "rsstg"
6fdbbcc8f8 2022-08-14 2283: version = "0.2.16"
                      2284: dependencies = [
                      2285:  "anyhow",
                      2286:  "async-std",
                      2287:  "atom_syndication",
                      2288:  "chrono",
                      2289:  "config",
                      2290:  "futures 0.3.23",
                      2291:  "futures-util",
                      2292:  "lazy_static",
                      2293:  "regex",
                      2294:  "reqwest 0.11.11",
                      2295:  "rss",
                      2296:  "sedregex",
                      2297:  "sqlx",
                      2298:  "telegram-bot",
                      2299: ]
                      2300: 
                      2301: [[package]]
                      2302: name = "rustc-demangle"
                      2303: version = "0.1.21"
                      2304: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2305: checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
                      2306: 
                      2307: [[package]]
                      2308: name = "rustc_version"
                      2309: version = "0.2.3"
                      2310: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2311: checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
                      2312: dependencies = [
                      2313:  "semver",
                      2314: ]
                      2315: 
                      2316: [[package]]
                      2317: name = "rustls"
                      2318: version = "0.20.6"
                      2319: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2320: checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
                      2321: dependencies = [
                      2322:  "log",
                      2323:  "ring",
                      2324:  "sct",
                      2325:  "webpki",
                      2326: ]
                      2327: 
                      2328: [[package]]
                      2329: name = "rustls-pemfile"
                      2330: version = "1.0.1"
                      2331: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2332: checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
                      2333: dependencies = [
                      2334:  "base64 0.13.0",
                      2335: ]
                      2336: 
                      2337: [[package]]
                      2338: name = "ryu"
                      2339: version = "1.0.11"
                      2340: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2341: checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
                      2342: 
                      2343: [[package]]
                      2344: name = "schannel"
                      2345: version = "0.1.20"
                      2346: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2347: checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
                      2348: dependencies = [
                      2349:  "lazy_static",
                      2350:  "windows-sys",
                      2351: ]
                      2352: 
                      2353: [[package]]
                      2354: name = "scopeguard"
                      2355: version = "1.1.0"
                      2356: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2357: checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
                      2358: 
                      2359: [[package]]
                      2360: name = "sct"
                      2361: version = "0.7.0"
                      2362: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2363: checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
                      2364: dependencies = [
                      2365:  "ring",
                      2366:  "untrusted",
                      2367: ]
                      2368: 
                      2369: [[package]]
                      2370: name = "security-framework"
6fdbbcc8f8 2022-08-14 2371: version = "2.6.1"
                      2372: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 2373: checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
                      2374: dependencies = [
                      2375:  "bitflags",
                      2376:  "core-foundation",
                      2377:  "core-foundation-sys",
                      2378:  "libc",
                      2379:  "security-framework-sys",
                      2380: ]
                      2381: 
                      2382: [[package]]
                      2383: name = "security-framework-sys"
                      2384: version = "2.6.1"
                      2385: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2386: checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
                      2387: dependencies = [
                      2388:  "core-foundation-sys",
                      2389:  "libc",
                      2390: ]
                      2391: 
                      2392: [[package]]
                      2393: name = "sedregex"
                      2394: version = "0.2.5"
                      2395: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2396: checksum = "19411e23596093f03bbd11dc45603b6329bb4bfec77b9fd13e2b9fc9b02efe3e"
                      2397: dependencies = [
                      2398:  "regex",
                      2399: ]
                      2400: 
                      2401: [[package]]
                      2402: name = "semver"
                      2403: version = "0.9.0"
                      2404: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2405: checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
                      2406: dependencies = [
                      2407:  "semver-parser",
                      2408: ]
                      2409: 
                      2410: [[package]]
                      2411: name = "semver-parser"
                      2412: version = "0.7.0"
                      2413: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2414: checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
                      2415: 
                      2416: [[package]]
                      2417: name = "serde"
6fdbbcc8f8 2022-08-14 2418: version = "1.0.143"
                      2419: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 2420: checksum = "53e8e5d5b70924f74ff5c6d64d9a5acd91422117c60f48c4e07855238a254553"
                      2421: dependencies = [
                      2422:  "serde_derive",
                      2423: ]
                      2424: 
                      2425: [[package]]
                      2426: name = "serde-value"
                      2427: version = "0.7.0"
                      2428: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2429: checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
                      2430: dependencies = [
                      2431:  "ordered-float",
                      2432:  "serde",
                      2433: ]
                      2434: 
                      2435: [[package]]
                      2436: name = "serde_derive"
6fdbbcc8f8 2022-08-14 2437: version = "1.0.143"
                      2438: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 2439: checksum = "d3d8e8de557aee63c26b85b947f5e59b690d0454c753f3adeb5cd7835ab88391"
                      2440: dependencies = [
                      2441:  "proc-macro2",
                      2442:  "quote",
                      2443:  "syn",
                      2444: ]
                      2445: 
                      2446: [[package]]
                      2447: name = "serde_json"
6fdbbcc8f8 2022-08-14 2448: version = "1.0.83"
                      2449: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 2450: checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
                      2451: dependencies = [
                      2452:  "itoa 1.0.3",
                      2453:  "ryu",
                      2454:  "serde",
                      2455: ]
                      2456: 
                      2457: [[package]]
                      2458: name = "serde_urlencoded"
                      2459: version = "0.5.5"
                      2460: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2461: checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
                      2462: dependencies = [
                      2463:  "dtoa",
                      2464:  "itoa 0.4.8",
                      2465:  "serde",
                      2466:  "url 1.7.2",
                      2467: ]
                      2468: 
                      2469: [[package]]
                      2470: name = "serde_urlencoded"
                      2471: version = "0.7.1"
                      2472: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2473: checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
                      2474: dependencies = [
                      2475:  "form_urlencoded",
                      2476:  "itoa 1.0.3",
                      2477:  "ryu",
                      2478:  "serde",
                      2479: ]
                      2480: 
                      2481: [[package]]
                      2482: name = "sha-1"
                      2483: version = "0.10.0"
                      2484: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2485: checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
                      2486: dependencies = [
                      2487:  "cfg-if 1.0.0",
                      2488:  "cpufeatures",
                      2489:  "digest",
                      2490: ]
                      2491: 
                      2492: [[package]]
                      2493: name = "sha2"
                      2494: version = "0.10.2"
                      2495: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2496: checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
                      2497: dependencies = [
                      2498:  "cfg-if 1.0.0",
                      2499:  "cpufeatures",
                      2500:  "digest",
                      2501: ]
                      2502: 
                      2503: [[package]]
                      2504: name = "signal-hook"
                      2505: version = "0.3.14"
                      2506: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2507: checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
                      2508: dependencies = [
                      2509:  "libc",
                      2510:  "signal-hook-registry",
                      2511: ]
                      2512: 
                      2513: [[package]]
                      2514: name = "signal-hook-registry"
                      2515: version = "1.4.0"
                      2516: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2517: checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
                      2518: dependencies = [
                      2519:  "libc",
                      2520: ]
                      2521: 
                      2522: [[package]]
                      2523: name = "slab"
                      2524: version = "0.4.7"
                      2525: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2526: checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
                      2527: dependencies = [
                      2528:  "autocfg 1.1.0",
                      2529: ]
                      2530: 
                      2531: [[package]]
                      2532: name = "smallvec"
                      2533: version = "0.6.14"
                      2534: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2535: checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
                      2536: dependencies = [
                      2537:  "maybe-uninit",
                      2538: ]
                      2539: 
                      2540: [[package]]
                      2541: name = "smallvec"
                      2542: version = "1.9.0"
                      2543: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2544: checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
                      2545: 
                      2546: [[package]]
                      2547: name = "socket2"
6fdbbcc8f8 2022-08-14 2548: version = "0.4.4"
                      2549: source = "registry+https://github.com/rust-lang/crates.io-index"
6fdbbcc8f8 2022-08-14 2550: checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
                      2551: dependencies = [
                      2552:  "libc",
                      2553:  "winapi 0.3.9",
                      2554: ]
                      2555: 
                      2556: [[package]]
                      2557: name = "spin"
                      2558: version = "0.5.2"
                      2559: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2560: checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
                      2561: 
                      2562: [[package]]
                      2563: name = "sqlformat"
                      2564: version = "0.1.8"
                      2565: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2566: checksum = "b4b7922be017ee70900be125523f38bdd644f4f06a1b16e8fa5a8ee8c34bffd4"
                      2567: dependencies = [
                      2568:  "itertools",
                      2569:  "nom",
                      2570:  "unicode_categories",
                      2571: ]
                      2572: 
                      2573: [[package]]
                      2574: name = "sqlx"
                      2575: version = "0.6.1"
                      2576: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2577: checksum = "788841def501aabde58d3666fcea11351ec3962e6ea75dbcd05c84a71d68bcd1"
                      2578: dependencies = [
                      2579:  "sqlx-core",
                      2580:  "sqlx-macros",
                      2581: ]
                      2582: 
                      2583: [[package]]
                      2584: name = "sqlx-core"
                      2585: version = "0.6.1"
                      2586: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2587: checksum = "8c21d3b5e7cadfe9ba7cdc1295f72cc556c750b4419c27c219c0693198901f8e"
                      2588: dependencies = [
                      2589:  "ahash",
                      2590:  "atoi",
                      2591:  "base64 0.13.0",
                      2592:  "bitflags",
                      2593:  "byteorder",
                      2594:  "bytes 1.2.1",
                      2595:  "chrono",
                      2596:  "crc",
                      2597:  "crossbeam-queue 0.3.6",
                      2598:  "dirs",
                      2599:  "dotenvy",
                      2600:  "either",
                      2601:  "event-listener",
                      2602:  "futures-channel",
                      2603:  "futures-core",
                      2604:  "futures-intrusive",
                      2605:  "futures-util",
                      2606:  "hashlink",
                      2607:  "hex",
                      2608:  "hkdf",
                      2609:  "hmac",
                      2610:  "indexmap",
                      2611:  "itoa 1.0.3",
                      2612:  "libc",
                      2613:  "log",
                      2614:  "md-5",
                      2615:  "memchr",
                      2616:  "once_cell",
                      2617:  "paste",
                      2618:  "percent-encoding 2.1.0",
                      2619:  "rand 0.8.5",
                      2620:  "rustls",
                      2621:  "rustls-pemfile",
                      2622:  "serde",
                      2623:  "serde_json",
                      2624:  "sha-1",
                      2625:  "sha2",
                      2626:  "smallvec 1.9.0",
                      2627:  "sqlformat",
                      2628:  "sqlx-rt",
                      2629:  "stringprep",
                      2630:  "thiserror",
                      2631:  "url 2.2.2",
                      2632:  "webpki-roots",
                      2633:  "whoami",
                      2634: ]
                      2635: 
                      2636: [[package]]
                      2637: name = "sqlx-macros"
                      2638: version = "0.6.1"
                      2639: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2640: checksum = "4adfd2df3557bddd3b91377fc7893e8fa899e9b4061737cbade4e1bb85f1b45c"
                      2641: dependencies = [
                      2642:  "dotenvy",
                      2643:  "either",
                      2644:  "heck",
                      2645:  "once_cell",
                      2646:  "proc-macro2",
                      2647:  "quote",
                      2648:  "sha2",
                      2649:  "sqlx-core",
                      2650:  "sqlx-rt",
                      2651:  "syn",
                      2652:  "url 2.2.2",
                      2653: ]
                      2654: 
                      2655: [[package]]
                      2656: name = "sqlx-rt"
                      2657: version = "0.6.1"
                      2658: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2659: checksum = "7be52fc7c96c136cedea840ed54f7d446ff31ad670c9dea95ebcb998530971a3"
                      2660: dependencies = [
                      2661:  "async-std",
                      2662:  "futures-rustls",
                      2663: ]
                      2664: 
                      2665: [[package]]
                      2666: name = "string"
                      2667: version = "0.2.1"
                      2668: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2669: checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
                      2670: dependencies = [
                      2671:  "bytes 0.4.12",
                      2672: ]
                      2673: 
                      2674: [[package]]
                      2675: name = "stringprep"
                      2676: version = "0.1.2"
                      2677: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2678: checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
                      2679: dependencies = [
                      2680:  "unicode-bidi",
                      2681:  "unicode-normalization",
                      2682: ]
                      2683: 
                      2684: [[package]]
                      2685: name = "strsim"
                      2686: version = "0.9.3"
                      2687: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2688: checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
                      2689: 
                      2690: [[package]]
                      2691: name = "strsim"
                      2692: version = "0.10.0"
                      2693: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2694: checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
                      2695: 
                      2696: [[package]]
                      2697: name = "subtle"
                      2698: version = "2.4.1"
                      2699: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2700: checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
                      2701: 
                      2702: [[package]]
                      2703: name = "syn"
                      2704: version = "1.0.99"
                      2705: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2706: checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
                      2707: dependencies = [
                      2708:  "proc-macro2",
                      2709:  "quote",
                      2710:  "unicode-ident",
                      2711: ]
                      2712: 
                      2713: [[package]]
                      2714: name = "synstructure"
                      2715: version = "0.12.6"
                      2716: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2717: checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
                      2718: dependencies = [
                      2719:  "proc-macro2",
                      2720:  "quote",
                      2721:  "syn",
                      2722:  "unicode-xid",
                      2723: ]
                      2724: 
                      2725: [[package]]
                      2726: name = "telegram-bot"
                      2727: version = "0.9.0"
                      2728: source = "git+https://github.com/telegram-rs/telegram-bot#65ad5cfd578e9a1260ce6daac714eb2153c0bec7"
                      2729: dependencies = [
                      2730:  "bytes 1.2.1",
                      2731:  "futures 0.3.23",
                      2732:  "hyper 0.14.20",
                      2733:  "hyper-tls 0.5.0",
                      2734:  "multipart",
                      2735:  "telegram-bot-raw",
                      2736:  "tokio 1.20.1",
                      2737:  "tracing",
                      2738:  "tracing-futures",
                      2739: ]
                      2740: 
                      2741: [[package]]
                      2742: name = "telegram-bot-raw"
                      2743: version = "0.9.0"
                      2744: source = "git+https://github.com/telegram-rs/telegram-bot#65ad5cfd578e9a1260ce6daac714eb2153c0bec7"
                      2745: dependencies = [
                      2746:  "bytes 1.2.1",
                      2747:  "serde",
                      2748:  "serde-value",
                      2749:  "serde_derive",
                      2750:  "serde_json",
                      2751: ]
                      2752: 
                      2753: [[package]]
                      2754: name = "tempfile"
                      2755: version = "3.3.0"
                      2756: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2757: checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
                      2758: dependencies = [
                      2759:  "cfg-if 1.0.0",
                      2760:  "fastrand",
                      2761:  "libc",
                      2762:  "redox_syscall 0.2.16",
                      2763:  "remove_dir_all",
                      2764:  "winapi 0.3.9",
                      2765: ]
                      2766: 
                      2767: [[package]]
                      2768: name = "thiserror"
                      2769: version = "1.0.32"
                      2770: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2771: checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
                      2772: dependencies = [
                      2773:  "thiserror-impl",
                      2774: ]
                      2775: 
                      2776: [[package]]
                      2777: name = "thiserror-impl"
                      2778: version = "1.0.32"
                      2779: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2780: checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
                      2781: dependencies = [
                      2782:  "proc-macro2",
                      2783:  "quote",
                      2784:  "syn",
                      2785: ]
                      2786: 
                      2787: [[package]]
                      2788: name = "time"
                      2789: version = "0.1.44"
                      2790: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2791: checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
                      2792: dependencies = [
                      2793:  "libc",
                      2794:  "wasi 0.10.0+wasi-snapshot-preview1",
                      2795:  "winapi 0.3.9",
                      2796: ]
                      2797: 
                      2798: [[package]]
                      2799: name = "tinyvec"
                      2800: version = "1.6.0"
                      2801: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2802: checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
                      2803: dependencies = [
                      2804:  "tinyvec_macros",
                      2805: ]
                      2806: 
                      2807: [[package]]
                      2808: name = "tinyvec_macros"
                      2809: version = "0.1.0"
                      2810: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2811: checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
                      2812: 
                      2813: [[package]]
                      2814: name = "tokio"
                      2815: version = "0.1.22"
                      2816: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2817: checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
                      2818: dependencies = [
                      2819:  "bytes 0.4.12",
                      2820:  "futures 0.1.31",
                      2821:  "mio 0.6.23",
                      2822:  "num_cpus",
                      2823:  "tokio-current-thread",
                      2824:  "tokio-executor",
                      2825:  "tokio-io",
                      2826:  "tokio-reactor",
                      2827:  "tokio-tcp",
                      2828:  "tokio-threadpool",
                      2829:  "tokio-timer",
                      2830: ]
                      2831: 
                      2832: [[package]]
                      2833: name = "tokio"
                      2834: version = "1.20.1"
                      2835: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2836: checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
                      2837: dependencies = [
                      2838:  "autocfg 1.1.0",
                      2839:  "bytes 1.2.1",
                      2840:  "libc",
                      2841:  "memchr",
                      2842:  "mio 0.8.4",
                      2843:  "num_cpus",
                      2844:  "once_cell",
                      2845:  "pin-project-lite",
                      2846:  "socket2",
                      2847:  "winapi 0.3.9",
                      2848: ]
                      2849: 
                      2850: [[package]]
                      2851: name = "tokio-buf"
                      2852: version = "0.1.1"
                      2853: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2854: checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
                      2855: dependencies = [
                      2856:  "bytes 0.4.12",
                      2857:  "either",
                      2858:  "futures 0.1.31",
                      2859: ]
                      2860: 
                      2861: [[package]]
                      2862: name = "tokio-current-thread"
                      2863: version = "0.1.7"
                      2864: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2865: checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
                      2866: dependencies = [
                      2867:  "futures 0.1.31",
                      2868:  "tokio-executor",
                      2869: ]
                      2870: 
                      2871: [[package]]
                      2872: name = "tokio-executor"
                      2873: version = "0.1.10"
                      2874: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2875: checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
                      2876: dependencies = [
                      2877:  "crossbeam-utils 0.7.2",
                      2878:  "futures 0.1.31",
                      2879: ]
                      2880: 
                      2881: [[package]]
                      2882: name = "tokio-io"
                      2883: version = "0.1.13"
                      2884: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2885: checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
                      2886: dependencies = [
                      2887:  "bytes 0.4.12",
                      2888:  "futures 0.1.31",
                      2889:  "log",
                      2890: ]
                      2891: 
                      2892: [[package]]
                      2893: name = "tokio-native-tls"
                      2894: version = "0.3.0"
                      2895: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2896: checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
                      2897: dependencies = [
                      2898:  "native-tls",
                      2899:  "tokio 1.20.1",
                      2900: ]
                      2901: 
                      2902: [[package]]
                      2903: name = "tokio-reactor"
                      2904: version = "0.1.12"
                      2905: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2906: checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
                      2907: dependencies = [
                      2908:  "crossbeam-utils 0.7.2",
                      2909:  "futures 0.1.31",
                      2910:  "lazy_static",
                      2911:  "log",
                      2912:  "mio 0.6.23",
                      2913:  "num_cpus",
                      2914:  "parking_lot 0.9.0",
                      2915:  "slab",
                      2916:  "tokio-executor",
                      2917:  "tokio-io",
                      2918:  "tokio-sync",
                      2919: ]
                      2920: 
                      2921: [[package]]
                      2922: name = "tokio-sync"
                      2923: version = "0.1.8"
                      2924: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2925: checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
                      2926: dependencies = [
                      2927:  "fnv",
                      2928:  "futures 0.1.31",
                      2929: ]
                      2930: 
                      2931: [[package]]
                      2932: name = "tokio-tcp"
                      2933: version = "0.1.4"
                      2934: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2935: checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
                      2936: dependencies = [
                      2937:  "bytes 0.4.12",
                      2938:  "futures 0.1.31",
                      2939:  "iovec",
                      2940:  "mio 0.6.23",
                      2941:  "tokio-io",
                      2942:  "tokio-reactor",
                      2943: ]
                      2944: 
                      2945: [[package]]
                      2946: name = "tokio-threadpool"
                      2947: version = "0.1.18"
                      2948: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2949: checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
                      2950: dependencies = [
                      2951:  "crossbeam-deque",
                      2952:  "crossbeam-queue 0.2.3",
                      2953:  "crossbeam-utils 0.7.2",
                      2954:  "futures 0.1.31",
                      2955:  "lazy_static",
                      2956:  "log",
                      2957:  "num_cpus",
                      2958:  "slab",
                      2959:  "tokio-executor",
                      2960: ]
                      2961: 
                      2962: [[package]]
                      2963: name = "tokio-timer"
                      2964: version = "0.2.13"
                      2965: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2966: checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
                      2967: dependencies = [
                      2968:  "crossbeam-utils 0.7.2",
                      2969:  "futures 0.1.31",
                      2970:  "slab",
                      2971:  "tokio-executor",
                      2972: ]
                      2973: 
                      2974: [[package]]
                      2975: name = "tokio-util"
                      2976: version = "0.7.3"
                      2977: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2978: checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
                      2979: dependencies = [
                      2980:  "bytes 1.2.1",
                      2981:  "futures-core",
                      2982:  "futures-sink",
                      2983:  "pin-project-lite",
                      2984:  "tokio 1.20.1",
                      2985:  "tracing",
                      2986: ]
                      2987: 
                      2988: [[package]]
                      2989: name = "toml"
                      2990: version = "0.5.9"
                      2991: source = "registry+https://github.com/rust-lang/crates.io-index"
                      2992: checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
                      2993: dependencies = [
                      2994:  "serde",
                      2995: ]
                      2996: 
                      2997: [[package]]
                      2998: name = "tower-service"
                      2999: version = "0.3.2"
                      3000: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3001: checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
                      3002: 
                      3003: [[package]]
                      3004: name = "tracing"
                      3005: version = "0.1.36"
                      3006: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3007: checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
                      3008: dependencies = [
                      3009:  "cfg-if 1.0.0",
                      3010:  "pin-project-lite",
                      3011:  "tracing-attributes",
                      3012:  "tracing-core",
                      3013: ]
                      3014: 
                      3015: [[package]]
                      3016: name = "tracing-attributes"
                      3017: version = "0.1.22"
                      3018: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3019: checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
                      3020: dependencies = [
                      3021:  "proc-macro2",
                      3022:  "quote",
                      3023:  "syn",
                      3024: ]
                      3025: 
                      3026: [[package]]
                      3027: name = "tracing-core"
                      3028: version = "0.1.29"
                      3029: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3030: checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
                      3031: dependencies = [
                      3032:  "once_cell",
                      3033: ]
                      3034: 
                      3035: [[package]]
                      3036: name = "tracing-futures"
                      3037: version = "0.2.5"
                      3038: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3039: checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
                      3040: dependencies = [
                      3041:  "pin-project",
                      3042:  "tracing",
                      3043: ]
                      3044: 
                      3045: [[package]]
                      3046: name = "try-lock"
                      3047: version = "0.2.3"
                      3048: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3049: checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
                      3050: 
                      3051: [[package]]
                      3052: name = "try_from"
                      3053: version = "0.3.2"
                      3054: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3055: checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
                      3056: dependencies = [
                      3057:  "cfg-if 0.1.10",
                      3058: ]
                      3059: 
                      3060: [[package]]
                      3061: name = "typenum"
                      3062: version = "1.15.0"
                      3063: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3064: checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
                      3065: 
                      3066: [[package]]
                      3067: name = "unicase"
                      3068: version = "2.6.0"
                      3069: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3070: checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
                      3071: dependencies = [
                      3072:  "version_check",
                      3073: ]
                      3074: 
                      3075: [[package]]
                      3076: name = "unicode-bidi"
                      3077: version = "0.3.8"
                      3078: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3079: checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
                      3080: 
                      3081: [[package]]
                      3082: name = "unicode-ident"
                      3083: version = "1.0.3"
                      3084: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3085: checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
                      3086: 
                      3087: [[package]]
                      3088: name = "unicode-normalization"
                      3089: version = "0.1.21"
                      3090: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3091: checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
                      3092: dependencies = [
                      3093:  "tinyvec",
                      3094: ]
                      3095: 
                      3096: [[package]]
                      3097: name = "unicode-segmentation"
                      3098: version = "1.9.0"
                      3099: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3100: checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
                      3101: 
                      3102: [[package]]
                      3103: name = "unicode-xid"
                      3104: version = "0.2.3"
                      3105: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3106: checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
                      3107: 
                      3108: [[package]]
                      3109: name = "unicode_categories"
                      3110: version = "0.1.1"
                      3111: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3112: checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
                      3113: 
                      3114: [[package]]
                      3115: name = "untrusted"
                      3116: version = "0.7.1"
                      3117: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3118: checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
                      3119: 
                      3120: [[package]]
                      3121: name = "url"
                      3122: version = "1.7.2"
                      3123: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3124: checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
                      3125: dependencies = [
                      3126:  "idna 0.1.5",
                      3127:  "matches",
                      3128:  "percent-encoding 1.0.1",
                      3129: ]
                      3130: 
                      3131: [[package]]
                      3132: name = "url"
                      3133: version = "2.2.2"
                      3134: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3135: checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
                      3136: dependencies = [
                      3137:  "form_urlencoded",
                      3138:  "idna 0.2.3",
                      3139:  "matches",
                      3140:  "percent-encoding 2.1.0",
                      3141: ]
                      3142: 
                      3143: [[package]]
                      3144: name = "uuid"
                      3145: version = "0.7.4"
                      3146: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3147: checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
                      3148: dependencies = [
                      3149:  "rand 0.6.5",
                      3150: ]
                      3151: 
                      3152: [[package]]
                      3153: name = "value-bag"
                      3154: version = "1.0.0-alpha.9"
                      3155: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3156: checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
                      3157: dependencies = [
                      3158:  "ctor",
                      3159:  "version_check",
                      3160: ]
                      3161: 
                      3162: [[package]]
                      3163: name = "vcpkg"
                      3164: version = "0.2.15"
                      3165: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3166: checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
                      3167: 
                      3168: [[package]]
                      3169: name = "version_check"
                      3170: version = "0.9.4"
                      3171: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3172: checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
                      3173: 
                      3174: [[package]]
                      3175: name = "waker-fn"
                      3176: version = "1.1.0"
                      3177: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3178: checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
                      3179: 
                      3180: [[package]]
                      3181: name = "want"
                      3182: version = "0.2.0"
                      3183: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3184: checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
                      3185: dependencies = [
                      3186:  "futures 0.1.31",
                      3187:  "log",
                      3188:  "try-lock",
                      3189: ]
                      3190: 
                      3191: [[package]]
                      3192: name = "want"
                      3193: version = "0.3.0"
                      3194: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3195: checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
                      3196: dependencies = [
                      3197:  "log",
                      3198:  "try-lock",
                      3199: ]
                      3200: 
                      3201: [[package]]
                      3202: name = "wasi"
                      3203: version = "0.9.0+wasi-snapshot-preview1"
                      3204: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3205: checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
                      3206: 
                      3207: [[package]]
                      3208: name = "wasi"
                      3209: version = "0.10.0+wasi-snapshot-preview1"
                      3210: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3211: checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
                      3212: 
                      3213: [[package]]
                      3214: name = "wasi"
                      3215: version = "0.11.0+wasi-snapshot-preview1"
                      3216: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3217: checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
                      3218: 
                      3219: [[package]]
                      3220: name = "wasm-bindgen"
                      3221: version = "0.2.82"
                      3222: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3223: checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
                      3224: dependencies = [
                      3225:  "cfg-if 1.0.0",
                      3226:  "wasm-bindgen-macro",
                      3227: ]
                      3228: 
                      3229: [[package]]
                      3230: name = "wasm-bindgen-backend"
                      3231: version = "0.2.82"
                      3232: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3233: checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
                      3234: dependencies = [
                      3235:  "bumpalo",
                      3236:  "log",
                      3237:  "once_cell",
                      3238:  "proc-macro2",
                      3239:  "quote",
                      3240:  "syn",
                      3241:  "wasm-bindgen-shared",
                      3242: ]
                      3243: 
                      3244: [[package]]
                      3245: name = "wasm-bindgen-futures"
                      3246: version = "0.4.32"
                      3247: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3248: checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad"
                      3249: dependencies = [
                      3250:  "cfg-if 1.0.0",
                      3251:  "js-sys",
                      3252:  "wasm-bindgen",
                      3253:  "web-sys",
                      3254: ]
                      3255: 
                      3256: [[package]]
                      3257: name = "wasm-bindgen-macro"
                      3258: version = "0.2.82"
                      3259: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3260: checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
                      3261: dependencies = [
                      3262:  "quote",
                      3263:  "wasm-bindgen-macro-support",
                      3264: ]
                      3265: 
                      3266: [[package]]
                      3267: name = "wasm-bindgen-macro-support"
                      3268: version = "0.2.82"
                      3269: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3270: checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
                      3271: dependencies = [
                      3272:  "proc-macro2",
                      3273:  "quote",
                      3274:  "syn",
                      3275:  "wasm-bindgen-backend",
                      3276:  "wasm-bindgen-shared",
                      3277: ]
                      3278: 
                      3279: [[package]]
                      3280: name = "wasm-bindgen-shared"
                      3281: version = "0.2.82"
                      3282: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3283: checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
                      3284: 
                      3285: [[package]]
                      3286: name = "web-sys"
                      3287: version = "0.3.59"
                      3288: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3289: checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
                      3290: dependencies = [
                      3291:  "js-sys",
                      3292:  "wasm-bindgen",
                      3293: ]
                      3294: 
                      3295: [[package]]
                      3296: name = "webpki"
                      3297: version = "0.22.0"
                      3298: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3299: checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
                      3300: dependencies = [
                      3301:  "ring",
                      3302:  "untrusted",
                      3303: ]
                      3304: 
                      3305: [[package]]
                      3306: name = "webpki-roots"
                      3307: version = "0.22.4"
                      3308: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3309: checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf"
                      3310: dependencies = [
                      3311:  "webpki",
                      3312: ]
                      3313: 
                      3314: [[package]]
                      3315: name = "wepoll-ffi"
                      3316: version = "0.1.2"
                      3317: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3318: checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
                      3319: dependencies = [
                      3320:  "cc",
                      3321: ]
                      3322: 
                      3323: [[package]]
                      3324: name = "whoami"
                      3325: version = "1.2.1"
                      3326: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3327: checksum = "524b58fa5a20a2fb3014dd6358b70e6579692a56ef6fce928834e488f42f65e8"
                      3328: dependencies = [
                      3329:  "wasm-bindgen",
                      3330:  "web-sys",
                      3331: ]
                      3332: 
                      3333: [[package]]
                      3334: name = "winapi"
                      3335: version = "0.2.8"
                      3336: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3337: checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
                      3338: 
                      3339: [[package]]
                      3340: name = "winapi"
                      3341: version = "0.3.9"
                      3342: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3343: checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
                      3344: dependencies = [
                      3345:  "winapi-i686-pc-windows-gnu",
                      3346:  "winapi-x86_64-pc-windows-gnu",
                      3347: ]
                      3348: 
                      3349: [[package]]
                      3350: name = "winapi-build"
                      3351: version = "0.1.1"
                      3352: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3353: checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
                      3354: 
                      3355: [[package]]
                      3356: name = "winapi-i686-pc-windows-gnu"
                      3357: version = "0.4.0"
                      3358: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3359: checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
                      3360: 
                      3361: [[package]]
                      3362: name = "winapi-x86_64-pc-windows-gnu"
                      3363: version = "0.4.0"
                      3364: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3365: checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
                      3366: 
                      3367: [[package]]
                      3368: name = "windows-sys"
                      3369: version = "0.36.1"
                      3370: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3371: checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
                      3372: dependencies = [
                      3373:  "windows_aarch64_msvc",
                      3374:  "windows_i686_gnu",
                      3375:  "windows_i686_msvc",
                      3376:  "windows_x86_64_gnu",
                      3377:  "windows_x86_64_msvc",
                      3378: ]
                      3379: 
                      3380: [[package]]
                      3381: name = "windows_aarch64_msvc"
                      3382: version = "0.36.1"
                      3383: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3384: checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
                      3385: 
                      3386: [[package]]
                      3387: name = "windows_i686_gnu"
                      3388: version = "0.36.1"
                      3389: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3390: checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
                      3391: 
                      3392: [[package]]
                      3393: name = "windows_i686_msvc"
                      3394: version = "0.36.1"
                      3395: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3396: checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
                      3397: 
                      3398: [[package]]
                      3399: name = "windows_x86_64_gnu"
                      3400: version = "0.36.1"
                      3401: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3402: checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
                      3403: 
                      3404: [[package]]
                      3405: name = "windows_x86_64_msvc"
                      3406: version = "0.36.1"
                      3407: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3408: checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
                      3409: 
                      3410: [[package]]
                      3411: name = "winreg"
                      3412: version = "0.6.2"
                      3413: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3414: checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
                      3415: dependencies = [
                      3416:  "winapi 0.3.9",
                      3417: ]
                      3418: 
                      3419: [[package]]
                      3420: name = "winreg"
                      3421: version = "0.10.1"
                      3422: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3423: checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
                      3424: dependencies = [
                      3425:  "winapi 0.3.9",
                      3426: ]
                      3427: 
                      3428: [[package]]
                      3429: name = "ws2_32-sys"
                      3430: version = "0.2.1"
                      3431: source = "registry+https://github.com/rust-lang/crates.io-index"
                      3432: checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
                      3433: dependencies = [
                      3434:  "winapi 0.2.8",
                      3435:  "winapi-build",
                      3436: ]