Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 351 lines 9.1 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 = "base64" 13version = "0.13.1" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 16 17[[package]] 18name = "bumpalo" 19version = "3.12.0" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 22 23[[package]] 24name = "cc" 25version = "1.0.79" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 28 29[[package]] 30name = "cfg-if" 31version = "1.0.0" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 34 35[[package]] 36name = "hashbrown" 37version = "0.12.3" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 40 41[[package]] 42name = "indexmap" 43version = "1.9.3" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 46dependencies = [ 47 "autocfg", 48 "hashbrown", 49] 50 51[[package]] 52name = "js-sys" 53version = "0.3.61" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 56dependencies = [ 57 "wasm-bindgen", 58] 59 60[[package]] 61name = "libc" 62version = "0.2.140" 63source = "registry+https://github.com/rust-lang/crates.io-index" 64checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 65 66[[package]] 67name = "log" 68version = "0.4.17" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 71dependencies = [ 72 "cfg-if", 73] 74 75[[package]] 76name = "memchr" 77version = "2.5.0" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 80 81[[package]] 82name = "num_enum" 83version = "0.5.11" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 86dependencies = [ 87 "num_enum_derive", 88] 89 90[[package]] 91name = "num_enum_derive" 92version = "0.5.11" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 95dependencies = [ 96 "proc-macro-crate", 97 "proc-macro2", 98 "quote", 99 "syn", 100] 101 102[[package]] 103name = "once_cell" 104version = "1.17.1" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 107 108[[package]] 109name = "proc-macro-crate" 110version = "1.3.1" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 113dependencies = [ 114 "once_cell", 115 "toml_edit", 116] 117 118[[package]] 119name = "proc-macro2" 120version = "1.0.53" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73" 123dependencies = [ 124 "unicode-ident", 125] 126 127[[package]] 128name = "quote" 129version = "1.0.26" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 132dependencies = [ 133 "proc-macro2", 134] 135 136[[package]] 137name = "ring" 138version = "0.16.20" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 141dependencies = [ 142 "cc", 143 "libc", 144 "once_cell", 145 "spin", 146 "untrusted", 147 "web-sys", 148 "winapi", 149] 150 151[[package]] 152name = "rustls" 153version = "0.20.8" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 156dependencies = [ 157 "log", 158 "ring", 159 "rustversion", 160 "sct", 161 "webpki", 162] 163 164[[package]] 165name = "rustls-ffi" 166version = "0.9.2" 167dependencies = [ 168 "libc", 169 "log", 170 "num_enum", 171 "rustls", 172 "rustls-pemfile", 173 "sct", 174 "webpki", 175] 176 177[[package]] 178name = "rustls-pemfile" 179version = "0.2.1" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" 182dependencies = [ 183 "base64", 184] 185 186[[package]] 187name = "rustversion" 188version = "1.0.12" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 191 192[[package]] 193name = "sct" 194version = "0.7.0" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 197dependencies = [ 198 "ring", 199 "untrusted", 200] 201 202[[package]] 203name = "spin" 204version = "0.5.2" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 207 208[[package]] 209name = "syn" 210version = "1.0.109" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 213dependencies = [ 214 "proc-macro2", 215 "quote", 216 "unicode-ident", 217] 218 219[[package]] 220name = "toml_datetime" 221version = "0.6.1" 222source = "registry+https://github.com/rust-lang/crates.io-index" 223checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 224 225[[package]] 226name = "toml_edit" 227version = "0.19.8" 228source = "registry+https://github.com/rust-lang/crates.io-index" 229checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 230dependencies = [ 231 "indexmap", 232 "toml_datetime", 233 "winnow", 234] 235 236[[package]] 237name = "unicode-ident" 238version = "1.0.8" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 241 242[[package]] 243name = "untrusted" 244version = "0.7.1" 245source = "registry+https://github.com/rust-lang/crates.io-index" 246checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 247 248[[package]] 249name = "wasm-bindgen" 250version = "0.2.84" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 253dependencies = [ 254 "cfg-if", 255 "wasm-bindgen-macro", 256] 257 258[[package]] 259name = "wasm-bindgen-backend" 260version = "0.2.84" 261source = "registry+https://github.com/rust-lang/crates.io-index" 262checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 263dependencies = [ 264 "bumpalo", 265 "log", 266 "once_cell", 267 "proc-macro2", 268 "quote", 269 "syn", 270 "wasm-bindgen-shared", 271] 272 273[[package]] 274name = "wasm-bindgen-macro" 275version = "0.2.84" 276source = "registry+https://github.com/rust-lang/crates.io-index" 277checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 278dependencies = [ 279 "quote", 280 "wasm-bindgen-macro-support", 281] 282 283[[package]] 284name = "wasm-bindgen-macro-support" 285version = "0.2.84" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 288dependencies = [ 289 "proc-macro2", 290 "quote", 291 "syn", 292 "wasm-bindgen-backend", 293 "wasm-bindgen-shared", 294] 295 296[[package]] 297name = "wasm-bindgen-shared" 298version = "0.2.84" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 301 302[[package]] 303name = "web-sys" 304version = "0.3.61" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 307dependencies = [ 308 "js-sys", 309 "wasm-bindgen", 310] 311 312[[package]] 313name = "webpki" 314version = "0.22.0" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 317dependencies = [ 318 "ring", 319 "untrusted", 320] 321 322[[package]] 323name = "winapi" 324version = "0.3.9" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 327dependencies = [ 328 "winapi-i686-pc-windows-gnu", 329 "winapi-x86_64-pc-windows-gnu", 330] 331 332[[package]] 333name = "winapi-i686-pc-windows-gnu" 334version = "0.4.0" 335source = "registry+https://github.com/rust-lang/crates.io-index" 336checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 337 338[[package]] 339name = "winapi-x86_64-pc-windows-gnu" 340version = "0.4.0" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 343 344[[package]] 345name = "winnow" 346version = "0.4.1" 347source = "registry+https://github.com/rust-lang/crates.io-index" 348checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" 349dependencies = [ 350 "memchr", 351]