zerotierone: 1.12.2 -> 1.14.0 (#309343)

https://github.com/zerotier/ZeroTierOne/releases/tag/1.14.0
https://github.com/zerotier/ZeroTierOne/compare/1.12.2...1.14.0
https://github.com/zerotier/ZeroTierOne/blob/1.14.0/RELEASE-NOTES.md

authored by Michael Livshin and committed by GitHub d2d8db8c ec9c5bda

+2159 -278
+2153 -273
pkgs/tools/networking/zerotierone/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "addr2line" 7 - version = "0.20.0" 7 + version = "0.21.0" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 9 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 10 dependencies = [ 11 11 "gimli", 12 12 ] ··· 18 18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 19 20 20 [[package]] 21 + name = "ahash" 22 + version = "0.8.11" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 25 + dependencies = [ 26 + "cfg-if", 27 + "once_cell", 28 + "version_check", 29 + "zerocopy", 30 + ] 31 + 32 + [[package]] 33 + name = "aho-corasick" 34 + version = "1.1.2" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 37 + dependencies = [ 38 + "memchr", 39 + ] 40 + 41 + [[package]] 42 + name = "allocator-api2" 43 + version = "0.2.16" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 46 + 47 + [[package]] 21 48 name = "android-tzdata" 22 49 version = "0.1.1" 23 50 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 39 66 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 40 67 dependencies = [ 41 68 "winapi", 69 + ] 70 + 71 + [[package]] 72 + name = "anstyle" 73 + version = "1.0.6" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 76 + 77 + [[package]] 78 + name = "anyhow" 79 + version = "1.0.81" 80 + source = "registry+https://github.com/rust-lang/crates.io-index" 81 + checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" 82 + 83 + [[package]] 84 + name = "async-stream" 85 + version = "0.3.5" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 88 + dependencies = [ 89 + "async-stream-impl", 90 + "futures-core", 91 + "pin-project-lite", 92 + ] 93 + 94 + [[package]] 95 + name = "async-stream-impl" 96 + version = "0.3.5" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 99 + dependencies = [ 100 + "proc-macro2", 101 + "quote", 102 + "syn 2.0.53", 103 + ] 104 + 105 + [[package]] 106 + name = "async-trait" 107 + version = "0.1.78" 108 + source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85" 110 + dependencies = [ 111 + "proc-macro2", 112 + "quote", 113 + "syn 2.0.53", 42 114 ] 43 115 44 116 [[package]] ··· 59 131 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 60 132 61 133 [[package]] 134 + name = "axum" 135 + version = "0.6.20" 136 + source = "registry+https://github.com/rust-lang/crates.io-index" 137 + checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 138 + dependencies = [ 139 + "async-trait", 140 + "axum-core", 141 + "bitflags 1.3.2", 142 + "bytes", 143 + "futures-util", 144 + "http", 145 + "http-body", 146 + "hyper", 147 + "itoa", 148 + "matchit", 149 + "memchr", 150 + "mime", 151 + "percent-encoding", 152 + "pin-project-lite", 153 + "rustversion", 154 + "serde", 155 + "sync_wrapper", 156 + "tower", 157 + "tower-layer", 158 + "tower-service", 159 + ] 160 + 161 + [[package]] 162 + name = "axum-core" 163 + version = "0.3.4" 164 + source = "registry+https://github.com/rust-lang/crates.io-index" 165 + checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 166 + dependencies = [ 167 + "async-trait", 168 + "bytes", 169 + "futures-util", 170 + "http", 171 + "http-body", 172 + "mime", 173 + "rustversion", 174 + "tower-layer", 175 + "tower-service", 176 + ] 177 + 178 + [[package]] 179 + name = "backoff" 180 + version = "0.4.0" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 183 + dependencies = [ 184 + "getrandom", 185 + "instant", 186 + "rand", 187 + ] 188 + 189 + [[package]] 62 190 name = "backtrace" 63 - version = "0.3.68" 191 + version = "0.3.69" 64 192 source = "registry+https://github.com/rust-lang/crates.io-index" 65 - checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 193 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 66 194 dependencies = [ 67 195 "addr2line", 68 196 "cc", ··· 74 202 ] 75 203 76 204 [[package]] 205 + name = "base16ct" 206 + version = "0.2.0" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 209 + 210 + [[package]] 77 211 name = "base64" 78 212 version = "0.13.1" 79 213 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 81 215 82 216 [[package]] 83 217 name = "base64" 84 - version = "0.21.2" 218 + version = "0.21.7" 219 + source = "registry+https://github.com/rust-lang/crates.io-index" 220 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 221 + 222 + [[package]] 223 + name = "base64ct" 224 + version = "1.6.0" 85 225 source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 226 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 87 227 88 228 [[package]] 89 229 name = "bitflags" ··· 93 233 94 234 [[package]] 95 235 name = "bitflags" 96 - version = "2.4.0" 236 + version = "2.5.0" 97 237 source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 238 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 99 239 100 240 [[package]] 101 241 name = "block-buffer" ··· 108 248 109 249 [[package]] 110 250 name = "bumpalo" 111 - version = "3.13.0" 251 + version = "3.15.4" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 254 + 255 + [[package]] 256 + name = "byteorder" 257 + version = "1.5.0" 112 258 source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 259 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 114 260 115 261 [[package]] 116 262 name = "bytes" 117 - version = "1.4.0" 263 + version = "1.5.0" 118 264 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 265 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 120 266 121 267 [[package]] 122 268 name = "cbindgen" ··· 125 271 checksum = "51e3973b165dc0f435831a9e426de67e894de532754ff7a3f307c03ee5dec7dc" 126 272 dependencies = [ 127 273 "clap", 128 - "heck", 129 - "indexmap", 274 + "heck 0.3.3", 275 + "indexmap 1.9.3", 130 276 "log", 131 277 "proc-macro2", 132 278 "quote", ··· 139 285 140 286 [[package]] 141 287 name = "cc" 142 - version = "1.0.82" 288 + version = "1.0.90" 143 289 source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 145 - dependencies = [ 146 - "libc", 147 - ] 290 + checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 148 291 149 292 [[package]] 150 293 name = "cfg-if" ··· 154 297 155 298 [[package]] 156 299 name = "chrono" 157 - version = "0.4.26" 300 + version = "0.4.35" 158 301 source = "registry+https://github.com/rust-lang/crates.io-index" 159 - checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 302 + checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" 160 303 dependencies = [ 161 304 "android-tzdata", 162 305 "iana-time-zone", 306 + "js-sys", 163 307 "num-traits", 164 308 "serde", 165 - "winapi", 309 + "wasm-bindgen", 310 + "windows-targets 0.52.4", 166 311 ] 167 312 168 313 [[package]] ··· 181 326 ] 182 327 183 328 [[package]] 329 + name = "const-oid" 330 + version = "0.9.6" 331 + source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 333 + 334 + [[package]] 335 + name = "convert_case" 336 + version = "0.4.0" 337 + source = "registry+https://github.com/rust-lang/crates.io-index" 338 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 339 + 340 + [[package]] 184 341 name = "core-foundation" 185 - version = "0.9.3" 342 + version = "0.9.4" 186 343 source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 344 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 188 345 dependencies = [ 189 346 "core-foundation-sys", 190 347 "libc", ··· 192 349 193 350 [[package]] 194 351 name = "core-foundation-sys" 195 - version = "0.8.4" 352 + version = "0.8.6" 196 353 source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 354 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 198 355 199 356 [[package]] 200 357 name = "cpufeatures" 201 - version = "0.2.9" 358 + version = "0.2.12" 202 359 source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 360 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 204 361 dependencies = [ 205 362 "libc", 206 363 ] 207 364 208 365 [[package]] 366 + name = "crossbeam-channel" 367 + version = "0.5.12" 368 + source = "registry+https://github.com/rust-lang/crates.io-index" 369 + checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" 370 + dependencies = [ 371 + "crossbeam-utils", 372 + ] 373 + 374 + [[package]] 375 + name = "crossbeam-queue" 376 + version = "0.3.11" 377 + source = "registry+https://github.com/rust-lang/crates.io-index" 378 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 379 + dependencies = [ 380 + "crossbeam-utils", 381 + ] 382 + 383 + [[package]] 384 + name = "crossbeam-utils" 385 + version = "0.8.19" 386 + source = "registry+https://github.com/rust-lang/crates.io-index" 387 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 388 + 389 + [[package]] 390 + name = "crypto-bigint" 391 + version = "0.5.5" 392 + source = "registry+https://github.com/rust-lang/crates.io-index" 393 + checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 394 + dependencies = [ 395 + "generic-array", 396 + "rand_core", 397 + "subtle", 398 + "zeroize", 399 + ] 400 + 401 + [[package]] 209 402 name = "crypto-common" 210 403 version = "0.1.6" 211 404 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 216 409 ] 217 410 218 411 [[package]] 412 + name = "curve25519-dalek" 413 + version = "4.1.2" 414 + source = "registry+https://github.com/rust-lang/crates.io-index" 415 + checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" 416 + dependencies = [ 417 + "cfg-if", 418 + "cpufeatures", 419 + "curve25519-dalek-derive", 420 + "digest", 421 + "fiat-crypto", 422 + "platforms", 423 + "rustc_version", 424 + "subtle", 425 + "zeroize", 426 + ] 427 + 428 + [[package]] 429 + name = "curve25519-dalek-derive" 430 + version = "0.1.1" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 433 + dependencies = [ 434 + "proc-macro2", 435 + "quote", 436 + "syn 2.0.53", 437 + ] 438 + 439 + [[package]] 219 440 name = "darling" 220 - version = "0.13.4" 441 + version = "0.20.8" 221 442 source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 443 + checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" 223 444 dependencies = [ 224 445 "darling_core", 225 446 "darling_macro", ··· 227 448 228 449 [[package]] 229 450 name = "darling_core" 230 - version = "0.13.4" 451 + version = "0.20.8" 231 452 source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 453 + checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" 233 454 dependencies = [ 234 455 "fnv", 235 456 "ident_case", 236 457 "proc-macro2", 237 458 "quote", 238 459 "strsim 0.10.0", 239 - "syn 1.0.109", 460 + "syn 2.0.53", 240 461 ] 241 462 242 463 [[package]] 243 464 name = "darling_macro" 244 - version = "0.13.4" 465 + version = "0.20.8" 245 466 source = "registry+https://github.com/rust-lang/crates.io-index" 246 - checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 467 + checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" 247 468 dependencies = [ 248 469 "darling_core", 249 470 "quote", 250 - "syn 1.0.109", 471 + "syn 2.0.53", 472 + ] 473 + 474 + [[package]] 475 + name = "dashmap" 476 + version = "5.5.3" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 479 + dependencies = [ 480 + "cfg-if", 481 + "hashbrown 0.14.3", 482 + "lock_api", 483 + "once_cell", 484 + "parking_lot_core", 485 + ] 486 + 487 + [[package]] 488 + name = "der" 489 + version = "0.7.8" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" 492 + dependencies = [ 493 + "const-oid", 494 + "pem-rfc7468", 495 + "zeroize", 251 496 ] 252 497 253 498 [[package]] 254 499 name = "deranged" 255 - version = "0.3.7" 500 + version = "0.3.11" 256 501 source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" 502 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 503 + dependencies = [ 504 + "powerfmt", 505 + "serde", 506 + ] 507 + 508 + [[package]] 509 + name = "derive_builder" 510 + version = "0.20.0" 511 + source = "registry+https://github.com/rust-lang/crates.io-index" 512 + checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7" 513 + dependencies = [ 514 + "derive_builder_macro", 515 + ] 516 + 517 + [[package]] 518 + name = "derive_builder_core" 519 + version = "0.20.0" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d" 522 + dependencies = [ 523 + "darling", 524 + "proc-macro2", 525 + "quote", 526 + "syn 2.0.53", 527 + ] 528 + 529 + [[package]] 530 + name = "derive_builder_macro" 531 + version = "0.20.0" 532 + source = "registry+https://github.com/rust-lang/crates.io-index" 533 + checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" 534 + dependencies = [ 535 + "derive_builder_core", 536 + "syn 2.0.53", 537 + ] 538 + 539 + [[package]] 540 + name = "derive_more" 541 + version = "0.99.17" 542 + source = "registry+https://github.com/rust-lang/crates.io-index" 543 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 544 + dependencies = [ 545 + "convert_case", 546 + "proc-macro2", 547 + "quote", 548 + "rustc_version", 549 + "syn 1.0.109", 550 + ] 258 551 259 552 [[package]] 260 553 name = "digest" ··· 263 556 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 264 557 dependencies = [ 265 558 "block-buffer", 559 + "const-oid", 266 560 "crypto-common", 267 561 "subtle", 268 562 ] 269 563 270 564 [[package]] 565 + name = "downcast" 566 + version = "0.11.0" 567 + source = "registry+https://github.com/rust-lang/crates.io-index" 568 + checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" 569 + 570 + [[package]] 571 + name = "dyn-clone" 572 + version = "1.0.17" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" 575 + 576 + [[package]] 577 + name = "ecdsa" 578 + version = "0.16.9" 579 + source = "registry+https://github.com/rust-lang/crates.io-index" 580 + checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 581 + dependencies = [ 582 + "der", 583 + "digest", 584 + "elliptic-curve", 585 + "rfc6979", 586 + "signature", 587 + "spki", 588 + ] 589 + 590 + [[package]] 591 + name = "ed25519" 592 + version = "2.2.3" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 595 + dependencies = [ 596 + "pkcs8", 597 + "signature", 598 + ] 599 + 600 + [[package]] 601 + name = "ed25519-dalek" 602 + version = "2.1.1" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 605 + dependencies = [ 606 + "curve25519-dalek", 607 + "ed25519", 608 + "serde", 609 + "sha2", 610 + "subtle", 611 + "zeroize", 612 + ] 613 + 614 + [[package]] 271 615 name = "either" 272 - version = "1.9.0" 616 + version = "1.10.0" 273 617 source = "registry+https://github.com/rust-lang/crates.io-index" 274 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 618 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 619 + 620 + [[package]] 621 + name = "elliptic-curve" 622 + version = "0.13.8" 623 + source = "registry+https://github.com/rust-lang/crates.io-index" 624 + checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 625 + dependencies = [ 626 + "base16ct", 627 + "crypto-bigint", 628 + "digest", 629 + "ff", 630 + "generic-array", 631 + "group", 632 + "hkdf", 633 + "pem-rfc7468", 634 + "pkcs8", 635 + "rand_core", 636 + "sec1", 637 + "subtle", 638 + "zeroize", 639 + ] 275 640 276 641 [[package]] 277 642 name = "encoding_rs" 278 - version = "0.8.32" 643 + version = "0.8.33" 279 644 source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 645 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 281 646 dependencies = [ 282 647 "cfg-if", 283 648 ] 284 649 285 650 [[package]] 286 - name = "errno" 287 - version = "0.3.2" 651 + name = "enum-iterator" 652 + version = "2.0.0" 653 + source = "registry+https://github.com/rust-lang/crates.io-index" 654 + checksum = "600536cfe9e2da0820aa498e570f6b2b9223eec3ce2f835c8ae4861304fa4794" 655 + dependencies = [ 656 + "enum-iterator-derive", 657 + ] 658 + 659 + [[package]] 660 + name = "enum-iterator-derive" 661 + version = "1.3.0" 288 662 source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 663 + checksum = "03cdc46ec28bd728e67540c528013c6a10eb69a02eb31078a1bda695438cbfb8" 290 664 dependencies = [ 291 - "errno-dragonfly", 292 - "libc", 293 - "windows-sys", 665 + "proc-macro2", 666 + "quote", 667 + "syn 2.0.53", 294 668 ] 295 669 296 670 [[package]] 297 - name = "errno-dragonfly" 298 - version = "0.1.2" 671 + name = "enum_dispatch" 672 + version = "0.3.12" 299 673 source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 674 + checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e" 301 675 dependencies = [ 302 - "cc", 676 + "once_cell", 677 + "proc-macro2", 678 + "quote", 679 + "syn 2.0.53", 680 + ] 681 + 682 + [[package]] 683 + name = "equivalent" 684 + version = "1.0.1" 685 + source = "registry+https://github.com/rust-lang/crates.io-index" 686 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 687 + 688 + [[package]] 689 + name = "erased-serde" 690 + version = "0.4.4" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "2b73807008a3c7f171cc40312f37d95ef0396e048b5848d775f54b1a4dd4a0d3" 693 + dependencies = [ 694 + "serde", 695 + ] 696 + 697 + [[package]] 698 + name = "errno" 699 + version = "0.3.8" 700 + source = "registry+https://github.com/rust-lang/crates.io-index" 701 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 702 + dependencies = [ 303 703 "libc", 704 + "windows-sys 0.52.0", 304 705 ] 305 706 306 707 [[package]] 307 708 name = "fastrand" 308 - version = "2.0.0" 709 + version = "2.0.1" 309 710 source = "registry+https://github.com/rust-lang/crates.io-index" 310 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 711 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 712 + 713 + [[package]] 714 + name = "ff" 715 + version = "0.13.0" 716 + source = "registry+https://github.com/rust-lang/crates.io-index" 717 + checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 718 + dependencies = [ 719 + "rand_core", 720 + "subtle", 721 + ] 722 + 723 + [[package]] 724 + name = "fiat-crypto" 725 + version = "0.2.6" 726 + source = "registry+https://github.com/rust-lang/crates.io-index" 727 + checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" 728 + 729 + [[package]] 730 + name = "fixedbitset" 731 + version = "0.4.2" 732 + source = "registry+https://github.com/rust-lang/crates.io-index" 733 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 311 734 312 735 [[package]] 313 736 name = "fnv" ··· 332 755 333 756 [[package]] 334 757 name = "form_urlencoded" 335 - version = "1.2.0" 758 + version = "1.2.1" 336 759 source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 760 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 338 761 dependencies = [ 339 762 "percent-encoding", 340 763 ] 341 764 342 765 [[package]] 766 + name = "fragile" 767 + version = "2.0.0" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" 770 + 771 + [[package]] 772 + name = "futures" 773 + version = "0.3.30" 774 + source = "registry+https://github.com/rust-lang/crates.io-index" 775 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 776 + dependencies = [ 777 + "futures-channel", 778 + "futures-core", 779 + "futures-executor", 780 + "futures-io", 781 + "futures-sink", 782 + "futures-task", 783 + "futures-util", 784 + ] 785 + 786 + [[package]] 343 787 name = "futures-channel" 344 - version = "0.3.28" 788 + version = "0.3.30" 345 789 source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 790 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 347 791 dependencies = [ 348 792 "futures-core", 793 + "futures-sink", 349 794 ] 350 795 351 796 [[package]] 352 797 name = "futures-core" 353 - version = "0.3.28" 798 + version = "0.3.30" 799 + source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 801 + 802 + [[package]] 803 + name = "futures-executor" 804 + version = "0.3.30" 354 805 source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 806 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 807 + dependencies = [ 808 + "futures-core", 809 + "futures-task", 810 + "futures-util", 811 + ] 356 812 357 813 [[package]] 358 814 name = "futures-io" 359 - version = "0.3.28" 815 + version = "0.3.30" 816 + source = "registry+https://github.com/rust-lang/crates.io-index" 817 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 818 + 819 + [[package]] 820 + name = "futures-macro" 821 + version = "0.3.30" 822 + source = "registry+https://github.com/rust-lang/crates.io-index" 823 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 824 + dependencies = [ 825 + "proc-macro2", 826 + "quote", 827 + "syn 2.0.53", 828 + ] 829 + 830 + [[package]] 831 + name = "futures-retry" 832 + version = "0.6.0" 360 833 source = "registry+https://github.com/rust-lang/crates.io-index" 361 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 834 + checksum = "fde5a672a61f96552aa5ed9fd9c81c3fbdae4be9b1e205d6eaf17c83705adc0f" 835 + dependencies = [ 836 + "futures", 837 + "pin-project-lite", 838 + "tokio", 839 + ] 362 840 363 841 [[package]] 364 842 name = "futures-sink" 365 - version = "0.3.28" 843 + version = "0.3.30" 366 844 source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 845 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 368 846 369 847 [[package]] 370 848 name = "futures-task" 371 - version = "0.3.28" 849 + version = "0.3.30" 372 850 source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 851 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 852 + 853 + [[package]] 854 + name = "futures-timer" 855 + version = "3.0.3" 856 + source = "registry+https://github.com/rust-lang/crates.io-index" 857 + checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 374 858 375 859 [[package]] 376 860 name = "futures-util" 377 - version = "0.3.28" 861 + version = "0.3.30" 378 862 source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 863 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 380 864 dependencies = [ 865 + "futures-channel", 381 866 "futures-core", 382 867 "futures-io", 868 + "futures-macro", 869 + "futures-sink", 383 870 "futures-task", 384 871 "memchr", 385 872 "pin-project-lite", ··· 395 882 dependencies = [ 396 883 "typenum", 397 884 "version_check", 885 + "zeroize", 398 886 ] 399 887 400 888 [[package]] 401 889 name = "getrandom" 402 - version = "0.2.10" 890 + version = "0.2.12" 403 891 source = "registry+https://github.com/rust-lang/crates.io-index" 404 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 892 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 405 893 dependencies = [ 406 894 "cfg-if", 407 895 "js-sys", ··· 412 900 413 901 [[package]] 414 902 name = "gimli" 415 - version = "0.27.3" 903 + version = "0.28.1" 416 904 source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 905 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 906 + 907 + [[package]] 908 + name = "governor" 909 + version = "0.6.3" 910 + source = "registry+https://github.com/rust-lang/crates.io-index" 911 + checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" 912 + dependencies = [ 913 + "cfg-if", 914 + "dashmap", 915 + "futures", 916 + "futures-timer", 917 + "no-std-compat", 918 + "nonzero_ext", 919 + "parking_lot", 920 + "portable-atomic", 921 + "quanta", 922 + "rand", 923 + "smallvec", 924 + "spinning_top", 925 + ] 926 + 927 + [[package]] 928 + name = "group" 929 + version = "0.13.0" 930 + source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 932 + dependencies = [ 933 + "ff", 934 + "rand_core", 935 + "subtle", 936 + ] 418 937 419 938 [[package]] 420 939 name = "h2" 421 - version = "0.3.20" 940 + version = "0.3.25" 422 941 source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 942 + checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" 424 943 dependencies = [ 425 944 "bytes", 426 945 "fnv", ··· 428 947 "futures-sink", 429 948 "futures-util", 430 949 "http", 431 - "indexmap", 950 + "indexmap 2.2.5", 432 951 "slab", 433 952 "tokio", 434 953 "tokio-util", ··· 442 961 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 443 962 444 963 [[package]] 964 + name = "hashbrown" 965 + version = "0.14.3" 966 + source = "registry+https://github.com/rust-lang/crates.io-index" 967 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 968 + dependencies = [ 969 + "ahash", 970 + "allocator-api2", 971 + ] 972 + 973 + [[package]] 445 974 name = "heck" 446 975 version = "0.3.3" 447 976 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 451 980 ] 452 981 453 982 [[package]] 983 + name = "heck" 984 + version = "0.4.1" 985 + source = "registry+https://github.com/rust-lang/crates.io-index" 986 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 987 + 988 + [[package]] 454 989 name = "hermit-abi" 455 990 version = "0.1.19" 456 991 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 461 996 462 997 [[package]] 463 998 name = "hermit-abi" 464 - version = "0.3.2" 999 + version = "0.3.9" 1000 + source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1002 + 1003 + [[package]] 1004 + name = "hex" 1005 + version = "0.4.3" 465 1006 source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1007 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1008 + 1009 + [[package]] 1010 + name = "hkdf" 1011 + version = "0.12.4" 1012 + source = "registry+https://github.com/rust-lang/crates.io-index" 1013 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1014 + dependencies = [ 1015 + "hmac", 1016 + ] 467 1017 468 1018 [[package]] 469 1019 name = "hmac" ··· 475 1025 ] 476 1026 477 1027 [[package]] 1028 + name = "home" 1029 + version = "0.5.9" 1030 + source = "registry+https://github.com/rust-lang/crates.io-index" 1031 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1032 + dependencies = [ 1033 + "windows-sys 0.52.0", 1034 + ] 1035 + 1036 + [[package]] 478 1037 name = "http" 479 - version = "0.2.9" 1038 + version = "0.2.12" 480 1039 source = "registry+https://github.com/rust-lang/crates.io-index" 481 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1040 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 482 1041 dependencies = [ 483 1042 "bytes", 484 1043 "fnv", ··· 487 1046 488 1047 [[package]] 489 1048 name = "http-body" 490 - version = "0.4.5" 1049 + version = "0.4.6" 491 1050 source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1051 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 493 1052 dependencies = [ 494 1053 "bytes", 495 1054 "http", ··· 510 1069 511 1070 [[package]] 512 1071 name = "hyper" 513 - version = "0.14.27" 1072 + version = "0.14.28" 514 1073 source = "registry+https://github.com/rust-lang/crates.io-index" 515 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1074 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 516 1075 dependencies = [ 517 1076 "bytes", 518 1077 "futures-channel", ··· 525 1084 "httpdate", 526 1085 "itoa", 527 1086 "pin-project-lite", 528 - "socket2 0.4.9", 1087 + "socket2", 529 1088 "tokio", 530 1089 "tower-service", 531 1090 "tracing", ··· 533 1092 ] 534 1093 535 1094 [[package]] 1095 + name = "hyper-timeout" 1096 + version = "0.4.1" 1097 + source = "registry+https://github.com/rust-lang/crates.io-index" 1098 + checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 1099 + dependencies = [ 1100 + "hyper", 1101 + "pin-project-lite", 1102 + "tokio", 1103 + "tokio-io-timeout", 1104 + ] 1105 + 1106 + [[package]] 536 1107 name = "hyper-tls" 537 1108 version = "0.5.0" 538 1109 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 547 1118 548 1119 [[package]] 549 1120 name = "iana-time-zone" 550 - version = "0.1.57" 1121 + version = "0.1.60" 551 1122 source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 1123 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 553 1124 dependencies = [ 554 1125 "android_system_properties", 555 1126 "core-foundation-sys", 556 1127 "iana-time-zone-haiku", 557 1128 "js-sys", 558 1129 "wasm-bindgen", 559 - "windows", 1130 + "windows-core", 560 1131 ] 561 1132 562 1133 [[package]] ··· 576 1147 577 1148 [[package]] 578 1149 name = "idna" 579 - version = "0.4.0" 1150 + version = "0.5.0" 580 1151 source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1152 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 582 1153 dependencies = [ 583 1154 "unicode-bidi", 584 1155 "unicode-normalization", ··· 591 1162 checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 592 1163 dependencies = [ 593 1164 "autocfg", 594 - "hashbrown", 1165 + "hashbrown 0.12.3", 1166 + "serde", 1167 + ] 1168 + 1169 + [[package]] 1170 + name = "indexmap" 1171 + version = "2.2.5" 1172 + source = "registry+https://github.com/rust-lang/crates.io-index" 1173 + checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" 1174 + dependencies = [ 1175 + "equivalent", 1176 + "hashbrown 0.14.3", 1177 + "serde", 1178 + ] 1179 + 1180 + [[package]] 1181 + name = "instant" 1182 + version = "0.1.12" 1183 + source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1185 + dependencies = [ 1186 + "cfg-if", 595 1187 ] 1188 + 1189 + [[package]] 1190 + name = "inventory" 1191 + version = "0.3.15" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767" 596 1194 597 1195 [[package]] 598 1196 name = "ipnet" 599 - version = "2.8.0" 1197 + version = "2.9.0" 600 1198 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 1199 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 602 1200 603 1201 [[package]] 604 1202 name = "itertools" ··· 610 1208 ] 611 1209 612 1210 [[package]] 1211 + name = "itertools" 1212 + version = "0.11.0" 1213 + source = "registry+https://github.com/rust-lang/crates.io-index" 1214 + checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 1215 + dependencies = [ 1216 + "either", 1217 + ] 1218 + 1219 + [[package]] 1220 + name = "itertools" 1221 + version = "0.12.1" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1224 + dependencies = [ 1225 + "either", 1226 + ] 1227 + 1228 + [[package]] 613 1229 name = "itoa" 614 - version = "1.0.9" 1230 + version = "1.0.10" 615 1231 source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1232 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 617 1233 618 1234 [[package]] 619 1235 name = "js-sys" 620 - version = "0.3.64" 1236 + version = "0.3.69" 621 1237 source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1238 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 623 1239 dependencies = [ 624 1240 "wasm-bindgen", 625 1241 ] ··· 643 1259 version = "1.4.0" 644 1260 source = "registry+https://github.com/rust-lang/crates.io-index" 645 1261 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1262 + dependencies = [ 1263 + "spin 0.5.2", 1264 + ] 646 1265 647 1266 [[package]] 648 1267 name = "libc" 649 - version = "0.2.147" 1268 + version = "0.2.153" 650 1269 source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1270 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1271 + 1272 + [[package]] 1273 + name = "libm" 1274 + version = "0.2.8" 1275 + source = "registry+https://github.com/rust-lang/crates.io-index" 1276 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 652 1277 653 1278 [[package]] 654 1279 name = "linux-raw-sys" 655 - version = "0.4.5" 1280 + version = "0.4.13" 1281 + source = "registry+https://github.com/rust-lang/crates.io-index" 1282 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1283 + 1284 + [[package]] 1285 + name = "lock_api" 1286 + version = "0.4.11" 656 1287 source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 1288 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1289 + dependencies = [ 1290 + "autocfg", 1291 + "scopeguard", 1292 + ] 658 1293 659 1294 [[package]] 660 1295 name = "log" 661 - version = "0.4.20" 1296 + version = "0.4.21" 662 1297 source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1298 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1299 + 1300 + [[package]] 1301 + name = "lru" 1302 + version = "0.12.3" 1303 + source = "registry+https://github.com/rust-lang/crates.io-index" 1304 + checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 1305 + dependencies = [ 1306 + "hashbrown 0.14.3", 1307 + ] 1308 + 1309 + [[package]] 1310 + name = "matchers" 1311 + version = "0.1.0" 1312 + source = "registry+https://github.com/rust-lang/crates.io-index" 1313 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1314 + dependencies = [ 1315 + "regex-automata 0.1.10", 1316 + ] 1317 + 1318 + [[package]] 1319 + name = "matchit" 1320 + version = "0.7.3" 1321 + source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 664 1323 665 1324 [[package]] 666 1325 name = "memchr" 667 - version = "2.5.0" 1326 + version = "2.7.1" 668 1327 source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1328 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 670 1329 671 1330 [[package]] 672 1331 name = "mime" ··· 676 1335 677 1336 [[package]] 678 1337 name = "miniz_oxide" 679 - version = "0.7.1" 1338 + version = "0.7.2" 680 1339 source = "registry+https://github.com/rust-lang/crates.io-index" 681 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1340 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 682 1341 dependencies = [ 683 1342 "adler", 684 1343 ] 685 1344 686 1345 [[package]] 687 1346 name = "mio" 688 - version = "0.8.8" 1347 + version = "0.8.11" 689 1348 source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1349 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 691 1350 dependencies = [ 692 1351 "libc", 693 1352 "wasi", 694 - "windows-sys", 1353 + "windows-sys 0.48.0", 1354 + ] 1355 + 1356 + [[package]] 1357 + name = "mockall" 1358 + version = "0.12.1" 1359 + source = "registry+https://github.com/rust-lang/crates.io-index" 1360 + checksum = "43766c2b5203b10de348ffe19f7e54564b64f3d6018ff7648d1e2d6d3a0f0a48" 1361 + dependencies = [ 1362 + "cfg-if", 1363 + "downcast", 1364 + "fragile", 1365 + "lazy_static", 1366 + "mockall_derive", 1367 + "predicates", 1368 + "predicates-tree", 1369 + ] 1370 + 1371 + [[package]] 1372 + name = "mockall_derive" 1373 + version = "0.12.1" 1374 + source = "registry+https://github.com/rust-lang/crates.io-index" 1375 + checksum = "af7cbce79ec385a1d4f54baa90a76401eb15d9cab93685f62e7e9f942aa00ae2" 1376 + dependencies = [ 1377 + "cfg-if", 1378 + "proc-macro2", 1379 + "quote", 1380 + "syn 2.0.53", 695 1381 ] 1382 + 1383 + [[package]] 1384 + name = "multimap" 1385 + version = "0.8.3" 1386 + source = "registry+https://github.com/rust-lang/crates.io-index" 1387 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 696 1388 697 1389 [[package]] 698 1390 name = "native-tls" ··· 713 1405 ] 714 1406 715 1407 [[package]] 716 - name = "num-bigint" 717 - version = "0.4.3" 1408 + name = "no-std-compat" 1409 + version = "0.4.1" 1410 + source = "registry+https://github.com/rust-lang/crates.io-index" 1411 + checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" 1412 + 1413 + [[package]] 1414 + name = "nonzero_ext" 1415 + version = "0.3.0" 1416 + source = "registry+https://github.com/rust-lang/crates.io-index" 1417 + checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 1418 + 1419 + [[package]] 1420 + name = "nu-ansi-term" 1421 + version = "0.46.0" 718 1422 source = "registry+https://github.com/rust-lang/crates.io-index" 719 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1423 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 720 1424 dependencies = [ 721 - "autocfg", 1425 + "overload", 1426 + "winapi", 1427 + ] 1428 + 1429 + [[package]] 1430 + name = "num-bigint-dig" 1431 + version = "0.8.4" 1432 + source = "registry+https://github.com/rust-lang/crates.io-index" 1433 + checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 1434 + dependencies = [ 1435 + "byteorder", 1436 + "lazy_static", 1437 + "libm", 722 1438 "num-integer", 1439 + "num-iter", 723 1440 "num-traits", 1441 + "rand", 1442 + "smallvec", 1443 + "zeroize", 724 1444 ] 725 1445 726 1446 [[package]] 1447 + name = "num-conv" 1448 + version = "0.1.0" 1449 + source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1451 + 1452 + [[package]] 727 1453 name = "num-integer" 728 - version = "0.1.45" 1454 + version = "0.1.46" 1455 + source = "registry+https://github.com/rust-lang/crates.io-index" 1456 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1457 + dependencies = [ 1458 + "num-traits", 1459 + ] 1460 + 1461 + [[package]] 1462 + name = "num-iter" 1463 + version = "0.1.44" 729 1464 source = "registry+https://github.com/rust-lang/crates.io-index" 730 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1465 + checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" 731 1466 dependencies = [ 732 1467 "autocfg", 1468 + "num-integer", 733 1469 "num-traits", 734 1470 ] 735 1471 736 1472 [[package]] 737 1473 name = "num-traits" 738 - version = "0.2.16" 1474 + version = "0.2.18" 739 1475 source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1476 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 741 1477 dependencies = [ 742 1478 "autocfg", 1479 + "libm", 743 1480 ] 744 1481 745 1482 [[package]] ··· 748 1485 source = "registry+https://github.com/rust-lang/crates.io-index" 749 1486 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 750 1487 dependencies = [ 751 - "hermit-abi 0.3.2", 1488 + "hermit-abi 0.3.9", 752 1489 "libc", 753 1490 ] 754 1491 755 1492 [[package]] 756 1493 name = "oauth2" 757 - version = "4.4.1" 1494 + version = "4.4.2" 758 1495 source = "registry+https://github.com/rust-lang/crates.io-index" 759 - checksum = "09a6e2a2b13a56ebeabba9142f911745be6456163fd6c3d361274ebcd891a80c" 1496 + checksum = "c38841cdd844847e3e7c8d29cef9dcfed8877f8f56f9071f77843ecf3baf937f" 760 1497 dependencies = [ 761 1498 "base64 0.13.1", 762 1499 "chrono", ··· 774 1511 775 1512 [[package]] 776 1513 name = "object" 777 - version = "0.31.1" 1514 + version = "0.32.2" 778 1515 source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 1516 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 780 1517 dependencies = [ 781 1518 "memchr", 782 1519 ] 783 1520 784 1521 [[package]] 785 1522 name = "once_cell" 786 - version = "1.18.0" 1523 + version = "1.19.0" 787 1524 source = "registry+https://github.com/rust-lang/crates.io-index" 788 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1525 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 789 1526 790 1527 [[package]] 791 1528 name = "openidconnect" 792 - version = "2.5.1" 1529 + version = "3.5.0" 793 1530 source = "registry+https://github.com/rust-lang/crates.io-index" 794 - checksum = "98dd5b7049bac4fdd2233b8c9767d42c05da8006fdb79cc903258556d2b18009" 1531 + checksum = "f47e80a9cfae4462dd29c41e987edd228971d6565553fbc14b8a11e666d91590" 795 1532 dependencies = [ 796 1533 "base64 0.13.1", 797 1534 "chrono", 1535 + "dyn-clone", 1536 + "ed25519-dalek", 1537 + "hmac", 798 1538 "http", 799 - "itertools", 1539 + "itertools 0.10.5", 800 1540 "log", 801 - "num-bigint", 802 1541 "oauth2", 1542 + "p256", 1543 + "p384", 803 1544 "rand", 804 - "ring", 1545 + "rsa", 805 1546 "serde", 806 1547 "serde-value", 807 1548 "serde_derive", ··· 809 1550 "serde_path_to_error", 810 1551 "serde_plain", 811 1552 "serde_with", 1553 + "sha2", 812 1554 "subtle", 813 1555 "thiserror", 814 1556 "url", ··· 816 1558 817 1559 [[package]] 818 1560 name = "openssl" 819 - version = "0.10.56" 1561 + version = "0.10.64" 820 1562 source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 1563 + checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 822 1564 dependencies = [ 823 - "bitflags 1.3.2", 1565 + "bitflags 2.5.0", 824 1566 "cfg-if", 825 1567 "foreign-types", 826 1568 "libc", ··· 837 1579 dependencies = [ 838 1580 "proc-macro2", 839 1581 "quote", 840 - "syn 2.0.29", 1582 + "syn 2.0.53", 841 1583 ] 842 1584 843 1585 [[package]] ··· 848 1590 849 1591 [[package]] 850 1592 name = "openssl-sys" 851 - version = "0.9.91" 1593 + version = "0.9.101" 852 1594 source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 1595 + checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" 854 1596 dependencies = [ 855 1597 "cc", 856 1598 "libc", ··· 859 1601 ] 860 1602 861 1603 [[package]] 1604 + name = "opentelemetry" 1605 + version = "0.22.0" 1606 + source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf" 1608 + dependencies = [ 1609 + "futures-core", 1610 + "futures-sink", 1611 + "js-sys", 1612 + "once_cell", 1613 + "pin-project-lite", 1614 + "thiserror", 1615 + "urlencoding", 1616 + ] 1617 + 1618 + [[package]] 862 1619 name = "ordered-float" 863 - version = "2.10.0" 1620 + version = "2.10.1" 864 1621 source = "registry+https://github.com/rust-lang/crates.io-index" 865 - checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" 1622 + checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 866 1623 dependencies = [ 867 1624 "num-traits", 868 1625 ] 869 1626 870 1627 [[package]] 1628 + name = "overload" 1629 + version = "0.1.1" 1630 + source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1632 + 1633 + [[package]] 1634 + name = "p256" 1635 + version = "0.13.2" 1636 + source = "registry+https://github.com/rust-lang/crates.io-index" 1637 + checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 1638 + dependencies = [ 1639 + "ecdsa", 1640 + "elliptic-curve", 1641 + "primeorder", 1642 + "sha2", 1643 + ] 1644 + 1645 + [[package]] 1646 + name = "p384" 1647 + version = "0.13.0" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 1650 + dependencies = [ 1651 + "ecdsa", 1652 + "elliptic-curve", 1653 + "primeorder", 1654 + "sha2", 1655 + ] 1656 + 1657 + [[package]] 1658 + name = "parking_lot" 1659 + version = "0.12.1" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1662 + dependencies = [ 1663 + "lock_api", 1664 + "parking_lot_core", 1665 + ] 1666 + 1667 + [[package]] 1668 + name = "parking_lot_core" 1669 + version = "0.9.9" 1670 + source = "registry+https://github.com/rust-lang/crates.io-index" 1671 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 1672 + dependencies = [ 1673 + "cfg-if", 1674 + "libc", 1675 + "redox_syscall", 1676 + "smallvec", 1677 + "windows-targets 0.48.5", 1678 + ] 1679 + 1680 + [[package]] 1681 + name = "pem-rfc7468" 1682 + version = "0.7.0" 1683 + source = "registry+https://github.com/rust-lang/crates.io-index" 1684 + checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1685 + dependencies = [ 1686 + "base64ct", 1687 + ] 1688 + 1689 + [[package]] 871 1690 name = "percent-encoding" 872 - version = "2.3.0" 1691 + version = "2.3.1" 873 1692 source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1693 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1694 + 1695 + [[package]] 1696 + name = "petgraph" 1697 + version = "0.6.4" 1698 + source = "registry+https://github.com/rust-lang/crates.io-index" 1699 + checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 1700 + dependencies = [ 1701 + "fixedbitset", 1702 + "indexmap 2.2.5", 1703 + ] 1704 + 1705 + [[package]] 1706 + name = "pin-project" 1707 + version = "1.1.5" 1708 + source = "registry+https://github.com/rust-lang/crates.io-index" 1709 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 1710 + dependencies = [ 1711 + "pin-project-internal", 1712 + ] 1713 + 1714 + [[package]] 1715 + name = "pin-project-internal" 1716 + version = "1.1.5" 1717 + source = "registry+https://github.com/rust-lang/crates.io-index" 1718 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 1719 + dependencies = [ 1720 + "proc-macro2", 1721 + "quote", 1722 + "syn 2.0.53", 1723 + ] 875 1724 876 1725 [[package]] 877 1726 name = "pin-project-lite" 878 - version = "0.2.12" 1727 + version = "0.2.13" 879 1728 source = "registry+https://github.com/rust-lang/crates.io-index" 880 - checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 1729 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 881 1730 882 1731 [[package]] 883 1732 name = "pin-utils" ··· 886 1735 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 887 1736 888 1737 [[package]] 1738 + name = "pkcs1" 1739 + version = "0.7.5" 1740 + source = "registry+https://github.com/rust-lang/crates.io-index" 1741 + checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 1742 + dependencies = [ 1743 + "der", 1744 + "pkcs8", 1745 + "spki", 1746 + ] 1747 + 1748 + [[package]] 1749 + name = "pkcs8" 1750 + version = "0.10.2" 1751 + source = "registry+https://github.com/rust-lang/crates.io-index" 1752 + checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1753 + dependencies = [ 1754 + "der", 1755 + "spki", 1756 + ] 1757 + 1758 + [[package]] 889 1759 name = "pkg-config" 890 - version = "0.3.27" 1760 + version = "0.3.30" 891 1761 source = "registry+https://github.com/rust-lang/crates.io-index" 892 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1762 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1763 + 1764 + [[package]] 1765 + name = "platforms" 1766 + version = "3.3.0" 1767 + source = "registry+https://github.com/rust-lang/crates.io-index" 1768 + checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" 1769 + 1770 + [[package]] 1771 + name = "portable-atomic" 1772 + version = "1.6.0" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 1775 + 1776 + [[package]] 1777 + name = "powerfmt" 1778 + version = "0.2.0" 1779 + source = "registry+https://github.com/rust-lang/crates.io-index" 1780 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 893 1781 894 1782 [[package]] 895 1783 name = "ppv-lite86" ··· 898 1786 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 899 1787 900 1788 [[package]] 1789 + name = "predicates" 1790 + version = "3.1.0" 1791 + source = "registry+https://github.com/rust-lang/crates.io-index" 1792 + checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" 1793 + dependencies = [ 1794 + "anstyle", 1795 + "predicates-core", 1796 + ] 1797 + 1798 + [[package]] 1799 + name = "predicates-core" 1800 + version = "1.0.6" 1801 + source = "registry+https://github.com/rust-lang/crates.io-index" 1802 + checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 1803 + 1804 + [[package]] 1805 + name = "predicates-tree" 1806 + version = "1.0.9" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 1809 + dependencies = [ 1810 + "predicates-core", 1811 + "termtree", 1812 + ] 1813 + 1814 + [[package]] 1815 + name = "prettyplease" 1816 + version = "0.2.16" 1817 + source = "registry+https://github.com/rust-lang/crates.io-index" 1818 + checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" 1819 + dependencies = [ 1820 + "proc-macro2", 1821 + "syn 2.0.53", 1822 + ] 1823 + 1824 + [[package]] 1825 + name = "primeorder" 1826 + version = "0.13.6" 1827 + source = "registry+https://github.com/rust-lang/crates.io-index" 1828 + checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 1829 + dependencies = [ 1830 + "elliptic-curve", 1831 + ] 1832 + 1833 + [[package]] 901 1834 name = "proc-macro2" 902 - version = "1.0.66" 1835 + version = "1.0.79" 903 1836 source = "registry+https://github.com/rust-lang/crates.io-index" 904 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1837 + checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" 905 1838 dependencies = [ 906 1839 "unicode-ident", 907 1840 ] 908 1841 909 1842 [[package]] 1843 + name = "prometheus" 1844 + version = "0.13.3" 1845 + source = "registry+https://github.com/rust-lang/crates.io-index" 1846 + checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" 1847 + dependencies = [ 1848 + "cfg-if", 1849 + "fnv", 1850 + "lazy_static", 1851 + "memchr", 1852 + "parking_lot", 1853 + "protobuf", 1854 + "thiserror", 1855 + ] 1856 + 1857 + [[package]] 1858 + name = "prost" 1859 + version = "0.12.3" 1860 + source = "registry+https://github.com/rust-lang/crates.io-index" 1861 + checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a" 1862 + dependencies = [ 1863 + "bytes", 1864 + "prost-derive", 1865 + ] 1866 + 1867 + [[package]] 1868 + name = "prost-build" 1869 + version = "0.12.3" 1870 + source = "registry+https://github.com/rust-lang/crates.io-index" 1871 + checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2" 1872 + dependencies = [ 1873 + "bytes", 1874 + "heck 0.4.1", 1875 + "itertools 0.11.0", 1876 + "log", 1877 + "multimap", 1878 + "once_cell", 1879 + "petgraph", 1880 + "prettyplease", 1881 + "prost", 1882 + "prost-types", 1883 + "regex", 1884 + "syn 2.0.53", 1885 + "tempfile", 1886 + "which", 1887 + ] 1888 + 1889 + [[package]] 1890 + name = "prost-derive" 1891 + version = "0.12.3" 1892 + source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e" 1894 + dependencies = [ 1895 + "anyhow", 1896 + "itertools 0.11.0", 1897 + "proc-macro2", 1898 + "quote", 1899 + "syn 2.0.53", 1900 + ] 1901 + 1902 + [[package]] 1903 + name = "prost-types" 1904 + version = "0.12.3" 1905 + source = "registry+https://github.com/rust-lang/crates.io-index" 1906 + checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e" 1907 + dependencies = [ 1908 + "prost", 1909 + ] 1910 + 1911 + [[package]] 1912 + name = "prost-wkt" 1913 + version = "0.5.0" 1914 + source = "registry+https://github.com/rust-lang/crates.io-index" 1915 + checksum = "4d8ef9c3f0f1dab910d2b7e2c24a8e4322e122eba6d7a1921eeebcebbc046c40" 1916 + dependencies = [ 1917 + "chrono", 1918 + "inventory", 1919 + "prost", 1920 + "serde", 1921 + "serde_derive", 1922 + "serde_json", 1923 + "typetag", 1924 + ] 1925 + 1926 + [[package]] 1927 + name = "prost-wkt-build" 1928 + version = "0.5.0" 1929 + source = "registry+https://github.com/rust-lang/crates.io-index" 1930 + checksum = "5b31cae9a54ca84fee1504740a82eebf2479532905e106f63ca0c3bc8d780321" 1931 + dependencies = [ 1932 + "heck 0.4.1", 1933 + "prost", 1934 + "prost-build", 1935 + "prost-types", 1936 + "quote", 1937 + ] 1938 + 1939 + [[package]] 1940 + name = "prost-wkt-types" 1941 + version = "0.5.0" 1942 + source = "registry+https://github.com/rust-lang/crates.io-index" 1943 + checksum = "435be4a8704091b4c5fb1d79799de7f2dbff53af05edf29385237f8cf7ab37ee" 1944 + dependencies = [ 1945 + "chrono", 1946 + "prost", 1947 + "prost-build", 1948 + "prost-types", 1949 + "prost-wkt", 1950 + "prost-wkt-build", 1951 + "regex", 1952 + "serde", 1953 + "serde_derive", 1954 + "serde_json", 1955 + ] 1956 + 1957 + [[package]] 1958 + name = "protobuf" 1959 + version = "2.28.0" 1960 + source = "registry+https://github.com/rust-lang/crates.io-index" 1961 + checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 1962 + 1963 + [[package]] 1964 + name = "quanta" 1965 + version = "0.12.2" 1966 + source = "registry+https://github.com/rust-lang/crates.io-index" 1967 + checksum = "9ca0b7bac0b97248c40bb77288fc52029cf1459c0461ea1b05ee32ccf011de2c" 1968 + dependencies = [ 1969 + "crossbeam-utils", 1970 + "libc", 1971 + "once_cell", 1972 + "raw-cpuid", 1973 + "wasi", 1974 + "web-sys", 1975 + "winapi", 1976 + ] 1977 + 1978 + [[package]] 910 1979 name = "quote" 911 - version = "1.0.33" 1980 + version = "1.0.35" 912 1981 source = "registry+https://github.com/rust-lang/crates.io-index" 913 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 1982 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 914 1983 dependencies = [ 915 1984 "proc-macro2", 916 1985 ] ··· 946 2015 ] 947 2016 948 2017 [[package]] 2018 + name = "raw-cpuid" 2019 + version = "11.0.1" 2020 + source = "registry+https://github.com/rust-lang/crates.io-index" 2021 + checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1" 2022 + dependencies = [ 2023 + "bitflags 2.5.0", 2024 + ] 2025 + 2026 + [[package]] 949 2027 name = "redox_syscall" 950 - version = "0.3.5" 2028 + version = "0.4.1" 951 2029 source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2030 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 953 2031 dependencies = [ 954 2032 "bitflags 1.3.2", 955 2033 ] 956 2034 957 2035 [[package]] 2036 + name = "regex" 2037 + version = "1.10.3" 2038 + source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2040 + dependencies = [ 2041 + "aho-corasick", 2042 + "memchr", 2043 + "regex-automata 0.4.6", 2044 + "regex-syntax 0.8.2", 2045 + ] 2046 + 2047 + [[package]] 2048 + name = "regex-automata" 2049 + version = "0.1.10" 2050 + source = "registry+https://github.com/rust-lang/crates.io-index" 2051 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2052 + dependencies = [ 2053 + "regex-syntax 0.6.29", 2054 + ] 2055 + 2056 + [[package]] 2057 + name = "regex-automata" 2058 + version = "0.4.6" 2059 + source = "registry+https://github.com/rust-lang/crates.io-index" 2060 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 2061 + dependencies = [ 2062 + "aho-corasick", 2063 + "memchr", 2064 + "regex-syntax 0.8.2", 2065 + ] 2066 + 2067 + [[package]] 2068 + name = "regex-syntax" 2069 + version = "0.6.29" 2070 + source = "registry+https://github.com/rust-lang/crates.io-index" 2071 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2072 + 2073 + [[package]] 2074 + name = "regex-syntax" 2075 + version = "0.8.2" 2076 + source = "registry+https://github.com/rust-lang/crates.io-index" 2077 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2078 + 2079 + [[package]] 958 2080 name = "reqwest" 959 - version = "0.11.18" 2081 + version = "0.11.26" 960 2082 source = "registry+https://github.com/rust-lang/crates.io-index" 961 - checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 2083 + checksum = "78bf93c4af7a8bb7d879d51cebe797356ff10ae8516ace542b5182d9dcac10b2" 962 2084 dependencies = [ 963 - "base64 0.21.2", 2085 + "base64 0.21.7", 964 2086 "bytes", 965 2087 "encoding_rs", 966 2088 "futures-core", ··· 978 2100 "once_cell", 979 2101 "percent-encoding", 980 2102 "pin-project-lite", 2103 + "rustls-pemfile 1.0.4", 981 2104 "serde", 982 2105 "serde_json", 983 2106 "serde_urlencoded", 2107 + "sync_wrapper", 2108 + "system-configuration", 984 2109 "tokio", 985 2110 "tokio-native-tls", 986 2111 "tower-service", ··· 992 2117 ] 993 2118 994 2119 [[package]] 2120 + name = "rfc6979" 2121 + version = "0.4.0" 2122 + source = "registry+https://github.com/rust-lang/crates.io-index" 2123 + checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 2124 + dependencies = [ 2125 + "hmac", 2126 + "subtle", 2127 + ] 2128 + 2129 + [[package]] 995 2130 name = "ring" 996 - version = "0.16.20" 2131 + version = "0.17.8" 997 2132 source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2133 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 999 2134 dependencies = [ 1000 2135 "cc", 2136 + "cfg-if", 2137 + "getrandom", 1001 2138 "libc", 1002 - "once_cell", 1003 - "spin", 2139 + "spin 0.9.8", 1004 2140 "untrusted", 1005 - "web-sys", 1006 - "winapi", 2141 + "windows-sys 0.52.0", 2142 + ] 2143 + 2144 + [[package]] 2145 + name = "ringbuf" 2146 + version = "0.3.3" 2147 + source = "registry+https://github.com/rust-lang/crates.io-index" 2148 + checksum = "79abed428d1fd2a128201cec72c5f6938e2da607c6f3745f769fabea399d950a" 2149 + dependencies = [ 2150 + "crossbeam-utils", 2151 + ] 2152 + 2153 + [[package]] 2154 + name = "rsa" 2155 + version = "0.9.6" 2156 + source = "registry+https://github.com/rust-lang/crates.io-index" 2157 + checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 2158 + dependencies = [ 2159 + "const-oid", 2160 + "digest", 2161 + "num-bigint-dig", 2162 + "num-integer", 2163 + "num-traits", 2164 + "pkcs1", 2165 + "pkcs8", 2166 + "rand_core", 2167 + "signature", 2168 + "spki", 2169 + "subtle", 2170 + "zeroize", 1007 2171 ] 1008 2172 1009 2173 [[package]] ··· 1013 2177 checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1014 2178 1015 2179 [[package]] 2180 + name = "rustc_version" 2181 + version = "0.4.0" 2182 + source = "registry+https://github.com/rust-lang/crates.io-index" 2183 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2184 + dependencies = [ 2185 + "semver", 2186 + ] 2187 + 2188 + [[package]] 2189 + name = "rustfsm" 2190 + version = "0.1.0" 2191 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2192 + dependencies = [ 2193 + "rustfsm_procmacro", 2194 + "rustfsm_trait", 2195 + ] 2196 + 2197 + [[package]] 2198 + name = "rustfsm_procmacro" 2199 + version = "0.1.0" 2200 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2201 + dependencies = [ 2202 + "derive_more", 2203 + "proc-macro2", 2204 + "quote", 2205 + "rustfsm_trait", 2206 + "syn 2.0.53", 2207 + ] 2208 + 2209 + [[package]] 2210 + name = "rustfsm_trait" 2211 + version = "0.1.0" 2212 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2213 + 2214 + [[package]] 1016 2215 name = "rustix" 1017 - version = "0.38.8" 2216 + version = "0.38.31" 1018 2217 source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 2218 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 1020 2219 dependencies = [ 1021 - "bitflags 2.4.0", 2220 + "bitflags 2.5.0", 1022 2221 "errno", 1023 2222 "libc", 1024 2223 "linux-raw-sys", 1025 - "windows-sys", 2224 + "windows-sys 0.52.0", 1026 2225 ] 1027 2226 1028 2227 [[package]] 2228 + name = "rustls" 2229 + version = "0.22.2" 2230 + source = "registry+https://github.com/rust-lang/crates.io-index" 2231 + checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" 2232 + dependencies = [ 2233 + "log", 2234 + "ring", 2235 + "rustls-pki-types", 2236 + "rustls-webpki", 2237 + "subtle", 2238 + "zeroize", 2239 + ] 2240 + 2241 + [[package]] 2242 + name = "rustls-native-certs" 2243 + version = "0.7.0" 2244 + source = "registry+https://github.com/rust-lang/crates.io-index" 2245 + checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" 2246 + dependencies = [ 2247 + "openssl-probe", 2248 + "rustls-pemfile 2.1.1", 2249 + "rustls-pki-types", 2250 + "schannel", 2251 + "security-framework", 2252 + ] 2253 + 2254 + [[package]] 2255 + name = "rustls-pemfile" 2256 + version = "1.0.4" 2257 + source = "registry+https://github.com/rust-lang/crates.io-index" 2258 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2259 + dependencies = [ 2260 + "base64 0.21.7", 2261 + ] 2262 + 2263 + [[package]] 2264 + name = "rustls-pemfile" 2265 + version = "2.1.1" 2266 + source = "registry+https://github.com/rust-lang/crates.io-index" 2267 + checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab" 2268 + dependencies = [ 2269 + "base64 0.21.7", 2270 + "rustls-pki-types", 2271 + ] 2272 + 2273 + [[package]] 2274 + name = "rustls-pki-types" 2275 + version = "1.3.1" 2276 + source = "registry+https://github.com/rust-lang/crates.io-index" 2277 + checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8" 2278 + 2279 + [[package]] 2280 + name = "rustls-webpki" 2281 + version = "0.102.2" 2282 + source = "registry+https://github.com/rust-lang/crates.io-index" 2283 + checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" 2284 + dependencies = [ 2285 + "ring", 2286 + "rustls-pki-types", 2287 + "untrusted", 2288 + ] 2289 + 2290 + [[package]] 2291 + name = "rustversion" 2292 + version = "1.0.14" 2293 + source = "registry+https://github.com/rust-lang/crates.io-index" 2294 + checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2295 + 2296 + [[package]] 1029 2297 name = "ryu" 1030 - version = "1.0.15" 2298 + version = "1.0.17" 1031 2299 source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2300 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 1033 2301 1034 2302 [[package]] 1035 2303 name = "schannel" 1036 - version = "0.1.22" 2304 + version = "0.1.23" 1037 2305 source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 2306 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 1039 2307 dependencies = [ 1040 - "windows-sys", 2308 + "windows-sys 0.52.0", 2309 + ] 2310 + 2311 + [[package]] 2312 + name = "scopeguard" 2313 + version = "1.2.0" 2314 + source = "registry+https://github.com/rust-lang/crates.io-index" 2315 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2316 + 2317 + [[package]] 2318 + name = "sec1" 2319 + version = "0.7.3" 2320 + source = "registry+https://github.com/rust-lang/crates.io-index" 2321 + checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 2322 + dependencies = [ 2323 + "base16ct", 2324 + "der", 2325 + "generic-array", 2326 + "pkcs8", 2327 + "subtle", 2328 + "zeroize", 1041 2329 ] 1042 2330 1043 2331 [[package]] ··· 1064 2352 ] 1065 2353 1066 2354 [[package]] 2355 + name = "semver" 2356 + version = "1.0.22" 2357 + source = "registry+https://github.com/rust-lang/crates.io-index" 2358 + checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 2359 + 2360 + [[package]] 1067 2361 name = "serde" 1068 - version = "1.0.183" 2362 + version = "1.0.197" 1069 2363 source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 2364 + checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 1071 2365 dependencies = [ 1072 2366 "serde_derive", 1073 2367 ] ··· 1084 2378 1085 2379 [[package]] 1086 2380 name = "serde_derive" 1087 - version = "1.0.183" 2381 + version = "1.0.197" 1088 2382 source = "registry+https://github.com/rust-lang/crates.io-index" 1089 - checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 2383 + checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 1090 2384 dependencies = [ 1091 2385 "proc-macro2", 1092 2386 "quote", 1093 - "syn 2.0.29", 2387 + "syn 2.0.53", 1094 2388 ] 1095 2389 1096 2390 [[package]] 1097 2391 name = "serde_json" 1098 - version = "1.0.105" 2392 + version = "1.0.114" 1099 2393 source = "registry+https://github.com/rust-lang/crates.io-index" 1100 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 2394 + checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 1101 2395 dependencies = [ 1102 2396 "itoa", 1103 2397 "ryu", ··· 1106 2400 1107 2401 [[package]] 1108 2402 name = "serde_path_to_error" 1109 - version = "0.1.14" 2403 + version = "0.1.16" 1110 2404 source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" 2405 + checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 1112 2406 dependencies = [ 1113 2407 "itoa", 1114 2408 "serde", ··· 1116 2410 1117 2411 [[package]] 1118 2412 name = "serde_plain" 1119 - version = "1.0.1" 2413 + version = "1.0.2" 1120 2414 source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae" 2415 + checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 1122 2416 dependencies = [ 1123 2417 "serde", 1124 2418 ] ··· 1137 2431 1138 2432 [[package]] 1139 2433 name = "serde_with" 1140 - version = "1.14.0" 2434 + version = "3.7.0" 1141 2435 source = "registry+https://github.com/rust-lang/crates.io-index" 1142 - checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2436 + checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a" 1143 2437 dependencies = [ 2438 + "base64 0.21.7", 2439 + "chrono", 2440 + "hex", 2441 + "indexmap 1.9.3", 2442 + "indexmap 2.2.5", 1144 2443 "serde", 2444 + "serde_derive", 2445 + "serde_json", 1145 2446 "serde_with_macros", 2447 + "time", 1146 2448 ] 1147 2449 1148 2450 [[package]] 1149 2451 name = "serde_with_macros" 1150 - version = "1.5.2" 2452 + version = "3.7.0" 1151 2453 source = "registry+https://github.com/rust-lang/crates.io-index" 1152 - checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2454 + checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655" 1153 2455 dependencies = [ 1154 2456 "darling", 1155 2457 "proc-macro2", 1156 2458 "quote", 1157 - "syn 1.0.109", 2459 + "syn 2.0.53", 1158 2460 ] 1159 2461 1160 2462 [[package]] 1161 2463 name = "sha2" 1162 - version = "0.10.7" 2464 + version = "0.10.8" 1163 2465 source = "registry+https://github.com/rust-lang/crates.io-index" 1164 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 2466 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 1165 2467 dependencies = [ 1166 2468 "cfg-if", 1167 2469 "cpufeatures", ··· 1169 2471 ] 1170 2472 1171 2473 [[package]] 2474 + name = "sharded-slab" 2475 + version = "0.1.7" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2478 + dependencies = [ 2479 + "lazy_static", 2480 + ] 2481 + 2482 + [[package]] 2483 + name = "signal-hook-registry" 2484 + version = "1.4.1" 2485 + source = "registry+https://github.com/rust-lang/crates.io-index" 2486 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2487 + dependencies = [ 2488 + "libc", 2489 + ] 2490 + 2491 + [[package]] 2492 + name = "signature" 2493 + version = "2.2.0" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 2496 + dependencies = [ 2497 + "digest", 2498 + "rand_core", 2499 + ] 2500 + 2501 + [[package]] 2502 + name = "siphasher" 2503 + version = "1.0.1" 2504 + source = "registry+https://github.com/rust-lang/crates.io-index" 2505 + checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 2506 + 2507 + [[package]] 1172 2508 name = "slab" 1173 - version = "0.4.8" 2509 + version = "0.4.9" 1174 2510 source = "registry+https://github.com/rust-lang/crates.io-index" 1175 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2511 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1176 2512 dependencies = [ 1177 2513 "autocfg", 1178 2514 ] 1179 2515 1180 2516 [[package]] 1181 - name = "socket2" 1182 - version = "0.4.9" 2517 + name = "slotmap" 2518 + version = "1.0.7" 1183 2519 source = "registry+https://github.com/rust-lang/crates.io-index" 1184 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2520 + checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 1185 2521 dependencies = [ 1186 - "libc", 1187 - "winapi", 2522 + "version_check", 2523 + ] 2524 + 2525 + [[package]] 2526 + name = "smallvec" 2527 + version = "1.13.1" 2528 + source = "registry+https://github.com/rust-lang/crates.io-index" 2529 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2530 + 2531 + [[package]] 2532 + name = "smeeclient" 2533 + version = "0.1.0" 2534 + dependencies = [ 2535 + "cbindgen", 2536 + "serde", 2537 + "temporal-client", 2538 + "temporal-sdk", 2539 + "temporal-sdk-core-protos", 2540 + "tokio", 2541 + "url", 2542 + "uuid", 1188 2543 ] 1189 2544 1190 2545 [[package]] 1191 2546 name = "socket2" 1192 - version = "0.5.3" 2547 + version = "0.5.6" 1193 2548 source = "registry+https://github.com/rust-lang/crates.io-index" 1194 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 2549 + checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 1195 2550 dependencies = [ 1196 2551 "libc", 1197 - "windows-sys", 2552 + "windows-sys 0.52.0", 1198 2553 ] 1199 2554 1200 2555 [[package]] ··· 1204 2559 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1205 2560 1206 2561 [[package]] 2562 + name = "spin" 2563 + version = "0.9.8" 2564 + source = "registry+https://github.com/rust-lang/crates.io-index" 2565 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2566 + 2567 + [[package]] 2568 + name = "spinning_top" 2569 + version = "0.3.0" 2570 + source = "registry+https://github.com/rust-lang/crates.io-index" 2571 + checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" 2572 + dependencies = [ 2573 + "lock_api", 2574 + ] 2575 + 2576 + [[package]] 2577 + name = "spki" 2578 + version = "0.7.3" 2579 + source = "registry+https://github.com/rust-lang/crates.io-index" 2580 + checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2581 + dependencies = [ 2582 + "base64ct", 2583 + "der", 2584 + ] 2585 + 2586 + [[package]] 1207 2587 name = "strsim" 1208 2588 version = "0.8.0" 1209 2589 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1234 2614 1235 2615 [[package]] 1236 2616 name = "syn" 1237 - version = "2.0.29" 2617 + version = "2.0.53" 1238 2618 source = "registry+https://github.com/rust-lang/crates.io-index" 1239 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 2619 + checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032" 1240 2620 dependencies = [ 1241 2621 "proc-macro2", 1242 2622 "quote", ··· 1244 2624 ] 1245 2625 1246 2626 [[package]] 2627 + name = "sync_wrapper" 2628 + version = "0.1.2" 2629 + source = "registry+https://github.com/rust-lang/crates.io-index" 2630 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 2631 + 2632 + [[package]] 2633 + name = "system-configuration" 2634 + version = "0.5.1" 2635 + source = "registry+https://github.com/rust-lang/crates.io-index" 2636 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 2637 + dependencies = [ 2638 + "bitflags 1.3.2", 2639 + "core-foundation", 2640 + "system-configuration-sys", 2641 + ] 2642 + 2643 + [[package]] 2644 + name = "system-configuration-sys" 2645 + version = "0.5.0" 2646 + source = "registry+https://github.com/rust-lang/crates.io-index" 2647 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 2648 + dependencies = [ 2649 + "core-foundation-sys", 2650 + "libc", 2651 + ] 2652 + 2653 + [[package]] 1247 2654 name = "tempfile" 1248 - version = "3.7.1" 2655 + version = "3.10.1" 1249 2656 source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 2657 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 1251 2658 dependencies = [ 1252 2659 "cfg-if", 1253 2660 "fastrand", 1254 - "redox_syscall", 1255 2661 "rustix", 1256 - "windows-sys", 2662 + "windows-sys 0.52.0", 2663 + ] 2664 + 2665 + [[package]] 2666 + name = "temporal-client" 2667 + version = "0.1.0" 2668 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2669 + dependencies = [ 2670 + "anyhow", 2671 + "async-trait", 2672 + "backoff", 2673 + "derive_builder", 2674 + "derive_more", 2675 + "futures", 2676 + "futures-retry", 2677 + "http", 2678 + "once_cell", 2679 + "opentelemetry", 2680 + "parking_lot", 2681 + "prost-types", 2682 + "slotmap", 2683 + "temporal-sdk-core-api", 2684 + "temporal-sdk-core-protos", 2685 + "thiserror", 2686 + "tokio", 2687 + "tonic", 2688 + "tower", 2689 + "tracing", 2690 + "url", 2691 + "uuid", 1257 2692 ] 1258 2693 1259 2694 [[package]] 2695 + name = "temporal-sdk" 2696 + version = "0.1.0-alpha.1" 2697 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2698 + dependencies = [ 2699 + "anyhow", 2700 + "async-trait", 2701 + "base64 0.21.7", 2702 + "crossbeam-channel", 2703 + "derive_more", 2704 + "futures", 2705 + "once_cell", 2706 + "parking_lot", 2707 + "prost-wkt-types", 2708 + "serde", 2709 + "sha2", 2710 + "temporal-client", 2711 + "temporal-sdk-core", 2712 + "temporal-sdk-core-api", 2713 + "temporal-sdk-core-protos", 2714 + "thiserror", 2715 + "tokio", 2716 + "tokio-stream", 2717 + "tokio-util", 2718 + "tonic", 2719 + "tracing", 2720 + ] 2721 + 2722 + [[package]] 2723 + name = "temporal-sdk-core" 2724 + version = "0.1.0" 2725 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2726 + dependencies = [ 2727 + "anyhow", 2728 + "async-trait", 2729 + "base64 0.21.7", 2730 + "crossbeam-channel", 2731 + "crossbeam-queue", 2732 + "dashmap", 2733 + "derive_builder", 2734 + "derive_more", 2735 + "enum-iterator", 2736 + "enum_dispatch", 2737 + "futures", 2738 + "futures-util", 2739 + "governor", 2740 + "itertools 0.12.1", 2741 + "log", 2742 + "lru", 2743 + "mockall", 2744 + "once_cell", 2745 + "parking_lot", 2746 + "pin-project", 2747 + "prometheus", 2748 + "prost", 2749 + "prost-wkt-types", 2750 + "rand", 2751 + "ringbuf", 2752 + "rustfsm", 2753 + "serde", 2754 + "serde_json", 2755 + "siphasher", 2756 + "slotmap", 2757 + "temporal-client", 2758 + "temporal-sdk-core-api", 2759 + "temporal-sdk-core-protos", 2760 + "thiserror", 2761 + "tokio", 2762 + "tokio-stream", 2763 + "tokio-util", 2764 + "tonic", 2765 + "tonic-build", 2766 + "tracing", 2767 + "tracing-subscriber", 2768 + "url", 2769 + "uuid", 2770 + ] 2771 + 2772 + [[package]] 2773 + name = "temporal-sdk-core-api" 2774 + version = "0.1.0" 2775 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2776 + dependencies = [ 2777 + "async-trait", 2778 + "derive_builder", 2779 + "derive_more", 2780 + "opentelemetry", 2781 + "prost-types", 2782 + "serde_json", 2783 + "temporal-sdk-core-protos", 2784 + "thiserror", 2785 + "tonic", 2786 + "tracing-core", 2787 + "url", 2788 + ] 2789 + 2790 + [[package]] 2791 + name = "temporal-sdk-core-protos" 2792 + version = "0.1.0" 2793 + source = "git+https://github.com/temporalio/sdk-core?branch=master#4840a9c570fa3388e190e20f01f61065d0b7e965" 2794 + dependencies = [ 2795 + "anyhow", 2796 + "base64 0.21.7", 2797 + "derive_more", 2798 + "prost", 2799 + "prost-wkt", 2800 + "prost-wkt-build", 2801 + "prost-wkt-types", 2802 + "rand", 2803 + "serde", 2804 + "serde_json", 2805 + "thiserror", 2806 + "tonic", 2807 + "tonic-build", 2808 + "uuid", 2809 + ] 2810 + 2811 + [[package]] 2812 + name = "termtree" 2813 + version = "0.4.1" 2814 + source = "registry+https://github.com/rust-lang/crates.io-index" 2815 + checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 2816 + 2817 + [[package]] 1260 2818 name = "textwrap" 1261 2819 version = "0.11.0" 1262 2820 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1267 2825 1268 2826 [[package]] 1269 2827 name = "thiserror" 1270 - version = "1.0.47" 2828 + version = "1.0.58" 1271 2829 source = "registry+https://github.com/rust-lang/crates.io-index" 1272 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 2830 + checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" 1273 2831 dependencies = [ 1274 2832 "thiserror-impl", 1275 2833 ] 1276 2834 1277 2835 [[package]] 1278 2836 name = "thiserror-impl" 1279 - version = "1.0.47" 2837 + version = "1.0.58" 1280 2838 source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 2839 + checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" 1282 2840 dependencies = [ 1283 2841 "proc-macro2", 1284 2842 "quote", 1285 - "syn 2.0.29", 2843 + "syn 2.0.53", 2844 + ] 2845 + 2846 + [[package]] 2847 + name = "thread_local" 2848 + version = "1.1.8" 2849 + source = "registry+https://github.com/rust-lang/crates.io-index" 2850 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2851 + dependencies = [ 2852 + "cfg-if", 2853 + "once_cell", 1286 2854 ] 1287 2855 1288 2856 [[package]] 1289 2857 name = "time" 1290 - version = "0.3.25" 2858 + version = "0.3.34" 1291 2859 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 2860 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 1293 2861 dependencies = [ 1294 2862 "deranged", 1295 2863 "itoa", 2864 + "num-conv", 2865 + "powerfmt", 1296 2866 "serde", 1297 2867 "time-core", 1298 2868 "time-macros", ··· 1300 2870 1301 2871 [[package]] 1302 2872 name = "time-core" 1303 - version = "0.1.1" 2873 + version = "0.1.2" 1304 2874 source = "registry+https://github.com/rust-lang/crates.io-index" 1305 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 2875 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1306 2876 1307 2877 [[package]] 1308 2878 name = "time-macros" 1309 - version = "0.2.11" 2879 + version = "0.2.17" 1310 2880 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 2881 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 1312 2882 dependencies = [ 2883 + "num-conv", 1313 2884 "time-core", 1314 2885 ] 1315 2886 ··· 1330 2901 1331 2902 [[package]] 1332 2903 name = "tokio" 1333 - version = "1.32.0" 2904 + version = "1.36.0" 1334 2905 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 2906 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 1336 2907 dependencies = [ 1337 2908 "backtrace", 1338 2909 "bytes", 1339 2910 "libc", 1340 2911 "mio", 1341 2912 "num_cpus", 2913 + "parking_lot", 1342 2914 "pin-project-lite", 1343 - "socket2 0.5.3", 1344 - "windows-sys", 2915 + "signal-hook-registry", 2916 + "socket2", 2917 + "tokio-macros", 2918 + "windows-sys 0.48.0", 2919 + ] 2920 + 2921 + [[package]] 2922 + name = "tokio-io-timeout" 2923 + version = "1.2.0" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 2926 + dependencies = [ 2927 + "pin-project-lite", 2928 + "tokio", 2929 + ] 2930 + 2931 + [[package]] 2932 + name = "tokio-macros" 2933 + version = "2.2.0" 2934 + source = "registry+https://github.com/rust-lang/crates.io-index" 2935 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 2936 + dependencies = [ 2937 + "proc-macro2", 2938 + "quote", 2939 + "syn 2.0.53", 1345 2940 ] 1346 2941 1347 2942 [[package]] ··· 1355 2950 ] 1356 2951 1357 2952 [[package]] 2953 + name = "tokio-rustls" 2954 + version = "0.25.0" 2955 + source = "registry+https://github.com/rust-lang/crates.io-index" 2956 + checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 2957 + dependencies = [ 2958 + "rustls", 2959 + "rustls-pki-types", 2960 + "tokio", 2961 + ] 2962 + 2963 + [[package]] 2964 + name = "tokio-stream" 2965 + version = "0.1.15" 2966 + source = "registry+https://github.com/rust-lang/crates.io-index" 2967 + checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 2968 + dependencies = [ 2969 + "futures-core", 2970 + "pin-project-lite", 2971 + "tokio", 2972 + ] 2973 + 2974 + [[package]] 1358 2975 name = "tokio-util" 1359 - version = "0.7.8" 2976 + version = "0.7.10" 1360 2977 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 2978 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 1362 2979 dependencies = [ 1363 2980 "bytes", 1364 2981 "futures-core", ··· 1376 2993 dependencies = [ 1377 2994 "serde", 1378 2995 ] 2996 + 2997 + [[package]] 2998 + name = "tonic" 2999 + version = "0.11.0" 3000 + source = "registry+https://github.com/rust-lang/crates.io-index" 3001 + checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13" 3002 + dependencies = [ 3003 + "async-stream", 3004 + "async-trait", 3005 + "axum", 3006 + "base64 0.21.7", 3007 + "bytes", 3008 + "h2", 3009 + "http", 3010 + "http-body", 3011 + "hyper", 3012 + "hyper-timeout", 3013 + "percent-encoding", 3014 + "pin-project", 3015 + "prost", 3016 + "rustls-native-certs", 3017 + "rustls-pemfile 2.1.1", 3018 + "rustls-pki-types", 3019 + "tokio", 3020 + "tokio-rustls", 3021 + "tokio-stream", 3022 + "tower", 3023 + "tower-layer", 3024 + "tower-service", 3025 + "tracing", 3026 + ] 3027 + 3028 + [[package]] 3029 + name = "tonic-build" 3030 + version = "0.11.0" 3031 + source = "registry+https://github.com/rust-lang/crates.io-index" 3032 + checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2" 3033 + dependencies = [ 3034 + "prettyplease", 3035 + "proc-macro2", 3036 + "prost-build", 3037 + "quote", 3038 + "syn 2.0.53", 3039 + ] 3040 + 3041 + [[package]] 3042 + name = "tower" 3043 + version = "0.4.13" 3044 + source = "registry+https://github.com/rust-lang/crates.io-index" 3045 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 3046 + dependencies = [ 3047 + "futures-core", 3048 + "futures-util", 3049 + "indexmap 1.9.3", 3050 + "pin-project", 3051 + "pin-project-lite", 3052 + "rand", 3053 + "slab", 3054 + "tokio", 3055 + "tokio-util", 3056 + "tower-layer", 3057 + "tower-service", 3058 + "tracing", 3059 + ] 3060 + 3061 + [[package]] 3062 + name = "tower-layer" 3063 + version = "0.3.2" 3064 + source = "registry+https://github.com/rust-lang/crates.io-index" 3065 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 1379 3066 1380 3067 [[package]] 1381 3068 name = "tower-service" ··· 1385 3072 1386 3073 [[package]] 1387 3074 name = "tracing" 1388 - version = "0.1.37" 3075 + version = "0.1.40" 1389 3076 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 3077 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1391 3078 dependencies = [ 1392 - "cfg-if", 3079 + "log", 1393 3080 "pin-project-lite", 3081 + "tracing-attributes", 1394 3082 "tracing-core", 1395 3083 ] 1396 3084 1397 3085 [[package]] 3086 + name = "tracing-attributes" 3087 + version = "0.1.27" 3088 + source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3090 + dependencies = [ 3091 + "proc-macro2", 3092 + "quote", 3093 + "syn 2.0.53", 3094 + ] 3095 + 3096 + [[package]] 1398 3097 name = "tracing-core" 1399 - version = "0.1.31" 3098 + version = "0.1.32" 1400 3099 source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 3100 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3101 + dependencies = [ 3102 + "once_cell", 3103 + "valuable", 3104 + ] 3105 + 3106 + [[package]] 3107 + name = "tracing-log" 3108 + version = "0.2.0" 3109 + source = "registry+https://github.com/rust-lang/crates.io-index" 3110 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1402 3111 dependencies = [ 3112 + "log", 1403 3113 "once_cell", 3114 + "tracing-core", 3115 + ] 3116 + 3117 + [[package]] 3118 + name = "tracing-subscriber" 3119 + version = "0.3.18" 3120 + source = "registry+https://github.com/rust-lang/crates.io-index" 3121 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 3122 + dependencies = [ 3123 + "matchers", 3124 + "nu-ansi-term", 3125 + "once_cell", 3126 + "parking_lot", 3127 + "regex", 3128 + "sharded-slab", 3129 + "smallvec", 3130 + "thread_local", 3131 + "tracing", 3132 + "tracing-core", 3133 + "tracing-log", 1404 3134 ] 1405 3135 1406 3136 [[package]] 1407 3137 name = "try-lock" 1408 - version = "0.2.4" 3138 + version = "0.2.5" 1409 3139 source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 3140 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1411 3141 1412 3142 [[package]] 1413 3143 name = "typenum" 1414 - version = "1.16.0" 3144 + version = "1.17.0" 1415 3145 source = "registry+https://github.com/rust-lang/crates.io-index" 1416 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3146 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3147 + 3148 + [[package]] 3149 + name = "typetag" 3150 + version = "0.2.16" 3151 + source = "registry+https://github.com/rust-lang/crates.io-index" 3152 + checksum = "661d18414ec032a49ece2d56eee03636e43c4e8d577047ab334c0ba892e29aaf" 3153 + dependencies = [ 3154 + "erased-serde", 3155 + "inventory", 3156 + "once_cell", 3157 + "serde", 3158 + "typetag-impl", 3159 + ] 3160 + 3161 + [[package]] 3162 + name = "typetag-impl" 3163 + version = "0.2.16" 3164 + source = "registry+https://github.com/rust-lang/crates.io-index" 3165 + checksum = "ac73887f47b9312552aa90ef477927ff014d63d1920ca8037c6c1951eab64bb1" 3166 + dependencies = [ 3167 + "proc-macro2", 3168 + "quote", 3169 + "syn 2.0.53", 3170 + ] 1417 3171 1418 3172 [[package]] 1419 3173 name = "unicode-bidi" 1420 - version = "0.3.13" 3174 + version = "0.3.15" 1421 3175 source = "registry+https://github.com/rust-lang/crates.io-index" 1422 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 3176 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 1423 3177 1424 3178 [[package]] 1425 3179 name = "unicode-ident" 1426 - version = "1.0.11" 3180 + version = "1.0.12" 1427 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 1428 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 3182 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1429 3183 1430 3184 [[package]] 1431 3185 name = "unicode-normalization" 1432 - version = "0.1.22" 3186 + version = "0.1.23" 1433 3187 source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3188 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 1435 3189 dependencies = [ 1436 3190 "tinyvec", 1437 3191 ] 1438 3192 1439 3193 [[package]] 1440 3194 name = "unicode-segmentation" 1441 - version = "1.10.1" 3195 + version = "1.11.0" 1442 3196 source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3197 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 1444 3198 1445 3199 [[package]] 1446 3200 name = "unicode-width" 1447 - version = "0.1.10" 3201 + version = "0.1.11" 1448 3202 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3203 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 1450 3204 1451 3205 [[package]] 1452 3206 name = "untrusted" 1453 - version = "0.7.1" 3207 + version = "0.9.0" 1454 3208 source = "registry+https://github.com/rust-lang/crates.io-index" 1455 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 3209 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1456 3210 1457 3211 [[package]] 1458 3212 name = "url" 1459 - version = "2.4.0" 3213 + version = "2.5.0" 1460 3214 source = "registry+https://github.com/rust-lang/crates.io-index" 1461 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 3215 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 1462 3216 dependencies = [ 1463 3217 "form_urlencoded", 1464 3218 "idna", ··· 1467 3221 ] 1468 3222 1469 3223 [[package]] 3224 + name = "urlencoding" 3225 + version = "2.1.3" 3226 + source = "registry+https://github.com/rust-lang/crates.io-index" 3227 + checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 3228 + 3229 + [[package]] 3230 + name = "uuid" 3231 + version = "1.8.0" 3232 + source = "registry+https://github.com/rust-lang/crates.io-index" 3233 + checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 3234 + dependencies = [ 3235 + "getrandom", 3236 + ] 3237 + 3238 + [[package]] 3239 + name = "valuable" 3240 + version = "0.1.0" 3241 + source = "registry+https://github.com/rust-lang/crates.io-index" 3242 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3243 + 3244 + [[package]] 1470 3245 name = "vcpkg" 1471 3246 version = "0.2.15" 1472 3247 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1501 3276 1502 3277 [[package]] 1503 3278 name = "wasm-bindgen" 1504 - version = "0.2.87" 3279 + version = "0.2.92" 1505 3280 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 3281 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 1507 3282 dependencies = [ 1508 3283 "cfg-if", 1509 3284 "wasm-bindgen-macro", ··· 1511 3286 1512 3287 [[package]] 1513 3288 name = "wasm-bindgen-backend" 1514 - version = "0.2.87" 3289 + version = "0.2.92" 1515 3290 source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 3291 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 1517 3292 dependencies = [ 1518 3293 "bumpalo", 1519 3294 "log", 1520 3295 "once_cell", 1521 3296 "proc-macro2", 1522 3297 "quote", 1523 - "syn 2.0.29", 3298 + "syn 2.0.53", 1524 3299 "wasm-bindgen-shared", 1525 3300 ] 1526 3301 1527 3302 [[package]] 1528 3303 name = "wasm-bindgen-futures" 1529 - version = "0.4.37" 3304 + version = "0.4.42" 1530 3305 source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 3306 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 1532 3307 dependencies = [ 1533 3308 "cfg-if", 1534 3309 "js-sys", ··· 1538 3313 1539 3314 [[package]] 1540 3315 name = "wasm-bindgen-macro" 1541 - version = "0.2.87" 3316 + version = "0.2.92" 1542 3317 source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 3318 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 1544 3319 dependencies = [ 1545 3320 "quote", 1546 3321 "wasm-bindgen-macro-support", ··· 1548 3323 1549 3324 [[package]] 1550 3325 name = "wasm-bindgen-macro-support" 1551 - version = "0.2.87" 3326 + version = "0.2.92" 1552 3327 source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 3328 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 1554 3329 dependencies = [ 1555 3330 "proc-macro2", 1556 3331 "quote", 1557 - "syn 2.0.29", 3332 + "syn 2.0.53", 1558 3333 "wasm-bindgen-backend", 1559 3334 "wasm-bindgen-shared", 1560 3335 ] 1561 3336 1562 3337 [[package]] 1563 3338 name = "wasm-bindgen-shared" 1564 - version = "0.2.87" 3339 + version = "0.2.92" 1565 3340 source = "registry+https://github.com/rust-lang/crates.io-index" 1566 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 3341 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 1567 3342 1568 3343 [[package]] 1569 3344 name = "web-sys" 1570 - version = "0.3.64" 3345 + version = "0.3.69" 1571 3346 source = "registry+https://github.com/rust-lang/crates.io-index" 1572 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 3347 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 1573 3348 dependencies = [ 1574 3349 "js-sys", 1575 3350 "wasm-bindgen", 1576 3351 ] 1577 3352 1578 3353 [[package]] 3354 + name = "which" 3355 + version = "4.4.2" 3356 + source = "registry+https://github.com/rust-lang/crates.io-index" 3357 + checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 3358 + dependencies = [ 3359 + "either", 3360 + "home", 3361 + "once_cell", 3362 + "rustix", 3363 + ] 3364 + 3365 + [[package]] 1579 3366 name = "winapi" 1580 3367 version = "0.3.9" 1581 3368 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1598 3385 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1599 3386 1600 3387 [[package]] 1601 - name = "windows" 1602 - version = "0.48.0" 3388 + name = "windows-core" 3389 + version = "0.52.0" 1603 3390 source = "registry+https://github.com/rust-lang/crates.io-index" 1604 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 3391 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 1605 3392 dependencies = [ 1606 - "windows-targets", 3393 + "windows-targets 0.52.4", 1607 3394 ] 1608 3395 1609 3396 [[package]] ··· 1612 3399 source = "registry+https://github.com/rust-lang/crates.io-index" 1613 3400 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1614 3401 dependencies = [ 1615 - "windows-targets", 3402 + "windows-targets 0.48.5", 3403 + ] 3404 + 3405 + [[package]] 3406 + name = "windows-sys" 3407 + version = "0.52.0" 3408 + source = "registry+https://github.com/rust-lang/crates.io-index" 3409 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3410 + dependencies = [ 3411 + "windows-targets 0.52.4", 1616 3412 ] 1617 3413 1618 3414 [[package]] ··· 1621 3417 source = "registry+https://github.com/rust-lang/crates.io-index" 1622 3418 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1623 3419 dependencies = [ 1624 - "windows_aarch64_gnullvm", 1625 - "windows_aarch64_msvc", 1626 - "windows_i686_gnu", 1627 - "windows_i686_msvc", 1628 - "windows_x86_64_gnu", 1629 - "windows_x86_64_gnullvm", 1630 - "windows_x86_64_msvc", 3420 + "windows_aarch64_gnullvm 0.48.5", 3421 + "windows_aarch64_msvc 0.48.5", 3422 + "windows_i686_gnu 0.48.5", 3423 + "windows_i686_msvc 0.48.5", 3424 + "windows_x86_64_gnu 0.48.5", 3425 + "windows_x86_64_gnullvm 0.48.5", 3426 + "windows_x86_64_msvc 0.48.5", 3427 + ] 3428 + 3429 + [[package]] 3430 + name = "windows-targets" 3431 + version = "0.52.4" 3432 + source = "registry+https://github.com/rust-lang/crates.io-index" 3433 + checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 3434 + dependencies = [ 3435 + "windows_aarch64_gnullvm 0.52.4", 3436 + "windows_aarch64_msvc 0.52.4", 3437 + "windows_i686_gnu 0.52.4", 3438 + "windows_i686_msvc 0.52.4", 3439 + "windows_x86_64_gnu 0.52.4", 3440 + "windows_x86_64_gnullvm 0.52.4", 3441 + "windows_x86_64_msvc 0.52.4", 1631 3442 ] 1632 3443 1633 3444 [[package]] ··· 1637 3448 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1638 3449 1639 3450 [[package]] 3451 + name = "windows_aarch64_gnullvm" 3452 + version = "0.52.4" 3453 + source = "registry+https://github.com/rust-lang/crates.io-index" 3454 + checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 3455 + 3456 + [[package]] 1640 3457 name = "windows_aarch64_msvc" 1641 3458 version = "0.48.5" 1642 3459 source = "registry+https://github.com/rust-lang/crates.io-index" 1643 3460 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3461 + 3462 + [[package]] 3463 + name = "windows_aarch64_msvc" 3464 + version = "0.52.4" 3465 + source = "registry+https://github.com/rust-lang/crates.io-index" 3466 + checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 1644 3467 1645 3468 [[package]] 1646 3469 name = "windows_i686_gnu" ··· 1649 3472 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1650 3473 1651 3474 [[package]] 3475 + name = "windows_i686_gnu" 3476 + version = "0.52.4" 3477 + source = "registry+https://github.com/rust-lang/crates.io-index" 3478 + checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 3479 + 3480 + [[package]] 1652 3481 name = "windows_i686_msvc" 1653 3482 version = "0.48.5" 1654 3483 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 3484 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1656 3485 1657 3486 [[package]] 3487 + name = "windows_i686_msvc" 3488 + version = "0.52.4" 3489 + source = "registry+https://github.com/rust-lang/crates.io-index" 3490 + checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 3491 + 3492 + [[package]] 1658 3493 name = "windows_x86_64_gnu" 1659 3494 version = "0.48.5" 1660 3495 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 3496 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1662 3497 1663 3498 [[package]] 3499 + name = "windows_x86_64_gnu" 3500 + version = "0.52.4" 3501 + source = "registry+https://github.com/rust-lang/crates.io-index" 3502 + checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 3503 + 3504 + [[package]] 1664 3505 name = "windows_x86_64_gnullvm" 1665 3506 version = "0.48.5" 1666 3507 source = "registry+https://github.com/rust-lang/crates.io-index" 1667 3508 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1668 3509 1669 3510 [[package]] 3511 + name = "windows_x86_64_gnullvm" 3512 + version = "0.52.4" 3513 + source = "registry+https://github.com/rust-lang/crates.io-index" 3514 + checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 3515 + 3516 + [[package]] 1670 3517 name = "windows_x86_64_msvc" 1671 3518 version = "0.48.5" 1672 3519 source = "registry+https://github.com/rust-lang/crates.io-index" 1673 3520 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1674 3521 1675 3522 [[package]] 3523 + name = "windows_x86_64_msvc" 3524 + version = "0.52.4" 3525 + source = "registry+https://github.com/rust-lang/crates.io-index" 3526 + checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 3527 + 3528 + [[package]] 1676 3529 name = "winreg" 1677 - version = "0.10.1" 3530 + version = "0.50.0" 3531 + source = "registry+https://github.com/rust-lang/crates.io-index" 3532 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 3533 + dependencies = [ 3534 + "cfg-if", 3535 + "windows-sys 0.48.0", 3536 + ] 3537 + 3538 + [[package]] 3539 + name = "zerocopy" 3540 + version = "0.7.32" 3541 + source = "registry+https://github.com/rust-lang/crates.io-index" 3542 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 3543 + dependencies = [ 3544 + "zerocopy-derive", 3545 + ] 3546 + 3547 + [[package]] 3548 + name = "zerocopy-derive" 3549 + version = "0.7.32" 1678 3550 source = "registry+https://github.com/rust-lang/crates.io-index" 1679 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3551 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 1680 3552 dependencies = [ 1681 - "winapi", 3553 + "proc-macro2", 3554 + "quote", 3555 + "syn 2.0.53", 1682 3556 ] 1683 3557 1684 3558 [[package]] 1685 3559 name = "zeroidc" 1686 3560 version = "0.1.0" 1687 3561 dependencies = [ 1688 - "base64 0.21.2", 3562 + "base64 0.21.7", 1689 3563 "bytes", 1690 3564 "cbindgen", 1691 3565 "jwt", ··· 1697 3571 "tokio", 1698 3572 "url", 1699 3573 ] 3574 + 3575 + [[package]] 3576 + name = "zeroize" 3577 + version = "1.7.0" 3578 + source = "registry+https://github.com/rust-lang/crates.io-index" 3579 + checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
+5 -4
pkgs/tools/networking/zerotierone/default.nix
··· 14 14 15 15 let 16 16 pname = "zerotierone"; 17 - version = "1.12.2"; 17 + version = "1.14.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "zerotier"; 21 21 repo = "ZeroTierOne"; 22 22 rev = version; 23 - sha256 = "sha256-p0zrYgbHTLefj5GTrMnYLytCXZ/nRuqTL+6dEeC+uVw="; 23 + sha256 = "sha256-YWcqALUB3ZEukL4er2FKcyNdEbuaf//QU5hRbKAfxDA="; 24 24 }; 25 25 26 26 in stdenv.mkDerivation { ··· 30 30 lockFile = ./Cargo.lock; 31 31 outputHashes = { 32 32 "jwt-0.16.0" = "sha256-P5aJnNlcLe9sBtXZzfqHdRvxNfm6DPBcfcKOVeLZxcM="; 33 + "rustfsm-0.1.0" = "sha256-q7J9QgN67iuoNhQC8SDVzUkjCNRXGiNCkE8OsQc5+oI="; 33 34 }; 34 35 }; 35 36 postPatch = "cp ${./Cargo.lock} Cargo.lock"; 36 37 37 38 preConfigure = '' 38 - cmp ./Cargo.lock ./zeroidc/Cargo.lock || { 39 - echo 1>&2 "Please make sure that the derivation's Cargo.lock is identical to ./zeroidc/Cargo.lock!" 39 + cmp ./Cargo.lock ./rustybits/Cargo.lock || { 40 + echo 1>&2 "Please make sure that the derivation's Cargo.lock is identical to ./rustybits/Cargo.lock!" 40 41 exit 1 41 42 } 42 43
+1 -1
pkgs/tools/networking/zerotierone/update.sh
··· 3 3 4 4 version=$(curl --silent "https://api.github.com/repos/zerotier/ZeroTierOne/releases" | jq '.[0].tag_name' --raw-output) 5 5 6 - curl --silent "https://raw.githubusercontent.com/zerotier/ZeroTierOne/$version/zeroidc/Cargo.lock" > "$(dirname "$0")/Cargo.lock" 6 + curl --silent "https://raw.githubusercontent.com/zerotier/ZeroTierOne/$version/rustybits/Cargo.lock" > "$(dirname "$0")/Cargo.lock" 7 7 update-source-version zerotierone "$version"