Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11-beta 258 lines 6.4 kB view raw
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.4" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 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 = "2.4.0" 37source = "registry+https://github.com/rust-lang/crates.io-index" 38checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 39 40[[package]] 41name = "bytemuck" 42version = "1.14.0" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 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.83" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 59dependencies = [ 60 "libc", 61] 62 63[[package]] 64name = "cfg-if" 65version = "1.0.0" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 68 69[[package]] 70name = "crc32fast" 71version = "1.3.2" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 74dependencies = [ 75 "cfg-if", 76] 77 78[[package]] 79name = "crossbeam-deque" 80version = "0.8.3" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 83dependencies = [ 84 "cfg-if", 85 "crossbeam-epoch", 86 "crossbeam-utils", 87] 88 89[[package]] 90name = "crossbeam-epoch" 91version = "0.9.15" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 94dependencies = [ 95 "autocfg", 96 "cfg-if", 97 "crossbeam-utils", 98 "memoffset", 99 "scopeguard", 100] 101 102[[package]] 103name = "crossbeam-utils" 104version = "0.8.16" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 107dependencies = [ 108 "cfg-if", 109] 110 111[[package]] 112name = "either" 113version = "1.9.0" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 116 117[[package]] 118name = "fallible_collections" 119version = "0.4.9" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "a88c69768c0a15262df21899142bc6df9b9b823546d4b4b9a7bc2d6c448ec6fd" 122dependencies = [ 123 "hashbrown", 124] 125 126[[package]] 127name = "flate2" 128version = "1.0.28" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 131dependencies = [ 132 "crc32fast", 133 "miniz_oxide", 134] 135 136[[package]] 137name = "hashbrown" 138version = "0.13.2" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 141dependencies = [ 142 "ahash", 143] 144 145[[package]] 146name = "imagequant" 147version = "4.2.2" 148dependencies = [ 149 "arrayvec", 150 "lodepng", 151 "once_cell", 152 "rayon", 153 "rgb", 154 "thread_local", 155] 156 157[[package]] 158name = "imagequant-sys" 159version = "4.0.3" 160dependencies = [ 161 "bitflags", 162 "imagequant", 163 "libc", 164] 165 166[[package]] 167name = "libc" 168version = "0.2.149" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 171 172[[package]] 173name = "lodepng" 174version = "3.9.1" 175source = "registry+https://github.com/rust-lang/crates.io-index" 176checksum = "a3cdccd0cf57a5d456f0656ebcff72c2e19503287e1afbf3b84382812adc0606" 177dependencies = [ 178 "crc32fast", 179 "fallible_collections", 180 "flate2", 181 "libc", 182 "rgb", 183] 184 185[[package]] 186name = "memoffset" 187version = "0.9.0" 188source = "registry+https://github.com/rust-lang/crates.io-index" 189checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 190dependencies = [ 191 "autocfg", 192] 193 194[[package]] 195name = "miniz_oxide" 196version = "0.7.1" 197source = "registry+https://github.com/rust-lang/crates.io-index" 198checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 199dependencies = [ 200 "adler", 201] 202 203[[package]] 204name = "once_cell" 205version = "1.18.0" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 208 209[[package]] 210name = "rayon" 211version = "1.8.0" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 214dependencies = [ 215 "either", 216 "rayon-core", 217] 218 219[[package]] 220name = "rayon-core" 221version = "1.12.0" 222source = "registry+https://github.com/rust-lang/crates.io-index" 223checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 224dependencies = [ 225 "crossbeam-deque", 226 "crossbeam-utils", 227] 228 229[[package]] 230name = "rgb" 231version = "0.8.36" 232source = "registry+https://github.com/rust-lang/crates.io-index" 233checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 234dependencies = [ 235 "bytemuck", 236] 237 238[[package]] 239name = "scopeguard" 240version = "1.2.0" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 243 244[[package]] 245name = "thread_local" 246version = "1.1.7" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 249dependencies = [ 250 "cfg-if", 251 "once_cell", 252] 253 254[[package]] 255name = "version_check" 256version = "0.9.4" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"