1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aho-corasick" 7version = "0.7.15" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "byteorder" 16version = "1.4.3" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 19 20[[package]] 21name = "cfg-if" 22version = "0.1.10" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 25 26[[package]] 27name = "cfg-if" 28version = "1.0.0" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 31 32[[package]] 33name = "env_logger" 34version = "0.7.1" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" 37dependencies = [ 38 "log", 39 "regex", 40] 41 42[[package]] 43name = "fxhash" 44version = "0.2.1" 45source = "registry+https://github.com/rust-lang/crates.io-index" 46checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 47dependencies = [ 48 "byteorder", 49] 50 51[[package]] 52name = "getrandom" 53version = "0.1.16" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 56dependencies = [ 57 "cfg-if 1.0.0", 58 "libc", 59 "wasi", 60] 61 62[[package]] 63name = "itoa" 64version = "0.4.7" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" 67 68[[package]] 69name = "lazy_static" 70version = "1.4.0" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 73 74[[package]] 75name = "libc" 76version = "0.2.82" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929" 79 80[[package]] 81name = "log" 82version = "0.4.11" 83source = "registry+https://github.com/rust-lang/crates.io-index" 84checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" 85dependencies = [ 86 "cfg-if 0.1.10", 87] 88 89[[package]] 90name = "memchr" 91version = "2.3.4" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 94 95[[package]] 96name = "ppv-lite86" 97version = "0.2.10" 98source = "registry+https://github.com/rust-lang/crates.io-index" 99checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 100 101[[package]] 102name = "proc-macro2" 103version = "1.0.24" 104source = "registry+https://github.com/rust-lang/crates.io-index" 105checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" 106dependencies = [ 107 "unicode-xid", 108] 109 110[[package]] 111name = "quickcheck" 112version = "0.9.2" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "a44883e74aa97ad63db83c4bf8ca490f02b2fc02f92575e720c8551e843c945f" 115dependencies = [ 116 "env_logger", 117 "log", 118 "rand", 119 "rand_core", 120] 121 122[[package]] 123name = "quote" 124version = "1.0.8" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df" 127dependencies = [ 128 "proc-macro2", 129] 130 131[[package]] 132name = "rand" 133version = "0.7.3" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 136dependencies = [ 137 "getrandom", 138 "libc", 139 "rand_chacha", 140 "rand_core", 141 "rand_hc", 142] 143 144[[package]] 145name = "rand_chacha" 146version = "0.2.2" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 149dependencies = [ 150 "ppv-lite86", 151 "rand_core", 152] 153 154[[package]] 155name = "rand_core" 156version = "0.5.1" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 159dependencies = [ 160 "getrandom", 161] 162 163[[package]] 164name = "rand_hc" 165version = "0.2.0" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 168dependencies = [ 169 "rand_core", 170] 171 172[[package]] 173name = "regex" 174version = "1.4.3" 175source = "registry+https://github.com/rust-lang/crates.io-index" 176checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a" 177dependencies = [ 178 "aho-corasick", 179 "memchr", 180 "regex-syntax", 181 "thread_local", 182] 183 184[[package]] 185name = "regex-syntax" 186version = "0.6.22" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581" 189 190[[package]] 191name = "ryu" 192version = "1.0.5" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 195 196[[package]] 197name = "serde" 198version = "1.0.118" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800" 201dependencies = [ 202 "serde_derive", 203] 204 205[[package]] 206name = "serde_derive" 207version = "1.0.118" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "c84d3526699cd55261af4b941e4e725444df67aa4f9e6a3564f18030d12672df" 210dependencies = [ 211 "proc-macro2", 212 "quote", 213 "syn", 214] 215 216[[package]] 217name = "serde_json" 218version = "1.0.61" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a" 221dependencies = [ 222 "itoa", 223 "ryu", 224 "serde", 225] 226 227[[package]] 228name = "slotmap" 229version = "1.0.7" 230dependencies = [ 231 "fxhash", 232 "quickcheck", 233 "serde", 234 "serde_derive", 235 "serde_json", 236 "version_check", 237] 238 239[[package]] 240name = "syn" 241version = "1.0.58" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "cc60a3d73ea6594cd712d830cc1f0390fd71542d8c8cd24e70cc54cdfd5e05d5" 244dependencies = [ 245 "proc-macro2", 246 "quote", 247 "unicode-xid", 248] 249 250[[package]] 251name = "thread_local" 252version = "1.1.0" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "bb9bc092d0d51e76b2b19d9d85534ffc9ec2db959a2523cdae0697e2972cd447" 255dependencies = [ 256 "lazy_static", 257] 258 259[[package]] 260name = "unicode-xid" 261version = "0.2.1" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" 264 265[[package]] 266name = "version_check" 267version = "0.9.3" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 270 271[[package]] 272name = "wasi" 273version = "0.9.0+wasi-snapshot-preview1" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 276