cargo-release: 0.24.12 -> 0.25.0 (#265028)

Diff: https://github.com/crate-ci/cargo-release/compare/refs/tags/v0.24.12...v0.25.0

Changelog: https://github.com/crate-ci/cargo-release/blob/v0.25.0/CHANGELOG.md

authored by

figsoda and committed by
GitHub
be03e203 1e6c9697

+696 -97
+693 -94
pkgs/development/tools/rust/cargo-release/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "addr2line" 7 + version = "0.21.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 6 15 name = "adler" 7 16 version = "1.0.2" 8 17 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 19 28 20 29 [[package]] 21 30 name = "anstream" 22 - version = "0.5.0" 31 + version = "0.6.4" 23 32 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" 33 + checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 25 34 dependencies = [ 26 35 "anstyle", 27 36 "anstyle-parse", ··· 57 66 58 67 [[package]] 59 68 name = "anstyle-wincon" 60 - version = "2.1.0" 69 + version = "3.0.1" 61 70 source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" 71 + checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 63 72 dependencies = [ 64 73 "anstyle", 65 74 "windows-sys 0.48.0", ··· 87 96 ] 88 97 89 98 [[package]] 99 + name = "async-compression" 100 + version = "0.4.4" 101 + source = "registry+https://github.com/rust-lang/crates.io-index" 102 + checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" 103 + dependencies = [ 104 + "flate2", 105 + "futures-core", 106 + "memchr", 107 + "pin-project-lite", 108 + "tokio", 109 + ] 110 + 111 + [[package]] 90 112 name = "atty" 91 113 version = "0.2.14" 92 114 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 104 126 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 105 127 106 128 [[package]] 129 + name = "backtrace" 130 + version = "0.3.69" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 133 + dependencies = [ 134 + "addr2line", 135 + "cc", 136 + "cfg-if", 137 + "libc", 138 + "miniz_oxide", 139 + "object", 140 + "rustc-demangle", 141 + ] 142 + 143 + [[package]] 107 144 name = "base16ct" 108 145 version = "0.2.0" 109 146 source = "registry+https://github.com/rust-lang/crates.io-index" 110 147 checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 111 148 112 149 [[package]] 150 + name = "base64" 151 + version = "0.21.5" 152 + source = "registry+https://github.com/rust-lang/crates.io-index" 153 + checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 154 + 155 + [[package]] 113 156 name = "base64ct" 114 157 version = "1.6.0" 115 158 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 120 163 version = "1.3.2" 121 164 source = "registry+https://github.com/rust-lang/crates.io-index" 122 165 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 166 + 167 + [[package]] 168 + name = "bitflags" 169 + version = "2.4.0" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 123 172 124 173 [[package]] 125 174 name = "block-buffer" ··· 132 181 133 182 [[package]] 134 183 name = "bstr" 135 - version = "1.6.2" 184 + version = "1.7.0" 136 185 source = "registry+https://github.com/rust-lang/crates.io-index" 137 - checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" 186 + checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 138 187 dependencies = [ 139 188 "memchr", 140 189 "regex-automata", ··· 148 197 checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 149 198 150 199 [[package]] 200 + name = "bytes" 201 + version = "1.5.0" 202 + source = "registry+https://github.com/rust-lang/crates.io-index" 203 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 204 + 205 + [[package]] 151 206 name = "camino" 152 207 version = "1.1.4" 153 208 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 167 222 168 223 [[package]] 169 224 name = "cargo-release" 170 - version = "0.24.12" 225 + version = "0.25.0" 171 226 dependencies = [ 172 227 "anyhow", 173 228 "assert_fs", ··· 178 233 "clap", 179 234 "clap-cargo", 180 235 "concolor-control", 181 - "crates-index", 182 236 "difflib", 183 237 "dirs-next", 184 238 "dunce", ··· 188 242 "globset", 189 243 "ignore", 190 244 "indexmap 1.9.3", 191 - "itertools", 245 + "itertools 0.11.0", 192 246 "log", 193 247 "maplit", 194 248 "once_cell", 195 249 "predicates", 196 250 "quick-error", 197 251 "regex", 252 + "reqwest", 198 253 "semver", 199 254 "serde", 200 255 "snapbox", 256 + "tame-index", 201 257 "termcolor", 202 258 "time", 203 - "toml", 204 - "toml_edit", 259 + "toml 0.8.6", 260 + "toml_edit 0.20.7", 205 261 "trycmd", 206 262 ] 207 263 ··· 223 279 "flate2", 224 280 "git2", 225 281 "glob", 226 - "itertools", 282 + "itertools 0.10.5", 227 283 "lazy_static", 228 284 "pasetors", 229 285 "serde", ··· 232 288 "tar", 233 289 "termcolor", 234 290 "time", 235 - "toml", 291 + "toml 0.7.6", 236 292 "url", 237 293 "windows-sys 0.48.0", 238 294 ] ··· 260 316 261 317 [[package]] 262 318 name = "cargo_metadata" 263 - version = "0.17.0" 319 + version = "0.18.0" 264 320 source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "e7daec1a2a2129eeba1644b220b4647ec537b0b5d4bfd6876fcc5a540056b592" 321 + checksum = "fb9ac64500cc83ce4b9f8dafa78186aa008c8dea77a09b94cd307fd0cd5022a8" 266 322 dependencies = [ 267 323 "camino", 268 324 "cargo-platform", ··· 274 330 275 331 [[package]] 276 332 name = "cc" 277 - version = "1.0.79" 333 + version = "1.0.83" 278 334 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 335 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 280 336 dependencies = [ 281 337 "jobserver", 338 + "libc", 282 339 ] 283 340 284 341 [[package]] ··· 289 346 290 347 [[package]] 291 348 name = "clap" 292 - version = "4.4.2" 349 + version = "4.4.7" 293 350 source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "6a13b88d2c62ff462f88e4a121f17a82c1af05693a2f192b5c38d14de73c19f6" 351 + checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" 295 352 dependencies = [ 296 353 "clap_builder", 297 354 "clap_derive", ··· 299 356 300 357 [[package]] 301 358 name = "clap-cargo" 302 - version = "0.12.0" 359 + version = "0.13.0" 303 360 source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "383f21342a464d4af96e9a4cad22a0b4f2880d4a5b3bbf5c9654dd1d9a224ee4" 361 + checksum = "38ae55615695e768a76899c8411b4ebacfbe525e964f94fd24f0007b10b45cd3" 305 362 dependencies = [ 306 363 "anstyle", 307 364 "cargo_metadata", ··· 310 367 311 368 [[package]] 312 369 name = "clap_builder" 313 - version = "4.4.2" 370 + version = "4.4.7" 314 371 source = "registry+https://github.com/rust-lang/crates.io-index" 315 - checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" 372 + checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" 316 373 dependencies = [ 317 374 "anstream", 318 375 "anstyle", ··· 323 380 324 381 [[package]] 325 382 name = "clap_derive" 326 - version = "4.4.2" 383 + version = "4.4.7" 327 384 source = "registry+https://github.com/rust-lang/crates.io-index" 328 - checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" 385 + checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 329 386 dependencies = [ 330 387 "heck", 331 388 "proc-macro2", ··· 335 392 336 393 [[package]] 337 394 name = "clap_lex" 338 - version = "0.5.0" 395 + version = "0.6.0" 339 396 source = "registry+https://github.com/rust-lang/crates.io-index" 340 - checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 397 + checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 341 398 342 399 [[package]] 343 400 name = "colorchoice" ··· 352 409 checksum = "7104119c2f80d887239879d0c50e033cd40eac9a3f3561e0684ba7d5d654f4da" 353 410 dependencies = [ 354 411 "atty", 355 - "bitflags", 412 + "bitflags 1.3.2", 356 413 "concolor-query", 357 414 ] 358 415 ··· 403 460 ] 404 461 405 462 [[package]] 406 - name = "crates-index" 407 - version = "0.19.10" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "65aa5fcd68f892b56202f15a18a53308b2d489b728958dbce48d2d1f3bbaa685" 410 - dependencies = [ 411 - "git2", 412 - "hex", 413 - "home", 414 - "memchr", 415 - "num_cpus", 416 - "rayon", 417 - "rustc-hash", 418 - "semver", 419 - "serde", 420 - "serde_derive", 421 - "serde_json", 422 - "smol_str", 423 - "toml", 424 - ] 425 - 426 - [[package]] 427 463 name = "crates-io" 428 464 version = "0.36.1" 429 465 source = "git+https://github.com/rust-lang/cargo#809b720f05494388cbd54e3a9e7dedd8b3fc13e3" ··· 527 563 "openssl-probe", 528 564 "openssl-sys", 529 565 "schannel", 530 - "socket2", 566 + "socket2 0.4.9", 531 567 "winapi", 532 568 ] 533 569 ··· 659 695 ] 660 696 661 697 [[package]] 698 + name = "encoding_rs" 699 + version = "0.8.33" 700 + source = "registry+https://github.com/rust-lang/crates.io-index" 701 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 702 + dependencies = [ 703 + "cfg-if", 704 + ] 705 + 706 + [[package]] 662 707 name = "env_logger" 663 708 version = "0.10.0" 664 709 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 771 816 ] 772 817 773 818 [[package]] 819 + name = "futures-channel" 820 + version = "0.3.29" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 823 + dependencies = [ 824 + "futures-core", 825 + ] 826 + 827 + [[package]] 828 + name = "futures-core" 829 + version = "0.3.29" 830 + source = "registry+https://github.com/rust-lang/crates.io-index" 831 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 832 + 833 + [[package]] 834 + name = "futures-io" 835 + version = "0.3.29" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 838 + 839 + [[package]] 840 + name = "futures-sink" 841 + version = "0.3.29" 842 + source = "registry+https://github.com/rust-lang/crates.io-index" 843 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 844 + 845 + [[package]] 846 + name = "futures-task" 847 + version = "0.3.29" 848 + source = "registry+https://github.com/rust-lang/crates.io-index" 849 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 850 + 851 + [[package]] 852 + name = "futures-util" 853 + version = "0.3.29" 854 + source = "registry+https://github.com/rust-lang/crates.io-index" 855 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 856 + dependencies = [ 857 + "futures-core", 858 + "futures-io", 859 + "futures-task", 860 + "memchr", 861 + "pin-project-lite", 862 + "pin-utils", 863 + "slab", 864 + ] 865 + 866 + [[package]] 774 867 name = "generic-array" 775 868 version = "0.14.7" 776 869 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 783 876 784 877 [[package]] 785 878 name = "getrandom" 786 - version = "0.2.9" 879 + version = "0.2.10" 787 880 source = "registry+https://github.com/rust-lang/crates.io-index" 788 - checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 881 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 789 882 dependencies = [ 790 883 "cfg-if", 791 884 "js-sys", ··· 795 888 ] 796 889 797 890 [[package]] 891 + name = "gimli" 892 + version = "0.28.0" 893 + source = "registry+https://github.com/rust-lang/crates.io-index" 894 + checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 895 + 896 + [[package]] 798 897 name = "git-conventional" 799 898 version = "0.12.4" 800 899 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 811 910 source = "registry+https://github.com/rust-lang/crates.io-index" 812 911 checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044" 813 912 dependencies = [ 814 - "bitflags", 913 + "bitflags 1.3.2", 815 914 "libc", 816 915 "libgit2-sys", 817 916 "log", ··· 845 944 source = "registry+https://github.com/rust-lang/crates.io-index" 846 945 checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc" 847 946 dependencies = [ 848 - "bitflags", 947 + "bitflags 1.3.2", 849 948 "ignore", 850 949 "walkdir", 851 950 ] ··· 862 961 ] 863 962 864 963 [[package]] 964 + name = "h2" 965 + version = "0.3.21" 966 + source = "registry+https://github.com/rust-lang/crates.io-index" 967 + checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 968 + dependencies = [ 969 + "bytes", 970 + "fnv", 971 + "futures-core", 972 + "futures-sink", 973 + "futures-util", 974 + "http", 975 + "indexmap 1.9.3", 976 + "slab", 977 + "tokio", 978 + "tokio-util", 979 + "tracing", 980 + ] 981 + 982 + [[package]] 865 983 name = "hashbrown" 866 984 version = "0.12.3" 867 985 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 908 1026 version = "0.4.3" 909 1027 source = "registry+https://github.com/rust-lang/crates.io-index" 910 1028 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 911 - dependencies = [ 912 - "serde", 913 - ] 914 1029 915 1030 [[package]] 916 1031 name = "hkdf" ··· 940 1055 ] 941 1056 942 1057 [[package]] 1058 + name = "http" 1059 + version = "0.2.9" 1060 + source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1062 + dependencies = [ 1063 + "bytes", 1064 + "fnv", 1065 + "itoa", 1066 + ] 1067 + 1068 + [[package]] 1069 + name = "http-body" 1070 + version = "0.4.5" 1071 + source = "registry+https://github.com/rust-lang/crates.io-index" 1072 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1073 + dependencies = [ 1074 + "bytes", 1075 + "http", 1076 + "pin-project-lite", 1077 + ] 1078 + 1079 + [[package]] 1080 + name = "httparse" 1081 + version = "1.8.0" 1082 + source = "registry+https://github.com/rust-lang/crates.io-index" 1083 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1084 + 1085 + [[package]] 1086 + name = "httpdate" 1087 + version = "1.0.3" 1088 + source = "registry+https://github.com/rust-lang/crates.io-index" 1089 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1090 + 1091 + [[package]] 943 1092 name = "humantime" 944 1093 version = "2.1.0" 945 1094 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 956 1105 ] 957 1106 958 1107 [[package]] 1108 + name = "hyper" 1109 + version = "0.14.27" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1112 + dependencies = [ 1113 + "bytes", 1114 + "futures-channel", 1115 + "futures-core", 1116 + "futures-util", 1117 + "h2", 1118 + "http", 1119 + "http-body", 1120 + "httparse", 1121 + "httpdate", 1122 + "itoa", 1123 + "pin-project-lite", 1124 + "socket2 0.4.9", 1125 + "tokio", 1126 + "tower-service", 1127 + "tracing", 1128 + "want", 1129 + ] 1130 + 1131 + [[package]] 1132 + name = "hyper-rustls" 1133 + version = "0.24.2" 1134 + source = "registry+https://github.com/rust-lang/crates.io-index" 1135 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1136 + dependencies = [ 1137 + "futures-util", 1138 + "http", 1139 + "hyper", 1140 + "rustls", 1141 + "tokio", 1142 + "tokio-rustls", 1143 + ] 1144 + 1145 + [[package]] 959 1146 name = "idna" 960 1147 version = "0.3.0" 961 1148 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1023 1210 ] 1024 1211 1025 1212 [[package]] 1213 + name = "ipnet" 1214 + version = "2.9.0" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1217 + 1218 + [[package]] 1026 1219 name = "is-terminal" 1027 1220 version = "0.4.7" 1028 1221 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1030 1223 dependencies = [ 1031 1224 "hermit-abi 0.3.1", 1032 1225 "io-lifetimes", 1033 - "rustix", 1226 + "rustix 0.37.19", 1034 1227 "windows-sys 0.48.0", 1035 1228 ] 1036 1229 ··· 1044 1237 ] 1045 1238 1046 1239 [[package]] 1240 + name = "itertools" 1241 + version = "0.11.0" 1242 + source = "registry+https://github.com/rust-lang/crates.io-index" 1243 + checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 1244 + dependencies = [ 1245 + "either", 1246 + ] 1247 + 1248 + [[package]] 1047 1249 name = "itoa" 1048 1250 version = "1.0.6" 1049 1251 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1075 1277 1076 1278 [[package]] 1077 1279 name = "libc" 1078 - version = "0.2.144" 1280 + version = "0.2.148" 1079 1281 source = "registry+https://github.com/rust-lang/crates.io-index" 1080 - checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 1282 + checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 1081 1283 1082 1284 [[package]] 1083 1285 name = "libgit2-sys" ··· 1126 1328 checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1127 1329 1128 1330 [[package]] 1331 + name = "linux-raw-sys" 1332 + version = "0.4.8" 1333 + source = "registry+https://github.com/rust-lang/crates.io-index" 1334 + checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" 1335 + 1336 + [[package]] 1129 1337 name = "log" 1130 1338 version = "0.4.18" 1131 1339 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1153 1361 ] 1154 1362 1155 1363 [[package]] 1364 + name = "mime" 1365 + version = "0.3.17" 1366 + source = "registry+https://github.com/rust-lang/crates.io-index" 1367 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1368 + 1369 + [[package]] 1156 1370 name = "miniz_oxide" 1157 1371 version = "0.7.1" 1158 1372 source = "registry+https://github.com/rust-lang/crates.io-index" 1159 1373 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1160 1374 dependencies = [ 1161 1375 "adler", 1376 + ] 1377 + 1378 + [[package]] 1379 + name = "mio" 1380 + version = "0.8.8" 1381 + source = "registry+https://github.com/rust-lang/crates.io-index" 1382 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1383 + dependencies = [ 1384 + "libc", 1385 + "wasi", 1386 + "windows-sys 0.48.0", 1162 1387 ] 1163 1388 1164 1389 [[package]] ··· 1196 1421 ] 1197 1422 1198 1423 [[package]] 1424 + name = "object" 1425 + version = "0.32.1" 1426 + source = "registry+https://github.com/rust-lang/crates.io-index" 1427 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1428 + dependencies = [ 1429 + "memchr", 1430 + ] 1431 + 1432 + [[package]] 1199 1433 name = "once_cell" 1200 1434 version = "1.18.0" 1201 1435 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1299 1533 checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1300 1534 1301 1535 [[package]] 1536 + name = "pin-project-lite" 1537 + version = "0.2.13" 1538 + source = "registry+https://github.com/rust-lang/crates.io-index" 1539 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1540 + 1541 + [[package]] 1542 + name = "pin-utils" 1543 + version = "0.1.0" 1544 + source = "registry+https://github.com/rust-lang/crates.io-index" 1545 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1546 + 1547 + [[package]] 1302 1548 name = "pkcs8" 1303 1549 version = "0.10.2" 1304 1550 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1323 1569 "anstyle", 1324 1570 "difflib", 1325 1571 "float-cmp", 1326 - "itertools", 1572 + "itertools 0.10.5", 1327 1573 "normalize-line-endings", 1328 1574 "predicates-core", 1329 1575 "regex", ··· 1356 1602 1357 1603 [[package]] 1358 1604 name = "proc-macro2" 1359 - version = "1.0.59" 1605 + version = "1.0.67" 1360 1606 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" 1607 + checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 1362 1608 dependencies = [ 1363 1609 "unicode-ident", 1364 1610 ] ··· 1415 1661 source = "registry+https://github.com/rust-lang/crates.io-index" 1416 1662 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1417 1663 dependencies = [ 1418 - "bitflags", 1664 + "bitflags 1.3.2", 1419 1665 ] 1420 1666 1421 1667 [[package]] ··· 1424 1670 source = "registry+https://github.com/rust-lang/crates.io-index" 1425 1671 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1426 1672 dependencies = [ 1427 - "bitflags", 1673 + "bitflags 1.3.2", 1428 1674 ] 1429 1675 1430 1676 [[package]] ··· 1440 1686 1441 1687 [[package]] 1442 1688 name = "regex" 1443 - version = "1.9.4" 1689 + version = "1.10.2" 1444 1690 source = "registry+https://github.com/rust-lang/crates.io-index" 1445 - checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29" 1691 + checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 1446 1692 dependencies = [ 1447 1693 "aho-corasick", 1448 1694 "memchr", ··· 1452 1698 1453 1699 [[package]] 1454 1700 name = "regex-automata" 1455 - version = "0.3.7" 1701 + version = "0.4.3" 1456 1702 source = "registry+https://github.com/rust-lang/crates.io-index" 1457 - checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629" 1703 + checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 1458 1704 dependencies = [ 1459 1705 "aho-corasick", 1460 1706 "memchr", ··· 1463 1709 1464 1710 [[package]] 1465 1711 name = "regex-syntax" 1466 - version = "0.7.5" 1712 + version = "0.8.2" 1467 1713 source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 1714 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 1715 + 1716 + [[package]] 1717 + name = "reqwest" 1718 + version = "0.11.22" 1719 + source = "registry+https://github.com/rust-lang/crates.io-index" 1720 + checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 1721 + dependencies = [ 1722 + "async-compression", 1723 + "base64", 1724 + "bytes", 1725 + "encoding_rs", 1726 + "futures-core", 1727 + "futures-util", 1728 + "h2", 1729 + "http", 1730 + "http-body", 1731 + "hyper", 1732 + "hyper-rustls", 1733 + "ipnet", 1734 + "js-sys", 1735 + "log", 1736 + "mime", 1737 + "once_cell", 1738 + "percent-encoding", 1739 + "pin-project-lite", 1740 + "rustls", 1741 + "rustls-pemfile", 1742 + "serde", 1743 + "serde_json", 1744 + "serde_urlencoded", 1745 + "system-configuration", 1746 + "tokio", 1747 + "tokio-rustls", 1748 + "tokio-util", 1749 + "tower-service", 1750 + "url", 1751 + "wasm-bindgen", 1752 + "wasm-bindgen-futures", 1753 + "web-sys", 1754 + "webpki-roots", 1755 + "winreg", 1756 + ] 1469 1757 1470 1758 [[package]] 1471 1759 name = "rfc6979" ··· 1478 1766 ] 1479 1767 1480 1768 [[package]] 1481 - name = "rustc-hash" 1482 - version = "1.1.0" 1769 + name = "ring" 1770 + version = "0.17.5" 1771 + source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 1773 + dependencies = [ 1774 + "cc", 1775 + "getrandom", 1776 + "libc", 1777 + "spin", 1778 + "untrusted", 1779 + "windows-sys 0.48.0", 1780 + ] 1781 + 1782 + [[package]] 1783 + name = "rustc-demangle" 1784 + version = "0.1.23" 1483 1785 source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1786 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1485 1787 1486 1788 [[package]] 1487 1789 name = "rustix" ··· 1489 1791 source = "registry+https://github.com/rust-lang/crates.io-index" 1490 1792 checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 1491 1793 dependencies = [ 1492 - "bitflags", 1794 + "bitflags 1.3.2", 1493 1795 "errno", 1494 1796 "io-lifetimes", 1495 1797 "libc", 1496 - "linux-raw-sys", 1798 + "linux-raw-sys 0.3.8", 1799 + "windows-sys 0.48.0", 1800 + ] 1801 + 1802 + [[package]] 1803 + name = "rustix" 1804 + version = "0.38.15" 1805 + source = "registry+https://github.com/rust-lang/crates.io-index" 1806 + checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531" 1807 + dependencies = [ 1808 + "bitflags 2.4.0", 1809 + "errno", 1810 + "libc", 1811 + "linux-raw-sys 0.4.8", 1497 1812 "windows-sys 0.48.0", 1498 1813 ] 1499 1814 1500 1815 [[package]] 1816 + name = "rustls" 1817 + version = "0.21.8" 1818 + source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" 1820 + dependencies = [ 1821 + "log", 1822 + "ring", 1823 + "rustls-webpki", 1824 + "sct", 1825 + ] 1826 + 1827 + [[package]] 1828 + name = "rustls-pemfile" 1829 + version = "1.0.3" 1830 + source = "registry+https://github.com/rust-lang/crates.io-index" 1831 + checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 1832 + dependencies = [ 1833 + "base64", 1834 + ] 1835 + 1836 + [[package]] 1837 + name = "rustls-webpki" 1838 + version = "0.101.7" 1839 + source = "registry+https://github.com/rust-lang/crates.io-index" 1840 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 1841 + dependencies = [ 1842 + "ring", 1843 + "untrusted", 1844 + ] 1845 + 1846 + [[package]] 1501 1847 name = "ryu" 1502 1848 version = "1.0.13" 1503 1849 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1526 1872 version = "1.1.0" 1527 1873 source = "registry+https://github.com/rust-lang/crates.io-index" 1528 1874 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1875 + 1876 + [[package]] 1877 + name = "sct" 1878 + version = "0.7.1" 1879 + source = "registry+https://github.com/rust-lang/crates.io-index" 1880 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 1881 + dependencies = [ 1882 + "ring", 1883 + "untrusted", 1884 + ] 1529 1885 1530 1886 [[package]] 1531 1887 name = "sec1" ··· 1583 1939 1584 1940 [[package]] 1585 1941 name = "serde_spanned" 1586 - version = "0.6.3" 1942 + version = "0.6.4" 1943 + source = "registry+https://github.com/rust-lang/crates.io-index" 1944 + checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 1945 + dependencies = [ 1946 + "serde", 1947 + ] 1948 + 1949 + [[package]] 1950 + name = "serde_urlencoded" 1951 + version = "0.7.1" 1587 1952 source = "registry+https://github.com/rust-lang/crates.io-index" 1588 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 1953 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1589 1954 dependencies = [ 1955 + "form_urlencoded", 1956 + "itoa", 1957 + "ryu", 1590 1958 "serde", 1591 1959 ] 1592 1960 ··· 1630 1998 checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 1631 1999 1632 2000 [[package]] 2001 + name = "slab" 2002 + version = "0.4.9" 2003 + source = "registry+https://github.com/rust-lang/crates.io-index" 2004 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2005 + dependencies = [ 2006 + "autocfg", 2007 + ] 2008 + 2009 + [[package]] 1633 2010 name = "smol_str" 1634 2011 version = "0.2.0" 1635 2012 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1640 2017 1641 2018 [[package]] 1642 2019 name = "snapbox" 1643 - version = "0.4.12" 2020 + version = "0.4.14" 1644 2021 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "ad90eb3a2e3a8031d636d45bd4832751aefd58a291b553f7305a2bacae21aff3" 2022 + checksum = "4b377c0b6e4715c116473d8e40d51e3fa5b0a2297ca9b2a931ba800667b259ed" 1646 2023 dependencies = [ 1647 2024 "anstream", 1648 2025 "anstyle", ··· 1662 2039 1663 2040 [[package]] 1664 2041 name = "snapbox-macros" 1665 - version = "0.3.5" 2042 + version = "0.3.6" 1666 2043 source = "registry+https://github.com/rust-lang/crates.io-index" 1667 - checksum = "95f4ffd811b87da98d0e48285134b7847954bd76e843bb794a893b47ca3ee325" 2044 + checksum = "ed1559baff8a696add3322b9be3e940d433e7bb4e38d79017205fd37ff28b28e" 1668 2045 dependencies = [ 1669 2046 "anstream", 1670 2047 ] ··· 1680 2057 ] 1681 2058 1682 2059 [[package]] 2060 + name = "socket2" 2061 + version = "0.5.4" 2062 + source = "registry+https://github.com/rust-lang/crates.io-index" 2063 + checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" 2064 + dependencies = [ 2065 + "libc", 2066 + "windows-sys 0.48.0", 2067 + ] 2068 + 2069 + [[package]] 2070 + name = "spin" 2071 + version = "0.9.8" 2072 + source = "registry+https://github.com/rust-lang/crates.io-index" 2073 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2074 + 2075 + [[package]] 1683 2076 name = "spki" 1684 2077 version = "0.7.2" 1685 2078 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1688 2081 "base64ct", 1689 2082 "der", 1690 2083 ] 2084 + 2085 + [[package]] 2086 + name = "static_assertions" 2087 + version = "1.1.0" 2088 + source = "registry+https://github.com/rust-lang/crates.io-index" 2089 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1691 2090 1692 2091 [[package]] 1693 2092 name = "strsim" ··· 1713 2112 ] 1714 2113 1715 2114 [[package]] 2115 + name = "system-configuration" 2116 + version = "0.5.1" 2117 + source = "registry+https://github.com/rust-lang/crates.io-index" 2118 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 2119 + dependencies = [ 2120 + "bitflags 1.3.2", 2121 + "core-foundation", 2122 + "system-configuration-sys", 2123 + ] 2124 + 2125 + [[package]] 2126 + name = "system-configuration-sys" 2127 + version = "0.5.0" 2128 + source = "registry+https://github.com/rust-lang/crates.io-index" 2129 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 2130 + dependencies = [ 2131 + "core-foundation-sys", 2132 + "libc", 2133 + ] 2134 + 2135 + [[package]] 2136 + name = "tame-index" 2137 + version = "0.5.5" 2138 + source = "registry+https://github.com/rust-lang/crates.io-index" 2139 + checksum = "239b73acdc37c857aae3832bdc739b937b038e5e8b148191a79545a2beb5af74" 2140 + dependencies = [ 2141 + "camino", 2142 + "home", 2143 + "http", 2144 + "memchr", 2145 + "reqwest", 2146 + "semver", 2147 + "serde", 2148 + "serde_json", 2149 + "smol_str", 2150 + "thiserror", 2151 + "toml 0.7.6", 2152 + "twox-hash", 2153 + ] 2154 + 2155 + [[package]] 1716 2156 name = "tar" 1717 2157 version = "0.4.38" 1718 2158 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1731 2171 "cfg-if", 1732 2172 "fastrand", 1733 2173 "redox_syscall 0.3.5", 1734 - "rustix", 2174 + "rustix 0.37.19", 1735 2175 "windows-sys 0.45.0", 1736 2176 ] 1737 2177 1738 2178 [[package]] 1739 2179 name = "termcolor" 1740 - version = "1.2.0" 2180 + version = "1.3.0" 1741 2181 source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2182 + checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 1743 2183 dependencies = [ 1744 2184 "winapi-util", 1745 2185 ] 1746 2186 1747 2187 [[package]] 1748 2188 name = "terminal_size" 1749 - version = "0.2.6" 2189 + version = "0.3.0" 1750 2190 source = "registry+https://github.com/rust-lang/crates.io-index" 1751 - checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 2191 + checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 1752 2192 dependencies = [ 1753 - "rustix", 2193 + "rustix 0.38.15", 1754 2194 "windows-sys 0.48.0", 1755 2195 ] 1756 2196 ··· 1833 2273 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1834 2274 1835 2275 [[package]] 2276 + name = "tokio" 2277 + version = "1.33.0" 2278 + source = "registry+https://github.com/rust-lang/crates.io-index" 2279 + checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 2280 + dependencies = [ 2281 + "backtrace", 2282 + "bytes", 2283 + "libc", 2284 + "mio", 2285 + "num_cpus", 2286 + "pin-project-lite", 2287 + "socket2 0.5.4", 2288 + "windows-sys 0.48.0", 2289 + ] 2290 + 2291 + [[package]] 2292 + name = "tokio-rustls" 2293 + version = "0.24.1" 2294 + source = "registry+https://github.com/rust-lang/crates.io-index" 2295 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 2296 + dependencies = [ 2297 + "rustls", 2298 + "tokio", 2299 + ] 2300 + 2301 + [[package]] 2302 + name = "tokio-util" 2303 + version = "0.7.10" 2304 + source = "registry+https://github.com/rust-lang/crates.io-index" 2305 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 2306 + dependencies = [ 2307 + "bytes", 2308 + "futures-core", 2309 + "futures-sink", 2310 + "pin-project-lite", 2311 + "tokio", 2312 + "tracing", 2313 + ] 2314 + 2315 + [[package]] 1836 2316 name = "toml" 1837 2317 version = "0.7.6" 1838 2318 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1841 2321 "serde", 1842 2322 "serde_spanned", 1843 2323 "toml_datetime", 1844 - "toml_edit", 2324 + "toml_edit 0.19.14", 2325 + ] 2326 + 2327 + [[package]] 2328 + name = "toml" 2329 + version = "0.8.6" 2330 + source = "registry+https://github.com/rust-lang/crates.io-index" 2331 + checksum = "8ff9e3abce27ee2c9a37f9ad37238c1bdd4e789c84ba37df76aa4d528f5072cc" 2332 + dependencies = [ 2333 + "serde", 2334 + "serde_spanned", 2335 + "toml_datetime", 2336 + "toml_edit 0.20.7", 1845 2337 ] 1846 2338 1847 2339 [[package]] 1848 2340 name = "toml_datetime" 1849 - version = "0.6.3" 2341 + version = "0.6.5" 1850 2342 source = "registry+https://github.com/rust-lang/crates.io-index" 1851 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 2343 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 1852 2344 dependencies = [ 1853 2345 "serde", 1854 2346 ] ··· 1867 2359 ] 1868 2360 1869 2361 [[package]] 2362 + name = "toml_edit" 2363 + version = "0.20.7" 2364 + source = "registry+https://github.com/rust-lang/crates.io-index" 2365 + checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 2366 + dependencies = [ 2367 + "indexmap 2.0.0", 2368 + "serde", 2369 + "serde_spanned", 2370 + "toml_datetime", 2371 + "winnow", 2372 + ] 2373 + 2374 + [[package]] 2375 + name = "tower-service" 2376 + version = "0.3.2" 2377 + source = "registry+https://github.com/rust-lang/crates.io-index" 2378 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2379 + 2380 + [[package]] 2381 + name = "tracing" 2382 + version = "0.1.40" 2383 + source = "registry+https://github.com/rust-lang/crates.io-index" 2384 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2385 + dependencies = [ 2386 + "pin-project-lite", 2387 + "tracing-core", 2388 + ] 2389 + 2390 + [[package]] 2391 + name = "tracing-core" 2392 + version = "0.1.32" 2393 + source = "registry+https://github.com/rust-lang/crates.io-index" 2394 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2395 + dependencies = [ 2396 + "once_cell", 2397 + ] 2398 + 2399 + [[package]] 2400 + name = "try-lock" 2401 + version = "0.2.4" 2402 + source = "registry+https://github.com/rust-lang/crates.io-index" 2403 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2404 + 2405 + [[package]] 1870 2406 name = "trycmd" 1871 - version = "0.14.17" 2407 + version = "0.14.19" 1872 2408 source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "bc6a42f89ccf3c6ee115608a68e256c172734d525a4ac36d4a17a6d4a8108149" 2409 + checksum = "ed009372a42fb103e6f8767b9222925485e03cca032b700d203e2c5b67bee4fb" 1874 2410 dependencies = [ 1875 2411 "glob", 1876 2412 "humantime", ··· 1879 2415 "serde", 1880 2416 "shlex", 1881 2417 "snapbox", 1882 - "toml_edit", 2418 + "toml_edit 0.20.7", 2419 + ] 2420 + 2421 + [[package]] 2422 + name = "twox-hash" 2423 + version = "1.6.3" 2424 + source = "registry+https://github.com/rust-lang/crates.io-index" 2425 + checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 2426 + dependencies = [ 2427 + "cfg-if", 2428 + "static_assertions", 1883 2429 ] 1884 2430 1885 2431 [[package]] ··· 1919 2465 ] 1920 2466 1921 2467 [[package]] 2468 + name = "untrusted" 2469 + version = "0.9.0" 2470 + source = "registry+https://github.com/rust-lang/crates.io-index" 2471 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2472 + 2473 + [[package]] 1922 2474 name = "url" 1923 2475 version = "2.3.1" 1924 2476 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1967 2519 ] 1968 2520 1969 2521 [[package]] 2522 + name = "want" 2523 + version = "0.3.1" 2524 + source = "registry+https://github.com/rust-lang/crates.io-index" 2525 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2526 + dependencies = [ 2527 + "try-lock", 2528 + ] 2529 + 2530 + [[package]] 1970 2531 name = "wasi" 1971 2532 version = "0.11.0+wasi-snapshot-preview1" 1972 2533 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1998 2559 ] 1999 2560 2000 2561 [[package]] 2562 + name = "wasm-bindgen-futures" 2563 + version = "0.4.36" 2564 + source = "registry+https://github.com/rust-lang/crates.io-index" 2565 + checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" 2566 + dependencies = [ 2567 + "cfg-if", 2568 + "js-sys", 2569 + "wasm-bindgen", 2570 + "web-sys", 2571 + ] 2572 + 2573 + [[package]] 2001 2574 name = "wasm-bindgen-macro" 2002 2575 version = "0.2.86" 2003 2576 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2025 2598 version = "0.2.86" 2026 2599 source = "registry+https://github.com/rust-lang/crates.io-index" 2027 2600 checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 2601 + 2602 + [[package]] 2603 + name = "web-sys" 2604 + version = "0.3.63" 2605 + source = "registry+https://github.com/rust-lang/crates.io-index" 2606 + checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" 2607 + dependencies = [ 2608 + "js-sys", 2609 + "wasm-bindgen", 2610 + ] 2611 + 2612 + [[package]] 2613 + name = "webpki-roots" 2614 + version = "0.25.2" 2615 + source = "registry+https://github.com/rust-lang/crates.io-index" 2616 + checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 2028 2617 2029 2618 [[package]] 2030 2619 name = "winapi" ··· 2211 2800 checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 2212 2801 dependencies = [ 2213 2802 "memchr", 2803 + ] 2804 + 2805 + [[package]] 2806 + name = "winreg" 2807 + version = "0.50.0" 2808 + source = "registry+https://github.com/rust-lang/crates.io-index" 2809 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 2810 + dependencies = [ 2811 + "cfg-if", 2812 + "windows-sys 0.48.0", 2214 2813 ] 2215 2814 2216 2815 [[package]]
+3 -3
pkgs/development/tools/rust/cargo-release/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "cargo-release"; 15 - version = "0.24.12"; 15 + version = "0.25.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "crate-ci"; 19 19 repo = "cargo-release"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-dB5gpaY6OB/IjMvqLUMH41l6Q/xMookxfVGXRcdhcBM="; 21 + hash = "sha256-UJdGbuQfvlZHjCKyHCXPDJ5AdUWJCRUS/vNeTKAwyYI="; 22 22 }; 23 23 24 24 cargoLock = { ··· 37 37 openssl 38 38 ] ++ lib.optionals stdenv.isDarwin [ 39 39 curl 40 - darwin.apple_sdk.frameworks.Security 40 + darwin.apple_sdk.frameworks.SystemConfiguration 41 41 ]; 42 42 43 43 nativeCheckInputs = [