Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 428 lines 11 kB view raw
1diff --git a/Cargo.lock b/Cargo.lock 2new file mode 100644 3index 0000000..319b40b 4--- /dev/null 5+++ b/Cargo.lock 6@@ -0,0 +1,422 @@ 7+# This file is automatically @generated by Cargo. 8+# It is not intended for manual editing. 9+version = 3 10+ 11+[[package]] 12+name = "arrayvec" 13+version = "0.7.4" 14+source = "registry+https://github.com/rust-lang/crates.io-index" 15+checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 16+ 17+[[package]] 18+name = "autocfg" 19+version = "1.1.0" 20+source = "registry+https://github.com/rust-lang/crates.io-index" 21+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 22+ 23+[[package]] 24+name = "bitflags" 25+version = "1.3.2" 26+source = "registry+https://github.com/rust-lang/crates.io-index" 27+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 28+ 29+[[package]] 30+name = "bitflags" 31+version = "2.4.1" 32+source = "registry+https://github.com/rust-lang/crates.io-index" 33+checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 34+ 35+[[package]] 36+name = "bytemuck" 37+version = "1.14.0" 38+source = "registry+https://github.com/rust-lang/crates.io-index" 39+checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 40+ 41+[[package]] 42+name = "cc" 43+version = "1.0.83" 44+source = "registry+https://github.com/rust-lang/crates.io-index" 45+checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 46+dependencies = [ 47+ "jobserver", 48+ "libc", 49+] 50+ 51+[[package]] 52+name = "cfg-if" 53+version = "1.0.0" 54+source = "registry+https://github.com/rust-lang/crates.io-index" 55+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 56+ 57+[[package]] 58+name = "cocoa_image" 59+version = "1.0.6" 60+source = "registry+https://github.com/rust-lang/crates.io-index" 61+checksum = "ea3dcd9c6980e6b9152a61476163a7039bdd73b4508f699b4b3b102d53490839" 62+dependencies = [ 63+ "core-foundation", 64+ "core-graphics", 65+ "imgref", 66+ "objc", 67+ "rgb", 68+] 69+ 70+[[package]] 71+name = "core-foundation" 72+version = "0.9.3" 73+source = "registry+https://github.com/rust-lang/crates.io-index" 74+checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 75+dependencies = [ 76+ "core-foundation-sys", 77+ "libc", 78+] 79+ 80+[[package]] 81+name = "core-foundation-sys" 82+version = "0.8.4" 83+source = "registry+https://github.com/rust-lang/crates.io-index" 84+checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 85+ 86+[[package]] 87+name = "core-graphics" 88+version = "0.23.1" 89+source = "registry+https://github.com/rust-lang/crates.io-index" 90+checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 91+dependencies = [ 92+ "bitflags 1.3.2", 93+ "core-foundation", 94+ "core-graphics-types", 95+ "foreign-types", 96+ "libc", 97+] 98+ 99+[[package]] 100+name = "core-graphics-types" 101+version = "0.1.2" 102+source = "registry+https://github.com/rust-lang/crates.io-index" 103+checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 104+dependencies = [ 105+ "bitflags 1.3.2", 106+ "core-foundation", 107+ "libc", 108+] 109+ 110+[[package]] 111+name = "crossbeam-deque" 112+version = "0.8.3" 113+source = "registry+https://github.com/rust-lang/crates.io-index" 114+checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 115+dependencies = [ 116+ "cfg-if", 117+ "crossbeam-epoch", 118+ "crossbeam-utils", 119+] 120+ 121+[[package]] 122+name = "crossbeam-epoch" 123+version = "0.9.15" 124+source = "registry+https://github.com/rust-lang/crates.io-index" 125+checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 126+dependencies = [ 127+ "autocfg", 128+ "cfg-if", 129+ "crossbeam-utils", 130+ "memoffset", 131+ "scopeguard", 132+] 133+ 134+[[package]] 135+name = "crossbeam-utils" 136+version = "0.8.16" 137+source = "registry+https://github.com/rust-lang/crates.io-index" 138+checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 139+dependencies = [ 140+ "cfg-if", 141+] 142+ 143+[[package]] 144+name = "dunce" 145+version = "1.0.4" 146+source = "registry+https://github.com/rust-lang/crates.io-index" 147+checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 148+ 149+[[package]] 150+name = "either" 151+version = "1.9.0" 152+source = "registry+https://github.com/rust-lang/crates.io-index" 153+checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 154+ 155+[[package]] 156+name = "foreign-types" 157+version = "0.5.0" 158+source = "registry+https://github.com/rust-lang/crates.io-index" 159+checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 160+dependencies = [ 161+ "foreign-types-macros", 162+ "foreign-types-shared", 163+] 164+ 165+[[package]] 166+name = "foreign-types-macros" 167+version = "0.2.3" 168+source = "registry+https://github.com/rust-lang/crates.io-index" 169+checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 170+dependencies = [ 171+ "proc-macro2", 172+ "quote", 173+ "syn", 174+] 175+ 176+[[package]] 177+name = "foreign-types-shared" 178+version = "0.3.1" 179+source = "registry+https://github.com/rust-lang/crates.io-index" 180+checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 181+ 182+[[package]] 183+name = "getopts" 184+version = "0.2.21" 185+source = "registry+https://github.com/rust-lang/crates.io-index" 186+checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 187+dependencies = [ 188+ "unicode-width", 189+] 190+ 191+[[package]] 192+name = "glob" 193+version = "0.3.1" 194+source = "registry+https://github.com/rust-lang/crates.io-index" 195+checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 196+ 197+[[package]] 198+name = "imagequant" 199+version = "4.2.2" 200+dependencies = [ 201+ "arrayvec", 202+ "once_cell", 203+ "rayon", 204+ "rgb", 205+ "thread_local", 206+] 207+ 208+[[package]] 209+name = "imagequant-sys" 210+version = "4.0.3" 211+dependencies = [ 212+ "bitflags 2.4.1", 213+ "imagequant", 214+ "libc", 215+] 216+ 217+[[package]] 218+name = "imgref" 219+version = "1.10.0" 220+source = "registry+https://github.com/rust-lang/crates.io-index" 221+checksum = "90d944e334f00f4449c9640b440a171f816be0152305c12ef90424fc35fd035c" 222+ 223+[[package]] 224+name = "jobserver" 225+version = "0.1.27" 226+source = "registry+https://github.com/rust-lang/crates.io-index" 227+checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 228+dependencies = [ 229+ "libc", 230+] 231+ 232+[[package]] 233+name = "lcms2-sys" 234+version = "4.0.3" 235+source = "registry+https://github.com/rust-lang/crates.io-index" 236+checksum = "137dae56197ab9e66729ff73e2942e26f16f9ddcd14a53295c35f53dcd067b58" 237+dependencies = [ 238+ "cc", 239+ "dunce", 240+ "libc", 241+ "pkg-config", 242+] 243+ 244+[[package]] 245+name = "libc" 246+version = "0.2.150" 247+source = "registry+https://github.com/rust-lang/crates.io-index" 248+checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 249+ 250+[[package]] 251+name = "libpng-sys" 252+version = "1.1.9" 253+source = "registry+https://github.com/rust-lang/crates.io-index" 254+checksum = "b531eb8c558e697d1fc6a642b260426aa85ba4d054a8f0db66f5866918332674" 255+dependencies = [ 256+ "cc", 257+ "dunce", 258+ "libc", 259+ "libz-sys", 260+ "pkg-config", 261+] 262+ 263+[[package]] 264+name = "libz-sys" 265+version = "1.1.12" 266+source = "registry+https://github.com/rust-lang/crates.io-index" 267+checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 268+dependencies = [ 269+ "cc", 270+ "libc", 271+ "pkg-config", 272+ "vcpkg", 273+] 274+ 275+[[package]] 276+name = "malloc_buf" 277+version = "0.0.6" 278+source = "registry+https://github.com/rust-lang/crates.io-index" 279+checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 280+dependencies = [ 281+ "libc", 282+] 283+ 284+[[package]] 285+name = "memoffset" 286+version = "0.9.0" 287+source = "registry+https://github.com/rust-lang/crates.io-index" 288+checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 289+dependencies = [ 290+ "autocfg", 291+] 292+ 293+[[package]] 294+name = "objc" 295+version = "0.2.7" 296+source = "registry+https://github.com/rust-lang/crates.io-index" 297+checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 298+dependencies = [ 299+ "malloc_buf", 300+] 301+ 302+[[package]] 303+name = "once_cell" 304+version = "1.18.0" 305+source = "registry+https://github.com/rust-lang/crates.io-index" 306+checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 307+ 308+[[package]] 309+name = "pkg-config" 310+version = "0.3.27" 311+source = "registry+https://github.com/rust-lang/crates.io-index" 312+checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 313+ 314+[[package]] 315+name = "pngquant" 316+version = "3.0.3" 317+dependencies = [ 318+ "cc", 319+ "cocoa_image", 320+ "dunce", 321+ "getopts", 322+ "imagequant-sys", 323+ "lcms2-sys", 324+ "libc", 325+ "libpng-sys", 326+ "wild", 327+] 328+ 329+[[package]] 330+name = "proc-macro2" 331+version = "1.0.69" 332+source = "registry+https://github.com/rust-lang/crates.io-index" 333+checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 334+dependencies = [ 335+ "unicode-ident", 336+] 337+ 338+[[package]] 339+name = "quote" 340+version = "1.0.33" 341+source = "registry+https://github.com/rust-lang/crates.io-index" 342+checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 343+dependencies = [ 344+ "proc-macro2", 345+] 346+ 347+[[package]] 348+name = "rayon" 349+version = "1.8.0" 350+source = "registry+https://github.com/rust-lang/crates.io-index" 351+checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 352+dependencies = [ 353+ "either", 354+ "rayon-core", 355+] 356+ 357+[[package]] 358+name = "rayon-core" 359+version = "1.12.0" 360+source = "registry+https://github.com/rust-lang/crates.io-index" 361+checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 362+dependencies = [ 363+ "crossbeam-deque", 364+ "crossbeam-utils", 365+] 366+ 367+[[package]] 368+name = "rgb" 369+version = "0.8.37" 370+source = "registry+https://github.com/rust-lang/crates.io-index" 371+checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 372+dependencies = [ 373+ "bytemuck", 374+] 375+ 376+[[package]] 377+name = "scopeguard" 378+version = "1.2.0" 379+source = "registry+https://github.com/rust-lang/crates.io-index" 380+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 381+ 382+[[package]] 383+name = "syn" 384+version = "2.0.39" 385+source = "registry+https://github.com/rust-lang/crates.io-index" 386+checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 387+dependencies = [ 388+ "proc-macro2", 389+ "quote", 390+ "unicode-ident", 391+] 392+ 393+[[package]] 394+name = "thread_local" 395+version = "1.1.7" 396+source = "registry+https://github.com/rust-lang/crates.io-index" 397+checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 398+dependencies = [ 399+ "cfg-if", 400+ "once_cell", 401+] 402+ 403+[[package]] 404+name = "unicode-ident" 405+version = "1.0.12" 406+source = "registry+https://github.com/rust-lang/crates.io-index" 407+checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 408+ 409+[[package]] 410+name = "unicode-width" 411+version = "0.1.11" 412+source = "registry+https://github.com/rust-lang/crates.io-index" 413+checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 414+ 415+[[package]] 416+name = "vcpkg" 417+version = "0.2.15" 418+source = "registry+https://github.com/rust-lang/crates.io-index" 419+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 420+ 421+[[package]] 422+name = "wild" 423+version = "2.2.0" 424+source = "registry+https://github.com/rust-lang/crates.io-index" 425+checksum = "10d01931a94d5a115a53f95292f51d316856b68a035618eb831bbba593a30b67" 426+dependencies = [ 427+ "glob", 428+]