1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "cfg-if" 7version = "1.0.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 10 11[[package]] 12name = "env_logger" 13version = "0.8.4" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 16dependencies = [ 17 "log", 18] 19 20[[package]] 21name = "getrandom" 22version = "0.2.8" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 25dependencies = [ 26 "cfg-if", 27 "libc", 28 "wasi", 29] 30 31[[package]] 32name = "libc" 33version = "0.2.139" 34source = "registry+https://github.com/rust-lang/crates.io-index" 35checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 36 37[[package]] 38name = "log" 39version = "0.4.17" 40source = "registry+https://github.com/rust-lang/crates.io-index" 41checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 42dependencies = [ 43 "cfg-if", 44] 45 46[[package]] 47name = "mio" 48version = "0.8.6" 49dependencies = [ 50 "env_logger", 51 "libc", 52 "log", 53 "rand", 54 "wasi", 55 "windows-sys", 56] 57 58[[package]] 59name = "ppv-lite86" 60version = "0.2.17" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 63 64[[package]] 65name = "rand" 66version = "0.8.5" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 69dependencies = [ 70 "libc", 71 "rand_chacha", 72 "rand_core", 73] 74 75[[package]] 76name = "rand_chacha" 77version = "0.3.1" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 80dependencies = [ 81 "ppv-lite86", 82 "rand_core", 83] 84 85[[package]] 86name = "rand_core" 87version = "0.6.4" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 90dependencies = [ 91 "getrandom", 92] 93 94[[package]] 95name = "wasi" 96version = "0.11.0+wasi-snapshot-preview1" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 99 100[[package]] 101name = "windows-sys" 102version = "0.45.0" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 105dependencies = [ 106 "windows-targets", 107] 108 109[[package]] 110name = "windows-targets" 111version = "0.42.1" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 114dependencies = [ 115 "windows_aarch64_gnullvm", 116 "windows_aarch64_msvc", 117 "windows_i686_gnu", 118 "windows_i686_msvc", 119 "windows_x86_64_gnu", 120 "windows_x86_64_gnullvm", 121 "windows_x86_64_msvc", 122] 123 124[[package]] 125name = "windows_aarch64_gnullvm" 126version = "0.42.1" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 129 130[[package]] 131name = "windows_aarch64_msvc" 132version = "0.42.1" 133source = "registry+https://github.com/rust-lang/crates.io-index" 134checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 135 136[[package]] 137name = "windows_i686_gnu" 138version = "0.42.1" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 141 142[[package]] 143name = "windows_i686_msvc" 144version = "0.42.1" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 147 148[[package]] 149name = "windows_x86_64_gnu" 150version = "0.42.1" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 153 154[[package]] 155name = "windows_x86_64_gnullvm" 156version = "0.42.1" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 159 160[[package]] 161name = "windows_x86_64_msvc" 162version = "0.42.1" 163source = "registry+https://github.com/rust-lang/crates.io-index" 164checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 165