Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "adler" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 11[[package]] 12name = "ahash" 13version = "0.8.3" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 16dependencies = [ 17 "cfg-if", 18 "once_cell", 19 "version_check", 20] 21 22[[package]] 23name = "arrayvec" 24version = "0.7.2" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 27 28[[package]] 29name = "autocfg" 30version = "1.1.0" 31source = "registry+https://github.com/rust-lang/crates.io-index" 32checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 33 34[[package]] 35name = "bitflags" 36version = "1.3.2" 37source = "registry+https://github.com/rust-lang/crates.io-index" 38checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 39 40[[package]] 41name = "bytemuck" 42version = "1.13.1" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 45 46[[package]] 47name = "c_test" 48version = "0.1.0" 49dependencies = [ 50 "cc", 51 "imagequant-sys", 52] 53 54[[package]] 55name = "cc" 56version = "1.0.79" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 59 60[[package]] 61name = "cfg-if" 62version = "1.0.0" 63source = "registry+https://github.com/rust-lang/crates.io-index" 64checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 65 66[[package]] 67name = "crc32fast" 68version = "1.3.2" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 71dependencies = [ 72 "cfg-if", 73] 74 75[[package]] 76name = "crossbeam-channel" 77version = "0.5.8" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 80dependencies = [ 81 "cfg-if", 82 "crossbeam-utils", 83] 84 85[[package]] 86name = "crossbeam-deque" 87version = "0.8.3" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 90dependencies = [ 91 "cfg-if", 92 "crossbeam-epoch", 93 "crossbeam-utils", 94] 95 96[[package]] 97name = "crossbeam-epoch" 98version = "0.9.14" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 101dependencies = [ 102 "autocfg", 103 "cfg-if", 104 "crossbeam-utils", 105 "memoffset", 106 "scopeguard", 107] 108 109[[package]] 110name = "crossbeam-utils" 111version = "0.8.15" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 114dependencies = [ 115 "cfg-if", 116] 117 118[[package]] 119name = "either" 120version = "1.8.1" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 123 124[[package]] 125name = "fallible_collections" 126version = "0.4.7" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "9acf77205554f3cfeca94a4b910e159ad9824e8c2d164de02b3f12495cc1074d" 129dependencies = [ 130 "hashbrown", 131] 132 133[[package]] 134name = "flate2" 135version = "1.0.26" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 138dependencies = [ 139 "crc32fast", 140 "miniz_oxide", 141] 142 143[[package]] 144name = "hashbrown" 145version = "0.13.2" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 148dependencies = [ 149 "ahash", 150] 151 152[[package]] 153name = "hermit-abi" 154version = "0.2.6" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 157dependencies = [ 158 "libc", 159] 160 161[[package]] 162name = "imagequant" 163version = "4.2.0" 164dependencies = [ 165 "arrayvec", 166 "lodepng", 167 "num_cpus", 168 "once_cell", 169 "rayon", 170 "rgb", 171 "thread_local", 172] 173 174[[package]] 175name = "imagequant-sys" 176version = "4.0.1" 177dependencies = [ 178 "bitflags", 179 "imagequant", 180 "libc", 181] 182 183[[package]] 184name = "libc" 185version = "0.2.142" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" 188 189[[package]] 190name = "lodepng" 191version = "3.7.2" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "f0ad39f75bbaa4b10bb6f2316543632a8046a5bcf9c785488d79720b21f044f8" 194dependencies = [ 195 "crc32fast", 196 "fallible_collections", 197 "flate2", 198 "libc", 199 "rgb", 200] 201 202[[package]] 203name = "memoffset" 204version = "0.8.0" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 207dependencies = [ 208 "autocfg", 209] 210 211[[package]] 212name = "miniz_oxide" 213version = "0.7.1" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 216dependencies = [ 217 "adler", 218] 219 220[[package]] 221name = "num_cpus" 222version = "1.15.0" 223source = "registry+https://github.com/rust-lang/crates.io-index" 224checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 225dependencies = [ 226 "hermit-abi", 227 "libc", 228] 229 230[[package]] 231name = "once_cell" 232version = "1.17.1" 233source = "registry+https://github.com/rust-lang/crates.io-index" 234checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 235 236[[package]] 237name = "rayon" 238version = "1.7.0" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 241dependencies = [ 242 "either", 243 "rayon-core", 244] 245 246[[package]] 247name = "rayon-core" 248version = "1.11.0" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 251dependencies = [ 252 "crossbeam-channel", 253 "crossbeam-deque", 254 "crossbeam-utils", 255 "num_cpus", 256] 257 258[[package]] 259name = "rgb" 260version = "0.8.36" 261source = "registry+https://github.com/rust-lang/crates.io-index" 262checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 263dependencies = [ 264 "bytemuck", 265] 266 267[[package]] 268name = "scopeguard" 269version = "1.1.0" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 272 273[[package]] 274name = "thread_local" 275version = "1.1.7" 276source = "registry+https://github.com/rust-lang/crates.io-index" 277checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 278dependencies = [ 279 "cfg-if", 280 "once_cell", 281] 282 283[[package]] 284name = "version_check" 285version = "0.9.4" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"