Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 311 lines 8.0 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 = "aho-corasick" 7version = "0.7.20" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "autocfg" 16version = "1.1.0" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 19 20[[package]] 21name = "bitflags" 22version = "1.3.2" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 25 26[[package]] 27name = "breezy" 28version = "3.3.2" 29dependencies = [ 30 "pyo3", 31] 32 33[[package]] 34name = "cfg-if" 35version = "1.0.0" 36source = "registry+https://github.com/rust-lang/crates.io-index" 37checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 38 39[[package]] 40name = "indoc" 41version = "0.3.6" 42source = "registry+https://github.com/rust-lang/crates.io-index" 43checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 44dependencies = [ 45 "indoc-impl", 46 "proc-macro-hack", 47] 48 49[[package]] 50name = "indoc-impl" 51version = "0.3.6" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 54dependencies = [ 55 "proc-macro-hack", 56 "proc-macro2", 57 "quote", 58 "syn", 59 "unindent", 60] 61 62[[package]] 63name = "instant" 64version = "0.1.12" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 67dependencies = [ 68 "cfg-if", 69] 70 71[[package]] 72name = "lazy_static" 73version = "1.4.0" 74source = "registry+https://github.com/rust-lang/crates.io-index" 75checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 76 77[[package]] 78name = "libc" 79version = "0.2.139" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 82 83[[package]] 84name = "lock_api" 85version = "0.4.9" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 88dependencies = [ 89 "autocfg", 90 "scopeguard", 91] 92 93[[package]] 94name = "memchr" 95version = "2.5.0" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 98 99[[package]] 100name = "once_cell" 101version = "1.17.1" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 104 105[[package]] 106name = "parking_lot" 107version = "0.11.2" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 110dependencies = [ 111 "instant", 112 "lock_api", 113 "parking_lot_core", 114] 115 116[[package]] 117name = "parking_lot_core" 118version = "0.8.6" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 121dependencies = [ 122 "cfg-if", 123 "instant", 124 "libc", 125 "redox_syscall", 126 "smallvec", 127 "winapi", 128] 129 130[[package]] 131name = "paste" 132version = "0.1.18" 133source = "registry+https://github.com/rust-lang/crates.io-index" 134checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 135dependencies = [ 136 "paste-impl", 137 "proc-macro-hack", 138] 139 140[[package]] 141name = "paste-impl" 142version = "0.1.18" 143source = "registry+https://github.com/rust-lang/crates.io-index" 144checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 145dependencies = [ 146 "proc-macro-hack", 147] 148 149[[package]] 150name = "proc-macro-hack" 151version = "0.5.20+deprecated" 152source = "registry+https://github.com/rust-lang/crates.io-index" 153checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 154 155[[package]] 156name = "proc-macro2" 157version = "1.0.51" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 160dependencies = [ 161 "unicode-ident", 162] 163 164[[package]] 165name = "pyo3" 166version = "0.15.2" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "d41d50a7271e08c7c8a54cd24af5d62f73ee3a6f6a314215281ebdec421d5752" 169dependencies = [ 170 "cfg-if", 171 "indoc", 172 "libc", 173 "parking_lot", 174 "paste", 175 "pyo3-build-config", 176 "pyo3-macros", 177 "unindent", 178] 179 180[[package]] 181name = "pyo3-build-config" 182version = "0.15.2" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "779239fc40b8e18bc8416d3a37d280ca9b9fb04bda54b98037bb6748595c2410" 185dependencies = [ 186 "once_cell", 187] 188 189[[package]] 190name = "pyo3-macros" 191version = "0.15.2" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "00b247e8c664be87998d8628e86f282c25066165f1f8dda66100c48202fdb93a" 194dependencies = [ 195 "pyo3-macros-backend", 196 "quote", 197 "syn", 198] 199 200[[package]] 201name = "pyo3-macros-backend" 202version = "0.15.2" 203source = "registry+https://github.com/rust-lang/crates.io-index" 204checksum = "5a8c2812c412e00e641d99eeb79dd478317d981d938aa60325dfa7157b607095" 205dependencies = [ 206 "proc-macro2", 207 "pyo3-build-config", 208 "quote", 209 "syn", 210] 211 212[[package]] 213name = "quote" 214version = "1.0.23" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 217dependencies = [ 218 "proc-macro2", 219] 220 221[[package]] 222name = "redox_syscall" 223version = "0.2.16" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 226dependencies = [ 227 "bitflags", 228] 229 230[[package]] 231name = "regex" 232version = "1.7.1" 233source = "registry+https://github.com/rust-lang/crates.io-index" 234checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 235dependencies = [ 236 "aho-corasick", 237 "memchr", 238 "regex-syntax", 239] 240 241[[package]] 242name = "regex-syntax" 243version = "0.6.28" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 246 247[[package]] 248name = "rio-py" 249version = "3.3.2" 250dependencies = [ 251 "lazy_static", 252 "pyo3", 253 "regex", 254] 255 256[[package]] 257name = "scopeguard" 258version = "1.1.0" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 261 262[[package]] 263name = "smallvec" 264version = "1.10.0" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 267 268[[package]] 269name = "syn" 270version = "1.0.109" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 273dependencies = [ 274 "proc-macro2", 275 "quote", 276 "unicode-ident", 277] 278 279[[package]] 280name = "unicode-ident" 281version = "1.0.6" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 284 285[[package]] 286name = "unindent" 287version = "0.1.11" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 290 291[[package]] 292name = "winapi" 293version = "0.3.9" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 296dependencies = [ 297 "winapi-i686-pc-windows-gnu", 298 "winapi-x86_64-pc-windows-gnu", 299] 300 301[[package]] 302name = "winapi-i686-pc-windows-gnu" 303version = "0.4.0" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 306 307[[package]] 308name = "winapi-x86_64-pc-windows-gnu" 309version = "0.4.0" 310source = "registry+https://github.com/rust-lang/crates.io-index" 311checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"