Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at master 9.7 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 = "autocfg" 7version = "1.1.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 10 11[[package]] 12name = "bitflags" 13version = "1.3.2" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 16 17[[package]] 18name = "cfg-if" 19version = "1.0.0" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 22 23[[package]] 24name = "crossbeam-channel" 25version = "0.5.8" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 28dependencies = [ 29 "cfg-if", 30 "crossbeam-utils", 31] 32 33[[package]] 34name = "crossbeam-deque" 35version = "0.8.3" 36source = "registry+https://github.com/rust-lang/crates.io-index" 37checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 38dependencies = [ 39 "cfg-if", 40 "crossbeam-epoch", 41 "crossbeam-utils", 42] 43 44[[package]] 45name = "crossbeam-epoch" 46version = "0.9.15" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 49dependencies = [ 50 "autocfg", 51 "cfg-if", 52 "crossbeam-utils", 53 "memoffset", 54 "scopeguard", 55] 56 57[[package]] 58name = "crossbeam-utils" 59version = "0.8.16" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 62dependencies = [ 63 "cfg-if", 64] 65 66[[package]] 67name = "either" 68version = "1.8.1" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 71 72[[package]] 73name = "heck" 74version = "0.4.1" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 77dependencies = [ 78 "unicode-segmentation", 79] 80 81[[package]] 82name = "hermit-abi" 83version = "0.3.1" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 86 87[[package]] 88name = "indoc" 89version = "0.3.6" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 92dependencies = [ 93 "indoc-impl", 94 "proc-macro-hack", 95] 96 97[[package]] 98name = "indoc-impl" 99version = "0.3.6" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 102dependencies = [ 103 "proc-macro-hack", 104 "proc-macro2", 105 "quote", 106 "syn", 107 "unindent", 108] 109 110[[package]] 111name = "instant" 112version = "0.1.12" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 115dependencies = [ 116 "cfg-if", 117] 118 119[[package]] 120name = "libc" 121version = "0.2.147" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 124 125[[package]] 126name = "lock_api" 127version = "0.4.10" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 130dependencies = [ 131 "autocfg", 132 "scopeguard", 133] 134 135[[package]] 136name = "memoffset" 137version = "0.9.0" 138source = "registry+https://github.com/rust-lang/crates.io-index" 139checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 140dependencies = [ 141 "autocfg", 142] 143 144[[package]] 145name = "num_cpus" 146version = "1.16.0" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 149dependencies = [ 150 "hermit-abi", 151 "libc", 152] 153 154[[package]] 155name = "once_cell" 156version = "1.18.0" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 159 160[[package]] 161name = "parking_lot" 162version = "0.11.2" 163source = "registry+https://github.com/rust-lang/crates.io-index" 164checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 165dependencies = [ 166 "instant", 167 "lock_api", 168 "parking_lot_core", 169] 170 171[[package]] 172name = "parking_lot_core" 173version = "0.8.6" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 176dependencies = [ 177 "cfg-if", 178 "instant", 179 "libc", 180 "redox_syscall", 181 "smallvec", 182 "winapi", 183] 184 185[[package]] 186name = "paste" 187version = "0.1.18" 188source = "registry+https://github.com/rust-lang/crates.io-index" 189checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 190dependencies = [ 191 "paste-impl", 192 "proc-macro-hack", 193] 194 195[[package]] 196name = "paste-impl" 197version = "0.1.18" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 200dependencies = [ 201 "proc-macro-hack", 202] 203 204[[package]] 205name = "proc-macro-hack" 206version = "0.5.20+deprecated" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 209 210[[package]] 211name = "proc-macro2" 212version = "1.0.63" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" 215dependencies = [ 216 "unicode-ident", 217] 218 219[[package]] 220name = "pyheck" 221version = "0.1.5" 222dependencies = [ 223 "heck", 224 "pyo3", 225 "rayon", 226] 227 228[[package]] 229name = "pyo3" 230version = "0.15.2" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "d41d50a7271e08c7c8a54cd24af5d62f73ee3a6f6a314215281ebdec421d5752" 233dependencies = [ 234 "cfg-if", 235 "indoc", 236 "libc", 237 "parking_lot", 238 "paste", 239 "pyo3-build-config", 240 "pyo3-macros", 241 "unindent", 242] 243 244[[package]] 245name = "pyo3-build-config" 246version = "0.15.2" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "779239fc40b8e18bc8416d3a37d280ca9b9fb04bda54b98037bb6748595c2410" 249dependencies = [ 250 "once_cell", 251] 252 253[[package]] 254name = "pyo3-macros" 255version = "0.15.2" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "00b247e8c664be87998d8628e86f282c25066165f1f8dda66100c48202fdb93a" 258dependencies = [ 259 "pyo3-macros-backend", 260 "quote", 261 "syn", 262] 263 264[[package]] 265name = "pyo3-macros-backend" 266version = "0.15.2" 267source = "registry+https://github.com/rust-lang/crates.io-index" 268checksum = "5a8c2812c412e00e641d99eeb79dd478317d981d938aa60325dfa7157b607095" 269dependencies = [ 270 "proc-macro2", 271 "pyo3-build-config", 272 "quote", 273 "syn", 274] 275 276[[package]] 277name = "quote" 278version = "1.0.29" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 281dependencies = [ 282 "proc-macro2", 283] 284 285[[package]] 286name = "rayon" 287version = "1.7.0" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 290dependencies = [ 291 "either", 292 "rayon-core", 293] 294 295[[package]] 296name = "rayon-core" 297version = "1.11.0" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 300dependencies = [ 301 "crossbeam-channel", 302 "crossbeam-deque", 303 "crossbeam-utils", 304 "num_cpus", 305] 306 307[[package]] 308name = "redox_syscall" 309version = "0.2.16" 310source = "registry+https://github.com/rust-lang/crates.io-index" 311checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 312dependencies = [ 313 "bitflags", 314] 315 316[[package]] 317name = "scopeguard" 318version = "1.1.0" 319source = "registry+https://github.com/rust-lang/crates.io-index" 320checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 321 322[[package]] 323name = "smallvec" 324version = "1.10.0" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 327 328[[package]] 329name = "syn" 330version = "1.0.109" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 333dependencies = [ 334 "proc-macro2", 335 "quote", 336 "unicode-ident", 337] 338 339[[package]] 340name = "unicode-ident" 341version = "1.0.9" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 344 345[[package]] 346name = "unicode-segmentation" 347version = "1.10.1" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 350 351[[package]] 352name = "unindent" 353version = "0.1.11" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 356 357[[package]] 358name = "winapi" 359version = "0.3.9" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 362dependencies = [ 363 "winapi-i686-pc-windows-gnu", 364 "winapi-x86_64-pc-windows-gnu", 365] 366 367[[package]] 368name = "winapi-i686-pc-windows-gnu" 369version = "0.4.0" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 372 373[[package]] 374name = "winapi-x86_64-pc-windows-gnu" 375version = "0.4.0" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"