at 23.11-beta 369 lines 9.6 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 = "base64" 7version = "0.13.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 10 11[[package]] 12name = "bumpalo" 13version = "3.13.0" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 16 17[[package]] 18name = "cc" 19version = "1.0.79" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 22 23[[package]] 24name = "cfg-if" 25version = "1.0.0" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 28 29[[package]] 30name = "equivalent" 31version = "1.0.1" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 34 35[[package]] 36name = "hashbrown" 37version = "0.14.0" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 40 41[[package]] 42name = "indexmap" 43version = "2.0.0" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 46dependencies = [ 47 "equivalent", 48 "hashbrown", 49] 50 51[[package]] 52name = "js-sys" 53version = "0.3.64" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 56dependencies = [ 57 "wasm-bindgen", 58] 59 60[[package]] 61name = "libc" 62version = "0.2.147" 63source = "registry+https://github.com/rust-lang/crates.io-index" 64checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 65 66[[package]] 67name = "log" 68version = "0.4.19" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 71 72[[package]] 73name = "memchr" 74version = "2.5.0" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 77 78[[package]] 79name = "num_enum" 80version = "0.5.11" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 83dependencies = [ 84 "num_enum_derive", 85] 86 87[[package]] 88name = "num_enum_derive" 89version = "0.5.11" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 92dependencies = [ 93 "proc-macro-crate", 94 "proc-macro2", 95 "quote", 96 "syn 1.0.109", 97] 98 99[[package]] 100name = "once_cell" 101version = "1.18.0" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 104 105[[package]] 106name = "proc-macro-crate" 107version = "1.3.1" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 110dependencies = [ 111 "once_cell", 112 "toml_edit", 113] 114 115[[package]] 116name = "proc-macro2" 117version = "1.0.64" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da" 120dependencies = [ 121 "unicode-ident", 122] 123 124[[package]] 125name = "quote" 126version = "1.0.29" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 129dependencies = [ 130 "proc-macro2", 131] 132 133[[package]] 134name = "ring" 135version = "0.16.20" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 138dependencies = [ 139 "cc", 140 "libc", 141 "once_cell", 142 "spin", 143 "untrusted", 144 "web-sys", 145 "winapi", 146] 147 148[[package]] 149name = "rustls" 150version = "0.21.0" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "07180898a28ed6a7f7ba2311594308f595e3dd2e3c3812fa0a80a47b45f17e5d" 153dependencies = [ 154 "log", 155 "ring", 156 "rustls-webpki", 157 "rustversion", 158 "sct", 159] 160 161[[package]] 162name = "rustls-ffi" 163version = "0.10.0" 164dependencies = [ 165 "libc", 166 "log", 167 "num_enum", 168 "rustls", 169 "rustls-pemfile", 170 "sct", 171 "webpki", 172] 173 174[[package]] 175name = "rustls-pemfile" 176version = "0.2.1" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" 179dependencies = [ 180 "base64", 181] 182 183[[package]] 184name = "rustls-webpki" 185version = "0.100.1" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" 188dependencies = [ 189 "ring", 190 "untrusted", 191] 192 193[[package]] 194name = "rustversion" 195version = "1.0.13" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f" 198 199[[package]] 200name = "sct" 201version = "0.7.0" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 204dependencies = [ 205 "ring", 206 "untrusted", 207] 208 209[[package]] 210name = "spin" 211version = "0.5.2" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 214 215[[package]] 216name = "syn" 217version = "1.0.109" 218source = "registry+https://github.com/rust-lang/crates.io-index" 219checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 220dependencies = [ 221 "proc-macro2", 222 "quote", 223 "unicode-ident", 224] 225 226[[package]] 227name = "syn" 228version = "2.0.25" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2" 231dependencies = [ 232 "proc-macro2", 233 "quote", 234 "unicode-ident", 235] 236 237[[package]] 238name = "toml_datetime" 239version = "0.6.3" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 242 243[[package]] 244name = "toml_edit" 245version = "0.19.12" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78" 248dependencies = [ 249 "indexmap", 250 "toml_datetime", 251 "winnow", 252] 253 254[[package]] 255name = "unicode-ident" 256version = "1.0.10" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" 259 260[[package]] 261name = "untrusted" 262version = "0.7.1" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 265 266[[package]] 267name = "wasm-bindgen" 268version = "0.2.87" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 271dependencies = [ 272 "cfg-if", 273 "wasm-bindgen-macro", 274] 275 276[[package]] 277name = "wasm-bindgen-backend" 278version = "0.2.87" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 281dependencies = [ 282 "bumpalo", 283 "log", 284 "once_cell", 285 "proc-macro2", 286 "quote", 287 "syn 2.0.25", 288 "wasm-bindgen-shared", 289] 290 291[[package]] 292name = "wasm-bindgen-macro" 293version = "0.2.87" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 296dependencies = [ 297 "quote", 298 "wasm-bindgen-macro-support", 299] 300 301[[package]] 302name = "wasm-bindgen-macro-support" 303version = "0.2.87" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 306dependencies = [ 307 "proc-macro2", 308 "quote", 309 "syn 2.0.25", 310 "wasm-bindgen-backend", 311 "wasm-bindgen-shared", 312] 313 314[[package]] 315name = "wasm-bindgen-shared" 316version = "0.2.87" 317source = "registry+https://github.com/rust-lang/crates.io-index" 318checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 319 320[[package]] 321name = "web-sys" 322version = "0.3.64" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 325dependencies = [ 326 "js-sys", 327 "wasm-bindgen", 328] 329 330[[package]] 331name = "webpki" 332version = "0.22.0" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 335dependencies = [ 336 "ring", 337 "untrusted", 338] 339 340[[package]] 341name = "winapi" 342version = "0.3.9" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 345dependencies = [ 346 "winapi-i686-pc-windows-gnu", 347 "winapi-x86_64-pc-windows-gnu", 348] 349 350[[package]] 351name = "winapi-i686-pc-windows-gnu" 352version = "0.4.0" 353source = "registry+https://github.com/rust-lang/crates.io-index" 354checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 355 356[[package]] 357name = "winapi-x86_64-pc-windows-gnu" 358version = "0.4.0" 359source = "registry+https://github.com/rust-lang/crates.io-index" 360checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 361 362[[package]] 363name = "winnow" 364version = "0.4.9" 365source = "registry+https://github.com/rust-lang/crates.io-index" 366checksum = "81a2094c43cc94775293eaa0e499fbc30048a6d824ac82c0351a8c0bf9112529" 367dependencies = [ 368 "memchr", 369]