1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "autocfg" 7version = "1.1.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 10 11[[package]] 12name = "bit-set" 13version = "0.5.3" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 16dependencies = [ 17 "bit-vec", 18] 19 20[[package]] 21name = "bit-vec" 22version = "0.6.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 25 26[[package]] 27name = "bitflags" 28version = "1.3.2" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 31 32[[package]] 33name = "byteorder" 34version = "0.5.3" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" 37 38[[package]] 39name = "byteorder" 40version = "1.4.3" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 43 44[[package]] 45name = "cc" 46version = "1.0.73" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 49dependencies = [ 50 "jobserver", 51] 52 53[[package]] 54name = "cfg-if" 55version = "1.0.0" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 58 59[[package]] 60name = "fastrand" 61version = "1.8.0" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 64dependencies = [ 65 "instant", 66] 67 68[[package]] 69name = "fnv" 70version = "1.0.7" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 73 74[[package]] 75name = "getrandom" 76version = "0.2.8" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 79dependencies = [ 80 "cfg-if", 81 "libc", 82 "wasi", 83] 84 85[[package]] 86name = "instant" 87version = "0.1.12" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 90dependencies = [ 91 "cfg-if", 92] 93 94[[package]] 95name = "itoa" 96version = "1.0.2" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 99 100[[package]] 101name = "jobserver" 102version = "0.1.24" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa" 105dependencies = [ 106 "libc", 107] 108 109[[package]] 110name = "lazy_static" 111version = "1.4.0" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 114 115[[package]] 116name = "libc" 117version = "0.2.125" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b" 120 121[[package]] 122name = "libm" 123version = "0.2.6" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 126 127[[package]] 128name = "lz4-compress" 129version = "0.1.1" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "0f966533a922a9bba9e95e594c1fdb3b9bf5fdcdb11e37e51ad84cd76e468b91" 132dependencies = [ 133 "byteorder 0.5.3", 134 "quick-error 1.2.3", 135] 136 137[[package]] 138name = "lz4_flex" 139version = "0.11.2" 140dependencies = [ 141 "lz4-compress", 142 "lzzzz", 143 "more-asserts", 144 "proptest", 145 "serde_json", 146 "snap", 147 "twox-hash", 148] 149 150[[package]] 151name = "lzzzz" 152version = "1.0.4" 153source = "registry+https://github.com/rust-lang/crates.io-index" 154checksum = "8014d1362004776e6a91e4c15a3aa7830d1b6650a075b51a9969ebb6d6af13bc" 155dependencies = [ 156 "cc", 157] 158 159[[package]] 160name = "more-asserts" 161version = "0.3.1" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" 164 165[[package]] 166name = "num-traits" 167version = "0.2.15" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 170dependencies = [ 171 "autocfg", 172 "libm", 173] 174 175[[package]] 176name = "ppv-lite86" 177version = "0.2.17" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 180 181[[package]] 182name = "proptest" 183version = "1.1.0" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70" 186dependencies = [ 187 "bit-set", 188 "bitflags", 189 "byteorder 1.4.3", 190 "lazy_static", 191 "num-traits", 192 "quick-error 2.0.1", 193 "rand", 194 "rand_chacha", 195 "rand_xorshift", 196 "regex-syntax", 197 "rusty-fork", 198 "tempfile", 199 "unarray", 200] 201 202[[package]] 203name = "quick-error" 204version = "1.2.3" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 207 208[[package]] 209name = "quick-error" 210version = "2.0.1" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 213 214[[package]] 215name = "rand" 216version = "0.8.5" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 219dependencies = [ 220 "libc", 221 "rand_chacha", 222 "rand_core", 223] 224 225[[package]] 226name = "rand_chacha" 227version = "0.3.1" 228source = "registry+https://github.com/rust-lang/crates.io-index" 229checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 230dependencies = [ 231 "ppv-lite86", 232 "rand_core", 233] 234 235[[package]] 236name = "rand_core" 237version = "0.6.4" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 240dependencies = [ 241 "getrandom", 242] 243 244[[package]] 245name = "rand_xorshift" 246version = "0.3.0" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 249dependencies = [ 250 "rand_core", 251] 252 253[[package]] 254name = "redox_syscall" 255version = "0.2.16" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 258dependencies = [ 259 "bitflags", 260] 261 262[[package]] 263name = "regex-syntax" 264version = "0.6.25" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 267 268[[package]] 269name = "remove_dir_all" 270version = "0.5.3" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 273dependencies = [ 274 "winapi", 275] 276 277[[package]] 278name = "rusty-fork" 279version = "0.3.0" 280source = "registry+https://github.com/rust-lang/crates.io-index" 281checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 282dependencies = [ 283 "fnv", 284 "quick-error 1.2.3", 285 "tempfile", 286 "wait-timeout", 287] 288 289[[package]] 290name = "ryu" 291version = "1.0.10" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 294 295[[package]] 296name = "serde" 297version = "1.0.137" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" 300 301[[package]] 302name = "serde_json" 303version = "1.0.91" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" 306dependencies = [ 307 "itoa", 308 "ryu", 309 "serde", 310] 311 312[[package]] 313name = "snap" 314version = "1.1.0" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" 317 318[[package]] 319name = "static_assertions" 320version = "1.1.0" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 323 324[[package]] 325name = "tempfile" 326version = "3.3.0" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 329dependencies = [ 330 "cfg-if", 331 "fastrand", 332 "libc", 333 "redox_syscall", 334 "remove_dir_all", 335 "winapi", 336] 337 338[[package]] 339name = "twox-hash" 340version = "1.6.3" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 343dependencies = [ 344 "cfg-if", 345 "static_assertions", 346] 347 348[[package]] 349name = "unarray" 350version = "0.1.4" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 353 354[[package]] 355name = "wait-timeout" 356version = "0.2.0" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 359dependencies = [ 360 "libc", 361] 362 363[[package]] 364name = "wasi" 365version = "0.11.0+wasi-snapshot-preview1" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 368 369[[package]] 370name = "winapi" 371version = "0.3.9" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 374dependencies = [ 375 "winapi-i686-pc-windows-gnu", 376 "winapi-x86_64-pc-windows-gnu", 377] 378 379[[package]] 380name = "winapi-i686-pc-windows-gnu" 381version = "0.4.0" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 384 385[[package]] 386name = "winapi-x86_64-pc-windows-gnu" 387version = "0.4.0" 388source = "registry+https://github.com/rust-lang/crates.io-index" 389checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 390