1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3[[package]] 4name = "aho-corasick" 5version = "0.7.10" 6source = "registry+https://github.com/rust-lang/crates.io-index" 7checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada" 8dependencies = [ 9 "memchr", 10] 11 12[[package]] 13name = "cfg-if" 14version = "0.1.10" 15source = "registry+https://github.com/rust-lang/crates.io-index" 16checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 17 18[[package]] 19name = "cfg-if" 20version = "1.0.0" 21source = "registry+https://github.com/rust-lang/crates.io-index" 22checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 23 24[[package]] 25name = "env_logger" 26version = "0.7.1" 27source = "registry+https://github.com/rust-lang/crates.io-index" 28checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" 29dependencies = [ 30 "log", 31 "regex", 32] 33 34[[package]] 35name = "getrandom" 36version = "0.1.16" 37source = "registry+https://github.com/rust-lang/crates.io-index" 38checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 39dependencies = [ 40 "cfg-if 1.0.0", 41 "libc", 42 "wasi", 43] 44 45[[package]] 46name = "lazy_static" 47version = "1.4.0" 48source = "registry+https://github.com/rust-lang/crates.io-index" 49checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 50 51[[package]] 52name = "libc" 53version = "0.2.71" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" 56 57[[package]] 58name = "linked-hash-map" 59version = "0.5.3" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" 62 63[[package]] 64name = "log" 65version = "0.4.8" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" 68dependencies = [ 69 "cfg-if 0.1.10", 70] 71 72[[package]] 73name = "memchr" 74version = "2.3.3" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" 77 78[[package]] 79name = "ppv-lite86" 80version = "0.2.10" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 83 84[[package]] 85name = "quickcheck" 86version = "0.9.2" 87source = "registry+https://github.com/rust-lang/crates.io-index" 88checksum = "a44883e74aa97ad63db83c4bf8ca490f02b2fc02f92575e720c8551e843c945f" 89dependencies = [ 90 "env_logger", 91 "log", 92 "rand", 93 "rand_core", 94] 95 96[[package]] 97name = "rand" 98version = "0.7.3" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 101dependencies = [ 102 "getrandom", 103 "libc", 104 "rand_chacha", 105 "rand_core", 106 "rand_hc", 107] 108 109[[package]] 110name = "rand_chacha" 111version = "0.2.2" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 114dependencies = [ 115 "ppv-lite86", 116 "rand_core", 117] 118 119[[package]] 120name = "rand_core" 121version = "0.5.1" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 124dependencies = [ 125 "getrandom", 126] 127 128[[package]] 129name = "rand_hc" 130version = "0.2.0" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 133dependencies = [ 134 "rand_core", 135] 136 137[[package]] 138name = "regex" 139version = "1.3.9" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6" 142dependencies = [ 143 "aho-corasick", 144 "memchr", 145 "regex-syntax", 146 "thread_local", 147] 148 149[[package]] 150name = "regex-syntax" 151version = "0.6.18" 152source = "registry+https://github.com/rust-lang/crates.io-index" 153checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" 154 155[[package]] 156name = "thread_local" 157version = "1.0.1" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" 160dependencies = [ 161 "lazy_static", 162] 163 164[[package]] 165name = "wasi" 166version = "0.9.0+wasi-snapshot-preview1" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 169 170[[package]] 171name = "yaml-rust" 172version = "0.4.5" 173dependencies = [ 174 "linked-hash-map", 175 "quickcheck", 176] 177