diff options
| -rw-r--r-- | Cargo.lock | 495 | ||||
| -rw-r--r-- | src/git.rs | 4 | ||||
| -rw-r--r-- | tests/send.rs | 4 |
3 files changed, 268 insertions, 235 deletions
| @@ -41,9 +41,9 @@ dependencies = [ | |||
| 41 | 41 | ||
| 42 | [[package]] | 42 | [[package]] |
| 43 | name = "aes" | 43 | name = "aes" |
| 44 | version = "0.8.3" | 44 | version = "0.8.4" |
| 45 | source = "registry+https://github.com/rust-lang/crates.io-index" | 45 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 46 | checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" | 46 | checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" |
| 47 | dependencies = [ | 47 | dependencies = [ |
| 48 | "cfg-if", | 48 | "cfg-if", |
| 49 | "cipher 0.4.4", | 49 | "cipher 0.4.4", |
| @@ -52,18 +52,18 @@ dependencies = [ | |||
| 52 | 52 | ||
| 53 | [[package]] | 53 | [[package]] |
| 54 | name = "aho-corasick" | 54 | name = "aho-corasick" |
| 55 | version = "1.1.2" | 55 | version = "1.1.3" |
| 56 | source = "registry+https://github.com/rust-lang/crates.io-index" | 56 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 57 | checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" | 57 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" |
| 58 | dependencies = [ | 58 | dependencies = [ |
| 59 | "memchr", | 59 | "memchr", |
| 60 | ] | 60 | ] |
| 61 | 61 | ||
| 62 | [[package]] | 62 | [[package]] |
| 63 | name = "anstream" | 63 | name = "anstream" |
| 64 | version = "0.6.11" | 64 | version = "0.6.13" |
| 65 | source = "registry+https://github.com/rust-lang/crates.io-index" | 65 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 66 | checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" | 66 | checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" |
| 67 | dependencies = [ | 67 | dependencies = [ |
| 68 | "anstyle", | 68 | "anstyle", |
| 69 | "anstyle-parse", | 69 | "anstyle-parse", |
| @@ -75,9 +75,9 @@ dependencies = [ | |||
| 75 | 75 | ||
| 76 | [[package]] | 76 | [[package]] |
| 77 | name = "anstyle" | 77 | name = "anstyle" |
| 78 | version = "1.0.5" | 78 | version = "1.0.6" |
| 79 | source = "registry+https://github.com/rust-lang/crates.io-index" | 79 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 80 | checksum = "2faccea4cc4ab4a667ce676a30e8ec13922a692c99bb8f5b11f1502c72e04220" | 80 | checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" |
| 81 | 81 | ||
| 82 | [[package]] | 82 | [[package]] |
| 83 | name = "anstyle-parse" | 83 | name = "anstyle-parse" |
| @@ -109,15 +109,15 @@ dependencies = [ | |||
| 109 | 109 | ||
| 110 | [[package]] | 110 | [[package]] |
| 111 | name = "anyhow" | 111 | name = "anyhow" |
| 112 | version = "1.0.79" | 112 | version = "1.0.81" |
| 113 | source = "registry+https://github.com/rust-lang/crates.io-index" | 113 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 114 | checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" | 114 | checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" |
| 115 | 115 | ||
| 116 | [[package]] | 116 | [[package]] |
| 117 | name = "assert_cmd" | 117 | name = "assert_cmd" |
| 118 | version = "2.0.13" | 118 | version = "2.0.14" |
| 119 | source = "registry+https://github.com/rust-lang/crates.io-index" | 119 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 120 | checksum = "00ad3f3a942eee60335ab4342358c161ee296829e0d16ff42fc1d6cb07815467" | 120 | checksum = "ed72493ac66d5804837f480ab3766c72bdfab91a65e565fc54fa9e42db0073a8" |
| 121 | dependencies = [ | 121 | dependencies = [ |
| 122 | "anstyle", | 122 | "anstyle", |
| 123 | "bstr", | 123 | "bstr", |
| @@ -140,13 +140,13 @@ dependencies = [ | |||
| 140 | 140 | ||
| 141 | [[package]] | 141 | [[package]] |
| 142 | name = "async-channel" | 142 | name = "async-channel" |
| 143 | version = "2.1.1" | 143 | version = "2.2.0" |
| 144 | source = "registry+https://github.com/rust-lang/crates.io-index" | 144 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 145 | checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" | 145 | checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" |
| 146 | dependencies = [ | 146 | dependencies = [ |
| 147 | "concurrent-queue", | 147 | "concurrent-queue", |
| 148 | "event-listener 4.0.3", | 148 | "event-listener 5.2.0", |
| 149 | "event-listener-strategy", | 149 | "event-listener-strategy 0.5.0", |
| 150 | "futures-core", | 150 | "futures-core", |
| 151 | "pin-project-lite", | 151 | "pin-project-lite", |
| 152 | ] | 152 | ] |
| @@ -161,7 +161,7 @@ dependencies = [ | |||
| 161 | "async-task", | 161 | "async-task", |
| 162 | "concurrent-queue", | 162 | "concurrent-queue", |
| 163 | "fastrand 2.0.1", | 163 | "fastrand 2.0.1", |
| 164 | "futures-lite 2.2.0", | 164 | "futures-lite 2.3.0", |
| 165 | "slab", | 165 | "slab", |
| 166 | ] | 166 | ] |
| 167 | 167 | ||
| @@ -199,18 +199,18 @@ dependencies = [ | |||
| 199 | 199 | ||
| 200 | [[package]] | 200 | [[package]] |
| 201 | name = "async-io" | 201 | name = "async-io" |
| 202 | version = "2.3.1" | 202 | version = "2.3.2" |
| 203 | source = "registry+https://github.com/rust-lang/crates.io-index" | 203 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 204 | checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" | 204 | checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" |
| 205 | dependencies = [ | 205 | dependencies = [ |
| 206 | "async-lock 3.3.0", | 206 | "async-lock 3.3.0", |
| 207 | "cfg-if", | 207 | "cfg-if", |
| 208 | "concurrent-queue", | 208 | "concurrent-queue", |
| 209 | "futures-io", | 209 | "futures-io", |
| 210 | "futures-lite 2.2.0", | 210 | "futures-lite 2.3.0", |
| 211 | "parking", | 211 | "parking", |
| 212 | "polling 3.3.2", | 212 | "polling 3.5.0", |
| 213 | "rustix 0.38.30", | 213 | "rustix 0.38.32", |
| 214 | "slab", | 214 | "slab", |
| 215 | "tracing", | 215 | "tracing", |
| 216 | "windows-sys 0.52.0", | 216 | "windows-sys 0.52.0", |
| @@ -232,7 +232,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 232 | checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" | 232 | checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" |
| 233 | dependencies = [ | 233 | dependencies = [ |
| 234 | "event-listener 4.0.3", | 234 | "event-listener 4.0.3", |
| 235 | "event-listener-strategy", | 235 | "event-listener-strategy 0.4.0", |
| 236 | "pin-project-lite", | 236 | "pin-project-lite", |
| 237 | ] | 237 | ] |
| 238 | 238 | ||
| @@ -249,19 +249,19 @@ dependencies = [ | |||
| 249 | "cfg-if", | 249 | "cfg-if", |
| 250 | "event-listener 3.1.0", | 250 | "event-listener 3.1.0", |
| 251 | "futures-lite 1.13.0", | 251 | "futures-lite 1.13.0", |
| 252 | "rustix 0.38.30", | 252 | "rustix 0.38.32", |
| 253 | "windows-sys 0.48.0", | 253 | "windows-sys 0.48.0", |
| 254 | ] | 254 | ] |
| 255 | 255 | ||
| 256 | [[package]] | 256 | [[package]] |
| 257 | name = "async-recursion" | 257 | name = "async-recursion" |
| 258 | version = "1.0.5" | 258 | version = "1.1.0" |
| 259 | source = "registry+https://github.com/rust-lang/crates.io-index" | 259 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 260 | checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" | 260 | checksum = "30c5ef0ede93efbf733c1a727f3b6b5a1060bbedd5600183e66f6e4be4af0ec5" |
| 261 | dependencies = [ | 261 | dependencies = [ |
| 262 | "proc-macro2", | 262 | "proc-macro2", |
| 263 | "quote", | 263 | "quote", |
| 264 | "syn 2.0.48", | 264 | "syn 2.0.53", |
| 265 | ] | 265 | ] |
| 266 | 266 | ||
| 267 | [[package]] | 267 | [[package]] |
| @@ -270,13 +270,13 @@ version = "0.2.5" | |||
| 270 | source = "registry+https://github.com/rust-lang/crates.io-index" | 270 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 271 | checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" | 271 | checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" |
| 272 | dependencies = [ | 272 | dependencies = [ |
| 273 | "async-io 2.3.1", | 273 | "async-io 2.3.2", |
| 274 | "async-lock 2.8.0", | 274 | "async-lock 2.8.0", |
| 275 | "atomic-waker", | 275 | "atomic-waker", |
| 276 | "cfg-if", | 276 | "cfg-if", |
| 277 | "futures-core", | 277 | "futures-core", |
| 278 | "futures-io", | 278 | "futures-io", |
| 279 | "rustix 0.38.30", | 279 | "rustix 0.38.32", |
| 280 | "signal-hook-registry", | 280 | "signal-hook-registry", |
| 281 | "slab", | 281 | "slab", |
| 282 | "windows-sys 0.48.0", | 282 | "windows-sys 0.48.0", |
| @@ -290,13 +290,13 @@ checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" | |||
| 290 | 290 | ||
| 291 | [[package]] | 291 | [[package]] |
| 292 | name = "async-trait" | 292 | name = "async-trait" |
| 293 | version = "0.1.77" | 293 | version = "0.1.78" |
| 294 | source = "registry+https://github.com/rust-lang/crates.io-index" | 294 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 295 | checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" | 295 | checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85" |
| 296 | dependencies = [ | 296 | dependencies = [ |
| 297 | "proc-macro2", | 297 | "proc-macro2", |
| 298 | "quote", | 298 | "quote", |
| 299 | "syn 2.0.48", | 299 | "syn 2.0.53", |
| 300 | ] | 300 | ] |
| 301 | 301 | ||
| 302 | [[package]] | 302 | [[package]] |
| @@ -354,9 +354,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" | |||
| 354 | 354 | ||
| 355 | [[package]] | 355 | [[package]] |
| 356 | name = "backtrace" | 356 | name = "backtrace" |
| 357 | version = "0.3.69" | 357 | version = "0.3.70" |
| 358 | source = "registry+https://github.com/rust-lang/crates.io-index" | 358 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 359 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" | 359 | checksum = "95d8e92cac0961e91dbd517496b00f7e9b92363dbe6d42c3198268323798860c" |
| 360 | dependencies = [ | 360 | dependencies = [ |
| 361 | "addr2line", | 361 | "addr2line", |
| 362 | "cc", | 362 | "cc", |
| @@ -440,9 +440,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | |||
| 440 | 440 | ||
| 441 | [[package]] | 441 | [[package]] |
| 442 | name = "bitflags" | 442 | name = "bitflags" |
| 443 | version = "2.4.2" | 443 | version = "2.5.0" |
| 444 | source = "registry+https://github.com/rust-lang/crates.io-index" | 444 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 445 | checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" | 445 | checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" |
| 446 | 446 | ||
| 447 | [[package]] | 447 | [[package]] |
| 448 | name = "block-buffer" | 448 | name = "block-buffer" |
| @@ -489,16 +489,16 @@ dependencies = [ | |||
| 489 | "async-task", | 489 | "async-task", |
| 490 | "fastrand 2.0.1", | 490 | "fastrand 2.0.1", |
| 491 | "futures-io", | 491 | "futures-io", |
| 492 | "futures-lite 2.2.0", | 492 | "futures-lite 2.3.0", |
| 493 | "piper", | 493 | "piper", |
| 494 | "tracing", | 494 | "tracing", |
| 495 | ] | 495 | ] |
| 496 | 496 | ||
| 497 | [[package]] | 497 | [[package]] |
| 498 | name = "bstr" | 498 | name = "bstr" |
| 499 | version = "1.9.0" | 499 | version = "1.9.1" |
| 500 | source = "registry+https://github.com/rust-lang/crates.io-index" | 500 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 501 | checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" | 501 | checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" |
| 502 | dependencies = [ | 502 | dependencies = [ |
| 503 | "memchr", | 503 | "memchr", |
| 504 | "regex-automata", | 504 | "regex-automata", |
| @@ -507,9 +507,9 @@ dependencies = [ | |||
| 507 | 507 | ||
| 508 | [[package]] | 508 | [[package]] |
| 509 | name = "bumpalo" | 509 | name = "bumpalo" |
| 510 | version = "3.14.0" | 510 | version = "3.15.4" |
| 511 | source = "registry+https://github.com/rust-lang/crates.io-index" | 511 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 512 | checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" | 512 | checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" |
| 513 | 513 | ||
| 514 | [[package]] | 514 | [[package]] |
| 515 | name = "byteorder" | 515 | name = "byteorder" |
| @@ -534,9 +534,9 @@ dependencies = [ | |||
| 534 | 534 | ||
| 535 | [[package]] | 535 | [[package]] |
| 536 | name = "cc" | 536 | name = "cc" |
| 537 | version = "1.0.83" | 537 | version = "1.0.90" |
| 538 | source = "registry+https://github.com/rust-lang/crates.io-index" | 538 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 539 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" | 539 | checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" |
| 540 | dependencies = [ | 540 | dependencies = [ |
| 541 | "jobserver", | 541 | "jobserver", |
| 542 | "libc", | 542 | "libc", |
| @@ -594,9 +594,9 @@ dependencies = [ | |||
| 594 | 594 | ||
| 595 | [[package]] | 595 | [[package]] |
| 596 | name = "clap" | 596 | name = "clap" |
| 597 | version = "4.4.18" | 597 | version = "4.5.3" |
| 598 | source = "registry+https://github.com/rust-lang/crates.io-index" | 598 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 599 | checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" | 599 | checksum = "949626d00e063efc93b6dca932419ceb5432f99769911c0b995f7e884c778813" |
| 600 | dependencies = [ | 600 | dependencies = [ |
| 601 | "clap_builder", | 601 | "clap_builder", |
| 602 | "clap_derive", | 602 | "clap_derive", |
| @@ -604,9 +604,9 @@ dependencies = [ | |||
| 604 | 604 | ||
| 605 | [[package]] | 605 | [[package]] |
| 606 | name = "clap_builder" | 606 | name = "clap_builder" |
| 607 | version = "4.4.18" | 607 | version = "4.5.2" |
| 608 | source = "registry+https://github.com/rust-lang/crates.io-index" | 608 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 609 | checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" | 609 | checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" |
| 610 | dependencies = [ | 610 | dependencies = [ |
| 611 | "anstream", | 611 | "anstream", |
| 612 | "anstyle", | 612 | "anstyle", |
| @@ -616,21 +616,21 @@ dependencies = [ | |||
| 616 | 616 | ||
| 617 | [[package]] | 617 | [[package]] |
| 618 | name = "clap_derive" | 618 | name = "clap_derive" |
| 619 | version = "4.4.7" | 619 | version = "4.5.3" |
| 620 | source = "registry+https://github.com/rust-lang/crates.io-index" | 620 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 621 | checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" | 621 | checksum = "90239a040c80f5e14809ca132ddc4176ab33d5e17e49691793296e3fcb34d72f" |
| 622 | dependencies = [ | 622 | dependencies = [ |
| 623 | "heck", | 623 | "heck 0.5.0", |
| 624 | "proc-macro2", | 624 | "proc-macro2", |
| 625 | "quote", | 625 | "quote", |
| 626 | "syn 2.0.48", | 626 | "syn 2.0.53", |
| 627 | ] | 627 | ] |
| 628 | 628 | ||
| 629 | [[package]] | 629 | [[package]] |
| 630 | name = "clap_lex" | 630 | name = "clap_lex" |
| 631 | version = "0.6.0" | 631 | version = "0.7.0" |
| 632 | source = "registry+https://github.com/rust-lang/crates.io-index" | 632 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 633 | checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" | 633 | checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" |
| 634 | 634 | ||
| 635 | [[package]] | 635 | [[package]] |
| 636 | name = "colorchoice" | 636 | name = "colorchoice" |
| @@ -806,15 +806,15 @@ version = "1.0.0" | |||
| 806 | source = "registry+https://github.com/rust-lang/crates.io-index" | 806 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 807 | checksum = "de78e66ac9061e030587b2a2e75cc88f22304913c907b11307bca737141230cb" | 807 | checksum = "de78e66ac9061e030587b2a2e75cc88f22304913c907b11307bca737141230cb" |
| 808 | dependencies = [ | 808 | dependencies = [ |
| 809 | "heck", | 809 | "heck 0.4.1", |
| 810 | "proc-macro-error", | 810 | "proc-macro-error", |
| 811 | ] | 811 | ] |
| 812 | 812 | ||
| 813 | [[package]] | 813 | [[package]] |
| 814 | name = "either" | 814 | name = "either" |
| 815 | version = "1.9.0" | 815 | version = "1.10.0" |
| 816 | source = "registry+https://github.com/rust-lang/crates.io-index" | 816 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 817 | checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" | 817 | checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" |
| 818 | 818 | ||
| 819 | [[package]] | 819 | [[package]] |
| 820 | name = "encode_unicode" | 820 | name = "encode_unicode" |
| @@ -833,9 +833,9 @@ dependencies = [ | |||
| 833 | 833 | ||
| 834 | [[package]] | 834 | [[package]] |
| 835 | name = "enumflags2" | 835 | name = "enumflags2" |
| 836 | version = "0.7.8" | 836 | version = "0.7.9" |
| 837 | source = "registry+https://github.com/rust-lang/crates.io-index" | 837 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 838 | checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" | 838 | checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" |
| 839 | dependencies = [ | 839 | dependencies = [ |
| 840 | "enumflags2_derive", | 840 | "enumflags2_derive", |
| 841 | "serde", | 841 | "serde", |
| @@ -843,13 +843,13 @@ dependencies = [ | |||
| 843 | 843 | ||
| 844 | [[package]] | 844 | [[package]] |
| 845 | name = "enumflags2_derive" | 845 | name = "enumflags2_derive" |
| 846 | version = "0.7.8" | 846 | version = "0.7.9" |
| 847 | source = "registry+https://github.com/rust-lang/crates.io-index" | 847 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 848 | checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" | 848 | checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" |
| 849 | dependencies = [ | 849 | dependencies = [ |
| 850 | "proc-macro2", | 850 | "proc-macro2", |
| 851 | "quote", | 851 | "quote", |
| 852 | "syn 2.0.48", | 852 | "syn 2.0.53", |
| 853 | ] | 853 | ] |
| 854 | 854 | ||
| 855 | [[package]] | 855 | [[package]] |
| @@ -897,6 +897,17 @@ dependencies = [ | |||
| 897 | ] | 897 | ] |
| 898 | 898 | ||
| 899 | [[package]] | 899 | [[package]] |
| 900 | name = "event-listener" | ||
| 901 | version = "5.2.0" | ||
| 902 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 903 | checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" | ||
| 904 | dependencies = [ | ||
| 905 | "concurrent-queue", | ||
| 906 | "parking", | ||
| 907 | "pin-project-lite", | ||
| 908 | ] | ||
| 909 | |||
| 910 | [[package]] | ||
| 900 | name = "event-listener-strategy" | 911 | name = "event-listener-strategy" |
| 901 | version = "0.4.0" | 912 | version = "0.4.0" |
| 902 | source = "registry+https://github.com/rust-lang/crates.io-index" | 913 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -907,6 +918,16 @@ dependencies = [ | |||
| 907 | ] | 918 | ] |
| 908 | 919 | ||
| 909 | [[package]] | 920 | [[package]] |
| 921 | name = "event-listener-strategy" | ||
| 922 | version = "0.5.0" | ||
| 923 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 924 | checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" | ||
| 925 | dependencies = [ | ||
| 926 | "event-listener 5.2.0", | ||
| 927 | "pin-project-lite", | ||
| 928 | ] | ||
| 929 | |||
| 930 | [[package]] | ||
| 910 | name = "fastrand" | 931 | name = "fastrand" |
| 911 | version = "1.9.0" | 932 | version = "1.9.0" |
| 912 | source = "registry+https://github.com/rust-lang/crates.io-index" | 933 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1029,9 +1050,9 @@ dependencies = [ | |||
| 1029 | 1050 | ||
| 1030 | [[package]] | 1051 | [[package]] |
| 1031 | name = "futures-lite" | 1052 | name = "futures-lite" |
| 1032 | version = "2.2.0" | 1053 | version = "2.3.0" |
| 1033 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1054 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1034 | checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" | 1055 | checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" |
| 1035 | dependencies = [ | 1056 | dependencies = [ |
| 1036 | "fastrand 2.0.1", | 1057 | "fastrand 2.0.1", |
| 1037 | "futures-core", | 1058 | "futures-core", |
| @@ -1048,7 +1069,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" | |||
| 1048 | dependencies = [ | 1069 | dependencies = [ |
| 1049 | "proc-macro2", | 1070 | "proc-macro2", |
| 1050 | "quote", | 1071 | "quote", |
| 1051 | "syn 2.0.48", | 1072 | "syn 2.0.53", |
| 1052 | ] | 1073 | ] |
| 1053 | 1074 | ||
| 1054 | [[package]] | 1075 | [[package]] |
| @@ -1112,11 +1133,11 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" | |||
| 1112 | 1133 | ||
| 1113 | [[package]] | 1134 | [[package]] |
| 1114 | name = "git2" | 1135 | name = "git2" |
| 1115 | version = "0.18.1" | 1136 | version = "0.18.3" |
| 1116 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1137 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1117 | checksum = "fbf97ba92db08df386e10c8ede66a2a0369bd277090afd8710e19e38de9ec0cd" | 1138 | checksum = "232e6a7bfe35766bf715e55a88b39a700596c0ccfd88cd3680b4cdb40d66ef70" |
| 1118 | dependencies = [ | 1139 | dependencies = [ |
| 1119 | "bitflags 2.4.2", | 1140 | "bitflags 2.5.0", |
| 1120 | "libc", | 1141 | "libc", |
| 1121 | "libgit2-sys", | 1142 | "libgit2-sys", |
| 1122 | "log", | 1143 | "log", |
| @@ -1139,9 +1160,9 @@ dependencies = [ | |||
| 1139 | 1160 | ||
| 1140 | [[package]] | 1161 | [[package]] |
| 1141 | name = "h2" | 1162 | name = "h2" |
| 1142 | version = "0.3.24" | 1163 | version = "0.3.25" |
| 1143 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1164 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1144 | checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" | 1165 | checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" |
| 1145 | dependencies = [ | 1166 | dependencies = [ |
| 1146 | "bytes", | 1167 | "bytes", |
| 1147 | "fnv", | 1168 | "fnv", |
| @@ -1169,10 +1190,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1169 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" | 1190 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" |
| 1170 | 1191 | ||
| 1171 | [[package]] | 1192 | [[package]] |
| 1193 | name = "heck" | ||
| 1194 | version = "0.5.0" | ||
| 1195 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1196 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" | ||
| 1197 | |||
| 1198 | [[package]] | ||
| 1172 | name = "hermit-abi" | 1199 | name = "hermit-abi" |
| 1173 | version = "0.3.4" | 1200 | version = "0.3.9" |
| 1174 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1201 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1175 | checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" | 1202 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" |
| 1176 | 1203 | ||
| 1177 | [[package]] | 1204 | [[package]] |
| 1178 | name = "hex" | 1205 | name = "hex" |
| @@ -1206,9 +1233,9 @@ dependencies = [ | |||
| 1206 | 1233 | ||
| 1207 | [[package]] | 1234 | [[package]] |
| 1208 | name = "http" | 1235 | name = "http" |
| 1209 | version = "0.2.11" | 1236 | version = "0.2.12" |
| 1210 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1237 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1211 | checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" | 1238 | checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" |
| 1212 | dependencies = [ | 1239 | dependencies = [ |
| 1213 | "bytes", | 1240 | "bytes", |
| 1214 | "fnv", | 1241 | "fnv", |
| @@ -1255,7 +1282,7 @@ dependencies = [ | |||
| 1255 | "httpdate", | 1282 | "httpdate", |
| 1256 | "itoa", | 1283 | "itoa", |
| 1257 | "pin-project-lite", | 1284 | "pin-project-lite", |
| 1258 | "socket2 0.5.5", | 1285 | "socket2 0.5.6", |
| 1259 | "tokio", | 1286 | "tokio", |
| 1260 | "tower-service", | 1287 | "tower-service", |
| 1261 | "tracing", | 1288 | "tracing", |
| @@ -1288,9 +1315,9 @@ dependencies = [ | |||
| 1288 | 1315 | ||
| 1289 | [[package]] | 1316 | [[package]] |
| 1290 | name = "indexmap" | 1317 | name = "indexmap" |
| 1291 | version = "2.2.1" | 1318 | version = "2.2.5" |
| 1292 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1319 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1293 | checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b" | 1320 | checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" |
| 1294 | dependencies = [ | 1321 | dependencies = [ |
| 1295 | "equivalent", | 1322 | "equivalent", |
| 1296 | "hashbrown", | 1323 | "hashbrown", |
| @@ -1298,9 +1325,9 @@ dependencies = [ | |||
| 1298 | 1325 | ||
| 1299 | [[package]] | 1326 | [[package]] |
| 1300 | name = "indicatif" | 1327 | name = "indicatif" |
| 1301 | version = "0.17.7" | 1328 | version = "0.17.8" |
| 1302 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1329 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1303 | checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" | 1330 | checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" |
| 1304 | dependencies = [ | 1331 | dependencies = [ |
| 1305 | "console", | 1332 | "console", |
| 1306 | "instant", | 1333 | "instant", |
| @@ -1365,18 +1392,18 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" | |||
| 1365 | 1392 | ||
| 1366 | [[package]] | 1393 | [[package]] |
| 1367 | name = "jobserver" | 1394 | name = "jobserver" |
| 1368 | version = "0.1.27" | 1395 | version = "0.1.28" |
| 1369 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1396 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1370 | checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" | 1397 | checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" |
| 1371 | dependencies = [ | 1398 | dependencies = [ |
| 1372 | "libc", | 1399 | "libc", |
| 1373 | ] | 1400 | ] |
| 1374 | 1401 | ||
| 1375 | [[package]] | 1402 | [[package]] |
| 1376 | name = "js-sys" | 1403 | name = "js-sys" |
| 1377 | version = "0.3.67" | 1404 | version = "0.3.69" |
| 1378 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1379 | checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" | 1406 | checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" |
| 1380 | dependencies = [ | 1407 | dependencies = [ |
| 1381 | "wasm-bindgen", | 1408 | "wasm-bindgen", |
| 1382 | ] | 1409 | ] |
| @@ -1403,15 +1430,15 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | |||
| 1403 | 1430 | ||
| 1404 | [[package]] | 1431 | [[package]] |
| 1405 | name = "libc" | 1432 | name = "libc" |
| 1406 | version = "0.2.152" | 1433 | version = "0.2.153" |
| 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1434 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1408 | checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" | 1435 | checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" |
| 1409 | 1436 | ||
| 1410 | [[package]] | 1437 | [[package]] |
| 1411 | name = "libgit2-sys" | 1438 | name = "libgit2-sys" |
| 1412 | version = "0.16.1+1.7.1" | 1439 | version = "0.16.2+1.7.2" |
| 1413 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1440 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1414 | checksum = "f2a2bb3680b094add03bb3732ec520ece34da31a8cd2d633d1389d0f0fb60d0c" | 1441 | checksum = "ee4126d8b4ee5c9d9ea891dd875cfdc1e9d0950437179104b183d7d8a74d24e8" |
| 1415 | dependencies = [ | 1442 | dependencies = [ |
| 1416 | "cc", | 1443 | "cc", |
| 1417 | "libc", | 1444 | "libc", |
| @@ -1427,7 +1454,7 @@ version = "0.0.1" | |||
| 1427 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1454 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1428 | checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" | 1455 | checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" |
| 1429 | dependencies = [ | 1456 | dependencies = [ |
| 1430 | "bitflags 2.4.2", | 1457 | "bitflags 2.5.0", |
| 1431 | "libc", | 1458 | "libc", |
| 1432 | "redox_syscall", | 1459 | "redox_syscall", |
| 1433 | ] | 1460 | ] |
| @@ -1448,9 +1475,9 @@ dependencies = [ | |||
| 1448 | 1475 | ||
| 1449 | [[package]] | 1476 | [[package]] |
| 1450 | name = "libz-sys" | 1477 | name = "libz-sys" |
| 1451 | version = "1.1.15" | 1478 | version = "1.1.16" |
| 1452 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1479 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1453 | checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" | 1480 | checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" |
| 1454 | dependencies = [ | 1481 | dependencies = [ |
| 1455 | "cc", | 1482 | "cc", |
| 1456 | "libc", | 1483 | "libc", |
| @@ -1464,7 +1491,7 @@ version = "0.2.4" | |||
| 1464 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1491 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1465 | checksum = "761e49ec5fd8a5a463f9b84e877c373d888935b71c6be78f3767fe2ae6bed18e" | 1492 | checksum = "761e49ec5fd8a5a463f9b84e877c373d888935b71c6be78f3767fe2ae6bed18e" |
| 1466 | dependencies = [ | 1493 | dependencies = [ |
| 1467 | "bitflags 2.4.2", | 1494 | "bitflags 2.5.0", |
| 1468 | "libc", | 1495 | "libc", |
| 1469 | ] | 1496 | ] |
| 1470 | 1497 | ||
| @@ -1492,9 +1519,9 @@ dependencies = [ | |||
| 1492 | 1519 | ||
| 1493 | [[package]] | 1520 | [[package]] |
| 1494 | name = "log" | 1521 | name = "log" |
| 1495 | version = "0.4.20" | 1522 | version = "0.4.21" |
| 1496 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1523 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1497 | checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" | 1524 | checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" |
| 1498 | 1525 | ||
| 1499 | [[package]] | 1526 | [[package]] |
| 1500 | name = "memchr" | 1527 | name = "memchr" |
| @@ -1537,18 +1564,18 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" | |||
| 1537 | 1564 | ||
| 1538 | [[package]] | 1565 | [[package]] |
| 1539 | name = "miniz_oxide" | 1566 | name = "miniz_oxide" |
| 1540 | version = "0.7.1" | 1567 | version = "0.7.2" |
| 1541 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1568 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1542 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" | 1569 | checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" |
| 1543 | dependencies = [ | 1570 | dependencies = [ |
| 1544 | "adler", | 1571 | "adler", |
| 1545 | ] | 1572 | ] |
| 1546 | 1573 | ||
| 1547 | [[package]] | 1574 | [[package]] |
| 1548 | name = "mio" | 1575 | name = "mio" |
| 1549 | version = "0.8.10" | 1576 | version = "0.8.11" |
| 1550 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1577 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1551 | checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" | 1578 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" |
| 1552 | dependencies = [ | 1579 | dependencies = [ |
| 1553 | "libc", | 1580 | "libc", |
| 1554 | "wasi", | 1581 | "wasi", |
| @@ -1662,7 +1689,7 @@ version = "0.27.1" | |||
| 1662 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1689 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1663 | checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" | 1690 | checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" |
| 1664 | dependencies = [ | 1691 | dependencies = [ |
| 1665 | "bitflags 2.4.2", | 1692 | "bitflags 2.5.0", |
| 1666 | "cfg-if", | 1693 | "cfg-if", |
| 1667 | "libc", | 1694 | "libc", |
| 1668 | ] | 1695 | ] |
| @@ -1679,7 +1706,7 @@ version = "0.27.0" | |||
| 1679 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1706 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1680 | checksum = "3e47228d958fd65ef3e04650a3b1dd80f16f10f0243c80ed969556dead0f48c8" | 1707 | checksum = "3e47228d958fd65ef3e04650a3b1dd80f16f10f0243c80ed969556dead0f48c8" |
| 1681 | dependencies = [ | 1708 | dependencies = [ |
| 1682 | "aes 0.8.3", | 1709 | "aes 0.8.4", |
| 1683 | "base64", | 1710 | "base64", |
| 1684 | "bip39", | 1711 | "bip39", |
| 1685 | "bitcoin", | 1712 | "bitcoin", |
| @@ -1756,28 +1783,27 @@ dependencies = [ | |||
| 1756 | 1783 | ||
| 1757 | [[package]] | 1784 | [[package]] |
| 1758 | name = "num-complex" | 1785 | name = "num-complex" |
| 1759 | version = "0.4.4" | 1786 | version = "0.4.5" |
| 1760 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1787 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1761 | checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" | 1788 | checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6" |
| 1762 | dependencies = [ | 1789 | dependencies = [ |
| 1763 | "num-traits", | 1790 | "num-traits", |
| 1764 | ] | 1791 | ] |
| 1765 | 1792 | ||
| 1766 | [[package]] | 1793 | [[package]] |
| 1767 | name = "num-integer" | 1794 | name = "num-integer" |
| 1768 | version = "0.1.45" | 1795 | version = "0.1.46" |
| 1769 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1770 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" | 1797 | checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" |
| 1771 | dependencies = [ | 1798 | dependencies = [ |
| 1772 | "autocfg", | ||
| 1773 | "num-traits", | 1799 | "num-traits", |
| 1774 | ] | 1800 | ] |
| 1775 | 1801 | ||
| 1776 | [[package]] | 1802 | [[package]] |
| 1777 | name = "num-iter" | 1803 | name = "num-iter" |
| 1778 | version = "0.1.43" | 1804 | version = "0.1.44" |
| 1779 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1805 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1780 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" | 1806 | checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" |
| 1781 | dependencies = [ | 1807 | dependencies = [ |
| 1782 | "autocfg", | 1808 | "autocfg", |
| 1783 | "num-integer", | 1809 | "num-integer", |
| @@ -1798,9 +1824,9 @@ dependencies = [ | |||
| 1798 | 1824 | ||
| 1799 | [[package]] | 1825 | [[package]] |
| 1800 | name = "num-traits" | 1826 | name = "num-traits" |
| 1801 | version = "0.2.17" | 1827 | version = "0.2.18" |
| 1802 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1828 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1803 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" | 1829 | checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" |
| 1804 | dependencies = [ | 1830 | dependencies = [ |
| 1805 | "autocfg", | 1831 | "autocfg", |
| 1806 | ] | 1832 | ] |
| @@ -1838,9 +1864,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" | |||
| 1838 | 1864 | ||
| 1839 | [[package]] | 1865 | [[package]] |
| 1840 | name = "opaque-debug" | 1866 | name = "opaque-debug" |
| 1841 | version = "0.3.0" | 1867 | version = "0.3.1" |
| 1842 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1868 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1843 | checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" | 1869 | checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" |
| 1844 | 1870 | ||
| 1845 | [[package]] | 1871 | [[package]] |
| 1846 | name = "openssl-probe" | 1872 | name = "openssl-probe" |
| @@ -1850,9 +1876,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" | |||
| 1850 | 1876 | ||
| 1851 | [[package]] | 1877 | [[package]] |
| 1852 | name = "openssl-sys" | 1878 | name = "openssl-sys" |
| 1853 | version = "0.9.99" | 1879 | version = "0.9.101" |
| 1854 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1880 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1855 | checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" | 1881 | checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" |
| 1856 | dependencies = [ | 1882 | dependencies = [ |
| 1857 | "cc", | 1883 | "cc", |
| 1858 | "libc", | 1884 | "libc", |
| @@ -1953,22 +1979,22 @@ dependencies = [ | |||
| 1953 | 1979 | ||
| 1954 | [[package]] | 1980 | [[package]] |
| 1955 | name = "pin-project" | 1981 | name = "pin-project" |
| 1956 | version = "1.1.4" | 1982 | version = "1.1.5" |
| 1957 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1983 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1958 | checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" | 1984 | checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" |
| 1959 | dependencies = [ | 1985 | dependencies = [ |
| 1960 | "pin-project-internal", | 1986 | "pin-project-internal", |
| 1961 | ] | 1987 | ] |
| 1962 | 1988 | ||
| 1963 | [[package]] | 1989 | [[package]] |
| 1964 | name = "pin-project-internal" | 1990 | name = "pin-project-internal" |
| 1965 | version = "1.1.4" | 1991 | version = "1.1.5" |
| 1966 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1992 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1967 | checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" | 1993 | checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" |
| 1968 | dependencies = [ | 1994 | dependencies = [ |
| 1969 | "proc-macro2", | 1995 | "proc-macro2", |
| 1970 | "quote", | 1996 | "quote", |
| 1971 | "syn 2.0.48", | 1997 | "syn 2.0.53", |
| 1972 | ] | 1998 | ] |
| 1973 | 1999 | ||
| 1974 | [[package]] | 2000 | [[package]] |
| @@ -1996,9 +2022,9 @@ dependencies = [ | |||
| 1996 | 2022 | ||
| 1997 | [[package]] | 2023 | [[package]] |
| 1998 | name = "pkg-config" | 2024 | name = "pkg-config" |
| 1999 | version = "0.3.29" | 2025 | version = "0.3.30" |
| 2000 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2026 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2001 | checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" | 2027 | checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" |
| 2002 | 2028 | ||
| 2003 | [[package]] | 2029 | [[package]] |
| 2004 | name = "polling" | 2030 | name = "polling" |
| @@ -2018,14 +2044,14 @@ dependencies = [ | |||
| 2018 | 2044 | ||
| 2019 | [[package]] | 2045 | [[package]] |
| 2020 | name = "polling" | 2046 | name = "polling" |
| 2021 | version = "3.3.2" | 2047 | version = "3.5.0" |
| 2022 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2048 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2023 | checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" | 2049 | checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" |
| 2024 | dependencies = [ | 2050 | dependencies = [ |
| 2025 | "cfg-if", | 2051 | "cfg-if", |
| 2026 | "concurrent-queue", | 2052 | "concurrent-queue", |
| 2027 | "pin-project-lite", | 2053 | "pin-project-lite", |
| 2028 | "rustix 0.38.30", | 2054 | "rustix 0.38.32", |
| 2029 | "tracing", | 2055 | "tracing", |
| 2030 | "windows-sys 0.52.0", | 2056 | "windows-sys 0.52.0", |
| 2031 | ] | 2057 | ] |
| @@ -2136,9 +2162,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" | |||
| 2136 | 2162 | ||
| 2137 | [[package]] | 2163 | [[package]] |
| 2138 | name = "proc-macro2" | 2164 | name = "proc-macro2" |
| 2139 | version = "1.0.78" | 2165 | version = "1.0.79" |
| 2140 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2166 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2141 | checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" | 2167 | checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" |
| 2142 | dependencies = [ | 2168 | dependencies = [ |
| 2143 | "unicode-ident", | 2169 | "unicode-ident", |
| 2144 | ] | 2170 | ] |
| @@ -2201,7 +2227,7 @@ checksum = "8b86292cf41ccfc96c5de7165c1c53d5b4ac540c5bab9d1857acbe9eba5f1a0b" | |||
| 2201 | dependencies = [ | 2227 | dependencies = [ |
| 2202 | "proc-macro-hack", | 2228 | "proc-macro-hack", |
| 2203 | "quote", | 2229 | "quote", |
| 2204 | "syn 2.0.48", | 2230 | "syn 2.0.53", |
| 2205 | ] | 2231 | ] |
| 2206 | 2232 | ||
| 2207 | [[package]] | 2233 | [[package]] |
| @@ -2247,9 +2273,9 @@ dependencies = [ | |||
| 2247 | 2273 | ||
| 2248 | [[package]] | 2274 | [[package]] |
| 2249 | name = "regex-automata" | 2275 | name = "regex-automata" |
| 2250 | version = "0.4.5" | 2276 | version = "0.4.6" |
| 2251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2277 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2252 | checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" | 2278 | checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" |
| 2253 | dependencies = [ | 2279 | dependencies = [ |
| 2254 | "aho-corasick", | 2280 | "aho-corasick", |
| 2255 | "memchr", | 2281 | "memchr", |
| @@ -2264,9 +2290,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" | |||
| 2264 | 2290 | ||
| 2265 | [[package]] | 2291 | [[package]] |
| 2266 | name = "reqwest" | 2292 | name = "reqwest" |
| 2267 | version = "0.11.23" | 2293 | version = "0.11.27" |
| 2268 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2294 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2269 | checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" | 2295 | checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" |
| 2270 | dependencies = [ | 2296 | dependencies = [ |
| 2271 | "base64", | 2297 | "base64", |
| 2272 | "bytes", | 2298 | "bytes", |
| @@ -2290,6 +2316,7 @@ dependencies = [ | |||
| 2290 | "serde", | 2316 | "serde", |
| 2291 | "serde_json", | 2317 | "serde_json", |
| 2292 | "serde_urlencoded", | 2318 | "serde_urlencoded", |
| 2319 | "sync_wrapper", | ||
| 2293 | "system-configuration", | 2320 | "system-configuration", |
| 2294 | "tokio", | 2321 | "tokio", |
| 2295 | "tokio-rustls", | 2322 | "tokio-rustls", |
| @@ -2330,16 +2357,17 @@ dependencies = [ | |||
| 2330 | 2357 | ||
| 2331 | [[package]] | 2358 | [[package]] |
| 2332 | name = "ring" | 2359 | name = "ring" |
| 2333 | version = "0.17.7" | 2360 | version = "0.17.8" |
| 2334 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2361 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2335 | checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" | 2362 | checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" |
| 2336 | dependencies = [ | 2363 | dependencies = [ |
| 2337 | "cc", | 2364 | "cc", |
| 2365 | "cfg-if", | ||
| 2338 | "getrandom", | 2366 | "getrandom", |
| 2339 | "libc", | 2367 | "libc", |
| 2340 | "spin", | 2368 | "spin", |
| 2341 | "untrusted", | 2369 | "untrusted", |
| 2342 | "windows-sys 0.48.0", | 2370 | "windows-sys 0.52.0", |
| 2343 | ] | 2371 | ] |
| 2344 | 2372 | ||
| 2345 | [[package]] | 2373 | [[package]] |
| @@ -2373,11 +2401,11 @@ dependencies = [ | |||
| 2373 | 2401 | ||
| 2374 | [[package]] | 2402 | [[package]] |
| 2375 | name = "rustix" | 2403 | name = "rustix" |
| 2376 | version = "0.38.30" | 2404 | version = "0.38.32" |
| 2377 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2378 | checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" | 2406 | checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" |
| 2379 | dependencies = [ | 2407 | dependencies = [ |
| 2380 | "bitflags 2.4.2", | 2408 | "bitflags 2.5.0", |
| 2381 | "errno", | 2409 | "errno", |
| 2382 | "libc", | 2410 | "libc", |
| 2383 | "linux-raw-sys 0.4.13", | 2411 | "linux-raw-sys 0.4.13", |
| @@ -2417,9 +2445,9 @@ dependencies = [ | |||
| 2417 | 2445 | ||
| 2418 | [[package]] | 2446 | [[package]] |
| 2419 | name = "ryu" | 2447 | name = "ryu" |
| 2420 | version = "1.0.16" | 2448 | version = "1.0.17" |
| 2421 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2449 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2422 | checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" | 2450 | checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" |
| 2423 | 2451 | ||
| 2424 | [[package]] | 2452 | [[package]] |
| 2425 | name = "salsa20" | 2453 | name = "salsa20" |
| @@ -2523,9 +2551,9 @@ dependencies = [ | |||
| 2523 | 2551 | ||
| 2524 | [[package]] | 2552 | [[package]] |
| 2525 | name = "semver" | 2553 | name = "semver" |
| 2526 | version = "1.0.21" | 2554 | version = "1.0.22" |
| 2527 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2555 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2528 | checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" | 2556 | checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" |
| 2529 | 2557 | ||
| 2530 | [[package]] | 2558 | [[package]] |
| 2531 | name = "send_wrapper" | 2559 | name = "send_wrapper" |
| @@ -2535,29 +2563,29 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" | |||
| 2535 | 2563 | ||
| 2536 | [[package]] | 2564 | [[package]] |
| 2537 | name = "serde" | 2565 | name = "serde" |
| 2538 | version = "1.0.196" | 2566 | version = "1.0.197" |
| 2539 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2567 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2540 | checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" | 2568 | checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" |
| 2541 | dependencies = [ | 2569 | dependencies = [ |
| 2542 | "serde_derive", | 2570 | "serde_derive", |
| 2543 | ] | 2571 | ] |
| 2544 | 2572 | ||
| 2545 | [[package]] | 2573 | [[package]] |
| 2546 | name = "serde_derive" | 2574 | name = "serde_derive" |
| 2547 | version = "1.0.196" | 2575 | version = "1.0.197" |
| 2548 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2576 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2549 | checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" | 2577 | checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" |
| 2550 | dependencies = [ | 2578 | dependencies = [ |
| 2551 | "proc-macro2", | 2579 | "proc-macro2", |
| 2552 | "quote", | 2580 | "quote", |
| 2553 | "syn 2.0.48", | 2581 | "syn 2.0.53", |
| 2554 | ] | 2582 | ] |
| 2555 | 2583 | ||
| 2556 | [[package]] | 2584 | [[package]] |
| 2557 | name = "serde_json" | 2585 | name = "serde_json" |
| 2558 | version = "1.0.113" | 2586 | version = "1.0.114" |
| 2559 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2587 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2560 | checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" | 2588 | checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" |
| 2561 | dependencies = [ | 2589 | dependencies = [ |
| 2562 | "indexmap", | 2590 | "indexmap", |
| 2563 | "itoa", | 2591 | "itoa", |
| @@ -2573,7 +2601,7 @@ checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" | |||
| 2573 | dependencies = [ | 2601 | dependencies = [ |
| 2574 | "proc-macro2", | 2602 | "proc-macro2", |
| 2575 | "quote", | 2603 | "quote", |
| 2576 | "syn 2.0.48", | 2604 | "syn 2.0.53", |
| 2577 | ] | 2605 | ] |
| 2578 | 2606 | ||
| 2579 | [[package]] | 2607 | [[package]] |
| @@ -2590,9 +2618,9 @@ dependencies = [ | |||
| 2590 | 2618 | ||
| 2591 | [[package]] | 2619 | [[package]] |
| 2592 | name = "serde_yaml" | 2620 | name = "serde_yaml" |
| 2593 | version = "0.9.31" | 2621 | version = "0.9.33" |
| 2594 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2622 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2595 | checksum = "adf8a49373e98a4c5f0ceb5d05aa7c648d75f63774981ed95b7c7443bbd50c6e" | 2623 | checksum = "a0623d197252096520c6f2a5e1171ee436e5af99a5d7caa2891e55e61950e6d9" |
| 2596 | dependencies = [ | 2624 | dependencies = [ |
| 2597 | "indexmap", | 2625 | "indexmap", |
| 2598 | "itoa", | 2626 | "itoa", |
| @@ -2623,7 +2651,7 @@ checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" | |||
| 2623 | dependencies = [ | 2651 | dependencies = [ |
| 2624 | "proc-macro2", | 2652 | "proc-macro2", |
| 2625 | "quote", | 2653 | "quote", |
| 2626 | "syn 2.0.48", | 2654 | "syn 2.0.53", |
| 2627 | ] | 2655 | ] |
| 2628 | 2656 | ||
| 2629 | [[package]] | 2657 | [[package]] |
| @@ -2685,9 +2713,9 @@ dependencies = [ | |||
| 2685 | 2713 | ||
| 2686 | [[package]] | 2714 | [[package]] |
| 2687 | name = "smallvec" | 2715 | name = "smallvec" |
| 2688 | version = "1.13.1" | 2716 | version = "1.13.2" |
| 2689 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2717 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2690 | checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" | 2718 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" |
| 2691 | 2719 | ||
| 2692 | [[package]] | 2720 | [[package]] |
| 2693 | name = "socket2" | 2721 | name = "socket2" |
| @@ -2701,12 +2729,12 @@ dependencies = [ | |||
| 2701 | 2729 | ||
| 2702 | [[package]] | 2730 | [[package]] |
| 2703 | name = "socket2" | 2731 | name = "socket2" |
| 2704 | version = "0.5.5" | 2732 | version = "0.5.6" |
| 2705 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2733 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2706 | checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" | 2734 | checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" |
| 2707 | dependencies = [ | 2735 | dependencies = [ |
| 2708 | "libc", | 2736 | "libc", |
| 2709 | "windows-sys 0.48.0", | 2737 | "windows-sys 0.52.0", |
| 2710 | ] | 2738 | ] |
| 2711 | 2739 | ||
| 2712 | [[package]] | 2740 | [[package]] |
| @@ -2735,9 +2763,9 @@ dependencies = [ | |||
| 2735 | 2763 | ||
| 2736 | [[package]] | 2764 | [[package]] |
| 2737 | name = "strsim" | 2765 | name = "strsim" |
| 2738 | version = "0.10.0" | 2766 | version = "0.11.0" |
| 2739 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2767 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2740 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | 2768 | checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" |
| 2741 | 2769 | ||
| 2742 | [[package]] | 2770 | [[package]] |
| 2743 | name = "subtle" | 2771 | name = "subtle" |
| @@ -2758,9 +2786,9 @@ dependencies = [ | |||
| 2758 | 2786 | ||
| 2759 | [[package]] | 2787 | [[package]] |
| 2760 | name = "syn" | 2788 | name = "syn" |
| 2761 | version = "2.0.48" | 2789 | version = "2.0.53" |
| 2762 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2790 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2763 | checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" | 2791 | checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032" |
| 2764 | dependencies = [ | 2792 | dependencies = [ |
| 2765 | "proc-macro2", | 2793 | "proc-macro2", |
| 2766 | "quote", | 2794 | "quote", |
| @@ -2768,6 +2796,12 @@ dependencies = [ | |||
| 2768 | ] | 2796 | ] |
| 2769 | 2797 | ||
| 2770 | [[package]] | 2798 | [[package]] |
| 2799 | name = "sync_wrapper" | ||
| 2800 | version = "0.1.2" | ||
| 2801 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2802 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" | ||
| 2803 | |||
| 2804 | [[package]] | ||
| 2771 | name = "system-configuration" | 2805 | name = "system-configuration" |
| 2772 | version = "0.5.1" | 2806 | version = "0.5.1" |
| 2773 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2807 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2790,14 +2824,13 @@ dependencies = [ | |||
| 2790 | 2824 | ||
| 2791 | [[package]] | 2825 | [[package]] |
| 2792 | name = "tempfile" | 2826 | name = "tempfile" |
| 2793 | version = "3.9.0" | 2827 | version = "3.10.1" |
| 2794 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2828 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2795 | checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" | 2829 | checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" |
| 2796 | dependencies = [ | 2830 | dependencies = [ |
| 2797 | "cfg-if", | 2831 | "cfg-if", |
| 2798 | "fastrand 2.0.1", | 2832 | "fastrand 2.0.1", |
| 2799 | "redox_syscall", | 2833 | "rustix 0.38.32", |
| 2800 | "rustix 0.38.30", | ||
| 2801 | "windows-sys 0.52.0", | 2834 | "windows-sys 0.52.0", |
| 2802 | ] | 2835 | ] |
| 2803 | 2836 | ||
| @@ -2828,22 +2861,22 @@ dependencies = [ | |||
| 2828 | 2861 | ||
| 2829 | [[package]] | 2862 | [[package]] |
| 2830 | name = "thiserror" | 2863 | name = "thiserror" |
| 2831 | version = "1.0.56" | 2864 | version = "1.0.58" |
| 2832 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2865 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2833 | checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" | 2866 | checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" |
| 2834 | dependencies = [ | 2867 | dependencies = [ |
| 2835 | "thiserror-impl", | 2868 | "thiserror-impl", |
| 2836 | ] | 2869 | ] |
| 2837 | 2870 | ||
| 2838 | [[package]] | 2871 | [[package]] |
| 2839 | name = "thiserror-impl" | 2872 | name = "thiserror-impl" |
| 2840 | version = "1.0.56" | 2873 | version = "1.0.58" |
| 2841 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2874 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2842 | checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" | 2875 | checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" |
| 2843 | dependencies = [ | 2876 | dependencies = [ |
| 2844 | "proc-macro2", | 2877 | "proc-macro2", |
| 2845 | "quote", | 2878 | "quote", |
| 2846 | "syn 2.0.48", | 2879 | "syn 2.0.53", |
| 2847 | ] | 2880 | ] |
| 2848 | 2881 | ||
| 2849 | [[package]] | 2882 | [[package]] |
| @@ -2863,9 +2896,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | |||
| 2863 | 2896 | ||
| 2864 | [[package]] | 2897 | [[package]] |
| 2865 | name = "tokio" | 2898 | name = "tokio" |
| 2866 | version = "1.35.1" | 2899 | version = "1.36.0" |
| 2867 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2900 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2868 | checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" | 2901 | checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" |
| 2869 | dependencies = [ | 2902 | dependencies = [ |
| 2870 | "backtrace", | 2903 | "backtrace", |
| 2871 | "bytes", | 2904 | "bytes", |
| @@ -2875,7 +2908,7 @@ dependencies = [ | |||
| 2875 | "parking_lot", | 2908 | "parking_lot", |
| 2876 | "pin-project-lite", | 2909 | "pin-project-lite", |
| 2877 | "signal-hook-registry", | 2910 | "signal-hook-registry", |
| 2878 | "socket2 0.5.5", | 2911 | "socket2 0.5.6", |
| 2879 | "tokio-macros", | 2912 | "tokio-macros", |
| 2880 | "windows-sys 0.48.0", | 2913 | "windows-sys 0.48.0", |
| 2881 | ] | 2914 | ] |
| @@ -2888,7 +2921,7 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" | |||
| 2888 | dependencies = [ | 2921 | dependencies = [ |
| 2889 | "proc-macro2", | 2922 | "proc-macro2", |
| 2890 | "quote", | 2923 | "quote", |
| 2891 | "syn 2.0.48", | 2924 | "syn 2.0.53", |
| 2892 | ] | 2925 | ] |
| 2893 | 2926 | ||
| 2894 | [[package]] | 2927 | [[package]] |
| @@ -2984,7 +3017,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" | |||
| 2984 | dependencies = [ | 3017 | dependencies = [ |
| 2985 | "proc-macro2", | 3018 | "proc-macro2", |
| 2986 | "quote", | 3019 | "quote", |
| 2987 | "syn 2.0.48", | 3020 | "syn 2.0.53", |
| 2988 | ] | 3021 | ] |
| 2989 | 3022 | ||
| 2990 | [[package]] | 3023 | [[package]] |
| @@ -3078,9 +3111,9 @@ dependencies = [ | |||
| 3078 | 3111 | ||
| 3079 | [[package]] | 3112 | [[package]] |
| 3080 | name = "unsafe-libyaml" | 3113 | name = "unsafe-libyaml" |
| 3081 | version = "0.2.10" | 3114 | version = "0.2.11" |
| 3082 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3115 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3083 | checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" | 3116 | checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" |
| 3084 | 3117 | ||
| 3085 | [[package]] | 3118 | [[package]] |
| 3086 | name = "untrusted" | 3119 | name = "untrusted" |
| @@ -3187,9 +3220,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" | |||
| 3187 | 3220 | ||
| 3188 | [[package]] | 3221 | [[package]] |
| 3189 | name = "wasm-bindgen" | 3222 | name = "wasm-bindgen" |
| 3190 | version = "0.2.90" | 3223 | version = "0.2.92" |
| 3191 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3224 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3192 | checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" | 3225 | checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" |
| 3193 | dependencies = [ | 3226 | dependencies = [ |
| 3194 | "cfg-if", | 3227 | "cfg-if", |
| 3195 | "wasm-bindgen-macro", | 3228 | "wasm-bindgen-macro", |
| @@ -3197,24 +3230,24 @@ dependencies = [ | |||
| 3197 | 3230 | ||
| 3198 | [[package]] | 3231 | [[package]] |
| 3199 | name = "wasm-bindgen-backend" | 3232 | name = "wasm-bindgen-backend" |
| 3200 | version = "0.2.90" | 3233 | version = "0.2.92" |
| 3201 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3234 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3202 | checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" | 3235 | checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" |
| 3203 | dependencies = [ | 3236 | dependencies = [ |
| 3204 | "bumpalo", | 3237 | "bumpalo", |
| 3205 | "log", | 3238 | "log", |
| 3206 | "once_cell", | 3239 | "once_cell", |
| 3207 | "proc-macro2", | 3240 | "proc-macro2", |
| 3208 | "quote", | 3241 | "quote", |
| 3209 | "syn 2.0.48", | 3242 | "syn 2.0.53", |
| 3210 | "wasm-bindgen-shared", | 3243 | "wasm-bindgen-shared", |
| 3211 | ] | 3244 | ] |
| 3212 | 3245 | ||
| 3213 | [[package]] | 3246 | [[package]] |
| 3214 | name = "wasm-bindgen-futures" | 3247 | name = "wasm-bindgen-futures" |
| 3215 | version = "0.4.40" | 3248 | version = "0.4.42" |
| 3216 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3249 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3217 | checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" | 3250 | checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" |
| 3218 | dependencies = [ | 3251 | dependencies = [ |
| 3219 | "cfg-if", | 3252 | "cfg-if", |
| 3220 | "js-sys", | 3253 | "js-sys", |
| @@ -3224,9 +3257,9 @@ dependencies = [ | |||
| 3224 | 3257 | ||
| 3225 | [[package]] | 3258 | [[package]] |
| 3226 | name = "wasm-bindgen-macro" | 3259 | name = "wasm-bindgen-macro" |
| 3227 | version = "0.2.90" | 3260 | version = "0.2.92" |
| 3228 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3261 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3229 | checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" | 3262 | checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" |
| 3230 | dependencies = [ | 3263 | dependencies = [ |
| 3231 | "quote", | 3264 | "quote", |
| 3232 | "wasm-bindgen-macro-support", | 3265 | "wasm-bindgen-macro-support", |
| @@ -3234,22 +3267,22 @@ dependencies = [ | |||
| 3234 | 3267 | ||
| 3235 | [[package]] | 3268 | [[package]] |
| 3236 | name = "wasm-bindgen-macro-support" | 3269 | name = "wasm-bindgen-macro-support" |
| 3237 | version = "0.2.90" | 3270 | version = "0.2.92" |
| 3238 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3271 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3239 | checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" | 3272 | checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" |
| 3240 | dependencies = [ | 3273 | dependencies = [ |
| 3241 | "proc-macro2", | 3274 | "proc-macro2", |
| 3242 | "quote", | 3275 | "quote", |
| 3243 | "syn 2.0.48", | 3276 | "syn 2.0.53", |
| 3244 | "wasm-bindgen-backend", | 3277 | "wasm-bindgen-backend", |
| 3245 | "wasm-bindgen-shared", | 3278 | "wasm-bindgen-shared", |
| 3246 | ] | 3279 | ] |
| 3247 | 3280 | ||
| 3248 | [[package]] | 3281 | [[package]] |
| 3249 | name = "wasm-bindgen-shared" | 3282 | name = "wasm-bindgen-shared" |
| 3250 | version = "0.2.90" | 3283 | version = "0.2.92" |
| 3251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3284 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3252 | checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" | 3285 | checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" |
| 3253 | 3286 | ||
| 3254 | [[package]] | 3287 | [[package]] |
| 3255 | name = "wasm-ws" | 3288 | name = "wasm-ws" |
| @@ -3270,9 +3303,9 @@ dependencies = [ | |||
| 3270 | 3303 | ||
| 3271 | [[package]] | 3304 | [[package]] |
| 3272 | name = "web-sys" | 3305 | name = "web-sys" |
| 3273 | version = "0.3.67" | 3306 | version = "0.3.69" |
| 3274 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3307 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3275 | checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" | 3308 | checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" |
| 3276 | dependencies = [ | 3309 | dependencies = [ |
| 3277 | "js-sys", | 3310 | "js-sys", |
| 3278 | "wasm-bindgen", | 3311 | "wasm-bindgen", |
| @@ -3280,9 +3313,9 @@ dependencies = [ | |||
| 3280 | 3313 | ||
| 3281 | [[package]] | 3314 | [[package]] |
| 3282 | name = "webpki-roots" | 3315 | name = "webpki-roots" |
| 3283 | version = "0.25.3" | 3316 | version = "0.25.4" |
| 3284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3317 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3285 | checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" | 3318 | checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" |
| 3286 | 3319 | ||
| 3287 | [[package]] | 3320 | [[package]] |
| 3288 | name = "winapi" | 3321 | name = "winapi" |
| @@ -3321,7 +3354,7 @@ version = "0.52.0" | |||
| 3321 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3354 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3322 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" | 3355 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" |
| 3323 | dependencies = [ | 3356 | dependencies = [ |
| 3324 | "windows-targets 0.52.0", | 3357 | "windows-targets 0.52.4", |
| 3325 | ] | 3358 | ] |
| 3326 | 3359 | ||
| 3327 | [[package]] | 3360 | [[package]] |
| @@ -3341,17 +3374,17 @@ dependencies = [ | |||
| 3341 | 3374 | ||
| 3342 | [[package]] | 3375 | [[package]] |
| 3343 | name = "windows-targets" | 3376 | name = "windows-targets" |
| 3344 | version = "0.52.0" | 3377 | version = "0.52.4" |
| 3345 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3378 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3346 | checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" | 3379 | checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" |
| 3347 | dependencies = [ | 3380 | dependencies = [ |
| 3348 | "windows_aarch64_gnullvm 0.52.0", | 3381 | "windows_aarch64_gnullvm 0.52.4", |
| 3349 | "windows_aarch64_msvc 0.52.0", | 3382 | "windows_aarch64_msvc 0.52.4", |
| 3350 | "windows_i686_gnu 0.52.0", | 3383 | "windows_i686_gnu 0.52.4", |
| 3351 | "windows_i686_msvc 0.52.0", | 3384 | "windows_i686_msvc 0.52.4", |
| 3352 | "windows_x86_64_gnu 0.52.0", | 3385 | "windows_x86_64_gnu 0.52.4", |
| 3353 | "windows_x86_64_gnullvm 0.52.0", | 3386 | "windows_x86_64_gnullvm 0.52.4", |
| 3354 | "windows_x86_64_msvc 0.52.0", | 3387 | "windows_x86_64_msvc 0.52.4", |
| 3355 | ] | 3388 | ] |
| 3356 | 3389 | ||
| 3357 | [[package]] | 3390 | [[package]] |
| @@ -3362,9 +3395,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" | |||
| 3362 | 3395 | ||
| 3363 | [[package]] | 3396 | [[package]] |
| 3364 | name = "windows_aarch64_gnullvm" | 3397 | name = "windows_aarch64_gnullvm" |
| 3365 | version = "0.52.0" | 3398 | version = "0.52.4" |
| 3366 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3399 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3367 | checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" | 3400 | checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" |
| 3368 | 3401 | ||
| 3369 | [[package]] | 3402 | [[package]] |
| 3370 | name = "windows_aarch64_msvc" | 3403 | name = "windows_aarch64_msvc" |
| @@ -3374,9 +3407,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" | |||
| 3374 | 3407 | ||
| 3375 | [[package]] | 3408 | [[package]] |
| 3376 | name = "windows_aarch64_msvc" | 3409 | name = "windows_aarch64_msvc" |
| 3377 | version = "0.52.0" | 3410 | version = "0.52.4" |
| 3378 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3411 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3379 | checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" | 3412 | checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" |
| 3380 | 3413 | ||
| 3381 | [[package]] | 3414 | [[package]] |
| 3382 | name = "windows_i686_gnu" | 3415 | name = "windows_i686_gnu" |
| @@ -3386,9 +3419,9 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" | |||
| 3386 | 3419 | ||
| 3387 | [[package]] | 3420 | [[package]] |
| 3388 | name = "windows_i686_gnu" | 3421 | name = "windows_i686_gnu" |
| 3389 | version = "0.52.0" | 3422 | version = "0.52.4" |
| 3390 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3423 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3391 | checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" | 3424 | checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" |
| 3392 | 3425 | ||
| 3393 | [[package]] | 3426 | [[package]] |
| 3394 | name = "windows_i686_msvc" | 3427 | name = "windows_i686_msvc" |
| @@ -3398,9 +3431,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" | |||
| 3398 | 3431 | ||
| 3399 | [[package]] | 3432 | [[package]] |
| 3400 | name = "windows_i686_msvc" | 3433 | name = "windows_i686_msvc" |
| 3401 | version = "0.52.0" | 3434 | version = "0.52.4" |
| 3402 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3435 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3403 | checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" | 3436 | checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" |
| 3404 | 3437 | ||
| 3405 | [[package]] | 3438 | [[package]] |
| 3406 | name = "windows_x86_64_gnu" | 3439 | name = "windows_x86_64_gnu" |
| @@ -3410,9 +3443,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" | |||
| 3410 | 3443 | ||
| 3411 | [[package]] | 3444 | [[package]] |
| 3412 | name = "windows_x86_64_gnu" | 3445 | name = "windows_x86_64_gnu" |
| 3413 | version = "0.52.0" | 3446 | version = "0.52.4" |
| 3414 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3447 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3415 | checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" | 3448 | checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" |
| 3416 | 3449 | ||
| 3417 | [[package]] | 3450 | [[package]] |
| 3418 | name = "windows_x86_64_gnullvm" | 3451 | name = "windows_x86_64_gnullvm" |
| @@ -3422,9 +3455,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" | |||
| 3422 | 3455 | ||
| 3423 | [[package]] | 3456 | [[package]] |
| 3424 | name = "windows_x86_64_gnullvm" | 3457 | name = "windows_x86_64_gnullvm" |
| 3425 | version = "0.52.0" | 3458 | version = "0.52.4" |
| 3426 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3459 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3427 | checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" | 3460 | checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" |
| 3428 | 3461 | ||
| 3429 | [[package]] | 3462 | [[package]] |
| 3430 | name = "windows_x86_64_msvc" | 3463 | name = "windows_x86_64_msvc" |
| @@ -3434,15 +3467,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" | |||
| 3434 | 3467 | ||
| 3435 | [[package]] | 3468 | [[package]] |
| 3436 | name = "windows_x86_64_msvc" | 3469 | name = "windows_x86_64_msvc" |
| 3437 | version = "0.52.0" | 3470 | version = "0.52.4" |
| 3438 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3471 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3439 | checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" | 3472 | checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" |
| 3440 | 3473 | ||
| 3441 | [[package]] | 3474 | [[package]] |
| 3442 | name = "winnow" | 3475 | name = "winnow" |
| 3443 | version = "0.5.35" | 3476 | version = "0.5.40" |
| 3444 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3477 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3445 | checksum = "1931d78a9c73861da0134f453bb1f790ce49b2e30eba8410b4b79bac72b46a2d" | 3478 | checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" |
| 3446 | dependencies = [ | 3479 | dependencies = [ |
| 3447 | "memchr", | 3480 | "memchr", |
| 3448 | ] | 3481 | ] |
| @@ -3459,19 +3492,19 @@ dependencies = [ | |||
| 3459 | 3492 | ||
| 3460 | [[package]] | 3493 | [[package]] |
| 3461 | name = "xdg-home" | 3494 | name = "xdg-home" |
| 3462 | version = "1.0.0" | 3495 | version = "1.1.0" |
| 3463 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3496 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3464 | checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" | 3497 | checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" |
| 3465 | dependencies = [ | 3498 | dependencies = [ |
| 3466 | "nix 0.26.4", | 3499 | "libc", |
| 3467 | "winapi", | 3500 | "winapi", |
| 3468 | ] | 3501 | ] |
| 3469 | 3502 | ||
| 3470 | [[package]] | 3503 | [[package]] |
| 3471 | name = "zbus" | 3504 | name = "zbus" |
| 3472 | version = "3.14.1" | 3505 | version = "3.15.2" |
| 3473 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3506 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3474 | checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" | 3507 | checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6" |
| 3475 | dependencies = [ | 3508 | dependencies = [ |
| 3476 | "async-broadcast", | 3509 | "async-broadcast", |
| 3477 | "async-executor", | 3510 | "async-executor", |
| @@ -3510,9 +3543,9 @@ dependencies = [ | |||
| 3510 | 3543 | ||
| 3511 | [[package]] | 3544 | [[package]] |
| 3512 | name = "zbus_macros" | 3545 | name = "zbus_macros" |
| 3513 | version = "3.14.1" | 3546 | version = "3.15.2" |
| 3514 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3547 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3515 | checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" | 3548 | checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5" |
| 3516 | dependencies = [ | 3549 | dependencies = [ |
| 3517 | "proc-macro-crate", | 3550 | "proc-macro-crate", |
| 3518 | "proc-macro2", | 3551 | "proc-macro2", |
| @@ -3524,9 +3557,9 @@ dependencies = [ | |||
| 3524 | 3557 | ||
| 3525 | [[package]] | 3558 | [[package]] |
| 3526 | name = "zbus_names" | 3559 | name = "zbus_names" |
| 3527 | version = "2.6.0" | 3560 | version = "2.6.1" |
| 3528 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3561 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3529 | checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" | 3562 | checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d" |
| 3530 | dependencies = [ | 3563 | dependencies = [ |
| 3531 | "serde", | 3564 | "serde", |
| 3532 | "static_assertions", | 3565 | "static_assertions", |
| @@ -3541,9 +3574,9 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" | |||
| 3541 | 3574 | ||
| 3542 | [[package]] | 3575 | [[package]] |
| 3543 | name = "zvariant" | 3576 | name = "zvariant" |
| 3544 | version = "3.15.0" | 3577 | version = "3.15.2" |
| 3545 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3578 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3546 | checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" | 3579 | checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db" |
| 3547 | dependencies = [ | 3580 | dependencies = [ |
| 3548 | "byteorder", | 3581 | "byteorder", |
| 3549 | "enumflags2", | 3582 | "enumflags2", |
| @@ -3555,9 +3588,9 @@ dependencies = [ | |||
| 3555 | 3588 | ||
| 3556 | [[package]] | 3589 | [[package]] |
| 3557 | name = "zvariant_derive" | 3590 | name = "zvariant_derive" |
| 3558 | version = "3.15.0" | 3591 | version = "3.15.2" |
| 3559 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3592 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3560 | checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" | 3593 | checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9" |
| 3561 | dependencies = [ | 3594 | dependencies = [ |
| 3562 | "proc-macro-crate", | 3595 | "proc-macro-crate", |
| 3563 | "proc-macro2", | 3596 | "proc-macro2", |
| @@ -1076,7 +1076,7 @@ mod tests { | |||
| 1076 | +some content1\n\\ \ | 1076 | +some content1\n\\ \ |
| 1077 | No newline at end of file\n\ | 1077 | No newline at end of file\n\ |
| 1078 | --\n\ | 1078 | --\n\ |
| 1079 | libgit2 1.7.1\n\ | 1079 | libgit2 1.7.2\n\ |
| 1080 | \n\ | 1080 | \n\ |
| 1081 | ", | 1081 | ", |
| 1082 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &None)?, | 1082 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &None)?, |
| @@ -1112,7 +1112,7 @@ mod tests { | |||
| 1112 | +some content1\n\\ \ | 1112 | +some content1\n\\ \ |
| 1113 | No newline at end of file\n\ | 1113 | No newline at end of file\n\ |
| 1114 | --\n\ | 1114 | --\n\ |
| 1115 | libgit2 1.7.1\n\ | 1115 | libgit2 1.7.2\n\ |
| 1116 | \n\ | 1116 | \n\ |
| 1117 | ", | 1117 | ", |
| 1118 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &Some((3, 5)))?, | 1118 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &Some((3, 5)))?, |
diff --git a/tests/send.rs b/tests/send.rs index 538f38a..4af2347 100644 --- a/tests/send.rs +++ b/tests/send.rs | |||
| @@ -309,7 +309,7 @@ mod when_cover_letter_details_specified_with_range_of_head_2_sends_cover_letter_ | |||
| 309 | +some content\n\\ \ | 309 | +some content\n\\ \ |
| 310 | No newline at end of file\n\ | 310 | No newline at end of file\n\ |
| 311 | --\n\ | 311 | --\n\ |
| 312 | libgit2 1.7.1\n\ | 312 | libgit2 1.7.2\n\ |
| 313 | \n\ | 313 | \n\ |
| 314 | ", | 314 | ", |
| 315 | ); | 315 | ); |
| @@ -335,7 +335,7 @@ mod when_cover_letter_details_specified_with_range_of_head_2_sends_cover_letter_ | |||
| 335 | +some content\n\\ \ | 335 | +some content\n\\ \ |
| 336 | No newline at end of file\n\ | 336 | No newline at end of file\n\ |
| 337 | --\n\ | 337 | --\n\ |
| 338 | libgit2 1.7.1\n\ | 338 | libgit2 1.7.2\n\ |
| 339 | \n\ | 339 | \n\ |
| 340 | ", | 340 | ", |
| 341 | ); | 341 | ); |