lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
e80257fb 98815855

+5245 -2473
+5
nixos/doc/manual/release-notes/rl-2411.section.md
··· 22 22 23 23 - NixOS now has support for *automatic boot assessment* (see [here](https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT/)) for detailed description of the feature) for `systemd-boot` users. Available as [boot.loader.systemd-boot.bootCounting](#opt-boot.loader.systemd-boot.bootCounting.enable). 24 24 25 + - A new display-manager `services.displayManager.ly` was added. 26 + It is a tui based replacement of sddm and lightdm for window manager users. 27 + Users can use it by `services.displayManager.ly.enable` and config it by 28 + `services.displayManager.ly.settings` to generate `/etc/ly/config.ini` 29 + 25 30 ## New Services {#sec-release-24.11-new-services} 26 31 27 32 - [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr), proxy server to bypass Cloudflare protection. Available as [services.flaresolverr](#opt-services.flaresolverr.enable) service.
+1
nixos/modules/module-list.nix
··· 543 543 ./services/display-managers/default.nix 544 544 ./services/display-managers/greetd.nix 545 545 ./services/display-managers/sddm.nix 546 + ./services/display-managers/ly.nix 546 547 ./services/editors/emacs.nix 547 548 ./services/editors/haste.nix 548 549 ./services/editors/infinoted.nix
+2 -1
nixos/modules/services/display-managers/default.nix
··· 204 204 noDmUsed = !(dmConf.gdm.enable 205 205 || cfg.sddm.enable 206 206 || dmConf.xpra.enable 207 - || dmConf.lightdm.enable); 207 + || dmConf.lightdm.enable 208 + || cfg.ly.enable); 208 209 in lib.mkIf noDmUsed (lib.mkDefault false); 209 210 210 211 systemd.services.display-manager = {
+147
nixos/modules/services/display-managers/ly.nix
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + ... 6 + }: 7 + 8 + let 9 + dmcfg = config.services.displayManager; 10 + xcfg = config.services.xserver; 11 + xdmcfg = xcfg.displayManager; 12 + cfg = config.services.displayManager.ly; 13 + xEnv = config.systemd.services.display-manager.environment; 14 + 15 + ly = cfg.package; 16 + 17 + iniFmt = pkgs.formats.iniWithGlobalSection { }; 18 + 19 + inherit (lib) 20 + concatMapStrings 21 + attrNames 22 + getAttr 23 + mkIf 24 + mkOption 25 + mkEnableOption 26 + mkPackageOption 27 + ; 28 + 29 + xserverWrapper = pkgs.writeShellScript "xserver-wrapper" '' 30 + ${concatMapStrings (n: '' 31 + export ${n}="${getAttr n xEnv}" 32 + '') (attrNames xEnv)} 33 + exec systemd-cat -t xserver-wrapper ${xdmcfg.xserverBin} ${toString xdmcfg.xserverArgs} "$@" 34 + ''; 35 + 36 + defaultConfig = { 37 + shutdown_cmd = "/run/current-system/systemd/bin/systemctl poweroff"; 38 + restart_cmd = "/run/current-system/systemd/bin/systemctl reboot"; 39 + tty = 2; 40 + service_name = "ly"; 41 + path = "/run/current-system/sw/bin"; 42 + term_reset_cmd = "${pkgs.ncurses}/bin/tput reset"; 43 + term_restore_cursor_cmd = "${pkgs.ncurses}/bin/tput cnorm"; 44 + mcookie_cmd = "/run/current-system/sw/bin/mcookie"; 45 + waylandsessions = "${dmcfg.sessionData.desktops}/share/wayland-sessions"; 46 + wayland_cmd = dmcfg.sessionData.wrapper; 47 + xsessions = "${dmcfg.sessionData.desktops}/share/xsessions"; 48 + xauth_cmd = lib.optionalString xcfg.enable "${pkgs.xorg.xauth}/bin/xauth"; 49 + x_cmd = lib.optionalString xcfg.enable xserverWrapper; 50 + x_cmd_setup = dmcfg.sessionData.wrapper; 51 + }; 52 + 53 + finalConfig = defaultConfig // cfg.settings; 54 + 55 + cfgFile = iniFmt.generate "config.ini" { globalSection = finalConfig; }; 56 + 57 + in 58 + { 59 + options = { 60 + services.displayManager.ly = { 61 + enable = mkEnableOption "ly as the display manager"; 62 + 63 + package = mkPackageOption pkgs [ "ly" ] { }; 64 + 65 + settings = mkOption { 66 + type = 67 + with lib.types; 68 + attrsOf (oneOf [ 69 + str 70 + int 71 + bool 72 + ]); 73 + default = { }; 74 + example = { 75 + load = false; 76 + save = false; 77 + }; 78 + description = '' 79 + Extra settings merged in and overwriting defaults in config.ini. 80 + ''; 81 + }; 82 + }; 83 + }; 84 + 85 + config = mkIf cfg.enable { 86 + 87 + assertions = [ 88 + { 89 + assertion = !dmcfg.autoLogin.enable; 90 + message = '' 91 + ly doesn't support auto login. 92 + ''; 93 + } 94 + ]; 95 + 96 + security.pam.services.ly = { 97 + startSession = true; 98 + unixAuth = true; 99 + }; 100 + 101 + environment = { 102 + etc."ly/config.ini".source = cfgFile; 103 + systemPackages = [ ly ]; 104 + 105 + pathsToLink = [ "/share/ly" ]; 106 + }; 107 + 108 + services = { 109 + dbus.packages = [ ly ]; 110 + 111 + displayManager = { 112 + enable = true; 113 + execCmd = "exec /run/current-system/sw/bin/ly"; 114 + }; 115 + 116 + xserver = { 117 + # To enable user switching, allow ly to allocate TTYs/displays dynamically. 118 + tty = null; 119 + display = null; 120 + }; 121 + }; 122 + 123 + systemd = { 124 + # We're not using the upstream unit, so copy these: 125 + # https://github.com/fairyglade/ly/blob/master/res/ly.service 126 + services.display-manager = { 127 + after = [ 128 + "systemd-user-sessions.service" 129 + "plymouth-quit-wait.service" 130 + "getty@tty${toString finalConfig.tty}.service" 131 + ]; 132 + 133 + conflicts = [ "getty@tty7.service" ]; 134 + 135 + serviceConfig = { 136 + Type = "idle"; 137 + StandardInput = "tty"; 138 + TTYPath = "/dev/tty${toString finalConfig.tty}"; 139 + TTYReset = "yes"; 140 + TTYVHangup = "yes"; 141 + }; 142 + }; 143 + }; 144 + }; 145 + 146 + meta.maintainers = with lib.maintainers; [ vonfry ]; 147 + }
+2 -1
nixos/modules/services/x11/xserver.nix
··· 648 648 || dmConf.xpra.enable 649 649 || dmConf.sx.enable 650 650 || dmConf.startx.enable 651 - || config.services.greetd.enable); 651 + || config.services.greetd.enable 652 + || config.services.displayManager.ly.enable); 652 653 in mkIf (default) (mkDefault true); 653 654 654 655 services.xserver.videoDrivers = mkIf (cfg.videoDriver != null) [ cfg.videoDriver ];
+1
nixos/tests/all-tests.nix
··· 544 544 lomiri-filemanager-app = runTest ./lomiri-filemanager-app.nix; 545 545 lomiri-system-settings = handleTest ./lomiri-system-settings.nix {}; 546 546 lorri = handleTest ./lorri/default.nix {}; 547 + ly = handleTest ./ly.nix {}; 547 548 maddy = discoverTests (import ./maddy { inherit handleTest; }); 548 549 maestral = handleTest ./maestral.nix {}; 549 550 magic-wormhole-mailbox-server = handleTest ./magic-wormhole-mailbox-server.nix {};
+44
nixos/tests/ly.nix
··· 1 + import ./make-test-python.nix ( 2 + { ... }: 3 + 4 + { 5 + name = "ly"; 6 + 7 + nodes.machine = 8 + { ... }: 9 + { 10 + imports = [ ./common/user-account.nix ]; 11 + services.displayManager.ly = { 12 + enable = true; 13 + settings = { 14 + load = false; 15 + save = false; 16 + }; 17 + }; 18 + services.xserver.enable = true; 19 + services.displayManager.defaultSession = "none+icewm"; 20 + services.xserver.windowManager.icewm.enable = true; 21 + }; 22 + 23 + testScript = 24 + { nodes, ... }: 25 + let 26 + user = nodes.machine.users.users.alice; 27 + in 28 + '' 29 + start_all() 30 + machine.wait_until_tty_matches("2", "password:") 31 + machine.send_key("ctrl-alt-f2") 32 + machine.sleep(1) 33 + machine.screenshot("ly") 34 + machine.send_chars("alice") 35 + machine.send_key("tab") 36 + machine.send_chars("${user.password}") 37 + machine.send_key("ret") 38 + machine.wait_for_file("/run/user/${toString user.uid}/lyxauth") 39 + machine.succeed("xauth merge /run/user/${toString user.uid}/lyxauth") 40 + machine.wait_for_window("^IceWM ") 41 + machine.screenshot("icewm") 42 + ''; 43 + } 44 + )
+1721 -616
pkgs/applications/audio/psst/Cargo.lock
··· 10 10 11 11 [[package]] 12 12 name = "aes" 13 - version = "0.8.3" 13 + version = "0.8.4" 14 14 source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 15 + checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 16 16 dependencies = [ 17 17 "cfg-if", 18 18 "cipher", ··· 21 21 22 22 [[package]] 23 23 name = "aho-corasick" 24 - version = "1.1.1" 24 + version = "1.1.3" 25 25 source = "registry+https://github.com/rust-lang/crates.io-index" 26 - checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" 26 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 27 27 dependencies = [ 28 28 "memchr", 29 29 ] 30 30 31 31 [[package]] 32 + name = "aligned-vec" 33 + version = "0.5.0" 34 + source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" 36 + 37 + [[package]] 32 38 name = "alsa" 33 - version = "0.7.1" 39 + version = "0.9.0" 34 40 source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "e2562ad8dcf0f789f65c6fdaad8a8a9708ed6b488e649da28c01656ad66b8b47" 41 + checksum = "37fe60779335388a88c01ac6c3be40304d1e349de3ada3b15f7808bb90fa9dce" 36 42 dependencies = [ 37 43 "alsa-sys", 38 - "bitflags 1.3.2", 44 + "bitflags 2.6.0", 39 45 "libc", 40 - "nix", 41 46 ] 42 47 43 48 [[package]] ··· 66 71 ] 67 72 68 73 [[package]] 74 + name = "anstream" 75 + version = "0.6.14" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 78 + dependencies = [ 79 + "anstyle", 80 + "anstyle-parse", 81 + "anstyle-query", 82 + "anstyle-wincon", 83 + "colorchoice", 84 + "is_terminal_polyfill", 85 + "utf8parse", 86 + ] 87 + 88 + [[package]] 89 + name = "anstyle" 90 + version = "1.0.7" 91 + source = "registry+https://github.com/rust-lang/crates.io-index" 92 + checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 93 + 94 + [[package]] 95 + name = "anstyle-parse" 96 + version = "0.2.4" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 99 + dependencies = [ 100 + "utf8parse", 101 + ] 102 + 103 + [[package]] 104 + name = "anstyle-query" 105 + version = "1.1.0" 106 + source = "registry+https://github.com/rust-lang/crates.io-index" 107 + checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 108 + dependencies = [ 109 + "windows-sys 0.52.0", 110 + ] 111 + 112 + [[package]] 113 + name = "anstyle-wincon" 114 + version = "3.0.3" 115 + source = "registry+https://github.com/rust-lang/crates.io-index" 116 + checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 117 + dependencies = [ 118 + "anstyle", 119 + "windows-sys 0.52.0", 120 + ] 121 + 122 + [[package]] 69 123 name = "anyhow" 70 - version = "1.0.75" 124 + version = "1.0.86" 125 + source = "registry+https://github.com/rust-lang/crates.io-index" 126 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 127 + 128 + [[package]] 129 + name = "arbitrary" 130 + version = "1.3.2" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 133 + 134 + [[package]] 135 + name = "arg_enum_proc_macro" 136 + version = "0.3.4" 71 137 source = "registry+https://github.com/rust-lang/crates.io-index" 72 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 138 + checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 139 + dependencies = [ 140 + "proc-macro2", 141 + "quote", 142 + "syn 2.0.68", 143 + ] 73 144 74 145 [[package]] 75 146 name = "arrayvec" ··· 84 155 checksum = "46016233fc1bb55c23b856fe556b7db6ccd05119a0a392e04f0b3b7c79058f16" 85 156 86 157 [[package]] 158 + name = "async-broadcast" 159 + version = "0.5.1" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 162 + dependencies = [ 163 + "event-listener 2.5.3", 164 + "futures-core", 165 + ] 166 + 167 + [[package]] 168 + name = "async-channel" 169 + version = "2.3.1" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 172 + dependencies = [ 173 + "concurrent-queue", 174 + "event-listener-strategy", 175 + "futures-core", 176 + "pin-project-lite", 177 + ] 178 + 179 + [[package]] 180 + name = "async-executor" 181 + version = "1.12.0" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "c8828ec6e544c02b0d6691d21ed9f9218d0384a82542855073c2a3f58304aaf0" 184 + dependencies = [ 185 + "async-task", 186 + "concurrent-queue", 187 + "fastrand 2.1.0", 188 + "futures-lite 2.3.0", 189 + "slab", 190 + ] 191 + 192 + [[package]] 193 + name = "async-fs" 194 + version = "1.6.0" 195 + source = "registry+https://github.com/rust-lang/crates.io-index" 196 + checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 197 + dependencies = [ 198 + "async-lock 2.8.0", 199 + "autocfg", 200 + "blocking", 201 + "futures-lite 1.13.0", 202 + ] 203 + 204 + [[package]] 205 + name = "async-io" 206 + version = "1.13.0" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 209 + dependencies = [ 210 + "async-lock 2.8.0", 211 + "autocfg", 212 + "cfg-if", 213 + "concurrent-queue", 214 + "futures-lite 1.13.0", 215 + "log", 216 + "parking", 217 + "polling 2.8.0", 218 + "rustix 0.37.27", 219 + "slab", 220 + "socket2", 221 + "waker-fn", 222 + ] 223 + 224 + [[package]] 225 + name = "async-io" 226 + version = "2.3.3" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" 229 + dependencies = [ 230 + "async-lock 3.4.0", 231 + "cfg-if", 232 + "concurrent-queue", 233 + "futures-io", 234 + "futures-lite 2.3.0", 235 + "parking", 236 + "polling 3.7.2", 237 + "rustix 0.38.34", 238 + "slab", 239 + "tracing", 240 + "windows-sys 0.52.0", 241 + ] 242 + 243 + [[package]] 244 + name = "async-lock" 245 + version = "2.8.0" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 248 + dependencies = [ 249 + "event-listener 2.5.3", 250 + ] 251 + 252 + [[package]] 253 + name = "async-lock" 254 + version = "3.4.0" 255 + source = "registry+https://github.com/rust-lang/crates.io-index" 256 + checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 257 + dependencies = [ 258 + "event-listener 5.3.1", 259 + "event-listener-strategy", 260 + "pin-project-lite", 261 + ] 262 + 263 + [[package]] 264 + name = "async-process" 265 + version = "1.8.1" 266 + source = "registry+https://github.com/rust-lang/crates.io-index" 267 + checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 268 + dependencies = [ 269 + "async-io 1.13.0", 270 + "async-lock 2.8.0", 271 + "async-signal", 272 + "blocking", 273 + "cfg-if", 274 + "event-listener 3.1.0", 275 + "futures-lite 1.13.0", 276 + "rustix 0.38.34", 277 + "windows-sys 0.48.0", 278 + ] 279 + 280 + [[package]] 281 + name = "async-recursion" 282 + version = "1.1.1" 283 + source = "registry+https://github.com/rust-lang/crates.io-index" 284 + checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 285 + dependencies = [ 286 + "proc-macro2", 287 + "quote", 288 + "syn 2.0.68", 289 + ] 290 + 291 + [[package]] 292 + name = "async-signal" 293 + version = "0.2.8" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "794f185324c2f00e771cd9f1ae8b5ac68be2ca7abb129a87afd6e86d228bc54d" 296 + dependencies = [ 297 + "async-io 2.3.3", 298 + "async-lock 3.4.0", 299 + "atomic-waker", 300 + "cfg-if", 301 + "futures-core", 302 + "futures-io", 303 + "rustix 0.38.34", 304 + "signal-hook-registry", 305 + "slab", 306 + "windows-sys 0.52.0", 307 + ] 308 + 309 + [[package]] 310 + name = "async-task" 311 + version = "4.7.1" 312 + source = "registry+https://github.com/rust-lang/crates.io-index" 313 + checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 314 + 315 + [[package]] 316 + name = "async-trait" 317 + version = "0.1.80" 318 + source = "registry+https://github.com/rust-lang/crates.io-index" 319 + checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 320 + dependencies = [ 321 + "proc-macro2", 322 + "quote", 323 + "syn 2.0.68", 324 + ] 325 + 326 + [[package]] 87 327 name = "atk" 88 328 version = "0.16.0" 89 329 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 106 346 "libc", 107 347 "system-deps", 108 348 ] 349 + 350 + [[package]] 351 + name = "atomic-waker" 352 + version = "1.1.2" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 109 355 110 356 [[package]] 111 357 name = "audio_thread_priority" 112 - version = "0.27.1" 358 + version = "0.32.0" 113 359 source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "171919e42cac3c2b837b5749bc9c4abc4b96def2a5be344ce207e0404e25c839" 360 + checksum = "e3632611da7e79f8fc8fd75840f1ccfa7792dbf1e25d00791344a4450dd8834f" 115 361 dependencies = [ 116 362 "cfg-if", 363 + "dbus", 117 364 "libc", 118 365 "log", 119 366 "mach", 120 - "winapi", 367 + "windows-sys 0.52.0", 121 368 ] 122 369 123 370 [[package]] 124 371 name = "autocfg" 125 - version = "1.1.0" 372 + version = "1.3.0" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 375 + 376 + [[package]] 377 + name = "av1-grain" 378 + version = "0.2.3" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" 381 + dependencies = [ 382 + "anyhow", 383 + "arrayvec", 384 + "log", 385 + "nom", 386 + "num-rational", 387 + "v_frame", 388 + ] 389 + 390 + [[package]] 391 + name = "avif-serialize" 392 + version = "0.8.1" 126 393 source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 394 + checksum = "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2" 395 + dependencies = [ 396 + "arrayvec", 397 + ] 128 398 129 399 [[package]] 130 400 name = "base64" 131 - version = "0.21.4" 401 + version = "0.22.1" 132 402 source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 403 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 134 404 135 405 [[package]] 136 406 name = "bindgen" 137 - version = "0.68.1" 407 + version = "0.69.4" 138 408 source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 409 + checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 140 410 dependencies = [ 141 - "bitflags 2.4.0", 411 + "bitflags 2.6.0", 142 412 "cexpr", 143 413 "clang-sys", 414 + "itertools 0.12.1", 144 415 "lazy_static", 145 416 "lazycell", 146 - "peeking_take_while", 147 417 "proc-macro2", 148 418 "quote", 149 419 "regex", 150 420 "rustc-hash", 151 421 "shlex", 152 - "syn 2.0.37", 422 + "syn 2.0.68", 153 423 ] 154 424 155 425 [[package]] ··· 166 436 167 437 [[package]] 168 438 name = "bitflags" 169 - version = "2.4.0" 439 + version = "2.6.0" 170 440 source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 441 + checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 172 442 173 443 [[package]] 174 444 name = "bitmaps" ··· 180 450 ] 181 451 182 452 [[package]] 453 + name = "bitstream-io" 454 + version = "2.4.2" 455 + source = "registry+https://github.com/rust-lang/crates.io-index" 456 + checksum = "415f8399438eb5e4b2f73ed3152a3448b98149dda642a957ee704e1daa5cf1d8" 457 + 458 + [[package]] 183 459 name = "block" 184 460 version = "0.1.6" 185 461 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 195 471 ] 196 472 197 473 [[package]] 474 + name = "block2" 475 + version = "0.5.1" 476 + source = "registry+https://github.com/rust-lang/crates.io-index" 477 + checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 478 + dependencies = [ 479 + "objc2", 480 + ] 481 + 482 + [[package]] 483 + name = "blocking" 484 + version = "1.6.1" 485 + source = "registry+https://github.com/rust-lang/crates.io-index" 486 + checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 487 + dependencies = [ 488 + "async-channel", 489 + "async-task", 490 + "futures-io", 491 + "futures-lite 2.3.0", 492 + "piper", 493 + ] 494 + 495 + [[package]] 198 496 name = "bstr" 199 - version = "1.6.2" 497 + version = "1.9.1" 200 498 source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" 499 + checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 202 500 dependencies = [ 203 501 "memchr", 204 502 "regex-automata", ··· 206 504 ] 207 505 208 506 [[package]] 209 - name = "btoi" 210 - version = "0.4.3" 507 + name = "built" 508 + version = "0.7.3" 211 509 source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad" 213 - dependencies = [ 214 - "num-traits", 215 - ] 510 + checksum = "c6a6c0b39c38fd754ac338b00a88066436389c0f029da5d37d1e01091d9b7c17" 216 511 217 512 [[package]] 218 513 name = "bumpalo" 219 - version = "3.14.0" 514 + version = "3.16.0" 220 515 source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 516 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 222 517 223 518 [[package]] 224 519 name = "bytemuck" 225 - version = "1.14.0" 520 + version = "1.16.1" 226 521 source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 522 + checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e" 228 523 229 524 [[package]] 230 525 name = "byteorder" 231 - version = "1.4.3" 526 + version = "1.5.0" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 529 + 530 + [[package]] 531 + name = "byteorder-lite" 532 + version = "0.1.0" 232 533 source = "registry+https://github.com/rust-lang/crates.io-index" 233 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 534 + checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 234 535 235 536 [[package]] 236 537 name = "bytes" 237 - version = "1.5.0" 538 + version = "1.6.0" 238 539 source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 540 + checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 240 541 241 542 [[package]] 242 543 name = "cairo-rs" ··· 265 566 266 567 [[package]] 267 568 name = "cc" 268 - version = "1.0.83" 569 + version = "1.0.104" 269 570 source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 571 + checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490" 271 572 dependencies = [ 272 573 "jobserver", 273 574 "libc", 575 + "once_cell", 274 576 ] 275 577 276 578 [[package]] ··· 290 592 291 593 [[package]] 292 594 name = "cfg-expr" 293 - version = "0.15.5" 595 + version = "0.15.8" 294 596 source = "registry+https://github.com/rust-lang/crates.io-index" 295 - checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 597 + checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 296 598 dependencies = [ 297 599 "smallvec", 298 600 "target-lexicon", ··· 306 608 307 609 [[package]] 308 610 name = "chrono" 309 - version = "0.4.31" 611 + version = "0.4.38" 310 612 source = "registry+https://github.com/rust-lang/crates.io-index" 311 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 613 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 312 614 dependencies = [ 313 615 "android-tzdata", 314 616 "iana-time-zone", 315 617 "js-sys", 316 618 "num-traits", 317 619 "wasm-bindgen", 318 - "windows-targets 0.48.5", 620 + "windows-targets 0.52.5", 319 621 ] 320 622 321 623 [[package]] ··· 330 632 331 633 [[package]] 332 634 name = "clang-sys" 333 - version = "1.6.1" 635 + version = "1.8.1" 334 636 source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 637 + checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 336 638 dependencies = [ 337 639 "glob", 338 640 "libc", ··· 385 687 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 386 688 387 689 [[package]] 690 + name = "colorchoice" 691 + version = "1.0.1" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 694 + 695 + [[package]] 388 696 name = "combine" 389 - version = "4.6.6" 697 + version = "4.6.7" 390 698 source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 699 + checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 392 700 dependencies = [ 393 701 "bytes", 394 702 "memchr", 395 703 ] 396 704 397 705 [[package]] 706 + name = "concurrent-queue" 707 + version = "2.5.0" 708 + source = "registry+https://github.com/rust-lang/crates.io-index" 709 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 710 + dependencies = [ 711 + "crossbeam-utils", 712 + ] 713 + 714 + [[package]] 398 715 name = "console_error_panic_hook" 399 716 version = "0.1.7" 400 717 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 406 723 407 724 [[package]] 408 725 name = "core-foundation" 409 - version = "0.9.3" 726 + version = "0.9.4" 410 727 source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 728 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 412 729 dependencies = [ 413 - "core-foundation-sys 0.8.4", 730 + "core-foundation-sys", 414 731 "libc", 415 732 ] 416 733 417 734 [[package]] 418 735 name = "core-foundation-sys" 419 - version = "0.6.2" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" 422 - 423 - [[package]] 424 - name = "core-foundation-sys" 425 - version = "0.8.4" 736 + version = "0.8.6" 426 737 source = "registry+https://github.com/rust-lang/crates.io-index" 427 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 738 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 428 739 429 740 [[package]] 430 741 name = "core-graphics" ··· 441 752 442 753 [[package]] 443 754 name = "core-graphics-types" 444 - version = "0.1.2" 755 + version = "0.1.3" 445 756 source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 757 + checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 447 758 dependencies = [ 448 759 "bitflags 1.3.2", 449 760 "core-foundation", ··· 464 775 465 776 [[package]] 466 777 name = "coreaudio-rs" 467 - version = "0.11.2" 778 + version = "0.11.3" 468 779 source = "registry+https://github.com/rust-lang/crates.io-index" 469 - checksum = "cb17e2d1795b1996419648915df94bc7103c28f7b48062d7acf4652fc371b2ff" 780 + checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace" 470 781 dependencies = [ 471 782 "bitflags 1.3.2", 472 - "core-foundation-sys 0.6.2", 783 + "core-foundation-sys", 473 784 "coreaudio-sys", 474 785 ] 475 786 476 787 [[package]] 477 788 name = "coreaudio-sys" 478 - version = "0.2.13" 789 + version = "0.2.15" 479 790 source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "d8478e5bdad14dce236b9898ea002eabfa87cbe14f0aa538dbe3b6a4bec4332d" 791 + checksum = "7f01585027057ff5f0a5bf276174ae4c1594a2c5bde93d5f46a016d76270f5a9" 481 792 dependencies = [ 482 793 "bindgen", 483 794 ] 484 795 485 796 [[package]] 486 797 name = "cpal" 487 - version = "0.15.2" 798 + version = "0.15.3" 488 799 source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "6d959d90e938c5493000514b446987c07aed46c668faaa7d34d6c7a67b1a578c" 800 + checksum = "873dab07c8f743075e57f524c583985fbaf745602acbe916a01539364369a779" 490 801 dependencies = [ 491 802 "alsa", 492 - "core-foundation-sys 0.8.4", 803 + "core-foundation-sys", 493 804 "coreaudio-rs", 494 805 "dasp_sample", 495 - "jni 0.19.0", 806 + "jni", 496 807 "js-sys", 497 808 "libc", 498 809 "mach2", 499 810 "ndk", 500 811 "ndk-context", 501 812 "oboe", 502 - "once_cell", 503 - "parking_lot", 504 813 "wasm-bindgen", 505 814 "wasm-bindgen-futures", 506 815 "web-sys", 507 - "windows 0.46.0", 816 + "windows 0.54.0", 508 817 ] 509 818 510 819 [[package]] 511 820 name = "cpufeatures" 512 - version = "0.2.9" 821 + version = "0.2.12" 513 822 source = "registry+https://github.com/rust-lang/crates.io-index" 514 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 823 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 515 824 dependencies = [ 516 825 "libc", 517 826 ] 518 827 519 828 [[package]] 520 829 name = "crc32fast" 521 - version = "1.3.2" 830 + version = "1.4.2" 522 831 source = "registry+https://github.com/rust-lang/crates.io-index" 523 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 832 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 524 833 dependencies = [ 525 834 "cfg-if", 526 835 ] 527 836 528 837 [[package]] 529 838 name = "crossbeam-channel" 530 - version = "0.5.8" 839 + version = "0.5.13" 531 840 source = "registry+https://github.com/rust-lang/crates.io-index" 532 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 841 + checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 533 842 dependencies = [ 534 - "cfg-if", 535 843 "crossbeam-utils", 536 844 ] 537 845 538 846 [[package]] 539 847 name = "crossbeam-deque" 540 - version = "0.8.3" 848 + version = "0.8.5" 541 849 source = "registry+https://github.com/rust-lang/crates.io-index" 542 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 850 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 543 851 dependencies = [ 544 - "cfg-if", 545 852 "crossbeam-epoch", 546 853 "crossbeam-utils", 547 854 ] 548 855 549 856 [[package]] 550 857 name = "crossbeam-epoch" 551 - version = "0.9.15" 858 + version = "0.9.18" 552 859 source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 860 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 554 861 dependencies = [ 555 - "autocfg", 556 - "cfg-if", 557 862 "crossbeam-utils", 558 - "memoffset", 559 - "scopeguard", 560 863 ] 561 864 562 865 [[package]] 563 866 name = "crossbeam-utils" 564 - version = "0.8.16" 867 + version = "0.8.20" 565 868 source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 567 - dependencies = [ 568 - "cfg-if", 569 - ] 869 + checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 570 870 571 871 [[package]] 572 872 name = "crunchy" ··· 595 895 596 896 [[package]] 597 897 name = "cubeb" 598 - version = "0.10.3" 599 - source = "git+https://github.com/mozilla/cubeb-rs#a2c1c29a0f74ed2e09c94596a87dd99056d98a91" 898 + version = "0.13.0" 899 + source = "git+https://github.com/mozilla/cubeb-rs#1c01012efea03cb528f2b0c62048ee5ed66565f0" 600 900 dependencies = [ 601 901 "cubeb-core", 602 902 ] 603 903 604 904 [[package]] 605 905 name = "cubeb-core" 606 - version = "0.10.4" 607 - source = "git+https://github.com/mozilla/cubeb-rs#a2c1c29a0f74ed2e09c94596a87dd99056d98a91" 906 + version = "0.13.0" 907 + source = "git+https://github.com/mozilla/cubeb-rs#1c01012efea03cb528f2b0c62048ee5ed66565f0" 608 908 dependencies = [ 609 909 "bitflags 1.3.2", 610 910 "cubeb-sys", ··· 612 912 613 913 [[package]] 614 914 name = "cubeb-sys" 615 - version = "0.10.3" 616 - source = "git+https://github.com/mozilla/cubeb-rs#a2c1c29a0f74ed2e09c94596a87dd99056d98a91" 915 + version = "0.13.0" 916 + source = "git+https://github.com/mozilla/cubeb-rs#1c01012efea03cb528f2b0c62048ee5ed66565f0" 617 917 dependencies = [ 618 918 "cmake", 619 919 "pkg-config", ··· 627 927 628 928 [[package]] 629 929 name = "dbus" 630 - version = "0.9.7" 930 + version = "0.6.5" 631 931 source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 932 + checksum = "48b5f0f36f1eebe901b0e6bee369a77ed3396334bf3f09abd46454a576f71819" 633 933 dependencies = [ 634 934 "libc", 635 935 "libdbus-sys", 636 - "winapi", 637 936 ] 638 937 639 938 [[package]] 640 - name = "dbus-crossroads" 641 - version = "0.5.2" 939 + name = "deranged" 940 + version = "0.3.11" 642 941 source = "registry+https://github.com/rust-lang/crates.io-index" 643 - checksum = "3a4c83437187544ba5142427746835061b330446ca8902eabd70e4afb8f76de0" 942 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 644 943 dependencies = [ 645 - "dbus", 944 + "powerfmt", 646 945 ] 647 946 648 947 [[package]] 649 - name = "deranged" 650 - version = "0.3.8" 948 + name = "derivative" 949 + version = "2.2.0" 651 950 source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 951 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 952 + dependencies = [ 953 + "proc-macro2", 954 + "quote", 955 + "syn 1.0.109", 956 + ] 653 957 654 958 [[package]] 655 959 name = "digest" ··· 691 995 692 996 [[package]] 693 997 name = "displaydoc" 694 - version = "0.2.4" 998 + version = "0.2.5" 695 999 source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 1000 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 697 1001 dependencies = [ 698 1002 "proc-macro2", 699 1003 "quote", 700 - "syn 2.0.37", 1004 + "syn 2.0.68", 701 1005 ] 702 1006 703 1007 [[package]] ··· 791 1095 792 1096 [[package]] 793 1097 name = "either" 794 - version = "1.9.0" 1098 + version = "1.13.0" 795 1099 source = "registry+https://github.com/rust-lang/crates.io-index" 796 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1100 + checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 797 1101 798 1102 [[package]] 799 1103 name = "encoding_rs" 800 - version = "0.8.33" 1104 + version = "0.8.34" 801 1105 source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1106 + checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 803 1107 dependencies = [ 804 1108 "cfg-if", 805 1109 ] 806 1110 807 1111 [[package]] 1112 + name = "enumflags2" 1113 + version = "0.7.10" 1114 + source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" 1116 + dependencies = [ 1117 + "enumflags2_derive", 1118 + "serde", 1119 + ] 1120 + 1121 + [[package]] 1122 + name = "enumflags2_derive" 1123 + version = "0.7.10" 1124 + source = "registry+https://github.com/rust-lang/crates.io-index" 1125 + checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" 1126 + dependencies = [ 1127 + "proc-macro2", 1128 + "quote", 1129 + "syn 2.0.68", 1130 + ] 1131 + 1132 + [[package]] 1133 + name = "env_filter" 1134 + version = "0.1.0" 1135 + source = "registry+https://github.com/rust-lang/crates.io-index" 1136 + checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 1137 + dependencies = [ 1138 + "log", 1139 + "regex", 1140 + ] 1141 + 1142 + [[package]] 808 1143 name = "env_logger" 809 - version = "0.10.0" 1144 + version = "0.11.3" 810 1145 source = "registry+https://github.com/rust-lang/crates.io-index" 811 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1146 + checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" 812 1147 dependencies = [ 1148 + "anstream", 1149 + "anstyle", 1150 + "env_filter", 813 1151 "humantime", 814 - "is-terminal", 815 1152 "log", 816 - "regex", 817 - "termcolor", 818 1153 ] 819 1154 820 1155 [[package]] ··· 825 1160 826 1161 [[package]] 827 1162 name = "errno" 828 - version = "0.3.4" 1163 + version = "0.3.9" 829 1164 source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480" 1165 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 831 1166 dependencies = [ 832 - "errno-dragonfly", 833 1167 "libc", 834 - "windows-sys 0.48.0", 1168 + "windows-sys 0.52.0", 1169 + ] 1170 + 1171 + [[package]] 1172 + name = "event-listener" 1173 + version = "2.5.3" 1174 + source = "registry+https://github.com/rust-lang/crates.io-index" 1175 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1176 + 1177 + [[package]] 1178 + name = "event-listener" 1179 + version = "3.1.0" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 1182 + dependencies = [ 1183 + "concurrent-queue", 1184 + "parking", 1185 + "pin-project-lite", 835 1186 ] 836 1187 837 1188 [[package]] 838 - name = "errno-dragonfly" 839 - version = "0.1.2" 1189 + name = "event-listener" 1190 + version = "5.3.1" 1191 + source = "registry+https://github.com/rust-lang/crates.io-index" 1192 + checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1193 + dependencies = [ 1194 + "concurrent-queue", 1195 + "parking", 1196 + "pin-project-lite", 1197 + ] 1198 + 1199 + [[package]] 1200 + name = "event-listener-strategy" 1201 + version = "0.5.2" 840 1202 source = "registry+https://github.com/rust-lang/crates.io-index" 841 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1203 + checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 842 1204 dependencies = [ 843 - "cc", 844 - "libc", 1205 + "event-listener 5.3.1", 1206 + "pin-project-lite", 845 1207 ] 846 1208 847 1209 [[package]] 848 1210 name = "exr" 849 - version = "1.71.0" 1211 + version = "1.72.0" 850 1212 source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" 1213 + checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 852 1214 dependencies = [ 853 1215 "bit_field", 854 1216 "flume", ··· 862 1224 863 1225 [[package]] 864 1226 name = "faster-hex" 865 - version = "0.8.1" 1227 + version = "0.9.0" 866 1228 source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "239f7bfb930f820ab16a9cd95afc26f88264cf6905c960b340a615384aa3338a" 1229 + checksum = "a2a2b11eda1d40935b26cf18f6833c526845ae8c41e58d09af6adeb6f0269183" 1230 + 1231 + [[package]] 1232 + name = "fastrand" 1233 + version = "1.9.0" 1234 + source = "registry+https://github.com/rust-lang/crates.io-index" 1235 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 868 1236 dependencies = [ 869 - "serde", 1237 + "instant", 870 1238 ] 871 1239 872 1240 [[package]] 873 1241 name = "fastrand" 874 - version = "2.0.1" 1242 + version = "2.1.0" 875 1243 source = "registry+https://github.com/rust-lang/crates.io-index" 876 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1244 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 877 1245 878 1246 [[package]] 879 1247 name = "fdeflate" 880 - version = "0.3.0" 1248 + version = "0.3.4" 881 1249 source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1250 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 883 1251 dependencies = [ 884 1252 "simd-adler32", 885 1253 ] ··· 890 1258 source = "registry+https://github.com/rust-lang/crates.io-index" 891 1259 checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 892 1260 dependencies = [ 893 - "memoffset", 1261 + "memoffset 0.9.1", 894 1262 "rustc_version", 895 1263 ] 896 1264 897 1265 [[package]] 898 1266 name = "flate2" 899 - version = "1.0.27" 1267 + version = "1.0.30" 900 1268 source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 1269 + checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 902 1270 dependencies = [ 903 1271 "crc32fast", 904 1272 "miniz_oxide", ··· 906 1274 907 1275 [[package]] 908 1276 name = "fluent-bundle" 909 - version = "0.15.2" 1277 + version = "0.15.3" 910 1278 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 1279 + checksum = "7fe0a21ee80050c678013f82edf4b705fe2f26f1f9877593d13198612503f493" 912 1280 dependencies = [ 913 1281 "fluent-langneg", 914 1282 "fluent-syntax", 915 1283 "intl-memoizer", 916 1284 "intl_pluralrules", 917 1285 "rustc-hash", 918 - "self_cell", 1286 + "self_cell 0.10.3", 919 1287 "smallvec", 920 1288 "unic-langid", 921 1289 ] ··· 931 1299 932 1300 [[package]] 933 1301 name = "fluent-syntax" 934 - version = "0.11.0" 1302 + version = "0.11.1" 935 1303 source = "registry+https://github.com/rust-lang/crates.io-index" 936 - checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 1304 + checksum = "2a530c4694a6a8d528794ee9bbd8ba0122e779629ac908d15ad5a7ae7763a33d" 937 1305 dependencies = [ 938 1306 "thiserror", 939 1307 ] ··· 944 1312 source = "registry+https://github.com/rust-lang/crates.io-index" 945 1313 checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 946 1314 dependencies = [ 947 - "spin 0.9.8", 1315 + "spin", 948 1316 ] 949 1317 950 1318 [[package]] ··· 970 1338 971 1339 [[package]] 972 1340 name = "form_urlencoded" 973 - version = "1.2.0" 1341 + version = "1.2.1" 974 1342 source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1343 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 976 1344 dependencies = [ 977 1345 "percent-encoding", 978 1346 ] ··· 985 1353 986 1354 [[package]] 987 1355 name = "futures-channel" 988 - version = "0.3.28" 1356 + version = "0.3.30" 989 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 990 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1358 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 991 1359 dependencies = [ 992 1360 "futures-core", 993 1361 ] 994 1362 995 1363 [[package]] 996 1364 name = "futures-core" 997 - version = "0.3.28" 1365 + version = "0.3.30" 998 1366 source = "registry+https://github.com/rust-lang/crates.io-index" 999 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1367 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1000 1368 1001 1369 [[package]] 1002 1370 name = "futures-executor" 1003 - version = "0.3.28" 1371 + version = "0.3.30" 1004 1372 source = "registry+https://github.com/rust-lang/crates.io-index" 1005 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1373 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1006 1374 dependencies = [ 1007 1375 "futures-core", 1008 1376 "futures-task", ··· 1011 1379 1012 1380 [[package]] 1013 1381 name = "futures-io" 1014 - version = "0.3.28" 1382 + version = "0.3.30" 1383 + source = "registry+https://github.com/rust-lang/crates.io-index" 1384 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1385 + 1386 + [[package]] 1387 + name = "futures-lite" 1388 + version = "1.13.0" 1015 1389 source = "registry+https://github.com/rust-lang/crates.io-index" 1016 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1390 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1391 + dependencies = [ 1392 + "fastrand 1.9.0", 1393 + "futures-core", 1394 + "futures-io", 1395 + "memchr", 1396 + "parking", 1397 + "pin-project-lite", 1398 + "waker-fn", 1399 + ] 1400 + 1401 + [[package]] 1402 + name = "futures-lite" 1403 + version = "2.3.0" 1404 + source = "registry+https://github.com/rust-lang/crates.io-index" 1405 + checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1406 + dependencies = [ 1407 + "fastrand 2.1.0", 1408 + "futures-core", 1409 + "futures-io", 1410 + "parking", 1411 + "pin-project-lite", 1412 + ] 1017 1413 1018 1414 [[package]] 1019 1415 name = "futures-macro" 1020 - version = "0.3.28" 1416 + version = "0.3.30" 1021 1417 source = "registry+https://github.com/rust-lang/crates.io-index" 1022 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1418 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1023 1419 dependencies = [ 1024 1420 "proc-macro2", 1025 1421 "quote", 1026 - "syn 2.0.37", 1422 + "syn 2.0.68", 1027 1423 ] 1028 1424 1029 1425 [[package]] 1426 + name = "futures-sink" 1427 + version = "0.3.30" 1428 + source = "registry+https://github.com/rust-lang/crates.io-index" 1429 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1430 + 1431 + [[package]] 1030 1432 name = "futures-task" 1031 - version = "0.3.28" 1433 + version = "0.3.30" 1032 1434 source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1435 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1034 1436 1035 1437 [[package]] 1036 1438 name = "futures-util" 1037 - version = "0.3.28" 1439 + version = "0.3.30" 1038 1440 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1441 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1040 1442 dependencies = [ 1041 1443 "futures-core", 1444 + "futures-io", 1042 1445 "futures-macro", 1446 + "futures-sink", 1043 1447 "futures-task", 1448 + "memchr", 1044 1449 "pin-project-lite", 1045 1450 "pin-utils", 1046 1451 "slab", ··· 1117 1522 1118 1523 [[package]] 1119 1524 name = "getrandom" 1120 - version = "0.2.10" 1525 + version = "0.2.15" 1121 1526 source = "registry+https://github.com/rust-lang/crates.io-index" 1122 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1527 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1123 1528 dependencies = [ 1124 1529 "cfg-if", 1125 1530 "libc", ··· 1128 1533 1129 1534 [[package]] 1130 1535 name = "gif" 1131 - version = "0.12.0" 1536 + version = "0.13.1" 1132 1537 source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 1538 + checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 1134 1539 dependencies = [ 1135 1540 "color_quant", 1136 1541 "weezl", ··· 1171 1576 1172 1577 [[package]] 1173 1578 name = "git-version" 1174 - version = "0.3.5" 1579 + version = "0.3.9" 1175 1580 source = "registry+https://github.com/rust-lang/crates.io-index" 1176 - checksum = "f6b0decc02f4636b9ccad390dcbe77b722a77efedfa393caf8379a51d5c61899" 1581 + checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19" 1177 1582 dependencies = [ 1178 1583 "git-version-macro", 1179 - "proc-macro-hack", 1180 1584 ] 1181 1585 1182 1586 [[package]] 1183 1587 name = "git-version-macro" 1184 - version = "0.3.5" 1588 + version = "0.3.9" 1185 1589 source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "fe69f1cbdb6e28af2bac214e943b99ce8a0a06b447d15d3e61161b0423139f3f" 1590 + checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" 1187 1591 dependencies = [ 1188 - "proc-macro-hack", 1189 1592 "proc-macro2", 1190 1593 "quote", 1191 - "syn 1.0.109", 1594 + "syn 2.0.68", 1192 1595 ] 1193 1596 1194 1597 [[package]] 1195 1598 name = "gix-actor" 1196 - version = "0.27.0" 1599 + version = "0.31.3" 1197 1600 source = "registry+https://github.com/rust-lang/crates.io-index" 1198 - checksum = "08c60e982c5290897122d4e2622447f014a2dadd5a18cb73d50bb91b31645e27" 1601 + checksum = "e0f52455500a0fac1fd62a1cf42d9121cfddef8cb3ded2f9e7adb5775deb1fc9" 1199 1602 dependencies = [ 1200 1603 "bstr", 1201 - "btoi", 1202 1604 "gix-date", 1605 + "gix-utils", 1203 1606 "itoa", 1204 1607 "thiserror", 1205 - "winnow", 1608 + "winnow 0.6.13", 1206 1609 ] 1207 1610 1208 1611 [[package]] 1209 1612 name = "gix-config" 1210 - version = "0.30.0" 1613 + version = "0.37.0" 1211 1614 source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "c171514b40487d3f677ae37efc0f45ac980e3169f23c27eb30a70b47fdf88ab5" 1615 + checksum = "53fafe42957e11d98e354a66b6bd70aeea00faf2f62dd11164188224a507c840" 1213 1616 dependencies = [ 1214 1617 "bstr", 1215 1618 "gix-config-value", ··· 1223 1626 "smallvec", 1224 1627 "thiserror", 1225 1628 "unicode-bom", 1226 - "winnow", 1629 + "winnow 0.6.13", 1227 1630 ] 1228 1631 1229 1632 [[package]] 1230 1633 name = "gix-config-value" 1231 - version = "0.14.0" 1634 + version = "0.14.6" 1232 1635 source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "ea7505b97f4d8e7933e29735a568ba2f86d8de466669d9f0e8321384f9972f47" 1636 + checksum = "fbd06203b1a9b33a78c88252a625031b094d9e1b647260070c25b09910c0a804" 1234 1637 dependencies = [ 1235 - "bitflags 2.4.0", 1638 + "bitflags 2.6.0", 1236 1639 "bstr", 1237 1640 "gix-path", 1238 1641 "libc", ··· 1241 1644 1242 1645 [[package]] 1243 1646 name = "gix-date" 1244 - version = "0.8.0" 1647 + version = "0.8.7" 1245 1648 source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "fc7df669639582dc7c02737642f76890b03b5544e141caba68a7d6b4eb551e0d" 1649 + checksum = "9eed6931f21491ee0aeb922751bd7ec97b4b2fe8fbfedcb678e2a2dce5f3b8c0" 1247 1650 dependencies = [ 1248 1651 "bstr", 1249 1652 "itoa", ··· 1253 1656 1254 1657 [[package]] 1255 1658 name = "gix-features" 1256 - version = "0.35.0" 1659 + version = "0.38.2" 1257 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1258 - checksum = "9b9ff423ae4983f762659040d13dd7a5defbd54b6a04ac3cc7347741cec828cd" 1661 + checksum = "ac7045ac9fe5f9c727f38799d002a7ed3583cd777e3322a7c4b43e3cf437dc69" 1259 1662 dependencies = [ 1260 1663 "gix-hash", 1261 1664 "gix-trace", 1665 + "gix-utils", 1262 1666 "libc", 1667 + "prodash", 1263 1668 "sha1_smol", 1264 1669 "walkdir", 1265 1670 ] 1266 1671 1267 1672 [[package]] 1268 1673 name = "gix-fs" 1269 - version = "0.7.0" 1674 + version = "0.11.1" 1270 1675 source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "09815faba62fe9b32d918b75a554686c98e43f7d48c43a80df58eb718e5c6635" 1676 + checksum = "c3338ff92a2164f5209f185ec0cd316f571a72676bb01d27e22f2867ba69f77a" 1272 1677 dependencies = [ 1678 + "fastrand 2.1.0", 1273 1679 "gix-features", 1680 + "gix-utils", 1274 1681 ] 1275 1682 1276 1683 [[package]] 1277 1684 name = "gix-glob" 1278 - version = "0.13.0" 1685 + version = "0.16.3" 1279 1686 source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "a9d76e85f11251dcf751d2c5e918a14f562db5be6f727fd24775245653e9b19d" 1687 + checksum = "c2a29ad0990cf02c48a7aac76ed0dbddeb5a0d070034b83675cc3bbf937eace4" 1281 1688 dependencies = [ 1282 - "bitflags 2.4.0", 1689 + "bitflags 2.6.0", 1283 1690 "bstr", 1284 1691 "gix-features", 1285 1692 "gix-path", ··· 1287 1694 1288 1695 [[package]] 1289 1696 name = "gix-hash" 1290 - version = "0.13.0" 1697 + version = "0.14.2" 1291 1698 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "2ccf425543779cddaa4a7c62aba3fa9d90ea135b160be0a72dd93c063121ad4a" 1699 + checksum = "f93d7df7366121b5018f947a04d37f034717e113dcf9ccd85c34b58e57a74d5e" 1293 1700 dependencies = [ 1294 1701 "faster-hex", 1295 1702 "thiserror", ··· 1297 1704 1298 1705 [[package]] 1299 1706 name = "gix-lock" 1300 - version = "10.0.0" 1707 + version = "14.0.0" 1301 1708 source = "registry+https://github.com/rust-lang/crates.io-index" 1302 - checksum = "47fc96fa8b6b6d33555021907c81eb3b27635daecf6e630630bdad44f8feaa95" 1709 + checksum = "e3bc7fe297f1f4614774989c00ec8b1add59571dc9b024b4c00acb7dedd4e19d" 1303 1710 dependencies = [ 1304 1711 "gix-tempfile", 1305 1712 "gix-utils", ··· 1308 1715 1309 1716 [[package]] 1310 1717 name = "gix-object" 1311 - version = "0.37.0" 1718 + version = "0.42.2" 1312 1719 source = "registry+https://github.com/rust-lang/crates.io-index" 1313 - checksum = "1e7e19616c67967374137bae83e950e9b518a9ea8a605069bd6716ada357fd6f" 1720 + checksum = "1fe2dc4a41191c680c942e6ebd630c8107005983c4679214fdb1007dcf5ae1df" 1314 1721 dependencies = [ 1315 1722 "bstr", 1316 - "btoi", 1317 1723 "gix-actor", 1318 1724 "gix-date", 1319 1725 "gix-features", 1320 1726 "gix-hash", 1727 + "gix-utils", 1321 1728 "gix-validate", 1322 1729 "itoa", 1323 1730 "smallvec", 1324 1731 "thiserror", 1325 - "winnow", 1732 + "winnow 0.6.13", 1326 1733 ] 1327 1734 1328 1735 [[package]] 1329 1736 name = "gix-path" 1330 - version = "0.10.0" 1737 + version = "0.10.8" 1331 1738 source = "registry+https://github.com/rust-lang/crates.io-index" 1332 - checksum = "6a1d370115171e3ae03c5c6d4f7d096f2981a40ddccb98dfd704c773530ba73b" 1739 + checksum = "ca987128ffb056d732bd545db5db3d8b103d252fbf083c2567bb0796876619a4" 1333 1740 dependencies = [ 1334 1741 "bstr", 1335 1742 "gix-trace", ··· 1340 1747 1341 1748 [[package]] 1342 1749 name = "gix-ref" 1343 - version = "0.37.0" 1750 + version = "0.44.1" 1344 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "22e6b749660b613641769edc1954132eb8071a13c32224891686091bef078de4" 1752 + checksum = "3394a2997e5bc6b22ebc1e1a87b41eeefbcfcff3dbfa7c4bd73cb0ac8f1f3e2e" 1346 1753 dependencies = [ 1347 1754 "gix-actor", 1348 1755 "gix-date", ··· 1353 1760 "gix-object", 1354 1761 "gix-path", 1355 1762 "gix-tempfile", 1763 + "gix-utils", 1356 1764 "gix-validate", 1357 1765 "memmap2", 1358 1766 "thiserror", 1359 - "winnow", 1767 + "winnow 0.6.13", 1360 1768 ] 1361 1769 1362 1770 [[package]] 1363 1771 name = "gix-sec" 1364 - version = "0.10.0" 1772 + version = "0.10.6" 1365 1773 source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "92b9542ac025a8c02ed5d17b3fc031a111a384e859d0be3532ec4d58c40a0f28" 1774 + checksum = "fddc27984a643b20dd03e97790555804f98cf07404e0e552c0ad8133266a79a1" 1367 1775 dependencies = [ 1368 - "bitflags 2.4.0", 1776 + "bitflags 2.6.0", 1369 1777 "gix-path", 1370 1778 "libc", 1371 - "windows 0.48.0", 1779 + "windows-sys 0.52.0", 1372 1780 ] 1373 1781 1374 1782 [[package]] 1375 1783 name = "gix-tempfile" 1376 - version = "10.0.0" 1784 + version = "14.0.0" 1377 1785 source = "registry+https://github.com/rust-lang/crates.io-index" 1378 - checksum = "5ae0978f3e11dc57290ee75ac2477c815bca1ce2fa7ed5dc5f16db067410ac4d" 1786 + checksum = "d3b0e276cd08eb2a22e9f286a4f13a222a01be2defafa8621367515375644b99" 1379 1787 dependencies = [ 1380 1788 "gix-fs", 1381 1789 "libc", ··· 1386 1794 1387 1795 [[package]] 1388 1796 name = "gix-trace" 1389 - version = "0.1.3" 1797 + version = "0.1.9" 1390 1798 source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "96b6d623a1152c3facb79067d6e2ecdae48130030cf27d6eb21109f13bd7b836" 1799 + checksum = "f924267408915fddcd558e3f37295cc7d6a3e50f8bd8b606cee0808c3915157e" 1392 1800 1393 1801 [[package]] 1394 1802 name = "gix-utils" 1395 - version = "0.1.5" 1803 + version = "0.1.12" 1396 1804 source = "registry+https://github.com/rust-lang/crates.io-index" 1397 - checksum = "b85d89dc728613e26e0ed952a19583744e7f5240fcd4aa30d6c824ffd8b52f0f" 1805 + checksum = "35192df7fd0fa112263bad8021e2df7167df4cc2a6e6d15892e1e55621d3d4dc" 1398 1806 dependencies = [ 1399 - "fastrand", 1807 + "fastrand 2.1.0", 1808 + "unicode-normalization", 1400 1809 ] 1401 1810 1402 1811 [[package]] 1403 1812 name = "gix-validate" 1404 - version = "0.8.0" 1813 + version = "0.8.5" 1405 1814 source = "registry+https://github.com/rust-lang/crates.io-index" 1406 - checksum = "e05cab2b03a45b866156e052aa38619f4ece4adcb2f79978bfc249bc3b21b8c5" 1815 + checksum = "82c27dd34a49b1addf193c92070bcbf3beaf6e10f16a78544de6372e146a0acf" 1407 1816 dependencies = [ 1408 1817 "bstr", 1409 1818 "thiserror", ··· 1439 1848 dependencies = [ 1440 1849 "anyhow", 1441 1850 "heck 0.4.1", 1442 - "proc-macro-crate", 1851 + "proc-macro-crate 1.3.1", 1443 1852 "proc-macro-error", 1444 1853 "proc-macro2", 1445 1854 "quote", ··· 1521 1930 checksum = "096eb63c6fedf03bafe65e5924595785eaf1bcb7200dac0f2cbe9c9738f05ad8" 1522 1931 dependencies = [ 1523 1932 "anyhow", 1524 - "proc-macro-crate", 1933 + "proc-macro-crate 1.3.1", 1525 1934 "proc-macro-error", 1526 1935 "proc-macro2", 1527 1936 "quote", ··· 1530 1939 1531 1940 [[package]] 1532 1941 name = "half" 1533 - version = "2.2.1" 1942 + version = "2.4.1" 1534 1943 source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" 1944 + checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 1536 1945 dependencies = [ 1946 + "cfg-if", 1537 1947 "crunchy", 1538 1948 ] 1539 1949 1540 1950 [[package]] 1541 1951 name = "hashbrown" 1542 - version = "0.14.1" 1952 + version = "0.14.5" 1543 1953 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 - checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" 1954 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1545 1955 1546 1956 [[package]] 1547 1957 name = "heck" ··· 1559 1969 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1560 1970 1561 1971 [[package]] 1972 + name = "heck" 1973 + version = "0.5.0" 1974 + source = "registry+https://github.com/rust-lang/crates.io-index" 1975 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1976 + 1977 + [[package]] 1562 1978 name = "hermit-abi" 1563 - version = "0.3.3" 1979 + version = "0.3.9" 1980 + source = "registry+https://github.com/rust-lang/crates.io-index" 1981 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1982 + 1983 + [[package]] 1984 + name = "hermit-abi" 1985 + version = "0.4.0" 1986 + source = "registry+https://github.com/rust-lang/crates.io-index" 1987 + checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 1988 + 1989 + [[package]] 1990 + name = "hex" 1991 + version = "0.4.3" 1564 1992 source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1993 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1566 1994 1567 1995 [[package]] 1568 1996 name = "hmac" ··· 1575 2003 1576 2004 [[package]] 1577 2005 name = "home" 1578 - version = "0.5.5" 2006 + version = "0.5.9" 1579 2007 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2008 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1581 2009 dependencies = [ 1582 - "windows-sys 0.48.0", 2010 + "windows-sys 0.52.0", 1583 2011 ] 1584 2012 1585 2013 [[package]] ··· 1590 2018 1591 2019 [[package]] 1592 2020 name = "iana-time-zone" 1593 - version = "0.1.57" 2021 + version = "0.1.60" 1594 2022 source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 2023 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1596 2024 dependencies = [ 1597 2025 "android_system_properties", 1598 - "core-foundation-sys 0.8.4", 2026 + "core-foundation-sys", 1599 2027 "iana-time-zone-haiku", 1600 2028 "js-sys", 1601 2029 "wasm-bindgen", 1602 - "windows 0.48.0", 2030 + "windows-core 0.52.0", 1603 2031 ] 1604 2032 1605 2033 [[package]] ··· 1613 2041 1614 2042 [[package]] 1615 2043 name = "idna" 1616 - version = "0.4.0" 2044 + version = "0.5.0" 1617 2045 source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 2046 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1619 2047 dependencies = [ 1620 2048 "unicode-bidi", 1621 2049 "unicode-normalization", ··· 1638 2066 1639 2067 [[package]] 1640 2068 name = "image" 1641 - version = "0.24.7" 2069 + version = "0.24.9" 2070 + source = "registry+https://github.com/rust-lang/crates.io-index" 2071 + checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 2072 + dependencies = [ 2073 + "bytemuck", 2074 + "byteorder", 2075 + "color_quant", 2076 + "jpeg-decoder", 2077 + "num-traits", 2078 + "png", 2079 + ] 2080 + 2081 + [[package]] 2082 + name = "image" 2083 + version = "0.25.1" 1642 2084 source = "registry+https://github.com/rust-lang/crates.io-index" 1643 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2085 + checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11" 1644 2086 dependencies = [ 1645 2087 "bytemuck", 1646 2088 "byteorder", 1647 2089 "color_quant", 1648 2090 "exr", 1649 2091 "gif", 1650 - "jpeg-decoder", 1651 - "num-rational", 2092 + "image-webp", 1652 2093 "num-traits", 1653 2094 "png", 1654 2095 "qoi", 2096 + "ravif", 2097 + "rayon", 2098 + "rgb", 1655 2099 "tiff", 2100 + "zune-core", 2101 + "zune-jpeg", 1656 2102 ] 1657 2103 1658 2104 [[package]] 2105 + name = "image-webp" 2106 + version = "0.1.2" 2107 + source = "registry+https://github.com/rust-lang/crates.io-index" 2108 + checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d" 2109 + dependencies = [ 2110 + "byteorder-lite", 2111 + "thiserror", 2112 + ] 2113 + 2114 + [[package]] 2115 + name = "imgref" 2116 + version = "1.10.1" 2117 + source = "registry+https://github.com/rust-lang/crates.io-index" 2118 + checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126" 2119 + 2120 + [[package]] 1659 2121 name = "indexmap" 1660 - version = "2.0.2" 2122 + version = "2.2.6" 1661 2123 source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2124 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 1663 2125 dependencies = [ 1664 2126 "equivalent", 1665 2127 "hashbrown", ··· 1676 2138 1677 2139 [[package]] 1678 2140 name = "instant" 1679 - version = "0.1.12" 2141 + version = "0.1.13" 1680 2142 source = "registry+https://github.com/rust-lang/crates.io-index" 1681 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2143 + checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1682 2144 dependencies = [ 1683 2145 "cfg-if", 1684 2146 "js-sys", ··· 1687 2149 ] 1688 2150 1689 2151 [[package]] 2152 + name = "interpolate_name" 2153 + version = "0.2.4" 2154 + source = "registry+https://github.com/rust-lang/crates.io-index" 2155 + checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 2156 + dependencies = [ 2157 + "proc-macro2", 2158 + "quote", 2159 + "syn 2.0.68", 2160 + ] 2161 + 2162 + [[package]] 1690 2163 name = "intl-memoizer" 1691 - version = "0.5.1" 2164 + version = "0.5.2" 1692 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 1693 - checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 2166 + checksum = "fe22e020fce238ae18a6d5d8c502ee76a52a6e880d99477657e6acc30ec57bda" 1694 2167 dependencies = [ 1695 2168 "type-map", 1696 2169 "unic-langid", ··· 1706 2179 ] 1707 2180 1708 2181 [[package]] 1709 - name = "is-docker" 1710 - version = "0.2.0" 2182 + name = "io-lifetimes" 2183 + version = "1.0.11" 1711 2184 source = "registry+https://github.com/rust-lang/crates.io-index" 1712 - checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 2185 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1713 2186 dependencies = [ 1714 - "once_cell", 2187 + "hermit-abi 0.3.9", 2188 + "libc", 2189 + "windows-sys 0.48.0", 1715 2190 ] 1716 2191 1717 2192 [[package]] 1718 - name = "is-terminal" 1719 - version = "0.4.9" 2193 + name = "is-docker" 2194 + version = "0.2.0" 1720 2195 source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2196 + checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 1722 2197 dependencies = [ 1723 - "hermit-abi", 1724 - "rustix", 1725 - "windows-sys 0.48.0", 2198 + "once_cell", 1726 2199 ] 1727 2200 1728 2201 [[package]] ··· 1736 2209 ] 1737 2210 1738 2211 [[package]] 2212 + name = "is_terminal_polyfill" 2213 + version = "1.70.0" 2214 + source = "registry+https://github.com/rust-lang/crates.io-index" 2215 + checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 2216 + 2217 + [[package]] 1739 2218 name = "itertools" 1740 - version = "0.11.0" 2219 + version = "0.12.1" 1741 2220 source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2221 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1743 2222 dependencies = [ 1744 2223 "either", 1745 2224 ] 1746 2225 1747 2226 [[package]] 1748 - name = "itoa" 1749 - version = "1.0.9" 1750 - source = "registry+https://github.com/rust-lang/crates.io-index" 1751 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1752 - 1753 - [[package]] 1754 - name = "jni" 1755 - version = "0.19.0" 2227 + name = "itertools" 2228 + version = "0.13.0" 1756 2229 source = "registry+https://github.com/rust-lang/crates.io-index" 1757 - checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 2230 + checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1758 2231 dependencies = [ 1759 - "cesu8", 1760 - "combine", 1761 - "jni-sys", 1762 - "log", 1763 - "thiserror", 1764 - "walkdir", 2232 + "either", 1765 2233 ] 1766 2234 1767 2235 [[package]] 1768 - name = "jni" 1769 - version = "0.20.0" 2236 + name = "itoa" 2237 + version = "1.0.11" 1770 2238 source = "registry+https://github.com/rust-lang/crates.io-index" 1771 - checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 1772 - dependencies = [ 1773 - "cesu8", 1774 - "combine", 1775 - "jni-sys", 1776 - "log", 1777 - "thiserror", 1778 - "walkdir", 1779 - ] 2239 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1780 2240 1781 2241 [[package]] 1782 2242 name = "jni" ··· 1802 2262 1803 2263 [[package]] 1804 2264 name = "jobserver" 1805 - version = "0.1.26" 2265 + version = "0.1.31" 1806 2266 source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2267 + checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 1808 2268 dependencies = [ 1809 2269 "libc", 1810 2270 ] 1811 2271 1812 2272 [[package]] 1813 2273 name = "jpeg-decoder" 1814 - version = "0.3.0" 2274 + version = "0.3.1" 1815 2275 source = "registry+https://github.com/rust-lang/crates.io-index" 1816 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 1817 - dependencies = [ 1818 - "rayon", 1819 - ] 2276 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 1820 2277 1821 2278 [[package]] 1822 2279 name = "js-sys" 1823 - version = "0.3.64" 2280 + version = "0.3.69" 1824 2281 source = "registry+https://github.com/rust-lang/crates.io-index" 1825 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2282 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1826 2283 dependencies = [ 1827 2284 "wasm-bindgen", 1828 2285 ] ··· 1848 2305 1849 2306 [[package]] 1850 2307 name = "lazy_static" 1851 - version = "1.4.0" 2308 + version = "1.5.0" 1852 2309 source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2310 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1854 2311 1855 2312 [[package]] 1856 2313 name = "lazycell" ··· 1866 2323 1867 2324 [[package]] 1868 2325 name = "libc" 1869 - version = "0.2.148" 2326 + version = "0.2.155" 1870 2327 source = "registry+https://github.com/rust-lang/crates.io-index" 1871 - checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 2328 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 1872 2329 1873 2330 [[package]] 1874 2331 name = "libdbus-sys" ··· 1880 2337 ] 1881 2338 1882 2339 [[package]] 2340 + name = "libfuzzer-sys" 2341 + version = "0.4.7" 2342 + source = "registry+https://github.com/rust-lang/crates.io-index" 2343 + checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" 2344 + dependencies = [ 2345 + "arbitrary", 2346 + "cc", 2347 + "once_cell", 2348 + ] 2349 + 2350 + [[package]] 1883 2351 name = "libloading" 1884 - version = "0.7.4" 2352 + version = "0.8.4" 1885 2353 source = "registry+https://github.com/rust-lang/crates.io-index" 1886 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2354 + checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" 1887 2355 dependencies = [ 1888 2356 "cfg-if", 1889 - "winapi", 2357 + "windows-targets 0.52.5", 2358 + ] 2359 + 2360 + [[package]] 2361 + name = "libredox" 2362 + version = "0.1.3" 2363 + source = "registry+https://github.com/rust-lang/crates.io-index" 2364 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2365 + dependencies = [ 2366 + "bitflags 2.6.0", 2367 + "libc", 1890 2368 ] 1891 2369 1892 2370 [[package]] ··· 1906 2384 1907 2385 [[package]] 1908 2386 name = "linux-raw-sys" 1909 - version = "0.4.8" 2387 + version = "0.3.8" 1910 2388 source = "registry+https://github.com/rust-lang/crates.io-index" 1911 - checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" 2389 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 2390 + 2391 + [[package]] 2392 + name = "linux-raw-sys" 2393 + version = "0.4.14" 2394 + source = "registry+https://github.com/rust-lang/crates.io-index" 2395 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1912 2396 1913 2397 [[package]] 1914 2398 name = "lock_api" 1915 - version = "0.4.10" 2399 + version = "0.4.12" 1916 2400 source = "registry+https://github.com/rust-lang/crates.io-index" 1917 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 2401 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1918 2402 dependencies = [ 1919 2403 "autocfg", 1920 2404 "scopeguard", ··· 1922 2406 1923 2407 [[package]] 1924 2408 name = "log" 1925 - version = "0.4.20" 2409 + version = "0.4.22" 2410 + source = "registry+https://github.com/rust-lang/crates.io-index" 2411 + checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 2412 + 2413 + [[package]] 2414 + name = "loop9" 2415 + version = "0.1.5" 1926 2416 source = "registry+https://github.com/rust-lang/crates.io-index" 1927 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2417 + checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 2418 + dependencies = [ 2419 + "imgref", 2420 + ] 1928 2421 1929 2422 [[package]] 1930 2423 name = "lru-cache" ··· 1946 2439 1947 2440 [[package]] 1948 2441 name = "mach2" 1949 - version = "0.4.1" 2442 + version = "0.4.2" 1950 2443 source = "registry+https://github.com/rust-lang/crates.io-index" 1951 - checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 2444 + checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709" 1952 2445 dependencies = [ 1953 2446 "libc", 1954 2447 ] ··· 1969 2462 checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1970 2463 1971 2464 [[package]] 2465 + name = "maybe-rayon" 2466 + version = "0.1.1" 2467 + source = "registry+https://github.com/rust-lang/crates.io-index" 2468 + checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 2469 + dependencies = [ 2470 + "cfg-if", 2471 + "rayon", 2472 + ] 2473 + 2474 + [[package]] 1972 2475 name = "memchr" 1973 - version = "2.6.4" 2476 + version = "2.7.4" 1974 2477 source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2478 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1976 2479 1977 2480 [[package]] 1978 2481 name = "memmap2" 1979 - version = "0.7.1" 2482 + version = "0.9.4" 1980 2483 source = "registry+https://github.com/rust-lang/crates.io-index" 1981 - checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" 2484 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1982 2485 dependencies = [ 1983 2486 "libc", 1984 2487 ] 1985 2488 1986 2489 [[package]] 1987 2490 name = "memoffset" 1988 - version = "0.9.0" 2491 + version = "0.7.1" 1989 2492 source = "registry+https://github.com/rust-lang/crates.io-index" 1990 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 2493 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2494 + dependencies = [ 2495 + "autocfg", 2496 + ] 2497 + 2498 + [[package]] 2499 + name = "memoffset" 2500 + version = "0.9.1" 2501 + source = "registry+https://github.com/rust-lang/crates.io-index" 2502 + checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1991 2503 dependencies = [ 1992 2504 "autocfg", 1993 2505 ] ··· 2000 2512 2001 2513 [[package]] 2002 2514 name = "miniz_oxide" 2003 - version = "0.7.1" 2515 + version = "0.7.4" 2004 2516 source = "registry+https://github.com/rust-lang/crates.io-index" 2005 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2517 + checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 2006 2518 dependencies = [ 2007 2519 "adler", 2008 2520 "simd-adler32", ··· 2010 2522 2011 2523 [[package]] 2012 2524 name = "ndk" 2013 - version = "0.7.0" 2525 + version = "0.8.0" 2014 2526 source = "registry+https://github.com/rust-lang/crates.io-index" 2015 - checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 2527 + checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 2016 2528 dependencies = [ 2017 - "bitflags 1.3.2", 2529 + "bitflags 2.6.0", 2018 2530 "jni-sys", 2531 + "log", 2019 2532 "ndk-sys", 2020 2533 "num_enum", 2021 - "raw-window-handle", 2022 2534 "thiserror", 2023 2535 ] 2024 2536 ··· 2030 2542 2031 2543 [[package]] 2032 2544 name = "ndk-sys" 2033 - version = "0.4.1+23.1.7779620" 2545 + version = "0.5.0+25.2.9519653" 2034 2546 source = "registry+https://github.com/rust-lang/crates.io-index" 2035 - checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 2547 + checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 2036 2548 dependencies = [ 2037 2549 "jni-sys", 2038 2550 ] 2039 2551 2040 2552 [[package]] 2553 + name = "new_debug_unreachable" 2554 + version = "1.0.6" 2555 + source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2557 + 2558 + [[package]] 2041 2559 name = "nix" 2042 - version = "0.24.3" 2560 + version = "0.26.4" 2043 2561 source = "registry+https://github.com/rust-lang/crates.io-index" 2044 - checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 2562 + checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 2045 2563 dependencies = [ 2046 2564 "bitflags 1.3.2", 2047 2565 "cfg-if", 2048 2566 "libc", 2567 + "memoffset 0.7.1", 2049 2568 ] 2050 2569 2051 2570 [[package]] ··· 2059 2578 ] 2060 2579 2061 2580 [[package]] 2581 + name = "noop_proc_macro" 2582 + version = "0.3.0" 2583 + source = "registry+https://github.com/rust-lang/crates.io-index" 2584 + checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 2585 + 2586 + [[package]] 2062 2587 name = "nu-ansi-term" 2063 2588 version = "0.46.0" 2064 2589 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2070 2595 2071 2596 [[package]] 2072 2597 name = "num-bigint" 2073 - version = "0.4.4" 2598 + version = "0.4.6" 2074 2599 source = "registry+https://github.com/rust-lang/crates.io-index" 2075 - checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 2600 + checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 2076 2601 dependencies = [ 2077 - "autocfg", 2078 2602 "num-integer", 2079 2603 "num-traits", 2080 2604 "rand", 2081 2605 ] 2082 2606 2083 2607 [[package]] 2608 + name = "num-conv" 2609 + version = "0.1.0" 2610 + source = "registry+https://github.com/rust-lang/crates.io-index" 2611 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2612 + 2613 + [[package]] 2084 2614 name = "num-derive" 2085 - version = "0.3.3" 2615 + version = "0.4.2" 2086 2616 source = "registry+https://github.com/rust-lang/crates.io-index" 2087 - checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 2617 + checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 2088 2618 dependencies = [ 2089 2619 "proc-macro2", 2090 2620 "quote", 2091 - "syn 1.0.109", 2621 + "syn 2.0.68", 2092 2622 ] 2093 2623 2094 2624 [[package]] 2095 2625 name = "num-integer" 2096 - version = "0.1.45" 2626 + version = "0.1.46" 2097 2627 source = "registry+https://github.com/rust-lang/crates.io-index" 2098 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2628 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2099 2629 dependencies = [ 2100 - "autocfg", 2101 2630 "num-traits", 2102 2631 ] 2103 2632 2104 2633 [[package]] 2105 2634 name = "num-rational" 2106 - version = "0.4.1" 2635 + version = "0.4.2" 2107 2636 source = "registry+https://github.com/rust-lang/crates.io-index" 2108 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 2637 + checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 2109 2638 dependencies = [ 2110 - "autocfg", 2639 + "num-bigint", 2111 2640 "num-integer", 2112 2641 "num-traits", 2113 2642 ] 2114 2643 2115 2644 [[package]] 2116 2645 name = "num-traits" 2117 - version = "0.2.16" 2646 + version = "0.2.19" 2118 2647 source = "registry+https://github.com/rust-lang/crates.io-index" 2119 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 2648 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2120 2649 dependencies = [ 2121 2650 "autocfg", 2122 2651 ] ··· 2127 2656 source = "registry+https://github.com/rust-lang/crates.io-index" 2128 2657 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2129 2658 dependencies = [ 2130 - "hermit-abi", 2659 + "hermit-abi 0.3.9", 2131 2660 "libc", 2132 2661 ] 2133 2662 2134 2663 [[package]] 2135 2664 name = "num_enum" 2136 - version = "0.5.11" 2665 + version = "0.7.2" 2137 2666 source = "registry+https://github.com/rust-lang/crates.io-index" 2138 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2667 + checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 2139 2668 dependencies = [ 2140 2669 "num_enum_derive", 2141 2670 ] 2142 2671 2143 2672 [[package]] 2144 2673 name = "num_enum_derive" 2145 - version = "0.5.11" 2674 + version = "0.7.2" 2146 2675 source = "registry+https://github.com/rust-lang/crates.io-index" 2147 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2676 + checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 2148 2677 dependencies = [ 2149 - "proc-macro-crate", 2678 + "proc-macro-crate 3.1.0", 2150 2679 "proc-macro2", 2151 2680 "quote", 2152 - "syn 1.0.109", 2681 + "syn 2.0.68", 2153 2682 ] 2154 2683 2155 2684 [[package]] 2156 2685 name = "num_threads" 2157 - version = "0.1.6" 2686 + version = "0.1.7" 2158 2687 source = "registry+https://github.com/rust-lang/crates.io-index" 2159 - checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2688 + checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 2160 2689 dependencies = [ 2161 2690 "libc", 2162 2691 ] ··· 2171 2700 ] 2172 2701 2173 2702 [[package]] 2703 + name = "objc-sys" 2704 + version = "0.3.5" 2705 + source = "registry+https://github.com/rust-lang/crates.io-index" 2706 + checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 2707 + 2708 + [[package]] 2709 + name = "objc2" 2710 + version = "0.5.2" 2711 + source = "registry+https://github.com/rust-lang/crates.io-index" 2712 + checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 2713 + dependencies = [ 2714 + "objc-sys", 2715 + "objc2-encode", 2716 + ] 2717 + 2718 + [[package]] 2719 + name = "objc2-encode" 2720 + version = "4.0.3" 2721 + source = "registry+https://github.com/rust-lang/crates.io-index" 2722 + checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 2723 + 2724 + [[package]] 2725 + name = "objc2-foundation" 2726 + version = "0.2.2" 2727 + source = "registry+https://github.com/rust-lang/crates.io-index" 2728 + checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 2729 + dependencies = [ 2730 + "bitflags 2.6.0", 2731 + "block2", 2732 + "libc", 2733 + "objc2", 2734 + ] 2735 + 2736 + [[package]] 2174 2737 name = "oboe" 2175 - version = "0.5.0" 2738 + version = "0.6.1" 2176 2739 source = "registry+https://github.com/rust-lang/crates.io-index" 2177 - checksum = "8868cc237ee02e2d9618539a23a8d228b9bb3fc2e7a5b11eed3831de77c395d0" 2740 + checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb" 2178 2741 dependencies = [ 2179 - "jni 0.20.0", 2742 + "jni", 2180 2743 "ndk", 2181 2744 "ndk-context", 2182 2745 "num-derive", ··· 2186 2749 2187 2750 [[package]] 2188 2751 name = "oboe-sys" 2189 - version = "0.5.0" 2752 + version = "0.6.1" 2190 2753 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "7f44155e7fb718d3cfddcf70690b2b51ac4412f347cd9e4fbe511abe9cd7b5f2" 2754 + checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d" 2192 2755 dependencies = [ 2193 2756 "cc", 2194 2757 ] 2195 2758 2196 2759 [[package]] 2197 2760 name = "once_cell" 2198 - version = "1.18.0" 2761 + version = "1.19.0" 2199 2762 source = "registry+https://github.com/rust-lang/crates.io-index" 2200 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2763 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2201 2764 2202 2765 [[package]] 2203 2766 name = "open" 2204 - version = "5.0.0" 2767 + version = "5.2.0" 2205 2768 source = "registry+https://github.com/rust-lang/crates.io-index" 2206 - checksum = "cfabf1927dce4d6fdf563d63328a0a506101ced3ec780ca2135747336c98cef8" 2769 + checksum = "9d2c909a3fce3bd80efef4cd1c6c056bd9376a8fe06fcfdbebaf32cb485a7e37" 2207 2770 dependencies = [ 2208 2771 "is-wsl", 2209 2772 "libc", 2210 2773 "pathdiff", 2774 + ] 2775 + 2776 + [[package]] 2777 + name = "ordered-stream" 2778 + version = "0.2.0" 2779 + source = "registry+https://github.com/rust-lang/crates.io-index" 2780 + checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2781 + dependencies = [ 2782 + "futures-core", 2783 + "pin-project-lite", 2211 2784 ] 2212 2785 2213 2786 [[package]] ··· 2270 2843 ] 2271 2844 2272 2845 [[package]] 2846 + name = "parking" 2847 + version = "2.2.0" 2848 + source = "registry+https://github.com/rust-lang/crates.io-index" 2849 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2850 + 2851 + [[package]] 2273 2852 name = "parking_lot" 2274 - version = "0.12.1" 2853 + version = "0.12.3" 2275 2854 source = "registry+https://github.com/rust-lang/crates.io-index" 2276 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2855 + checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2277 2856 dependencies = [ 2278 2857 "lock_api", 2279 2858 "parking_lot_core", ··· 2281 2860 2282 2861 [[package]] 2283 2862 name = "parking_lot_core" 2284 - version = "0.9.8" 2863 + version = "0.9.10" 2285 2864 source = "registry+https://github.com/rust-lang/crates.io-index" 2286 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 2865 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2287 2866 dependencies = [ 2288 2867 "cfg-if", 2289 2868 "libc", 2290 - "redox_syscall 0.3.5", 2869 + "redox_syscall", 2291 2870 "smallvec", 2292 - "windows-targets 0.48.5", 2871 + "windows-targets 0.52.5", 2293 2872 ] 2294 2873 2295 2874 [[package]] 2296 - name = "pathdiff" 2297 - version = "0.2.1" 2875 + name = "paste" 2876 + version = "1.0.15" 2298 2877 source = "registry+https://github.com/rust-lang/crates.io-index" 2299 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 2878 + checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2300 2879 2301 2880 [[package]] 2302 - name = "peeking_take_while" 2303 - version = "0.1.2" 2881 + name = "pathdiff" 2882 + version = "0.2.1" 2304 2883 source = "registry+https://github.com/rust-lang/crates.io-index" 2305 - checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 2884 + checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 2306 2885 2307 2886 [[package]] 2308 2887 name = "percent-encoding" 2309 - version = "2.3.0" 2888 + version = "2.3.1" 2310 2889 source = "registry+https://github.com/rust-lang/crates.io-index" 2311 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2890 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2312 2891 2313 2892 [[package]] 2314 2893 name = "piet" ··· 2316 2895 source = "registry+https://github.com/rust-lang/crates.io-index" 2317 2896 checksum = "e381186490a3e2017a506d62b759ea8eaf4be14666b13ed53973e8ae193451b1" 2318 2897 dependencies = [ 2319 - "image", 2898 + "image 0.24.9", 2320 2899 "kurbo", 2321 2900 "unic-bidi", 2322 2901 ] ··· 2362 2941 dependencies = [ 2363 2942 "associative-cache", 2364 2943 "core-foundation", 2365 - "core-foundation-sys 0.8.4", 2944 + "core-foundation-sys", 2366 2945 "core-graphics", 2367 2946 "core-text", 2368 2947 "foreign-types", ··· 2399 2978 2400 2979 [[package]] 2401 2980 name = "pin-project-lite" 2402 - version = "0.2.13" 2981 + version = "0.2.14" 2403 2982 source = "registry+https://github.com/rust-lang/crates.io-index" 2404 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2983 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2405 2984 2406 2985 [[package]] 2407 2986 name = "pin-utils" ··· 2410 2989 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2411 2990 2412 2991 [[package]] 2992 + name = "piper" 2993 + version = "0.2.3" 2994 + source = "registry+https://github.com/rust-lang/crates.io-index" 2995 + checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" 2996 + dependencies = [ 2997 + "atomic-waker", 2998 + "fastrand 2.1.0", 2999 + "futures-io", 3000 + ] 3001 + 3002 + [[package]] 2413 3003 name = "pkg-config" 2414 - version = "0.3.27" 3004 + version = "0.3.30" 2415 3005 source = "registry+https://github.com/rust-lang/crates.io-index" 2416 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3006 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2417 3007 2418 3008 [[package]] 2419 3009 name = "platform-dirs" ··· 2426 3016 2427 3017 [[package]] 2428 3018 name = "png" 2429 - version = "0.17.10" 3019 + version = "0.17.13" 2430 3020 source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3021 + checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 2432 3022 dependencies = [ 2433 3023 "bitflags 1.3.2", 2434 3024 "crc32fast", ··· 2438 3028 ] 2439 3029 2440 3030 [[package]] 3031 + name = "polling" 3032 + version = "2.8.0" 3033 + source = "registry+https://github.com/rust-lang/crates.io-index" 3034 + checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 3035 + dependencies = [ 3036 + "autocfg", 3037 + "bitflags 1.3.2", 3038 + "cfg-if", 3039 + "concurrent-queue", 3040 + "libc", 3041 + "log", 3042 + "pin-project-lite", 3043 + "windows-sys 0.48.0", 3044 + ] 3045 + 3046 + [[package]] 3047 + name = "polling" 3048 + version = "3.7.2" 3049 + source = "registry+https://github.com/rust-lang/crates.io-index" 3050 + checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" 3051 + dependencies = [ 3052 + "cfg-if", 3053 + "concurrent-queue", 3054 + "hermit-abi 0.4.0", 3055 + "pin-project-lite", 3056 + "rustix 0.38.34", 3057 + "tracing", 3058 + "windows-sys 0.52.0", 3059 + ] 3060 + 3061 + [[package]] 3062 + name = "pollster" 3063 + version = "0.3.0" 3064 + source = "registry+https://github.com/rust-lang/crates.io-index" 3065 + checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" 3066 + 3067 + [[package]] 3068 + name = "powerfmt" 3069 + version = "0.2.0" 3070 + source = "registry+https://github.com/rust-lang/crates.io-index" 3071 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3072 + 3073 + [[package]] 2441 3074 name = "ppv-lite86" 2442 3075 version = "0.2.17" 2443 3076 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2450 3083 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2451 3084 dependencies = [ 2452 3085 "once_cell", 2453 - "toml_edit", 3086 + "toml_edit 0.19.15", 3087 + ] 3088 + 3089 + [[package]] 3090 + name = "proc-macro-crate" 3091 + version = "3.1.0" 3092 + source = "registry+https://github.com/rust-lang/crates.io-index" 3093 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 3094 + dependencies = [ 3095 + "toml_edit 0.21.1", 2454 3096 ] 2455 3097 2456 3098 [[package]] ··· 2478 3120 ] 2479 3121 2480 3122 [[package]] 2481 - name = "proc-macro-hack" 2482 - version = "0.5.20+deprecated" 3123 + name = "proc-macro2" 3124 + version = "1.0.86" 3125 + source = "registry+https://github.com/rust-lang/crates.io-index" 3126 + checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 3127 + dependencies = [ 3128 + "unicode-ident", 3129 + ] 3130 + 3131 + [[package]] 3132 + name = "prodash" 3133 + version = "28.0.0" 3134 + source = "registry+https://github.com/rust-lang/crates.io-index" 3135 + checksum = "744a264d26b88a6a7e37cbad97953fa233b94d585236310bcbc88474b4092d79" 3136 + 3137 + [[package]] 3138 + name = "profiling" 3139 + version = "1.0.15" 2483 3140 source = "registry+https://github.com/rust-lang/crates.io-index" 2484 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3141 + checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58" 3142 + dependencies = [ 3143 + "profiling-procmacros", 3144 + ] 2485 3145 2486 3146 [[package]] 2487 - name = "proc-macro2" 2488 - version = "1.0.67" 3147 + name = "profiling-procmacros" 3148 + version = "1.0.15" 2489 3149 source = "registry+https://github.com/rust-lang/crates.io-index" 2490 - checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 3150 + checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd" 2491 3151 dependencies = [ 2492 - "unicode-ident", 3152 + "quote", 3153 + "syn 2.0.68", 2493 3154 ] 2494 3155 2495 3156 [[package]] ··· 2536 3197 "tempfile", 2537 3198 "ureq", 2538 3199 "url", 2539 - "windows 0.51.1", 3200 + "windows 0.57.0", 2540 3201 ] 2541 3202 2542 3203 [[package]] ··· 2549 3210 "druid-shell", 2550 3211 "env_logger", 2551 3212 "fs_extra", 2552 - "image", 2553 - "itertools", 3213 + "image 0.25.1", 3214 + "itertools 0.13.0", 2554 3215 "log", 2555 3216 "lru-cache", 2556 3217 "once_cell", ··· 2590 3251 ] 2591 3252 2592 3253 [[package]] 3254 + name = "quick-error" 3255 + version = "2.0.1" 3256 + source = "registry+https://github.com/rust-lang/crates.io-index" 3257 + checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 3258 + 3259 + [[package]] 2593 3260 name = "quick-protobuf" 2594 3261 version = "0.8.1" 2595 3262 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2600 3267 2601 3268 [[package]] 2602 3269 name = "quote" 2603 - version = "1.0.33" 3270 + version = "1.0.36" 2604 3271 source = "registry+https://github.com/rust-lang/crates.io-index" 2605 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3272 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 2606 3273 dependencies = [ 2607 3274 "proc-macro2", 2608 3275 ] ··· 2648 3315 2649 3316 [[package]] 2650 3317 name = "rangemap" 2651 - version = "1.4.0" 3318 + version = "1.5.1" 3319 + source = "registry+https://github.com/rust-lang/crates.io-index" 3320 + checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684" 3321 + 3322 + [[package]] 3323 + name = "rav1e" 3324 + version = "0.7.1" 3325 + source = "registry+https://github.com/rust-lang/crates.io-index" 3326 + checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" 3327 + dependencies = [ 3328 + "arbitrary", 3329 + "arg_enum_proc_macro", 3330 + "arrayvec", 3331 + "av1-grain", 3332 + "bitstream-io", 3333 + "built", 3334 + "cfg-if", 3335 + "interpolate_name", 3336 + "itertools 0.12.1", 3337 + "libc", 3338 + "libfuzzer-sys", 3339 + "log", 3340 + "maybe-rayon", 3341 + "new_debug_unreachable", 3342 + "noop_proc_macro", 3343 + "num-derive", 3344 + "num-traits", 3345 + "once_cell", 3346 + "paste", 3347 + "profiling", 3348 + "rand", 3349 + "rand_chacha", 3350 + "simd_helpers", 3351 + "system-deps", 3352 + "thiserror", 3353 + "v_frame", 3354 + "wasm-bindgen", 3355 + ] 3356 + 3357 + [[package]] 3358 + name = "ravif" 3359 + version = "0.11.7" 2652 3360 source = "registry+https://github.com/rust-lang/crates.io-index" 2653 - checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" 3361 + checksum = "67376f469e7e7840d0040bbf4b9b3334005bb167f814621326e4c7ab8cd6e944" 3362 + dependencies = [ 3363 + "avif-serialize", 3364 + "imgref", 3365 + "loop9", 3366 + "quick-error", 3367 + "rav1e", 3368 + "rayon", 3369 + "rgb", 3370 + ] 2654 3371 2655 3372 [[package]] 2656 3373 name = "raw-window-handle" ··· 2660 3377 2661 3378 [[package]] 2662 3379 name = "rayon" 2663 - version = "1.8.0" 3380 + version = "1.10.0" 2664 3381 source = "registry+https://github.com/rust-lang/crates.io-index" 2665 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3382 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 2666 3383 dependencies = [ 2667 3384 "either", 2668 3385 "rayon-core", ··· 2670 3387 2671 3388 [[package]] 2672 3389 name = "rayon-core" 2673 - version = "1.12.0" 3390 + version = "1.12.1" 2674 3391 source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3392 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 2676 3393 dependencies = [ 2677 3394 "crossbeam-deque", 2678 3395 "crossbeam-utils", ··· 2686 3403 2687 3404 [[package]] 2688 3405 name = "redox_syscall" 2689 - version = "0.2.16" 2690 - source = "registry+https://github.com/rust-lang/crates.io-index" 2691 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2692 - dependencies = [ 2693 - "bitflags 1.3.2", 2694 - ] 2695 - 2696 - [[package]] 2697 - name = "redox_syscall" 2698 - version = "0.3.5" 3406 + version = "0.5.2" 2699 3407 source = "registry+https://github.com/rust-lang/crates.io-index" 2700 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3408 + checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd" 2701 3409 dependencies = [ 2702 - "bitflags 1.3.2", 3410 + "bitflags 2.6.0", 2703 3411 ] 2704 3412 2705 3413 [[package]] 2706 3414 name = "redox_users" 2707 - version = "0.4.3" 3415 + version = "0.4.5" 2708 3416 source = "registry+https://github.com/rust-lang/crates.io-index" 2709 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3417 + checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 2710 3418 dependencies = [ 2711 3419 "getrandom", 2712 - "redox_syscall 0.2.16", 3420 + "libredox", 2713 3421 "thiserror", 2714 3422 ] 2715 3423 2716 3424 [[package]] 2717 3425 name = "regex" 2718 - version = "1.9.6" 3426 + version = "1.10.5" 2719 3427 source = "registry+https://github.com/rust-lang/crates.io-index" 2720 - checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" 3428 + checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 2721 3429 dependencies = [ 2722 3430 "aho-corasick", 2723 3431 "memchr", ··· 2727 3435 2728 3436 [[package]] 2729 3437 name = "regex-automata" 2730 - version = "0.3.9" 3438 + version = "0.4.7" 2731 3439 source = "registry+https://github.com/rust-lang/crates.io-index" 2732 - checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" 3440 + checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 2733 3441 dependencies = [ 2734 3442 "aho-corasick", 2735 3443 "memchr", ··· 2738 3446 2739 3447 [[package]] 2740 3448 name = "regex-syntax" 2741 - version = "0.7.5" 3449 + version = "0.8.4" 2742 3450 source = "registry+https://github.com/rust-lang/crates.io-index" 2743 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 3451 + checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 3452 + 3453 + [[package]] 3454 + name = "rgb" 3455 + version = "0.8.40" 3456 + source = "registry+https://github.com/rust-lang/crates.io-index" 3457 + checksum = "a7439be6844e40133eda024efd85bf07f59d0dd2f59b10c00dd6cfb92cc5c741" 3458 + dependencies = [ 3459 + "bytemuck", 3460 + ] 2744 3461 2745 3462 [[package]] 2746 3463 name = "ring" 2747 - version = "0.16.20" 3464 + version = "0.17.8" 2748 3465 source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3466 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 2750 3467 dependencies = [ 2751 3468 "cc", 3469 + "cfg-if", 3470 + "getrandom", 2752 3471 "libc", 2753 - "once_cell", 2754 - "spin 0.5.2", 3472 + "spin", 2755 3473 "untrusted", 2756 - "web-sys", 2757 - "winapi", 3474 + "windows-sys 0.52.0", 2758 3475 ] 2759 3476 2760 3477 [[package]] ··· 2774 3491 2775 3492 [[package]] 2776 3493 name = "rustix" 2777 - version = "0.38.15" 3494 + version = "0.37.27" 2778 3495 source = "registry+https://github.com/rust-lang/crates.io-index" 2779 - checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531" 3496 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 2780 3497 dependencies = [ 2781 - "bitflags 2.4.0", 3498 + "bitflags 1.3.2", 2782 3499 "errno", 3500 + "io-lifetimes", 2783 3501 "libc", 2784 - "linux-raw-sys", 3502 + "linux-raw-sys 0.3.8", 2785 3503 "windows-sys 0.48.0", 2786 3504 ] 2787 3505 2788 3506 [[package]] 3507 + name = "rustix" 3508 + version = "0.38.34" 3509 + source = "registry+https://github.com/rust-lang/crates.io-index" 3510 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3511 + dependencies = [ 3512 + "bitflags 2.6.0", 3513 + "errno", 3514 + "libc", 3515 + "linux-raw-sys 0.4.14", 3516 + "windows-sys 0.52.0", 3517 + ] 3518 + 3519 + [[package]] 2789 3520 name = "rustls" 2790 - version = "0.21.7" 3521 + version = "0.22.4" 2791 3522 source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 3523 + checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 2793 3524 dependencies = [ 2794 3525 "log", 2795 3526 "ring", 3527 + "rustls-pki-types", 2796 3528 "rustls-webpki", 2797 - "sct", 3529 + "subtle", 3530 + "zeroize", 2798 3531 ] 2799 3532 2800 3533 [[package]] 3534 + name = "rustls-pki-types" 3535 + version = "1.7.0" 3536 + source = "registry+https://github.com/rust-lang/crates.io-index" 3537 + checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 3538 + 3539 + [[package]] 2801 3540 name = "rustls-webpki" 2802 - version = "0.101.6" 3541 + version = "0.102.4" 2803 3542 source = "registry+https://github.com/rust-lang/crates.io-index" 2804 - checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" 3543 + checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" 2805 3544 dependencies = [ 2806 3545 "ring", 3546 + "rustls-pki-types", 2807 3547 "untrusted", 2808 3548 ] 2809 3549 2810 3550 [[package]] 2811 3551 name = "ryu" 2812 - version = "1.0.15" 3552 + version = "1.0.18" 2813 3553 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3554 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 2815 3555 2816 3556 [[package]] 2817 3557 name = "same-file" ··· 2829 3569 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2830 3570 2831 3571 [[package]] 2832 - name = "sct" 2833 - version = "0.7.0" 3572 + name = "self_cell" 3573 + version = "0.10.3" 2834 3574 source = "registry+https://github.com/rust-lang/crates.io-index" 2835 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 3575 + checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d" 2836 3576 dependencies = [ 2837 - "ring", 2838 - "untrusted", 3577 + "self_cell 1.0.4", 2839 3578 ] 2840 3579 2841 3580 [[package]] 2842 3581 name = "self_cell" 2843 - version = "0.10.2" 3582 + version = "1.0.4" 2844 3583 source = "registry+https://github.com/rust-lang/crates.io-index" 2845 - checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 3584 + checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a" 2846 3585 2847 3586 [[package]] 2848 3587 name = "semver" 2849 - version = "1.0.19" 3588 + version = "1.0.23" 2850 3589 source = "registry+https://github.com/rust-lang/crates.io-index" 2851 - checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0" 3590 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 2852 3591 2853 3592 [[package]] 2854 3593 name = "serde" 2855 - version = "1.0.188" 3594 + version = "1.0.203" 2856 3595 source = "registry+https://github.com/rust-lang/crates.io-index" 2857 - checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 3596 + checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 2858 3597 dependencies = [ 2859 3598 "serde_derive", 2860 3599 ] 2861 3600 2862 3601 [[package]] 2863 3602 name = "serde_derive" 2864 - version = "1.0.188" 3603 + version = "1.0.203" 2865 3604 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 3605 + checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 2867 3606 dependencies = [ 2868 3607 "proc-macro2", 2869 3608 "quote", 2870 - "syn 2.0.37", 3609 + "syn 2.0.68", 2871 3610 ] 2872 3611 2873 3612 [[package]] 2874 3613 name = "serde_json" 2875 - version = "1.0.107" 3614 + version = "1.0.120" 2876 3615 source = "registry+https://github.com/rust-lang/crates.io-index" 2877 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 3616 + checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" 2878 3617 dependencies = [ 2879 3618 "itoa", 2880 3619 "ryu", ··· 2882 3621 ] 2883 3622 2884 3623 [[package]] 3624 + name = "serde_repr" 3625 + version = "0.1.19" 3626 + source = "registry+https://github.com/rust-lang/crates.io-index" 3627 + checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 3628 + dependencies = [ 3629 + "proc-macro2", 3630 + "quote", 3631 + "syn 2.0.68", 3632 + ] 3633 + 3634 + [[package]] 2885 3635 name = "serde_spanned" 2886 - version = "0.6.3" 3636 + version = "0.6.6" 2887 3637 source = "registry+https://github.com/rust-lang/crates.io-index" 2888 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 3638 + checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 2889 3639 dependencies = [ 2890 3640 "serde", 2891 3641 ] ··· 2902 3652 ] 2903 3653 2904 3654 [[package]] 3655 + name = "sha1" 3656 + version = "0.10.6" 3657 + source = "registry+https://github.com/rust-lang/crates.io-index" 3658 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3659 + dependencies = [ 3660 + "cfg-if", 3661 + "cpufeatures", 3662 + "digest", 3663 + ] 3664 + 3665 + [[package]] 2905 3666 name = "sha1_smol" 2906 3667 version = "1.0.0" 2907 3668 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2918 3679 2919 3680 [[package]] 2920 3681 name = "sharded-slab" 2921 - version = "0.1.6" 3682 + version = "0.1.7" 2922 3683 source = "registry+https://github.com/rust-lang/crates.io-index" 2923 - checksum = "c1b21f559e07218024e7e9f90f96f601825397de0e25420135f7f952453fed0b" 3684 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2924 3685 dependencies = [ 2925 3686 "lazy_static", 2926 3687 ] 2927 3688 2928 3689 [[package]] 2929 3690 name = "shlex" 2930 - version = "1.2.0" 3691 + version = "1.3.0" 3692 + source = "registry+https://github.com/rust-lang/crates.io-index" 3693 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3694 + 3695 + [[package]] 3696 + name = "signal-hook-registry" 3697 + version = "1.4.2" 2931 3698 source = "registry+https://github.com/rust-lang/crates.io-index" 2932 - checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 3699 + checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3700 + dependencies = [ 3701 + "libc", 3702 + ] 2933 3703 2934 3704 [[package]] 2935 3705 name = "simd-adler32" ··· 2938 3708 checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2939 3709 2940 3710 [[package]] 3711 + name = "simd_helpers" 3712 + version = "0.1.0" 3713 + source = "registry+https://github.com/rust-lang/crates.io-index" 3714 + checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 3715 + dependencies = [ 3716 + "quote", 3717 + ] 3718 + 3719 + [[package]] 2941 3720 name = "sized-chunks" 2942 3721 version = "0.6.5" 2943 3722 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2958 3737 2959 3738 [[package]] 2960 3739 name = "smallvec" 2961 - version = "1.11.1" 3740 + version = "1.13.2" 2962 3741 source = "registry+https://github.com/rust-lang/crates.io-index" 2963 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 3742 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 3743 + 3744 + [[package]] 3745 + name = "socket2" 3746 + version = "0.4.10" 3747 + source = "registry+https://github.com/rust-lang/crates.io-index" 3748 + checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 3749 + dependencies = [ 3750 + "libc", 3751 + "winapi", 3752 + ] 2964 3753 2965 3754 [[package]] 2966 3755 name = "socks" ··· 2975 3764 2976 3765 [[package]] 2977 3766 name = "souvlaki" 2978 - version = "0.6.1" 3767 + version = "0.7.3" 2979 3768 source = "registry+https://github.com/rust-lang/crates.io-index" 2980 - checksum = "951a075f224d8c87bb62a08c9c27a373fd6d453407e89cae00a25e2eac74ef51" 3769 + checksum = "ea4544ba17df4ac03d6503ae8abba19adad3ae89203a425945dc4c12d7790bfa" 2981 3770 dependencies = [ 2982 3771 "block", 2983 3772 "cocoa", 2984 3773 "core-graphics", 2985 - "dbus", 2986 - "dbus-crossroads", 2987 3774 "dispatch", 2988 3775 "objc", 3776 + "pollster", 3777 + "thiserror", 2989 3778 "windows 0.44.0", 3779 + "zbus", 3780 + "zvariant", 2990 3781 ] 2991 - 2992 - [[package]] 2993 - name = "spin" 2994 - version = "0.5.2" 2995 - source = "registry+https://github.com/rust-lang/crates.io-index" 2996 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2997 3782 2998 3783 [[package]] 2999 3784 name = "spin" ··· 3005 3790 ] 3006 3791 3007 3792 [[package]] 3793 + name = "static_assertions" 3794 + version = "1.1.0" 3795 + source = "registry+https://github.com/rust-lang/crates.io-index" 3796 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3797 + 3798 + [[package]] 3008 3799 name = "subtle" 3009 - version = "2.5.0" 3800 + version = "2.6.1" 3010 3801 source = "registry+https://github.com/rust-lang/crates.io-index" 3011 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 3802 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3012 3803 3013 3804 [[package]] 3014 3805 name = "symphonia" 3015 - version = "0.5.3" 3806 + version = "0.5.4" 3016 3807 source = "registry+https://github.com/rust-lang/crates.io-index" 3017 - checksum = "62e48dba70095f265fdb269b99619b95d04c89e619538138383e63310b14d941" 3808 + checksum = "815c942ae7ee74737bb00f965fa5b5a2ac2ce7b6c01c0cc169bbeaf7abd5f5a9" 3018 3809 dependencies = [ 3019 3810 "lazy_static", 3020 3811 "symphonia-bundle-mp3", ··· 3026 3817 3027 3818 [[package]] 3028 3819 name = "symphonia-bundle-mp3" 3029 - version = "0.5.3" 3820 + version = "0.5.4" 3030 3821 source = "registry+https://github.com/rust-lang/crates.io-index" 3031 - checksum = "0f31d7fece546f1e6973011a9eceae948133bbd18fd3d52f6073b1e38ae6368a" 3822 + checksum = "c01c2aae70f0f1fb096b6f0ff112a930b1fb3626178fba3ae68b09dce71706d4" 3032 3823 dependencies = [ 3033 - "bitflags 1.3.2", 3034 3824 "lazy_static", 3035 3825 "log", 3036 3826 "symphonia-core", ··· 3039 3829 3040 3830 [[package]] 3041 3831 name = "symphonia-codec-vorbis" 3042 - version = "0.5.3" 3832 + version = "0.5.4" 3043 3833 source = "registry+https://github.com/rust-lang/crates.io-index" 3044 - checksum = "3953397e3506aa01350c4205817e4f95b58d476877a42f0458d07b665749e203" 3834 + checksum = "5a98765fb46a0a6732b007f7e2870c2129b6f78d87db7987e6533c8f164a9f30" 3045 3835 dependencies = [ 3046 3836 "log", 3047 3837 "symphonia-core", ··· 3050 3840 3051 3841 [[package]] 3052 3842 name = "symphonia-core" 3053 - version = "0.5.3" 3843 + version = "0.5.4" 3054 3844 source = "registry+https://github.com/rust-lang/crates.io-index" 3055 - checksum = "f7c73eb88fee79705268cc7b742c7bc93a7b76e092ab751d0833866970754142" 3845 + checksum = "798306779e3dc7d5231bd5691f5a813496dc79d3f56bf82e25789f2094e022c3" 3056 3846 dependencies = [ 3057 3847 "arrayvec", 3058 3848 "bitflags 1.3.2", ··· 3063 3853 3064 3854 [[package]] 3065 3855 name = "symphonia-format-ogg" 3066 - version = "0.5.3" 3856 + version = "0.5.4" 3067 3857 source = "registry+https://github.com/rust-lang/crates.io-index" 3068 - checksum = "9bf1a00ccd11452d44048a0368828040f778ae650418dbd9d8765b7ee2574c8d" 3858 + checksum = "ada3505789516bcf00fc1157c67729eded428b455c27ca370e41f4d785bfa931" 3069 3859 dependencies = [ 3070 3860 "log", 3071 3861 "symphonia-core", ··· 3075 3865 3076 3866 [[package]] 3077 3867 name = "symphonia-metadata" 3078 - version = "0.5.3" 3868 + version = "0.5.4" 3079 3869 source = "registry+https://github.com/rust-lang/crates.io-index" 3080 - checksum = "89c3e1937e31d0e068bbe829f66b2f2bfaa28d056365279e0ef897172c3320c0" 3870 + checksum = "bc622b9841a10089c5b18e99eb904f4341615d5aa55bbf4eedde1be721a4023c" 3081 3871 dependencies = [ 3082 3872 "encoding_rs", 3083 3873 "lazy_static", ··· 3087 3877 3088 3878 [[package]] 3089 3879 name = "symphonia-utils-xiph" 3090 - version = "0.5.3" 3880 + version = "0.5.4" 3091 3881 source = "registry+https://github.com/rust-lang/crates.io-index" 3092 - checksum = "a450ca645b80d69aff8b35576cbfdc7f20940b29998202aab910045714c951f8" 3882 + checksum = "484472580fa49991afda5f6550ece662237b00c6f562c7d9638d1b086ed010fe" 3093 3883 dependencies = [ 3094 3884 "symphonia-core", 3095 3885 "symphonia-metadata", ··· 3108 3898 3109 3899 [[package]] 3110 3900 name = "syn" 3111 - version = "2.0.37" 3901 + version = "2.0.68" 3112 3902 source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" 3903 + checksum = "901fa70d88b9d6c98022e23b4136f9f3e54e4662c3bc1bd1d84a42a9a0f0c1e9" 3114 3904 dependencies = [ 3115 3905 "proc-macro2", 3116 3906 "quote", ··· 3119 3909 3120 3910 [[package]] 3121 3911 name = "system-deps" 3122 - version = "6.1.1" 3912 + version = "6.2.2" 3123 3913 source = "registry+https://github.com/rust-lang/crates.io-index" 3124 - checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 3914 + checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 3125 3915 dependencies = [ 3126 3916 "cfg-expr", 3127 - "heck 0.4.1", 3917 + "heck 0.5.0", 3128 3918 "pkg-config", 3129 - "toml 0.7.8", 3919 + "toml 0.8.14", 3130 3920 "version-compare", 3131 3921 ] 3132 3922 3133 3923 [[package]] 3134 3924 name = "target-lexicon" 3135 - version = "0.12.11" 3925 + version = "0.12.14" 3136 3926 source = "registry+https://github.com/rust-lang/crates.io-index" 3137 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 3927 + checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 3138 3928 3139 3929 [[package]] 3140 3930 name = "tempfile" 3141 - version = "3.8.0" 3931 + version = "3.10.1" 3142 3932 source = "registry+https://github.com/rust-lang/crates.io-index" 3143 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 3933 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 3144 3934 dependencies = [ 3145 3935 "cfg-if", 3146 - "fastrand", 3147 - "redox_syscall 0.3.5", 3148 - "rustix", 3149 - "windows-sys 0.48.0", 3150 - ] 3151 - 3152 - [[package]] 3153 - name = "termcolor" 3154 - version = "1.3.0" 3155 - source = "registry+https://github.com/rust-lang/crates.io-index" 3156 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 3157 - dependencies = [ 3158 - "winapi-util", 3936 + "fastrand 2.1.0", 3937 + "rustix 0.38.34", 3938 + "windows-sys 0.52.0", 3159 3939 ] 3160 3940 3161 3941 [[package]] 3162 3942 name = "thiserror" 3163 - version = "1.0.49" 3943 + version = "1.0.61" 3164 3944 source = "registry+https://github.com/rust-lang/crates.io-index" 3165 - checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" 3945 + checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 3166 3946 dependencies = [ 3167 3947 "thiserror-impl", 3168 3948 ] 3169 3949 3170 3950 [[package]] 3171 3951 name = "thiserror-impl" 3172 - version = "1.0.49" 3952 + version = "1.0.61" 3173 3953 source = "registry+https://github.com/rust-lang/crates.io-index" 3174 - checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" 3954 + checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 3175 3955 dependencies = [ 3176 3956 "proc-macro2", 3177 3957 "quote", 3178 - "syn 2.0.37", 3958 + "syn 2.0.68", 3179 3959 ] 3180 3960 3181 3961 [[package]] 3182 3962 name = "thread_local" 3183 - version = "1.1.7" 3963 + version = "1.1.8" 3184 3964 source = "registry+https://github.com/rust-lang/crates.io-index" 3185 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 3965 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 3186 3966 dependencies = [ 3187 3967 "cfg-if", 3188 3968 "once_cell", ··· 3199 3979 3200 3980 [[package]] 3201 3981 name = "tiff" 3202 - version = "0.9.0" 3982 + version = "0.9.1" 3203 3983 source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 3984 + checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 3205 3985 dependencies = [ 3206 3986 "flate2", 3207 3987 "jpeg-decoder", ··· 3210 3990 3211 3991 [[package]] 3212 3992 name = "time" 3213 - version = "0.3.29" 3993 + version = "0.3.36" 3214 3994 source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" 3995 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 3216 3996 dependencies = [ 3217 3997 "deranged", 3218 3998 "itoa", 3219 3999 "libc", 4000 + "num-conv", 3220 4001 "num_threads", 4002 + "powerfmt", 3221 4003 "serde", 3222 4004 "time-core", 3223 4005 "time-macros", ··· 3237 4019 3238 4020 [[package]] 3239 4021 name = "time-macros" 3240 - version = "0.2.15" 4022 + version = "0.2.18" 3241 4023 source = "registry+https://github.com/rust-lang/crates.io-index" 3242 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 4024 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 3243 4025 dependencies = [ 4026 + "num-conv", 3244 4027 "time-core", 3245 4028 ] 3246 4029 3247 4030 [[package]] 3248 4031 name = "tinystr" 3249 - version = "0.7.3" 4032 + version = "0.7.6" 3250 4033 source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "b07bb54ef1f8ff27564b08b861144d3b8d40263efe07684f64987f4c0d044e3e" 4034 + checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 3252 4035 dependencies = [ 3253 4036 "displaydoc", 3254 4037 ] 3255 4038 3256 4039 [[package]] 3257 4040 name = "tinyvec" 3258 - version = "1.6.0" 4041 + version = "1.6.1" 3259 4042 source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4043 + checksum = "c55115c6fbe2d2bef26eb09ad74bde02d8255476fc0c7b515ef09fbb35742d82" 3261 4044 dependencies = [ 3262 4045 "tinyvec_macros", 3263 4046 ] ··· 3279 4062 3280 4063 [[package]] 3281 4064 name = "toml" 3282 - version = "0.7.8" 4065 + version = "0.8.14" 3283 4066 source = "registry+https://github.com/rust-lang/crates.io-index" 3284 - checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 4067 + checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" 3285 4068 dependencies = [ 3286 4069 "serde", 3287 4070 "serde_spanned", 3288 4071 "toml_datetime", 3289 - "toml_edit", 4072 + "toml_edit 0.22.14", 3290 4073 ] 3291 4074 3292 4075 [[package]] 3293 4076 name = "toml_datetime" 3294 - version = "0.6.3" 4077 + version = "0.6.6" 3295 4078 source = "registry+https://github.com/rust-lang/crates.io-index" 3296 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 4079 + checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 3297 4080 dependencies = [ 3298 4081 "serde", 3299 4082 ] ··· 3305 4088 checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3306 4089 dependencies = [ 3307 4090 "indexmap", 4091 + "toml_datetime", 4092 + "winnow 0.5.40", 4093 + ] 4094 + 4095 + [[package]] 4096 + name = "toml_edit" 4097 + version = "0.21.1" 4098 + source = "registry+https://github.com/rust-lang/crates.io-index" 4099 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 4100 + dependencies = [ 4101 + "indexmap", 4102 + "toml_datetime", 4103 + "winnow 0.5.40", 4104 + ] 4105 + 4106 + [[package]] 4107 + name = "toml_edit" 4108 + version = "0.22.14" 4109 + source = "registry+https://github.com/rust-lang/crates.io-index" 4110 + checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" 4111 + dependencies = [ 4112 + "indexmap", 3308 4113 "serde", 3309 4114 "serde_spanned", 3310 4115 "toml_datetime", 3311 - "winnow", 4116 + "winnow 0.6.13", 3312 4117 ] 3313 4118 3314 4119 [[package]] 3315 4120 name = "tracing" 3316 - version = "0.1.37" 4121 + version = "0.1.40" 3317 4122 source = "registry+https://github.com/rust-lang/crates.io-index" 3318 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4123 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3319 4124 dependencies = [ 3320 - "cfg-if", 3321 4125 "pin-project-lite", 3322 4126 "tracing-attributes", 3323 4127 "tracing-core", ··· 3325 4129 3326 4130 [[package]] 3327 4131 name = "tracing-attributes" 3328 - version = "0.1.26" 4132 + version = "0.1.27" 3329 4133 source = "registry+https://github.com/rust-lang/crates.io-index" 3330 - checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 4134 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3331 4135 dependencies = [ 3332 4136 "proc-macro2", 3333 4137 "quote", 3334 - "syn 2.0.37", 4138 + "syn 2.0.68", 3335 4139 ] 3336 4140 3337 4141 [[package]] 3338 4142 name = "tracing-core" 3339 - version = "0.1.31" 4143 + version = "0.1.32" 3340 4144 source = "registry+https://github.com/rust-lang/crates.io-index" 3341 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 4145 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3342 4146 dependencies = [ 3343 4147 "once_cell", 3344 4148 ] 3345 4149 3346 4150 [[package]] 3347 4151 name = "tracing-subscriber" 3348 - version = "0.3.17" 4152 + version = "0.3.18" 3349 4153 source = "registry+https://github.com/rust-lang/crates.io-index" 3350 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4154 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 3351 4155 dependencies = [ 3352 4156 "nu-ansi-term", 3353 4157 "sharded-slab", ··· 3368 4172 3369 4173 [[package]] 3370 4174 name = "type-map" 3371 - version = "0.4.0" 4175 + version = "0.5.0" 3372 4176 source = "registry+https://github.com/rust-lang/crates.io-index" 3373 - checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 4177 + checksum = "deb68604048ff8fa93347f02441e4487594adc20bb8a084f9e564d2b827a0a9f" 3374 4178 dependencies = [ 3375 4179 "rustc-hash", 3376 4180 ] ··· 3382 4186 checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3383 4187 3384 4188 [[package]] 4189 + name = "uds_windows" 4190 + version = "1.1.0" 4191 + source = "registry+https://github.com/rust-lang/crates.io-index" 4192 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 4193 + dependencies = [ 4194 + "memoffset 0.9.1", 4195 + "tempfile", 4196 + "winapi", 4197 + ] 4198 + 4199 + [[package]] 3385 4200 name = "unic-bidi" 3386 4201 version = "0.9.0" 3387 4202 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3414 4229 3415 4230 [[package]] 3416 4231 name = "unic-langid" 3417 - version = "0.9.1" 4232 + version = "0.9.5" 3418 4233 source = "registry+https://github.com/rust-lang/crates.io-index" 3419 - checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 4234 + checksum = "23dd9d1e72a73b25e07123a80776aae3e7b0ec461ef94f9151eed6ec88005a44" 3420 4235 dependencies = [ 3421 4236 "unic-langid-impl", 3422 4237 ] 3423 4238 3424 4239 [[package]] 3425 4240 name = "unic-langid-impl" 3426 - version = "0.9.1" 4241 + version = "0.9.5" 3427 4242 source = "registry+https://github.com/rust-lang/crates.io-index" 3428 - checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 4243 + checksum = "0a5422c1f65949306c99240b81de9f3f15929f5a8bfe05bb44b034cc8bf593e5" 3429 4244 dependencies = [ 3430 4245 "tinystr", 3431 4246 ] ··· 3452 4267 3453 4268 [[package]] 3454 4269 name = "unicode-bidi" 3455 - version = "0.3.13" 4270 + version = "0.3.15" 3456 4271 source = "registry+https://github.com/rust-lang/crates.io-index" 3457 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4272 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 3458 4273 3459 4274 [[package]] 3460 4275 name = "unicode-bom" 3461 - version = "2.0.2" 4276 + version = "2.0.3" 3462 4277 source = "registry+https://github.com/rust-lang/crates.io-index" 3463 - checksum = "98e90c70c9f0d4d1ee6d0a7d04aa06cb9bbd53d8cfbdd62a0269a7c2eb640552" 4278 + checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217" 3464 4279 3465 4280 [[package]] 3466 4281 name = "unicode-ident" ··· 3470 4285 3471 4286 [[package]] 3472 4287 name = "unicode-normalization" 3473 - version = "0.1.22" 4288 + version = "0.1.23" 3474 4289 source = "registry+https://github.com/rust-lang/crates.io-index" 3475 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4290 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 3476 4291 dependencies = [ 3477 4292 "tinyvec", 3478 4293 ] 3479 4294 3480 4295 [[package]] 3481 4296 name = "unicode-segmentation" 3482 - version = "1.10.1" 4297 + version = "1.11.0" 3483 4298 source = "registry+https://github.com/rust-lang/crates.io-index" 3484 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 4299 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 3485 4300 3486 4301 [[package]] 3487 4302 name = "untrusted" 3488 - version = "0.7.1" 4303 + version = "0.9.0" 3489 4304 source = "registry+https://github.com/rust-lang/crates.io-index" 3490 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4305 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3491 4306 3492 4307 [[package]] 3493 4308 name = "ureq" 3494 - version = "2.8.0" 4309 + version = "2.9.7" 3495 4310 source = "registry+https://github.com/rust-lang/crates.io-index" 3496 - checksum = "f5ccd538d4a604753ebc2f17cd9946e89b77bf87f6a8e2309667c6f2e87855e3" 4311 + checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd" 3497 4312 dependencies = [ 3498 4313 "base64", 3499 4314 "flate2", 3500 4315 "log", 3501 4316 "once_cell", 3502 4317 "rustls", 4318 + "rustls-pki-types", 3503 4319 "rustls-webpki", 3504 4320 "serde", 3505 4321 "serde_json", ··· 3510 4326 3511 4327 [[package]] 3512 4328 name = "url" 3513 - version = "2.4.1" 4329 + version = "2.5.2" 3514 4330 source = "registry+https://github.com/rust-lang/crates.io-index" 3515 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 4331 + checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 3516 4332 dependencies = [ 3517 4333 "form_urlencoded", 3518 4334 "idna", ··· 3526 4342 checksum = "14706d2a800ee8ff38c1d3edb873cd616971ea59eb7c0d046bb44ef59b06a1ae" 3527 4343 3528 4344 [[package]] 4345 + name = "utf8parse" 4346 + version = "0.2.2" 4347 + source = "registry+https://github.com/rust-lang/crates.io-index" 4348 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 4349 + 4350 + [[package]] 4351 + name = "v_frame" 4352 + version = "0.3.8" 4353 + source = "registry+https://github.com/rust-lang/crates.io-index" 4354 + checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" 4355 + dependencies = [ 4356 + "aligned-vec", 4357 + "num-traits", 4358 + "wasm-bindgen", 4359 + ] 4360 + 4361 + [[package]] 3529 4362 name = "version-compare" 3530 - version = "0.1.1" 4363 + version = "0.2.0" 3531 4364 source = "registry+https://github.com/rust-lang/crates.io-index" 3532 - checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 4365 + checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 3533 4366 3534 4367 [[package]] 3535 4368 name = "version_check" ··· 3538 4371 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3539 4372 3540 4373 [[package]] 4374 + name = "waker-fn" 4375 + version = "1.2.0" 4376 + source = "registry+https://github.com/rust-lang/crates.io-index" 4377 + checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 4378 + 4379 + [[package]] 3541 4380 name = "walkdir" 3542 - version = "2.4.0" 4381 + version = "2.5.0" 3543 4382 source = "registry+https://github.com/rust-lang/crates.io-index" 3544 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 4383 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3545 4384 dependencies = [ 3546 4385 "same-file", 3547 4386 "winapi-util", ··· 3555 4394 3556 4395 [[package]] 3557 4396 name = "wasm-bindgen" 3558 - version = "0.2.87" 4397 + version = "0.2.92" 3559 4398 source = "registry+https://github.com/rust-lang/crates.io-index" 3560 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 4399 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 3561 4400 dependencies = [ 3562 4401 "cfg-if", 3563 4402 "wasm-bindgen-macro", ··· 3565 4404 3566 4405 [[package]] 3567 4406 name = "wasm-bindgen-backend" 3568 - version = "0.2.87" 4407 + version = "0.2.92" 3569 4408 source = "registry+https://github.com/rust-lang/crates.io-index" 3570 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 4409 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 3571 4410 dependencies = [ 3572 4411 "bumpalo", 3573 4412 "log", 3574 4413 "once_cell", 3575 4414 "proc-macro2", 3576 4415 "quote", 3577 - "syn 2.0.37", 4416 + "syn 2.0.68", 3578 4417 "wasm-bindgen-shared", 3579 4418 ] 3580 4419 3581 4420 [[package]] 3582 4421 name = "wasm-bindgen-futures" 3583 - version = "0.4.37" 4422 + version = "0.4.42" 3584 4423 source = "registry+https://github.com/rust-lang/crates.io-index" 3585 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 4424 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 3586 4425 dependencies = [ 3587 4426 "cfg-if", 3588 4427 "js-sys", ··· 3592 4431 3593 4432 [[package]] 3594 4433 name = "wasm-bindgen-macro" 3595 - version = "0.2.87" 4434 + version = "0.2.92" 3596 4435 source = "registry+https://github.com/rust-lang/crates.io-index" 3597 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 4436 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 3598 4437 dependencies = [ 3599 4438 "quote", 3600 4439 "wasm-bindgen-macro-support", ··· 3602 4441 3603 4442 [[package]] 3604 4443 name = "wasm-bindgen-macro-support" 3605 - version = "0.2.87" 4444 + version = "0.2.92" 3606 4445 source = "registry+https://github.com/rust-lang/crates.io-index" 3607 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 4446 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 3608 4447 dependencies = [ 3609 4448 "proc-macro2", 3610 4449 "quote", 3611 - "syn 2.0.37", 4450 + "syn 2.0.68", 3612 4451 "wasm-bindgen-backend", 3613 4452 "wasm-bindgen-shared", 3614 4453 ] 3615 4454 3616 4455 [[package]] 3617 4456 name = "wasm-bindgen-shared" 3618 - version = "0.2.87" 4457 + version = "0.2.92" 3619 4458 source = "registry+https://github.com/rust-lang/crates.io-index" 3620 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 4459 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 3621 4460 3622 4461 [[package]] 3623 4462 name = "web-sys" 3624 - version = "0.3.64" 4463 + version = "0.3.69" 3625 4464 source = "registry+https://github.com/rust-lang/crates.io-index" 3626 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 4465 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 3627 4466 dependencies = [ 3628 4467 "js-sys", 3629 4468 "wasm-bindgen", ··· 3631 4470 3632 4471 [[package]] 3633 4472 name = "webbrowser" 3634 - version = "0.8.11" 4473 + version = "1.0.1" 3635 4474 source = "registry+https://github.com/rust-lang/crates.io-index" 3636 - checksum = "b2c79b77f525a2d670cb40619d7d9c673d09e0666f72c591ebd7861f84a87e57" 4475 + checksum = "425ba64c1e13b1c6e8c5d2541c8fac10022ca584f33da781db01b5756aef1f4e" 3637 4476 dependencies = [ 4477 + "block2", 3638 4478 "core-foundation", 3639 4479 "home", 3640 - "jni 0.21.1", 4480 + "jni", 3641 4481 "log", 3642 4482 "ndk-context", 3643 - "objc", 3644 - "raw-window-handle", 4483 + "objc2", 4484 + "objc2-foundation", 3645 4485 "url", 3646 4486 "web-sys", 3647 4487 ] 3648 4488 3649 4489 [[package]] 3650 4490 name = "webpki-roots" 3651 - version = "0.25.2" 4491 + version = "0.26.3" 3652 4492 source = "registry+https://github.com/rust-lang/crates.io-index" 3653 - checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 4493 + checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd" 4494 + dependencies = [ 4495 + "rustls-pki-types", 4496 + ] 3654 4497 3655 4498 [[package]] 3656 4499 name = "weezl" 3657 - version = "0.1.7" 4500 + version = "0.1.8" 3658 4501 source = "registry+https://github.com/rust-lang/crates.io-index" 3659 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 4502 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 3660 4503 3661 4504 [[package]] 3662 4505 name = "winapi" ··· 3676 4519 3677 4520 [[package]] 3678 4521 name = "winapi-util" 3679 - version = "0.1.6" 4522 + version = "0.1.8" 3680 4523 source = "registry+https://github.com/rust-lang/crates.io-index" 3681 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 4524 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 3682 4525 dependencies = [ 3683 - "winapi", 4526 + "windows-sys 0.52.0", 3684 4527 ] 3685 4528 3686 4529 [[package]] ··· 3700 4543 3701 4544 [[package]] 3702 4545 name = "windows" 3703 - version = "0.46.0" 4546 + version = "0.54.0" 3704 4547 source = "registry+https://github.com/rust-lang/crates.io-index" 3705 - checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25" 4548 + checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 3706 4549 dependencies = [ 3707 - "windows-targets 0.42.2", 4550 + "windows-core 0.54.0", 4551 + "windows-targets 0.52.5", 3708 4552 ] 3709 4553 3710 4554 [[package]] 3711 4555 name = "windows" 3712 - version = "0.48.0" 4556 + version = "0.57.0" 4557 + source = "registry+https://github.com/rust-lang/crates.io-index" 4558 + checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 4559 + dependencies = [ 4560 + "windows-core 0.57.0", 4561 + "windows-targets 0.52.5", 4562 + ] 4563 + 4564 + [[package]] 4565 + name = "windows-core" 4566 + version = "0.52.0" 3713 4567 source = "registry+https://github.com/rust-lang/crates.io-index" 3714 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 4568 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3715 4569 dependencies = [ 3716 - "windows-targets 0.48.5", 4570 + "windows-targets 0.52.5", 3717 4571 ] 3718 4572 3719 4573 [[package]] 3720 - name = "windows" 3721 - version = "0.51.1" 4574 + name = "windows-core" 4575 + version = "0.54.0" 3722 4576 source = "registry+https://github.com/rust-lang/crates.io-index" 3723 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 4577 + checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 3724 4578 dependencies = [ 3725 - "windows-core", 3726 - "windows-targets 0.48.5", 4579 + "windows-result", 4580 + "windows-targets 0.52.5", 3727 4581 ] 3728 4582 3729 4583 [[package]] 3730 4584 name = "windows-core" 3731 - version = "0.51.1" 4585 + version = "0.57.0" 4586 + source = "registry+https://github.com/rust-lang/crates.io-index" 4587 + checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 4588 + dependencies = [ 4589 + "windows-implement", 4590 + "windows-interface", 4591 + "windows-result", 4592 + "windows-targets 0.52.5", 4593 + ] 4594 + 4595 + [[package]] 4596 + name = "windows-implement" 4597 + version = "0.57.0" 3732 4598 source = "registry+https://github.com/rust-lang/crates.io-index" 3733 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 4599 + checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 3734 4600 dependencies = [ 3735 - "windows-targets 0.48.5", 4601 + "proc-macro2", 4602 + "quote", 4603 + "syn 2.0.68", 4604 + ] 4605 + 4606 + [[package]] 4607 + name = "windows-interface" 4608 + version = "0.57.0" 4609 + source = "registry+https://github.com/rust-lang/crates.io-index" 4610 + checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 4611 + dependencies = [ 4612 + "proc-macro2", 4613 + "quote", 4614 + "syn 2.0.68", 4615 + ] 4616 + 4617 + [[package]] 4618 + name = "windows-result" 4619 + version = "0.1.2" 4620 + source = "registry+https://github.com/rust-lang/crates.io-index" 4621 + checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 4622 + dependencies = [ 4623 + "windows-targets 0.52.5", 3736 4624 ] 3737 4625 3738 4626 [[package]] ··· 3754 4642 ] 3755 4643 3756 4644 [[package]] 4645 + name = "windows-sys" 4646 + version = "0.52.0" 4647 + source = "registry+https://github.com/rust-lang/crates.io-index" 4648 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4649 + dependencies = [ 4650 + "windows-targets 0.52.5", 4651 + ] 4652 + 4653 + [[package]] 3757 4654 name = "windows-targets" 3758 4655 version = "0.42.2" 3759 4656 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3784 4681 ] 3785 4682 3786 4683 [[package]] 4684 + name = "windows-targets" 4685 + version = "0.52.5" 4686 + source = "registry+https://github.com/rust-lang/crates.io-index" 4687 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 4688 + dependencies = [ 4689 + "windows_aarch64_gnullvm 0.52.5", 4690 + "windows_aarch64_msvc 0.52.5", 4691 + "windows_i686_gnu 0.52.5", 4692 + "windows_i686_gnullvm", 4693 + "windows_i686_msvc 0.52.5", 4694 + "windows_x86_64_gnu 0.52.5", 4695 + "windows_x86_64_gnullvm 0.52.5", 4696 + "windows_x86_64_msvc 0.52.5", 4697 + ] 4698 + 4699 + [[package]] 3787 4700 name = "windows_aarch64_gnullvm" 3788 4701 version = "0.42.2" 3789 4702 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3796 4709 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3797 4710 3798 4711 [[package]] 4712 + name = "windows_aarch64_gnullvm" 4713 + version = "0.52.5" 4714 + source = "registry+https://github.com/rust-lang/crates.io-index" 4715 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 4716 + 4717 + [[package]] 3799 4718 name = "windows_aarch64_msvc" 3800 4719 version = "0.42.2" 3801 4720 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3808 4727 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3809 4728 3810 4729 [[package]] 4730 + name = "windows_aarch64_msvc" 4731 + version = "0.52.5" 4732 + source = "registry+https://github.com/rust-lang/crates.io-index" 4733 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 4734 + 4735 + [[package]] 3811 4736 name = "windows_i686_gnu" 3812 4737 version = "0.42.2" 3813 4738 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3820 4745 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3821 4746 3822 4747 [[package]] 4748 + name = "windows_i686_gnu" 4749 + version = "0.52.5" 4750 + source = "registry+https://github.com/rust-lang/crates.io-index" 4751 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 4752 + 4753 + [[package]] 4754 + name = "windows_i686_gnullvm" 4755 + version = "0.52.5" 4756 + source = "registry+https://github.com/rust-lang/crates.io-index" 4757 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 4758 + 4759 + [[package]] 3823 4760 name = "windows_i686_msvc" 3824 4761 version = "0.42.2" 3825 4762 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3832 4769 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3833 4770 3834 4771 [[package]] 4772 + name = "windows_i686_msvc" 4773 + version = "0.52.5" 4774 + source = "registry+https://github.com/rust-lang/crates.io-index" 4775 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 4776 + 4777 + [[package]] 3835 4778 name = "windows_x86_64_gnu" 3836 4779 version = "0.42.2" 3837 4780 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3844 4787 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3845 4788 3846 4789 [[package]] 4790 + name = "windows_x86_64_gnu" 4791 + version = "0.52.5" 4792 + source = "registry+https://github.com/rust-lang/crates.io-index" 4793 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 4794 + 4795 + [[package]] 3847 4796 name = "windows_x86_64_gnullvm" 3848 4797 version = "0.42.2" 3849 4798 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3856 4805 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3857 4806 3858 4807 [[package]] 4808 + name = "windows_x86_64_gnullvm" 4809 + version = "0.52.5" 4810 + source = "registry+https://github.com/rust-lang/crates.io-index" 4811 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 4812 + 4813 + [[package]] 3859 4814 name = "windows_x86_64_msvc" 3860 4815 version = "0.42.2" 3861 4816 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3868 4823 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3869 4824 3870 4825 [[package]] 4826 + name = "windows_x86_64_msvc" 4827 + version = "0.52.5" 4828 + source = "registry+https://github.com/rust-lang/crates.io-index" 4829 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 4830 + 4831 + [[package]] 3871 4832 name = "winnow" 3872 - version = "0.5.15" 4833 + version = "0.5.40" 3873 4834 source = "registry+https://github.com/rust-lang/crates.io-index" 3874 - checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 4835 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 4836 + dependencies = [ 4837 + "memchr", 4838 + ] 4839 + 4840 + [[package]] 4841 + name = "winnow" 4842 + version = "0.6.13" 4843 + source = "registry+https://github.com/rust-lang/crates.io-index" 4844 + checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" 3875 4845 dependencies = [ 3876 4846 "memchr", 3877 4847 ] ··· 3895 4865 ] 3896 4866 3897 4867 [[package]] 4868 + name = "xdg-home" 4869 + version = "1.2.0" 4870 + source = "registry+https://github.com/rust-lang/crates.io-index" 4871 + checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8" 4872 + dependencies = [ 4873 + "libc", 4874 + "windows-sys 0.52.0", 4875 + ] 4876 + 4877 + [[package]] 3898 4878 name = "xi-unicode" 3899 4879 version = "0.3.0" 3900 4880 source = "registry+https://github.com/rust-lang/crates.io-index" 3901 4881 checksum = "a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a" 3902 4882 3903 4883 [[package]] 4884 + name = "zbus" 4885 + version = "3.15.2" 4886 + source = "registry+https://github.com/rust-lang/crates.io-index" 4887 + checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6" 4888 + dependencies = [ 4889 + "async-broadcast", 4890 + "async-executor", 4891 + "async-fs", 4892 + "async-io 1.13.0", 4893 + "async-lock 2.8.0", 4894 + "async-process", 4895 + "async-recursion", 4896 + "async-task", 4897 + "async-trait", 4898 + "blocking", 4899 + "byteorder", 4900 + "derivative", 4901 + "enumflags2", 4902 + "event-listener 2.5.3", 4903 + "futures-core", 4904 + "futures-sink", 4905 + "futures-util", 4906 + "hex", 4907 + "nix", 4908 + "once_cell", 4909 + "ordered-stream", 4910 + "rand", 4911 + "serde", 4912 + "serde_repr", 4913 + "sha1", 4914 + "static_assertions", 4915 + "tracing", 4916 + "uds_windows", 4917 + "winapi", 4918 + "xdg-home", 4919 + "zbus_macros", 4920 + "zbus_names", 4921 + "zvariant", 4922 + ] 4923 + 4924 + [[package]] 4925 + name = "zbus_macros" 4926 + version = "3.15.2" 4927 + source = "registry+https://github.com/rust-lang/crates.io-index" 4928 + checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5" 4929 + dependencies = [ 4930 + "proc-macro-crate 1.3.1", 4931 + "proc-macro2", 4932 + "quote", 4933 + "regex", 4934 + "syn 1.0.109", 4935 + "zvariant_utils", 4936 + ] 4937 + 4938 + [[package]] 4939 + name = "zbus_names" 4940 + version = "2.6.1" 4941 + source = "registry+https://github.com/rust-lang/crates.io-index" 4942 + checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d" 4943 + dependencies = [ 4944 + "serde", 4945 + "static_assertions", 4946 + "zvariant", 4947 + ] 4948 + 4949 + [[package]] 4950 + name = "zeroize" 4951 + version = "1.8.1" 4952 + source = "registry+https://github.com/rust-lang/crates.io-index" 4953 + checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 4954 + 4955 + [[package]] 4956 + name = "zune-core" 4957 + version = "0.4.12" 4958 + source = "registry+https://github.com/rust-lang/crates.io-index" 4959 + checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 4960 + 4961 + [[package]] 3904 4962 name = "zune-inflate" 3905 4963 version = "0.2.54" 3906 4964 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3908 4966 dependencies = [ 3909 4967 "simd-adler32", 3910 4968 ] 4969 + 4970 + [[package]] 4971 + name = "zune-jpeg" 4972 + version = "0.4.11" 4973 + source = "registry+https://github.com/rust-lang/crates.io-index" 4974 + checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448" 4975 + dependencies = [ 4976 + "zune-core", 4977 + ] 4978 + 4979 + [[package]] 4980 + name = "zvariant" 4981 + version = "3.15.2" 4982 + source = "registry+https://github.com/rust-lang/crates.io-index" 4983 + checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db" 4984 + dependencies = [ 4985 + "byteorder", 4986 + "enumflags2", 4987 + "libc", 4988 + "serde", 4989 + "static_assertions", 4990 + "zvariant_derive", 4991 + ] 4992 + 4993 + [[package]] 4994 + name = "zvariant_derive" 4995 + version = "3.15.2" 4996 + source = "registry+https://github.com/rust-lang/crates.io-index" 4997 + checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9" 4998 + dependencies = [ 4999 + "proc-macro-crate 1.3.1", 5000 + "proc-macro2", 5001 + "quote", 5002 + "syn 1.0.109", 5003 + "zvariant_utils", 5004 + ] 5005 + 5006 + [[package]] 5007 + name = "zvariant_utils" 5008 + version = "1.0.1" 5009 + source = "registry+https://github.com/rust-lang/crates.io-index" 5010 + checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 5011 + dependencies = [ 5012 + "proc-macro2", 5013 + "quote", 5014 + "syn 1.0.109", 5015 + ]
+4 -4
pkgs/applications/audio/psst/default.nix
··· 16 16 in 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "psst"; 19 - version = "unstable-2024-05-26"; 19 + version = "unstable-2024-07-29"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "jpochyla"; 23 23 repo = pname; 24 - rev = "6c9cd3f91653764b832ea5136cda04c9e0f8fe50"; 25 - hash = "sha256-bttF+yX1BT4t1TUmJBs0OZuPD+6uPxHlb8YzRIVNKTQ="; 24 + rev = "d895cb94623d320f79b364a8f63ab518fddf697b"; 25 + hash = "sha256-LsveuaDmRvC9TUON847QdzqQDUW1zd37++MbtXrfJjk="; 26 26 }; 27 27 28 28 cargoLock = { 29 29 lockFile = ./Cargo.lock; 30 30 outputHashes = { 31 - "cubeb-0.10.3" = "sha256-gV1KHOhq678E/Rj+u8jX9Fw+TepPwuZdV5y/D+Iby+o="; 31 + "cubeb-0.13.0" = "sha256-l1JkKlq2qvvLwNLJ2DrIpAFYcRQyd6F8pAflmtnaXhU="; 32 32 "druid-0.8.3" = "sha256-hTB9PQf2TAhcLr64VjjQIr18mczwcNogDSRSN5dQULA="; 33 33 "druid-enums-0.1.0" = "sha256-KJvAgKxicx/g+4QRZq3iHt6MGVQbfOpyN+EhS6CyDZk="; 34 34 };
+9 -6
pkgs/applications/audio/psst/make-build-reproducible.patch
··· 1 1 diff --git a/psst-core/build.rs b/psst-core/build.rs 2 2 deleted file mode 100644 3 - index 1057827..0000000 3 + index e05191d..0000000 4 4 --- a/psst-core/build.rs 5 5 +++ /dev/null 6 - @@ -1,37 +0,0 @@ 6 + @@ -1,39 +0,0 @@ 7 7 -use std::{env, fs, io::Write}; 8 8 - 9 9 -fn main() { ··· 36 36 - // And construct the http-style url 37 37 - remote_url = format!("https://{domain}/{path}"); 38 38 - } 39 - - remote_url = remote_url.trim_end_matches(".git").to_owned(); 39 + - let trimmed_url = remote_url.trim_end_matches(".git"); 40 + - remote_url.clone_from(&String::from(trimmed_url)); 41 + - 40 42 - let outfile = format!("{}/remote-url.txt", outdir); 41 43 - let mut file = fs::File::create(outfile).unwrap(); 42 44 - write!(file, r#""{}""#, remote_url).ok(); 43 45 -} 44 46 diff --git a/psst-core/src/lib.rs b/psst-core/src/lib.rs 45 - index fcbd491..2d71ee3 100644 47 + index fcbd491..8f6e6f0 100644 46 48 --- a/psst-core/src/lib.rs 47 49 +++ b/psst-core/src/lib.rs 48 - @@ -3,8 +3,8 @@ 50 + @@ -2,9 +2,9 @@ 51 + 49 52 use git_version::git_version; 50 53 51 54 -pub const GIT_VERSION: &str = git_version!(); 52 55 -pub const BUILD_TIME: &str = include!(concat!(env!("OUT_DIR"), "/build-time.txt")); 53 56 -pub const REMOTE_URL: &str = include!(concat!(env!("OUT_DIR"), "/remote-url.txt")); 54 - +pub const GIT_VERSION: &str = "6c9cd3f91653764b832ea5136cda04c9e0f8fe50"; 57 + +pub const GIT_VERSION: &str = "d895cb94623d320f79b364a8f63ab518fddf697b"; 55 58 +pub const BUILD_TIME: &str = "1970-01-01 00:00:00"; 56 59 +pub const REMOTE_URL: &str = "https://github.com/jpochyla/psst"; 57 60
+9 -11
pkgs/applications/display-managers/ly/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, git, linux-pam, libxcb }: 1 + { stdenv, lib, fetchFromGitHub, linux-pam, libxcb, makeBinaryWrapper, zig_0_12 2 + , callPackage }: 2 3 3 - stdenv.mkDerivation rec { 4 + stdenv.mkDerivation { 4 5 pname = "ly"; 5 - version = "0.6.0"; 6 + version = "1.0.2"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "fairyglade"; 9 10 repo = "ly"; 10 - rev = "v${version}"; 11 - hash = "sha256-78XD6DK9aQi8hITWJWnFZ3U9zWTcuw3vtRiU3Lhu7O4="; 12 - fetchSubmodules = true; 11 + rev = "v1.0.2"; 12 + hash = "sha256-VUtNEL7Te/ba+wvL0SsUHlyv2NPmkYKs76TnW8r3ysw="; 13 13 }; 14 14 15 - hardeningDisable = [ "all" ]; 16 - nativeBuildInputs = [ git ]; 15 + nativeBuildInputs = [ makeBinaryWrapper zig_0_12.hook ]; 17 16 buildInputs = [ libxcb linux-pam ]; 18 17 19 - installPhase = '' 20 - mkdir -p $out/bin 21 - cp bin/ly $out/bin 18 + postPatch = '' 19 + ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p 22 20 ''; 23 21 24 22 meta = with lib; {
+112
pkgs/applications/display-managers/ly/deps.nix
··· 1 + # generated by zon2nix (https://github.com/Cloudef/zig2nix) 2 + 3 + { 4 + lib, 5 + linkFarm, 6 + fetchurl, 7 + fetchgit, 8 + runCommandLocal, 9 + zig, 10 + name ? "zig-packages", 11 + }: 12 + 13 + with lib; 14 + 15 + let 16 + unpackZigArtifact = 17 + { name, artifact }: 18 + runCommandLocal name { nativeBuildInputs = [ zig ]; } '' 19 + hash="$(zig fetch --global-cache-dir "$TMPDIR" ${artifact})" 20 + mv "$TMPDIR/p/$hash" "$out" 21 + chmod 755 "$out" 22 + ''; 23 + 24 + fetchZig = 25 + { 26 + name, 27 + url, 28 + hash, 29 + }: 30 + let 31 + artifact = fetchurl { inherit url hash; }; 32 + in 33 + unpackZigArtifact { inherit name artifact; }; 34 + 35 + fetchGitZig = 36 + { 37 + name, 38 + url, 39 + hash, 40 + }: 41 + let 42 + parts = splitString "#" url; 43 + base = elemAt parts 0; 44 + rev = elemAt parts 1; 45 + in 46 + fetchgit { 47 + inherit name rev hash; 48 + url = base; 49 + deepClone = false; 50 + }; 51 + 52 + fetchZigArtifact = 53 + { 54 + name, 55 + url, 56 + hash, 57 + }: 58 + let 59 + parts = splitString "://" url; 60 + proto = elemAt parts 0; 61 + path = elemAt parts 1; 62 + fetcher = { 63 + "git+http" = fetchGitZig { 64 + inherit name hash; 65 + url = "http://${path}"; 66 + }; 67 + "git+https" = fetchGitZig { 68 + inherit name hash; 69 + url = "https://${path}"; 70 + }; 71 + http = fetchZig { 72 + inherit name hash; 73 + url = "http://${path}"; 74 + }; 75 + https = fetchZig { 76 + inherit name hash; 77 + url = "https://${path}"; 78 + }; 79 + file = unpackZigArtifact { 80 + inherit name; 81 + artifact = /. + path; 82 + }; 83 + }; 84 + in 85 + fetcher.${proto}; 86 + in 87 + linkFarm name [ 88 + { 89 + name = "122014e73fd712190e109950837b97f6143f02d7e2b6986e1db70b6f4aadb5ba6a0d"; 90 + path = fetchZigArtifact { 91 + name = "clap"; 92 + url = "https://github.com/Hejsil/zig-clap/archive/8c98e6404b22aafc0184e999d8f068b81cc22fa1.tar.gz"; 93 + hash = "sha256-3P9LyIlq4eNMOe+/jdVJgECfzveSUuRzTf9yhT4t8Zo="; 94 + }; 95 + } 96 + { 97 + name = "12209b971367b4066d40ecad4728e6fdffc4cc4f19356d424c2de57f5b69ac7a619a"; 98 + path = fetchZigArtifact { 99 + name = "zigini"; 100 + url = "https://github.com/Kawaii-Ash/zigini/archive/0bba97a12582928e097f4074cc746c43351ba4c8.tar.gz"; 101 + hash = "sha256-OdaJ5tqmk2MPwaAbpK4HRD/CcQCN+Cjj8U63BqUcFMs="; 102 + }; 103 + } 104 + { 105 + name = "1220b0979ea9891fa4aeb85748fc42bc4b24039d9c99a4d65d893fb1c83e921efad8"; 106 + path = fetchZigArtifact { 107 + name = "ini"; 108 + url = "https://github.com/ziglibs/ini/archive/e18d36665905c1e7ba0c1ce3e8780076b33e3002.tar.gz"; 109 + hash = "sha256-RQ6OPJBqqH7PCL+xiI58JT7vnIo6zbwpLWn+byZO5iM="; 110 + }; 111 + } 112 + ]
+12
pkgs/applications/editors/vim/plugins/generated.nix
··· 17288 17288 meta.homepage = "https://github.com/KabbAmine/zeavim.vim/"; 17289 17289 }; 17290 17290 17291 + zellij-nav-nvim = buildVimPlugin { 17292 + pname = "zellij-nav.nvim"; 17293 + version = "2024-01-29"; 17294 + src = fetchFromGitHub { 17295 + owner = "swaits"; 17296 + repo = "zellij-nav.nvim"; 17297 + rev = "25930804397ef540bd2de62f9897bc2db61f9baa"; 17298 + sha256 = "07x3z5a1wgil0cmhr0hw7xacgj9cyj6qyf1mb2c9p9dh87ll0j2d"; 17299 + }; 17300 + meta.homepage = "https://github.com/swaits/zellij-nav.nvim/"; 17301 + }; 17302 + 17291 17303 zellij-nvim = buildVimPlugin { 17292 17304 pname = "zellij.nvim"; 17293 17305 version = "2024-05-03";
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 1455 1455 https://github.com/lucasew/yescapsquit.vim/,HEAD, 1456 1456 https://github.com/elkowar/yuck.vim/,HEAD, 1457 1457 https://github.com/KabbAmine/zeavim.vim/,, 1458 + https://github.com/swaits/zellij-nav.nvim/,HEAD, 1458 1459 https://github.com/Lilja/zellij.nvim/,HEAD, 1459 1460 https://github.com/folke/zen-mode.nvim/,, 1460 1461 https://github.com/mcchrish/zenbones.nvim/,HEAD,
+3 -3
pkgs/applications/misc/cotp/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cotp"; 11 - version = "1.7.3"; 11 + version = "1.8.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "replydev"; 15 15 repo = "cotp"; 16 16 rev = "v${version}"; 17 - hash = "sha256-CBe/K06z4oqpiwHKwAkWdp+zwAV6Qzne6T/xSSIRz7Y="; 17 + hash = "sha256-ey5JIlvCGmkXDGP0jol5cy/eC7grTmgNoqWecyY8DDk="; 18 18 }; 19 19 20 - cargoHash = "sha256-OMQnmZacHNTGAyBoTLulvwXb6DELFag70m5C75FQ648="; 20 + cargoHash = "sha256-O7GqYPwbVrvU0wElUtkVVeX+4QKb6zg9Gfw+tZ78SDw="; 21 21 22 22 buildInputs = lib.optionals stdenv.isLinux [ libxcb ] 23 23 ++ lib.optionals stdenv.isDarwin [ AppKit ];
+5 -5
pkgs/applications/video/mplayer/default.nix
··· 1 - { config, lib, stdenv, fetchurl, fetchsvn, pkg-config, freetype, yasm, ffmpeg_4 1 + { config, lib, stdenv, fetchurl, fetchsvn, pkg-config, freetype, yasm, ffmpeg_6 2 2 , aalibSupport ? true, aalib 3 3 , fontconfigSupport ? true, fontconfig, freefont_ttf 4 4 , fribidiSupport ? true, fribidi ··· 70 70 71 71 stdenv.mkDerivation rec { 72 72 pname = "mplayer"; 73 - version = "unstable-2022-02-03"; 73 + version = "1.5-unstable-2024-07-03"; 74 74 75 75 src = fetchsvn { 76 76 url = "svn://svn.mplayerhq.hu/mplayer/trunk"; 77 - rev = "38331"; 78 - sha256 = "1vpic8i6zvg0zsy50vhm45ysqag561bpn9jycfbvvwl9ji7l55zi"; 77 + rev = "38637"; 78 + hash = "sha256-9KQOB6QIs1VZhazJqW8dY4ASiMgoxV6davfpKgLPbmE="; 79 79 }; 80 80 81 81 prePatch = '' ··· 87 87 depsBuildBuild = [ buildPackages.stdenv.cc ]; 88 88 nativeBuildInputs = [ pkg-config yasm ]; 89 89 buildInputs = with lib; 90 - [ freetype ffmpeg_4 ] 90 + [ freetype ffmpeg_6 ] 91 91 ++ optional aalibSupport aalib 92 92 ++ optional fontconfigSupport fontconfig 93 93 ++ optional fribidiSupport fribidi
+99 -87
pkgs/by-name/an/anchor/Cargo.lock
··· 119 119 120 120 [[package]] 121 121 name = "anchor-attribute-access-control" 122 - version = "0.30.0" 122 + version = "0.30.1" 123 123 dependencies = [ 124 124 "anchor-syn", 125 125 "proc-macro2", ··· 129 129 130 130 [[package]] 131 131 name = "anchor-attribute-account" 132 - version = "0.30.0" 132 + version = "0.30.1" 133 133 dependencies = [ 134 134 "anchor-syn", 135 135 "bs58 0.5.0", ··· 140 140 141 141 [[package]] 142 142 name = "anchor-attribute-constant" 143 - version = "0.30.0" 143 + version = "0.30.1" 144 144 dependencies = [ 145 145 "anchor-syn", 146 146 "quote", ··· 149 149 150 150 [[package]] 151 151 name = "anchor-attribute-error" 152 - version = "0.30.0" 152 + version = "0.30.1" 153 153 dependencies = [ 154 154 "anchor-syn", 155 155 "quote", ··· 158 158 159 159 [[package]] 160 160 name = "anchor-attribute-event" 161 - version = "0.30.0" 161 + version = "0.30.1" 162 162 dependencies = [ 163 163 "anchor-syn", 164 164 "proc-macro2", ··· 168 168 169 169 [[package]] 170 170 name = "anchor-attribute-program" 171 - version = "0.30.0" 171 + version = "0.30.1" 172 172 dependencies = [ 173 173 "anchor-lang-idl", 174 174 "anchor-syn", ··· 183 183 184 184 [[package]] 185 185 name = "anchor-cli" 186 - version = "0.30.0" 186 + version = "0.30.1" 187 187 dependencies = [ 188 188 "anchor-client", 189 189 "anchor-lang", ··· 219 219 220 220 [[package]] 221 221 name = "anchor-client" 222 - version = "0.30.0" 222 + version = "0.30.1" 223 223 dependencies = [ 224 224 "anchor-lang", 225 225 "anyhow", ··· 236 236 237 237 [[package]] 238 238 name = "anchor-derive-accounts" 239 - version = "0.30.0" 239 + version = "0.30.1" 240 240 dependencies = [ 241 241 "anchor-syn", 242 242 "quote", ··· 245 245 246 246 [[package]] 247 247 name = "anchor-derive-serde" 248 - version = "0.30.0" 248 + version = "0.30.1" 249 249 dependencies = [ 250 250 "anchor-syn", 251 251 "borsh-derive-internal 0.10.3", ··· 256 256 257 257 [[package]] 258 258 name = "anchor-derive-space" 259 - version = "0.30.0" 259 + version = "0.30.1" 260 260 dependencies = [ 261 261 "proc-macro2", 262 262 "quote", ··· 265 265 266 266 [[package]] 267 267 name = "anchor-lang" 268 - version = "0.30.0" 268 + version = "0.30.1" 269 269 dependencies = [ 270 270 "anchor-attribute-access-control", 271 271 "anchor-attribute-account", ··· 289 289 290 290 [[package]] 291 291 name = "anchor-lang-idl" 292 - version = "0.1.0" 292 + version = "0.1.1" 293 293 dependencies = [ 294 - "anchor-syn", 294 + "anchor-lang-idl-spec", 295 295 "anyhow", 296 + "heck 0.3.3", 296 297 "regex", 297 298 "serde", 298 299 "serde_json", 300 + "sha2 0.10.8", 301 + ] 302 + 303 + [[package]] 304 + name = "anchor-lang-idl-spec" 305 + version = "0.1.0" 306 + dependencies = [ 307 + "anyhow", 308 + "serde", 299 309 ] 300 310 301 311 [[package]] 302 312 name = "anchor-spl" 303 - version = "0.30.0" 313 + version = "0.30.1" 304 314 dependencies = [ 305 315 "anchor-lang", 306 316 "borsh 0.10.3", ··· 317 327 318 328 [[package]] 319 329 name = "anchor-syn" 320 - version = "0.30.0" 330 + version = "0.30.1" 321 331 dependencies = [ 322 332 "anyhow", 323 333 "bs58 0.5.0", ··· 663 673 664 674 [[package]] 665 675 name = "avm" 666 - version = "0.30.0" 676 + version = "0.30.1" 667 677 dependencies = [ 668 678 "anyhow", 669 679 "cargo_toml", 670 680 "cfg-if", 681 + "chrono", 671 682 "clap 4.4.6", 672 683 "dirs", 673 684 "once_cell", ··· 3462 3473 3463 3474 [[package]] 3464 3475 name = "rustls" 3465 - version = "0.21.10" 3476 + version = "0.21.12" 3466 3477 source = "registry+https://github.com/rust-lang/crates.io-index" 3467 - checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 3478 + checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 3468 3479 dependencies = [ 3469 3480 "log", 3470 3481 "ring 0.17.8", ··· 3837 3848 3838 3849 [[package]] 3839 3850 name = "smallvec" 3840 - version = "1.11.1" 3851 + version = "1.13.2" 3841 3852 source = "registry+https://github.com/rust-lang/crates.io-index" 3842 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 3853 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 3843 3854 3844 3855 [[package]] 3845 3856 name = "socket2" ··· 3863 3874 3864 3875 [[package]] 3865 3876 name = "solana-account-decoder" 3866 - version = "1.18.8" 3877 + version = "1.18.17" 3867 3878 source = "registry+https://github.com/rust-lang/crates.io-index" 3868 - checksum = "e3b359495f76e0570a3e611e8963f4703828f7516e6577d38d642644ad205c16" 3879 + checksum = "4973213a11c2e1b924b36e0c6688682b5aa4623f8d4eeaa1204c32cee524e6d6" 3869 3880 dependencies = [ 3870 3881 "Inflector", 3871 3882 "base64 0.21.7", ··· 3888 3899 3889 3900 [[package]] 3890 3901 name = "solana-clap-utils" 3891 - version = "1.18.8" 3902 + version = "1.18.17" 3892 3903 source = "registry+https://github.com/rust-lang/crates.io-index" 3893 - checksum = "94d44534a77097037399d613994d521a3bb56ce63d423d77efdb1d4b06666d2d" 3904 + checksum = "909f4553d0b31bb5b97533a6b64cc321a4eace9112d6efbabcf4408ea1b3f1db" 3894 3905 dependencies = [ 3895 3906 "chrono", 3896 3907 "clap 2.34.0", ··· 3905 3916 3906 3917 [[package]] 3907 3918 name = "solana-cli-config" 3908 - version = "1.18.8" 3919 + version = "1.18.17" 3909 3920 source = "registry+https://github.com/rust-lang/crates.io-index" 3910 - checksum = "7702ec83f471b3a0daffd7e7f6acbe50f9228f2bb66d1276e32b6ed253d45afb" 3921 + checksum = "2242c4a0776cdaec1358d0ffc61b32131985a7b2210c491fa465d28c313eb880" 3911 3922 dependencies = [ 3912 3923 "dirs-next", 3913 3924 "lazy_static", ··· 3921 3932 3922 3933 [[package]] 3923 3934 name = "solana-client" 3924 - version = "1.18.8" 3935 + version = "1.18.17" 3925 3936 source = "registry+https://github.com/rust-lang/crates.io-index" 3926 - checksum = "a55322d541c2147ea979832641ca718651eb7a9284fa25b9d6c4cb21fd6f1850" 3937 + checksum = "c5cc431df6cc1dd964134fa4ec7df765d3af3fae9c2148f96a3c4fb500290633" 3927 3938 dependencies = [ 3928 3939 "async-trait", 3929 3940 "bincode", ··· 3954 3965 3955 3966 [[package]] 3956 3967 name = "solana-config-program" 3957 - version = "1.18.8" 3968 + version = "1.18.17" 3958 3969 source = "registry+https://github.com/rust-lang/crates.io-index" 3959 - checksum = "63f328bb6c0a8013218fb71ef31c6524359eae1d328f4ffef4d14e3e7141f84f" 3970 + checksum = "e38b040d3a42e8f7d80c4a86bb0d49d7aed663b56b0fe0ae135d2d145fb7ae3a" 3960 3971 dependencies = [ 3961 3972 "bincode", 3962 3973 "chrono", ··· 3968 3979 3969 3980 [[package]] 3970 3981 name = "solana-connection-cache" 3971 - version = "1.18.8" 3982 + version = "1.18.17" 3972 3983 source = "registry+https://github.com/rust-lang/crates.io-index" 3973 - checksum = "bb39f5996aa944722975efe70adb01f91705cf42e0d302eacb868f51d5c92601" 3984 + checksum = "ae02622c63943485f0af3d0896626eaf6478e734f0b6bc61c7cc5320963c6e75" 3974 3985 dependencies = [ 3975 3986 "async-trait", 3976 3987 "bincode", ··· 3990 4001 3991 4002 [[package]] 3992 4003 name = "solana-faucet" 3993 - version = "1.18.8" 4004 + version = "1.18.17" 3994 4005 source = "registry+https://github.com/rust-lang/crates.io-index" 3995 - checksum = "d7b735bf282e23763f94856aec8de91552d1b9d00eed7cb318fadda2775a94d2" 4006 + checksum = "6fb2e8702fea7c9549d4e946c9b30894f99c94778d80cc8a669d8fdccb131ce3" 3996 4007 dependencies = [ 3997 4008 "bincode", 3998 4009 "byteorder", ··· 4014 4025 4015 4026 [[package]] 4016 4027 name = "solana-frozen-abi" 4017 - version = "1.18.8" 4028 + version = "1.18.17" 4018 4029 source = "registry+https://github.com/rust-lang/crates.io-index" 4019 - checksum = "033e98b727d281cc22381ff703f58b70822b8c32ddb7aca9e7eb3a9c1d465371" 4030 + checksum = "4867f66e9527fa44451c861c1dc6d9b2a7c7a668d7c6a297cdefbe39f4395b33" 4020 4031 dependencies = [ 4021 4032 "block-buffer 0.10.4", 4022 4033 "bs58 0.4.0", ··· 4039 4050 4040 4051 [[package]] 4041 4052 name = "solana-frozen-abi-macro" 4042 - version = "1.18.8" 4053 + version = "1.18.17" 4043 4054 source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "aab7183079f7a0c0b71454fd365e12bce9a773b8099f6c2a92ba6887c42a9d0f" 4055 + checksum = "168f24d97347b85f05192df58d6be3e3047a4aadc4001bc1b9e711a5ec878eea" 4045 4056 dependencies = [ 4046 4057 "proc-macro2", 4047 4058 "quote", ··· 4051 4062 4052 4063 [[package]] 4053 4064 name = "solana-logger" 4054 - version = "1.18.8" 4065 + version = "1.18.17" 4055 4066 source = "registry+https://github.com/rust-lang/crates.io-index" 4056 - checksum = "7c5559aeadd3adc219fa7169e96a8c5dda618c7f06985f91f2a5f55b9814c7a2" 4067 + checksum = "a0511082fc62f2d086520fff5aa1917c389d8c840930c08ad255ae05952c08a2" 4057 4068 dependencies = [ 4058 4069 "env_logger", 4059 4070 "lazy_static", ··· 4062 4073 4063 4074 [[package]] 4064 4075 name = "solana-measure" 4065 - version = "1.18.8" 4076 + version = "1.18.17" 4066 4077 source = "registry+https://github.com/rust-lang/crates.io-index" 4067 - checksum = "041ab11f1e02d4dbe4f45e6854c312ae2518a5cbe3327b767cab2bc9a8fc0740" 4078 + checksum = "be55a3df105431d25f86f2a7da0cbbde5f54c1f0782ca59367ea4a8037bc6797" 4068 4079 dependencies = [ 4069 4080 "log", 4070 4081 "solana-sdk", ··· 4072 4083 4073 4084 [[package]] 4074 4085 name = "solana-metrics" 4075 - version = "1.18.8" 4086 + version = "1.18.17" 4076 4087 source = "registry+https://github.com/rust-lang/crates.io-index" 4077 - checksum = "4aab373e70aa970e62d16ba1e7e21c54519582c57b680fd31d80421aa3a983a1" 4088 + checksum = "ddec097ed7572804389195128dbd57958b427829153c6cd8ec3343c86fe3cd22" 4078 4089 dependencies = [ 4079 4090 "crossbeam-channel", 4080 4091 "gethostname", ··· 4087 4098 4088 4099 [[package]] 4089 4100 name = "solana-net-utils" 4090 - version = "1.18.8" 4101 + version = "1.18.17" 4091 4102 source = "registry+https://github.com/rust-lang/crates.io-index" 4092 - checksum = "736fc2f0fc5a0948d8cb74152d68733c7a682ff8b8ef8df27e75d164c2ed6969" 4103 + checksum = "258fa7c29fb7605b8d2ed89aa0d43c640d14f4147ad1f5b3fdad19a1ac145ca5" 4093 4104 dependencies = [ 4094 4105 "bincode", 4095 4106 "clap 3.2.25", ··· 4109 4120 4110 4121 [[package]] 4111 4122 name = "solana-perf" 4112 - version = "1.18.8" 4123 + version = "1.18.17" 4113 4124 source = "registry+https://github.com/rust-lang/crates.io-index" 4114 - checksum = "80e9a1f74df1265cc43c843367a833cff05b8a1b5467676ae540f479751aab3c" 4125 + checksum = "ca422edcf16a6e64003ca118575ea641f7b750f14a0ad28c71dd84f33dcb912a" 4115 4126 dependencies = [ 4116 4127 "ahash 0.8.11", 4117 4128 "bincode", ··· 4138 4149 4139 4150 [[package]] 4140 4151 name = "solana-program" 4141 - version = "1.18.8" 4152 + version = "1.18.17" 4142 4153 source = "registry+https://github.com/rust-lang/crates.io-index" 4143 - checksum = "0af84e0c085510c9d1660d1f7e50e8b94ec97f27e23e13d960db353d98b55c8a" 4154 + checksum = "2bc5a636dc75e5c25651e34f7a36afc9ae60d38166687c5b0375abb580ac81a2" 4144 4155 dependencies = [ 4145 4156 "ark-bn254", 4146 4157 "ark-ec", ··· 4193 4204 4194 4205 [[package]] 4195 4206 name = "solana-program-runtime" 4196 - version = "1.18.8" 4207 + version = "1.18.17" 4197 4208 source = "registry+https://github.com/rust-lang/crates.io-index" 4198 - checksum = "69c13c6ac710cb7e4325de42e7f382109d0b9d6495942b38d0e4b528a8a9961a" 4209 + checksum = "bf373c3da0387f47fee4c5ed2465a9628b9db026a62211a692a9285aa9251544" 4199 4210 dependencies = [ 4200 4211 "base64 0.21.7", 4201 4212 "bincode", ··· 4221 4232 4222 4233 [[package]] 4223 4234 name = "solana-pubsub-client" 4224 - version = "1.18.8" 4235 + version = "1.18.17" 4225 4236 source = "registry+https://github.com/rust-lang/crates.io-index" 4226 - checksum = "13c0575b3106c15019ad451cc81d5bf328ab07a27e0eadc4af31740b88faf586" 4237 + checksum = "97b9abc76168d19927561db6a3685b98752bd0961b4ce4f8b7f85ee12238c017" 4227 4238 dependencies = [ 4228 4239 "crossbeam-channel", 4229 4240 "futures-util", ··· 4246 4257 4247 4258 [[package]] 4248 4259 name = "solana-quic-client" 4249 - version = "1.18.8" 4260 + version = "1.18.17" 4250 4261 source = "registry+https://github.com/rust-lang/crates.io-index" 4251 - checksum = "1a81e5186b7cf170616579921da3027b6f94f7275153d38e83b9b2be3fb07ac2" 4262 + checksum = "7952c5306a0be5f5276448cd20246b31265bfa884f29a077a24303c6a16aeb34" 4252 4263 dependencies = [ 4253 4264 "async-mutex", 4254 4265 "async-trait", ··· 4273 4284 4274 4285 [[package]] 4275 4286 name = "solana-rayon-threadlimit" 4276 - version = "1.18.8" 4287 + version = "1.18.17" 4277 4288 source = "registry+https://github.com/rust-lang/crates.io-index" 4278 - checksum = "881229e01194a0fc5d6115867d2ee5ce0abfb80d53cab3822c4a6bf96210d474" 4289 + checksum = "a4fa0cc66f8e73d769bca2ede3012ba2ef8ab67963e832808665369f2cf81743" 4279 4290 dependencies = [ 4280 4291 "lazy_static", 4281 4292 "num_cpus", ··· 4283 4294 4284 4295 [[package]] 4285 4296 name = "solana-remote-wallet" 4286 - version = "1.18.8" 4297 + version = "1.18.17" 4287 4298 source = "registry+https://github.com/rust-lang/crates.io-index" 4288 - checksum = "acf5b80ef02505a7cd7e248c25f839ba5669a13595462eac212dde0895d690ad" 4299 + checksum = "289803796d4ff7b4699504d3ab9e9d9c5205ea3892b2ebe397b377494dbd75d4" 4289 4300 dependencies = [ 4290 4301 "console", 4291 4302 "dialoguer", ··· 4302 4313 4303 4314 [[package]] 4304 4315 name = "solana-rpc-client" 4305 - version = "1.18.8" 4316 + version = "1.18.17" 4306 4317 source = "registry+https://github.com/rust-lang/crates.io-index" 4307 - checksum = "cbb2a4cace9ef7c02062efdaa54cfefa13c91fa48cc0c827852adadf7e406963" 4318 + checksum = "6cb55a08018776a62ecff52139fbcdab1a7baa4e8f077202be58156e8dde4d5f" 4308 4319 dependencies = [ 4309 4320 "async-trait", 4310 4321 "base64 0.21.7", ··· 4328 4339 4329 4340 [[package]] 4330 4341 name = "solana-rpc-client-api" 4331 - version = "1.18.8" 4342 + version = "1.18.17" 4332 4343 source = "registry+https://github.com/rust-lang/crates.io-index" 4333 - checksum = "adb658d90dca6aece251e0d4288e6e1b06c1b10315abb118032a2e230f8d872f" 4344 + checksum = "72a8403038f4d6ab65bc7e7afb3afe8d9824c592232553c5cef55cf3de36025d" 4334 4345 dependencies = [ 4335 4346 "base64 0.21.7", 4336 4347 "bs58 0.4.0", ··· 4350 4361 4351 4362 [[package]] 4352 4363 name = "solana-rpc-client-nonce-utils" 4353 - version = "1.18.8" 4364 + version = "1.18.17" 4354 4365 source = "registry+https://github.com/rust-lang/crates.io-index" 4355 - checksum = "bb0d2d0a1b6936a90b1d831a32605118c6f11d7c0dd3b37fb174eab5e1a0b5f3" 4366 + checksum = "4caca735caf76d51c074c3bacbfe38094bf7f92cfbe7b5b13f3bc4946e64f889" 4356 4367 dependencies = [ 4357 4368 "clap 2.34.0", 4358 4369 "solana-clap-utils", ··· 4363 4374 4364 4375 [[package]] 4365 4376 name = "solana-sdk" 4366 - version = "1.18.8" 4377 + version = "1.18.17" 4367 4378 source = "registry+https://github.com/rust-lang/crates.io-index" 4368 - checksum = "68caf1d34891521523df18dc3c13ce20d54a59c3a390729450267a4c9aa96017" 4379 + checksum = "df43d3a1e1637397ab43cbc216a5a8f977ec8a3cc3f3ae8c3851c83a3255dbcf" 4369 4380 dependencies = [ 4370 4381 "assert_matches", 4371 4382 "base64 0.21.7", ··· 4418 4429 4419 4430 [[package]] 4420 4431 name = "solana-sdk-macro" 4421 - version = "1.18.8" 4432 + version = "1.18.17" 4422 4433 source = "registry+https://github.com/rust-lang/crates.io-index" 4423 - checksum = "5cff24eec74815028ebcffe639cf63ff50fb78dadcbf71a8b95b44e7ad1bb6b2" 4434 + checksum = "86c76414183a325038ff020b22c07d1e9d2da0703ddc0244acfed37ee2921d96" 4424 4435 dependencies = [ 4425 4436 "bs58 0.4.0", 4426 4437 "proc-macro2", ··· 4437 4448 4438 4449 [[package]] 4439 4450 name = "solana-streamer" 4440 - version = "1.18.8" 4451 + version = "1.18.17" 4441 4452 source = "registry+https://github.com/rust-lang/crates.io-index" 4442 - checksum = "3af7e0e90d5b6e4aa7182b9f8221fe5a9da4106afc031ac3697a860c2da7c8ac" 4453 + checksum = "fad1bdb955ec6d23a1dbf87e403ff3e610d68616275693125a893d7ed4b2d323" 4443 4454 dependencies = [ 4444 4455 "async-channel", 4445 4456 "bytes", ··· 4459 4470 "rand 0.8.5", 4460 4471 "rcgen", 4461 4472 "rustls", 4473 + "smallvec", 4462 4474 "solana-metrics", 4463 4475 "solana-perf", 4464 4476 "solana-sdk", ··· 4469 4481 4470 4482 [[package]] 4471 4483 name = "solana-thin-client" 4472 - version = "1.18.8" 4484 + version = "1.18.17" 4473 4485 source = "registry+https://github.com/rust-lang/crates.io-index" 4474 - checksum = "5e55c9d6f7970a9e846256bbf57a571ada379fb300ba39958992fbadf5c24ca5" 4486 + checksum = "bc301310ba0755c449a8800136f67f8ad14419b366404629894cd10021495360" 4475 4487 dependencies = [ 4476 4488 "bincode", 4477 4489 "log", ··· 4484 4496 4485 4497 [[package]] 4486 4498 name = "solana-tpu-client" 4487 - version = "1.18.8" 4499 + version = "1.18.17" 4488 4500 source = "registry+https://github.com/rust-lang/crates.io-index" 4489 - checksum = "fb8859de54d3fbfee458b11536af0f357977044c3b31c9a1154af5c8874ae485" 4501 + checksum = "fb887bd5078ff015e103e9ee54a6713380590efa8ff1804b3a653f07188928c6" 4490 4502 dependencies = [ 4491 4503 "async-trait", 4492 4504 "bincode", ··· 4508 4520 4509 4521 [[package]] 4510 4522 name = "solana-transaction-status" 4511 - version = "1.18.8" 4523 + version = "1.18.17" 4512 4524 source = "registry+https://github.com/rust-lang/crates.io-index" 4513 - checksum = "c2be62abd39aad39d5377e3ad4f1af7fc7e12577edb0d6ac6405f533f9ce74e7" 4525 + checksum = "4a0cdfdf63192fb60de094fae8e81159e4e3e9aac9659fe3f9ef0e707023fb32" 4514 4526 dependencies = [ 4515 4527 "Inflector", 4516 4528 "base64 0.21.7", ··· 4533 4545 4534 4546 [[package]] 4535 4547 name = "solana-udp-client" 4536 - version = "1.18.8" 4548 + version = "1.18.17" 4537 4549 source = "registry+https://github.com/rust-lang/crates.io-index" 4538 - checksum = "2d67fd02dc01d0e7f06079625aaaa7de9ea86d757e16df3ec76cd6e162a91f23" 4550 + checksum = "3ea0d6d8d66e36371577f51c4d1d6192a66f1fa4efe7161a36d94677640dcadb" 4539 4551 dependencies = [ 4540 4552 "async-trait", 4541 4553 "solana-connection-cache", ··· 4548 4560 4549 4561 [[package]] 4550 4562 name = "solana-version" 4551 - version = "1.18.8" 4563 + version = "1.18.17" 4552 4564 source = "registry+https://github.com/rust-lang/crates.io-index" 4553 - checksum = "26db373e381b715773164fb9ae47a89f56bbb6fb50469b1b970134d5c6f6ce4d" 4565 + checksum = "6f4c2f531c22ce806b211118be8928a791425f97de4592371fb57b246ed33e34" 4554 4566 dependencies = [ 4555 4567 "log", 4556 4568 "rustc_version", ··· 4564 4576 4565 4577 [[package]] 4566 4578 name = "solana-vote-program" 4567 - version = "1.18.8" 4579 + version = "1.18.17" 4568 4580 source = "registry+https://github.com/rust-lang/crates.io-index" 4569 - checksum = "6c579e4599523cefa128db4075d0fc7b1177434b23ac4f72140a394dd4b4f648" 4581 + checksum = "6d8a6486017e71a3714a8e1a635e17209135cc20535ba9808ccf106d80ff6e8b" 4570 4582 dependencies = [ 4571 4583 "bincode", 4572 4584 "log", ··· 4586 4598 4587 4599 [[package]] 4588 4600 name = "solana-zk-token-sdk" 4589 - version = "1.18.8" 4601 + version = "1.18.17" 4590 4602 source = "registry+https://github.com/rust-lang/crates.io-index" 4591 - checksum = "09a78337e50d3ed0b8a6e521969c0e81dfa3649f4d718e88a7e9a0d04ca0d0e0" 4603 + checksum = "513407f88394e437b4ff5aad892bc5bf51a655ae2401e6e63549734d3695c46f" 4592 4604 dependencies = [ 4593 4605 "aes-gcm-siv", 4594 4606 "base64 0.21.7",
+2 -2
pkgs/by-name/an/anchor/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "anchor"; 10 - version = "0.30.0"; 10 + version = "0.30.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "coral-xyz"; 14 14 repo = "anchor"; 15 15 rev = "v${version}"; 16 - hash = "sha256-eodmmiKLRRvAynqOeS9gMMjeTqVdZDx0TqHtZj2SJvs="; 16 + hash = "sha256-NL8ySfvnCGKu1PTU4PJKTQt+Vsbcj+F1YYDzu0mSUoY="; 17 17 fetchSubmodules = true; 18 18 }; 19 19
+2 -2
pkgs/by-name/bu/buildkite-agent/package.nix
··· 13 13 }: 14 14 buildGoModule rec { 15 15 pname = "buildkite-agent"; 16 - version = "3.76.1"; 16 + version = "3.76.2"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "buildkite"; 20 20 repo = "agent"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-0i2b7sVBkV5zcJo+K5kg2Ojbix0rlQRXHKAmL9PJs+g="; 22 + sha256 = "sha256-XAMrc8HEdCGeI0l6u4n81xhiGkI39b7Poly5CP/b0R8="; 23 23 }; 24 24 25 25 vendorHash = "sha256-0P6EXqQa6WxhjNJ4X6THvjJRK/UQvqXTv+7IJViFAQs=";
+3 -3
pkgs/by-name/co/cosmic-edit/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "cosmic-edit"; 23 - version = "unstable-2024-03-30"; 23 + version = "1.0.0-alpha.1"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "pop-os"; 27 27 repo = pname; 28 - rev = "cd1b32218078979aa9a944b3a32f9b96996764a1"; 28 + rev = "epoch-${version}"; 29 29 hash = "sha256-54DwcI/pwN6nRnHC6GeDYVJXNgS+xBQTnRrKV2YMGUA="; 30 30 }; 31 31 ··· 50 50 51 51 # COSMIC applications now uses vergen for the About page 52 52 # Update the COMMIT_DATE to match when the commit was made 53 - env.VERGEN_GIT_COMMIT_DATE = "2024-03-30"; 53 + env.VERGEN_GIT_COMMIT_DATE = "2024-08-02"; 54 54 env.VERGEN_GIT_SHA = src.rev; 55 55 56 56 postPatch = ''
+3 -3
pkgs/by-name/co/cosmic-settings/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "cosmic-settings"; 23 - version = "0-unstable-2024-02-15"; 23 + version = "1.0.0-alpha.1"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "pop-os"; 27 27 repo = pname; 28 - rev = "82ee8a693cb2e1f727aa600f62a24d5de5d685d6"; 28 + rev = "epoch-${version}"; 29 29 hash = "sha256-OGei48Eu0kBXlWwGQaRZULAOnKyrDjCXV8OuWdOmv8E="; 30 30 }; 31 31 ··· 35 35 "accesskit-0.12.2" = "sha256-ksaYMGT/oug7isQY8/1WD97XDUsX2ShBdabUzxWffYw="; 36 36 "atomicwrites-0.4.2" = "sha256-QZSuGPrJXh+svMeFWqAXoqZQxLq/WfIiamqvjJNVhxA="; 37 37 "cosmic-bg-config-0.1.0" = "sha256-2P2NcgDmytvBCMbG8isfZrX+JirMwAz8qjW3BhfhebI="; 38 + "cosmic-client-toolkit-0.1.0" = "sha256-vj7Wm1uJ5ULvGNEwKznNhujCZQiuntsWMyKQbIVaO/Q="; 38 39 "cosmic-comp-config-0.1.0" = "sha256-btXMVpgf6CKSXuUeNydreibgrRvBwiljYucaoch6RKs="; 39 40 "cosmic-config-0.1.0" = "sha256-QDcU9kVRHJmr8yuHq5C0RahQz0xBMkmDboW9Y2Tsk5s="; 40 - "cosmic-client-toolkit-0.1.0" = "sha256-vj7Wm1uJ5ULvGNEwKznNhujCZQiuntsWMyKQbIVaO/Q="; 41 41 "cosmic-panel-config-0.1.0" = "sha256-gPQ5BsLvhnopnnGeKbUizmgk0yhEEgSD0etX9YEWc5E="; 42 42 "cosmic-randr-shell-0.1.0" = "sha256-t1PM/uIM+lbBwgFsKnRiqPZnlb4dxZnN72MfnW0HU/0="; 43 43 "cosmic-text-0.11.2" = "sha256-EG0jERREWR4MBWKgFmE/t6SpTTQRXK76PPa7+/TAKOA=";
+3 -2
pkgs/by-name/co/cosmic-store/package.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "cosmic-store"; 8 - version = "unstable-2024-04-14"; 8 + version = "1.0.0-alpha.1"; 9 + 9 10 src = fetchFromGitHub { 10 11 owner = "pop-os"; 11 12 repo = pname; 12 - rev = "b1bbeaa6e6bdc85c84d329ae01b69d72716411fc"; 13 + rev = "epoch-${version}"; 13 14 hash = "sha256-KHYcQnaRFoYzl/00mFkS6MJS7Th0T0fQhxYUErjzGCo="; 14 15 fetchSubmodules = true; 15 16 };
+4 -3
pkgs/by-name/co/cosmic-term/package.nix
··· 18 18 19 19 rustPlatform.buildRustPackage rec { 20 20 pname = "cosmic-term"; 21 - version = "unstable-2024-04-14"; 21 + version = "1.0.0-alpha.1"; 22 + 22 23 src = fetchFromGitHub { 23 24 owner = "pop-os"; 24 25 repo = pname; 25 - rev = "3e41d261a9d5d2284cd6ae85acde2562b8a5ccd6"; 26 + rev = "epoch-${version}"; 26 27 hash = "sha256-IVLwWG4WUGXK9jY/d0Vr8RX/Klj1mUe4Q7Huv0BkjDo="; 27 28 }; 28 29 ··· 47 48 48 49 # COSMIC applications now uses vergen for the About page 49 50 # Update the COMMIT_DATE to match when the commit was made 50 - env.VERGEN_GIT_COMMIT_DATE = "2024-04-14"; 51 + env.VERGEN_GIT_COMMIT_DATE = "2024-08-03"; 51 52 env.VERGEN_GIT_SHA = src.rev; 52 53 53 54 postPatch = ''
+3 -3
pkgs/by-name/cr/crawley/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "crawley"; 9 - version = "1.7.6"; 9 + version = "1.7.7"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "s0rg"; 13 13 repo = "crawley"; 14 14 rev = "v${version}"; 15 - hash = "sha256-chnnWFE+teq3cjWmwwZ/Ql3KoY2b4wsLL8/5TWxX1fM="; 15 + hash = "sha256-m8hZTNEHJpslGloWE7q5QDmLQfAs+10Ad/B12HsIAGw="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ installShellFiles ]; 19 19 20 - vendorHash = "sha256-byEb5CKi/zBjdvdkUdJeLbuZKf6o3z08r+XRkcGxvDs="; 20 + vendorHash = "sha256-SvNFG5NI+K8yTTrd1GCwzrLe7KZELWBOfn+iiqhBjuQ="; 21 21 22 22 ldflags = [ "-w" "-s" ]; 23 23
+3 -3
pkgs/by-name/cs/csvlens/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "csvlens"; 10 - version = "0.9.1"; 10 + version = "0.10.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "YS-L"; 14 14 repo = "csvlens"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-22IU+TpmmJNCsjrobXe0+0YhssbFMt/j9Vusz69lips="; 16 + hash = "sha256-1tFdsSaX6xWG3DuUfbkeHJKO73mUDZcGmGCaGn4Kx24="; 17 17 }; 18 18 19 19 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 20 20 darwin.apple_sdk.frameworks.AppKit 21 21 ]; 22 22 23 - cargoHash = "sha256-jLoVuDoarq6ZIWrNw04eyRo+M4jNcZ2zsMWKmZaDPf0="; 23 + cargoHash = "sha256-rJ9InGfz4HS7Rt8c214LYaIuO2BWAx4UwLBPyTo9GZY="; 24 24 25 25 meta = with lib; { 26 26 description = "Command line csv viewer";
+3 -3
pkgs/by-name/gi/git-spice/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "git-spice"; 11 - version = "0.3.0"; 11 + version = "0.3.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "abhinav"; 15 15 repo = "git-spice"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-BYIq+12piA0WgfwVSB6P6CKC81icAY/P4/pv2ZMj5N8="; 17 + hash = "sha256-jBEoNfj3rGNqZaNJfJUZzXFmvmLUp2biHbk6E2C/Dww="; 18 18 }; 19 19 20 - vendorHash = "sha256-AIqy0OQsYRStbFLv2L8m4R0k1tr5fVM1FeMFn90yFoY="; 20 + vendorHash = "sha256-2SEFXjO6o6Hh1gmds/pIRwulyiSy6wxE/5wJnKcdX6A="; 21 21 22 22 subPackages = [ "." ]; 23 23
+2 -2
pkgs/by-name/ke/keymapp/package.nix
··· 25 25 in 26 26 stdenv.mkDerivation rec { 27 27 pname = "keymapp"; 28 - version = "1.3.1"; 28 + version = "1.3.2"; 29 29 30 30 src = fetchurl { 31 31 url = "https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-${version}.tar.gz"; 32 - hash = "sha256-e02EOJH7QXm8ue7pZt++tyUjAC+DFga4MWNoeVfJjy8="; 32 + hash = "sha256-9umi9QWWSG0W3w9d7eRwtZHUraqInkqJbE+Lkdn3TU8="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+2 -2
pkgs/by-name/ku/kulala-fmt/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kulala-fmt"; 9 - version = "1.1.0"; 9 + version = "1.2.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mistweaverco"; 13 13 repo = "kulala-fmt"; 14 14 rev = "v${version}"; 15 - hash = "sha256-Fxxc8dJMiL7OVoovOt58vVaUloRjJX5hc8xSlzkwVc8="; 15 + hash = "sha256-WoDZ1TZH3nYiQwZax+4LMW/nbx8VpSUyyBMLepmxV1s="; 16 16 }; 17 17 18 18 vendorHash = "sha256-uA29P6bcZNfxWsTfzsADBIqYgyfVX8dY8y70ZJKieas=";
+2 -2
pkgs/by-name/ma/marwaita-teal/package.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "marwaita-teal"; 13 - version = "20.3"; 13 + version = "20.3.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "darkomarko42"; 17 17 repo = pname; 18 18 rev = version; 19 - hash = "sha256-3wiT75fnwagxe1dLVXj+V3n6tZ1zKZcVXlMagAAKXoI="; 19 + hash = "sha256-0OKG7JOpPiYbofiHWtLfkqHsZZIeGJPhl/tW1CIO3co="; 20 20 }; 21 21 22 22 buildInputs = [
+3 -3
pkgs/by-name/mo/mods/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "mods"; 13 - version = "1.4.1"; 13 + version = "1.5.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "charmbracelet"; 17 17 repo = "mods"; 18 18 rev = "v${version}"; 19 - hash = "sha256-s2yzrOfZievm7t9NzHojVDNpHkQdZsqdq7zJNO7/SM8="; 19 + hash = "sha256-Niap2qsIJwlDRITkPD2Z7NCiJubkyy8/pvagj5Beq84="; 20 20 }; 21 21 22 - vendorHash = "sha256-Q+lpf35tAIZSHV8FBmYrgKbg5RTJzS33Zv8AH9bVxLY="; 22 + vendorHash = "sha256-DaSbmu1P/umOAhG901aC+TKa3xXSvUbpYsaiYTr2RJs="; 23 23 24 24 nativeBuildInputs = [ 25 25 installShellFiles
+6
pkgs/by-name/mo/mongosh/source.json
··· 1 + { 2 + "version": "2.2.15", 3 + "integrity": "sha512-9K9+S7toDI0QtGSM+KbQCm+m7ofNOrlJ75Pmmdg+l7Q7HW5prUzSiBF48lRumPqbp5f/mgDoQ7S6IhU5Zp3oCw==", 4 + "filename": "mongosh-2.2.15.tgz", 5 + "deps": "sha256-LPe54jox2q+KvQ8f36JrVUSwB7tcXFmt3csK65mLVNo=" 6 + }
+2253 -1023
pkgs/by-name/po/pot/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "accessibility-ng" 7 + version = "0.1.6" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "d7cb28d49c934e5f32a0b2227510e00999423596eff62f257962db130c3fa716" 10 + dependencies = [ 11 + "accessibility-sys-ng", 12 + "cocoa 0.24.1", 13 + "core-foundation", 14 + "core-graphics-types", 15 + "objc", 16 + "thiserror", 17 + ] 18 + 19 + [[package]] 20 + name = "accessibility-sys-ng" 21 + version = "0.1.3" 22 + source = "registry+https://github.com/rust-lang/crates.io-index" 23 + checksum = "02eadf4b9910301a47799cea1a8eefa659536fec71f5b8496b583b5e521db0b3" 24 + dependencies = [ 25 + "core-foundation-sys", 26 + ] 27 + 28 + [[package]] 6 29 name = "addr2line" 7 - version = "0.21.0" 30 + version = "0.22.0" 8 31 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 32 + checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 33 dependencies = [ 11 34 "gimli", 12 35 ] ··· 19 42 20 43 [[package]] 21 44 name = "aes" 22 - version = "0.8.3" 45 + version = "0.8.4" 23 46 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 47 + checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 25 48 dependencies = [ 26 49 "cfg-if", 27 50 "cipher", ··· 30 53 31 54 [[package]] 32 55 name = "ahash" 33 - version = "0.8.6" 56 + version = "0.7.8" 34 57 source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 58 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 59 + dependencies = [ 60 + "getrandom 0.2.15", 61 + "once_cell", 62 + "version_check", 63 + ] 64 + 65 + [[package]] 66 + name = "ahash" 67 + version = "0.8.11" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 36 70 dependencies = [ 37 71 "cfg-if", 38 72 "const-random", 39 - "getrandom 0.2.11", 73 + "getrandom 0.2.15", 40 74 "once_cell", 41 75 "version_check", 42 76 "zerocopy", ··· 44 78 45 79 [[package]] 46 80 name = "aho-corasick" 47 - version = "1.1.2" 81 + version = "1.1.3" 48 82 source = "registry+https://github.com/rust-lang/crates.io-index" 49 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 83 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 50 84 dependencies = [ 51 85 "memchr", 52 86 ] 53 87 54 88 [[package]] 89 + name = "aligned-vec" 90 + version = "0.5.0" 91 + source = "registry+https://github.com/rust-lang/crates.io-index" 92 + checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" 93 + 94 + [[package]] 55 95 name = "alloc-no-stdlib" 56 96 version = "2.0.4" 57 97 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 68 108 69 109 [[package]] 70 110 name = "allocator-api2" 71 - version = "0.2.16" 111 + version = "0.2.18" 72 112 source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 113 + checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 74 114 75 115 [[package]] 76 116 name = "android-tzdata" ··· 89 129 90 130 [[package]] 91 131 name = "anyhow" 92 - version = "1.0.75" 132 + version = "1.0.86" 93 133 source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 134 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 135 + 136 + [[package]] 137 + name = "arbitrary" 138 + version = "1.3.2" 139 + source = "registry+https://github.com/rust-lang/crates.io-index" 140 + checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 141 + dependencies = [ 142 + "derive_arbitrary", 143 + ] 95 144 96 145 [[package]] 97 146 name = "arboard" 98 - version = "3.3.0" 147 + version = "3.4.0" 99 148 source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "aafb29b107435aa276664c1db8954ac27a6e105cdad3c88287a199eb0e313c08" 149 + checksum = "9fb4009533e8ff8f1450a5bcbc30f4242a1d34442221f72314bea1f5dc9c7f89" 101 150 dependencies = [ 102 151 "clipboard-win", 103 - "core-graphics 0.22.3", 104 - "image", 152 + "core-graphics 0.23.2", 153 + "image 0.25.1", 105 154 "log", 106 - "objc", 107 - "objc-foundation", 108 - "objc_id", 155 + "objc2", 156 + "objc2-app-kit", 157 + "objc2-foundation", 109 158 "parking_lot", 110 - "thiserror", 111 - "winapi", 159 + "windows-sys 0.48.0", 160 + "wl-clipboard-rs", 112 161 "x11rb", 113 162 ] 114 163 115 164 [[package]] 165 + name = "arg_enum_proc_macro" 166 + version = "0.3.4" 167 + source = "registry+https://github.com/rust-lang/crates.io-index" 168 + checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 169 + dependencies = [ 170 + "proc-macro2", 171 + "quote", 172 + "syn 2.0.67", 173 + ] 174 + 175 + [[package]] 176 + name = "arrayvec" 177 + version = "0.7.4" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 180 + 181 + [[package]] 116 182 name = "ascii" 117 183 version = "1.1.0" 118 184 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 129 195 ] 130 196 131 197 [[package]] 198 + name = "async-broadcast" 199 + version = "0.7.1" 200 + source = "registry+https://github.com/rust-lang/crates.io-index" 201 + checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" 202 + dependencies = [ 203 + "event-listener 5.3.1", 204 + "event-listener-strategy", 205 + "futures-core", 206 + "pin-project-lite", 207 + ] 208 + 209 + [[package]] 132 210 name = "async-channel" 133 - version = "2.1.1" 211 + version = "2.3.1" 134 212 source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 213 + checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 136 214 dependencies = [ 137 215 "concurrent-queue", 138 - "event-listener 4.0.0", 139 216 "event-listener-strategy", 140 217 "futures-core", 141 218 "pin-project-lite", ··· 143 220 144 221 [[package]] 145 222 name = "async-executor" 146 - version = "1.8.0" 223 + version = "1.12.0" 147 224 source = "registry+https://github.com/rust-lang/crates.io-index" 148 - checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 225 + checksum = "c8828ec6e544c02b0d6691d21ed9f9218d0384a82542855073c2a3f58304aaf0" 149 226 dependencies = [ 150 - "async-lock 3.1.2", 151 227 "async-task", 152 228 "concurrent-queue", 153 - "fastrand 2.0.1", 154 - "futures-lite 2.0.1", 229 + "fastrand 2.1.0", 230 + "futures-lite 2.3.0", 155 231 "slab", 156 232 ] 157 233 ··· 168 244 ] 169 245 170 246 [[package]] 247 + name = "async-fs" 248 + version = "2.1.2" 249 + source = "registry+https://github.com/rust-lang/crates.io-index" 250 + checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" 251 + dependencies = [ 252 + "async-lock 3.4.0", 253 + "blocking", 254 + "futures-lite 2.3.0", 255 + ] 256 + 257 + [[package]] 171 258 name = "async-io" 172 259 version = "1.13.0" 173 260 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 189 276 190 277 [[package]] 191 278 name = "async-io" 192 - version = "2.2.1" 279 + version = "2.3.3" 193 280 source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "d6d3b15875ba253d1110c740755e246537483f152fa334f91abd7fe84c88b3ff" 281 + checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" 195 282 dependencies = [ 196 - "async-lock 3.1.2", 283 + "async-lock 3.4.0", 197 284 "cfg-if", 198 285 "concurrent-queue", 199 286 "futures-io", 200 - "futures-lite 2.0.1", 287 + "futures-lite 2.3.0", 201 288 "parking", 202 - "polling 3.3.1", 203 - "rustix 0.38.25", 289 + "polling 3.7.2", 290 + "rustix 0.38.34", 204 291 "slab", 205 292 "tracing", 206 293 "windows-sys 0.52.0", ··· 217 304 218 305 [[package]] 219 306 name = "async-lock" 220 - version = "3.1.2" 307 + version = "3.4.0" 221 308 source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "dea8b3453dd7cc96711834b75400d671b73e3656975fa68d9f277163b7f7e316" 309 + checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 223 310 dependencies = [ 224 - "event-listener 4.0.0", 311 + "event-listener 5.3.1", 225 312 "event-listener-strategy", 226 313 "pin-project-lite", 227 314 ] ··· 239 326 "cfg-if", 240 327 "event-listener 3.1.0", 241 328 "futures-lite 1.13.0", 242 - "rustix 0.38.25", 329 + "rustix 0.38.34", 243 330 "windows-sys 0.48.0", 244 331 ] 245 332 246 333 [[package]] 334 + name = "async-process" 335 + version = "2.2.3" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "f7eda79bbd84e29c2b308d1dc099d7de8dcc7035e48f4bf5dc4a531a44ff5e2a" 338 + dependencies = [ 339 + "async-channel", 340 + "async-io 2.3.3", 341 + "async-lock 3.4.0", 342 + "async-signal", 343 + "async-task", 344 + "blocking", 345 + "cfg-if", 346 + "event-listener 5.3.1", 347 + "futures-lite 2.3.0", 348 + "rustix 0.38.34", 349 + "tracing", 350 + "windows-sys 0.52.0", 351 + ] 352 + 353 + [[package]] 247 354 name = "async-recursion" 248 - version = "1.0.5" 355 + version = "1.1.1" 249 356 source = "registry+https://github.com/rust-lang/crates.io-index" 250 - checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 357 + checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 251 358 dependencies = [ 252 359 "proc-macro2", 253 360 "quote", 254 - "syn 2.0.39", 361 + "syn 2.0.67", 255 362 ] 256 363 257 364 [[package]] 258 365 name = "async-signal" 259 - version = "0.2.5" 366 + version = "0.2.8" 260 367 source = "registry+https://github.com/rust-lang/crates.io-index" 261 - checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 368 + checksum = "794f185324c2f00e771cd9f1ae8b5ac68be2ca7abb129a87afd6e86d228bc54d" 262 369 dependencies = [ 263 - "async-io 2.2.1", 264 - "async-lock 2.8.0", 370 + "async-io 2.3.3", 371 + "async-lock 3.4.0", 265 372 "atomic-waker", 266 373 "cfg-if", 267 374 "futures-core", 268 375 "futures-io", 269 - "rustix 0.38.25", 376 + "rustix 0.38.34", 270 377 "signal-hook-registry", 271 378 "slab", 272 - "windows-sys 0.48.0", 379 + "windows-sys 0.52.0", 273 380 ] 274 381 275 382 [[package]] 276 383 name = "async-task" 277 - version = "4.5.0" 384 + version = "4.7.1" 278 385 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" 386 + checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 280 387 281 388 [[package]] 282 389 name = "async-trait" 283 - version = "0.1.74" 390 + version = "0.1.80" 284 391 source = "registry+https://github.com/rust-lang/crates.io-index" 285 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 392 + checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 286 393 dependencies = [ 287 394 "proc-macro2", 288 395 "quote", 289 - "syn 2.0.39", 396 + "syn 2.0.67", 290 397 ] 291 398 292 399 [[package]] ··· 310 417 "glib-sys", 311 418 "gobject-sys", 312 419 "libc", 313 - "system-deps 6.2.0", 420 + "system-deps 6.2.2", 314 421 ] 315 422 316 423 [[package]] ··· 329 436 checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 330 437 331 438 [[package]] 332 - name = "atomic-write-file" 333 - version = "0.1.1" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "9ae364a6c1301604bbc6dfbf8c385c47ff82301dd01eef506195a029196d8d04" 336 - dependencies = [ 337 - "nix 0.27.1", 338 - "rand 0.8.5", 339 - ] 340 - 341 - [[package]] 342 439 name = "auto-launch" 343 440 version = "0.5.0" 344 441 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 351 448 352 449 [[package]] 353 450 name = "autocfg" 354 - version = "1.1.0" 451 + version = "1.3.0" 355 452 source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 453 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 454 + 455 + [[package]] 456 + name = "av1-grain" 457 + version = "0.2.3" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" 460 + dependencies = [ 461 + "anyhow", 462 + "arrayvec", 463 + "log", 464 + "nom", 465 + "num-rational", 466 + "v_frame", 467 + ] 468 + 469 + [[package]] 470 + name = "avif-serialize" 471 + version = "0.8.1" 472 + source = "registry+https://github.com/rust-lang/crates.io-index" 473 + checksum = "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2" 474 + dependencies = [ 475 + "arrayvec", 476 + ] 357 477 358 478 [[package]] 359 479 name = "backtrace" 360 - version = "0.3.69" 480 + version = "0.3.73" 361 481 source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 482 + checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 363 483 dependencies = [ 364 484 "addr2line", 365 485 "cc", ··· 378 498 379 499 [[package]] 380 500 name = "base64" 381 - version = "0.21.5" 501 + version = "0.21.7" 502 + source = "registry+https://github.com/rust-lang/crates.io-index" 503 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 504 + 505 + [[package]] 506 + name = "base64" 507 + version = "0.22.1" 382 508 source = "registry+https://github.com/rust-lang/crates.io-index" 383 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 509 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 384 510 385 511 [[package]] 386 512 name = "base64ct" ··· 402 528 403 529 [[package]] 404 530 name = "bitflags" 405 - version = "2.4.1" 531 + version = "2.5.0" 406 532 source = "registry+https://github.com/rust-lang/crates.io-index" 407 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 533 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 408 534 dependencies = [ 409 535 "serde", 410 536 ] 411 537 412 538 [[package]] 539 + name = "bitstream-io" 540 + version = "2.4.2" 541 + source = "registry+https://github.com/rust-lang/crates.io-index" 542 + checksum = "415f8399438eb5e4b2f73ed3152a3448b98149dda642a957ee704e1daa5cf1d8" 543 + 544 + [[package]] 545 + name = "bitvec" 546 + version = "1.0.1" 547 + source = "registry+https://github.com/rust-lang/crates.io-index" 548 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 549 + dependencies = [ 550 + "funty", 551 + "radium", 552 + "tap", 553 + "wyz", 554 + ] 555 + 556 + [[package]] 413 557 name = "block" 414 558 version = "0.1.6" 415 559 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 425 569 ] 426 570 427 571 [[package]] 572 + name = "block-sys" 573 + version = "0.2.1" 574 + source = "registry+https://github.com/rust-lang/crates.io-index" 575 + checksum = "ae85a0696e7ea3b835a453750bf002770776609115e6d25c6d2ff28a8200f7e7" 576 + dependencies = [ 577 + "objc-sys", 578 + ] 579 + 580 + [[package]] 581 + name = "block2" 582 + version = "0.4.0" 583 + source = "registry+https://github.com/rust-lang/crates.io-index" 584 + checksum = "e58aa60e59d8dbfcc36138f5f18be5f24394d33b38b24f7fd0b1caa33095f22f" 585 + dependencies = [ 586 + "block-sys", 587 + "objc2", 588 + ] 589 + 590 + [[package]] 591 + name = "block2" 592 + version = "0.5.1" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 595 + dependencies = [ 596 + "objc2", 597 + ] 598 + 599 + [[package]] 428 600 name = "blocking" 429 - version = "1.5.1" 601 + version = "1.6.1" 430 602 source = "registry+https://github.com/rust-lang/crates.io-index" 431 - checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 603 + checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 432 604 dependencies = [ 433 605 "async-channel", 434 - "async-lock 3.1.2", 435 606 "async-task", 436 - "fastrand 2.0.1", 437 607 "futures-io", 438 - "futures-lite 2.0.1", 608 + "futures-lite 2.3.0", 439 609 "piper", 440 - "tracing", 610 + ] 611 + 612 + [[package]] 613 + name = "borsh" 614 + version = "1.5.1" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" 617 + dependencies = [ 618 + "borsh-derive", 619 + "cfg_aliases 0.2.1", 620 + ] 621 + 622 + [[package]] 623 + name = "borsh-derive" 624 + version = "1.5.1" 625 + source = "registry+https://github.com/rust-lang/crates.io-index" 626 + checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" 627 + dependencies = [ 628 + "once_cell", 629 + "proc-macro-crate 3.1.0", 630 + "proc-macro2", 631 + "quote", 632 + "syn 2.0.67", 633 + "syn_derive", 441 634 ] 442 635 443 636 [[package]] 444 637 name = "brotli" 445 - version = "3.4.0" 638 + version = "3.5.0" 446 639 source = "registry+https://github.com/rust-lang/crates.io-index" 447 - checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 640 + checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391" 448 641 dependencies = [ 449 642 "alloc-no-stdlib", 450 643 "alloc-stdlib", ··· 463 656 464 657 [[package]] 465 658 name = "bstr" 466 - version = "1.8.0" 659 + version = "1.9.1" 467 660 source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 661 + checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 469 662 dependencies = [ 470 663 "memchr", 471 664 "serde", 472 665 ] 473 666 474 667 [[package]] 668 + name = "built" 669 + version = "0.7.3" 670 + source = "registry+https://github.com/rust-lang/crates.io-index" 671 + checksum = "c6a6c0b39c38fd754ac338b00a88066436389c0f029da5d37d1e01091d9b7c17" 672 + 673 + [[package]] 475 674 name = "bumpalo" 476 - version = "3.14.0" 675 + version = "3.16.0" 477 676 source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 677 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 479 678 480 679 [[package]] 481 680 name = "byte-unit" 482 - version = "4.0.19" 681 + version = "5.1.4" 483 682 source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "da78b32057b8fdfc352504708feeba7216dcd65a2c9ab02978cbd288d1279b6c" 683 + checksum = "33ac19bdf0b2665407c39d82dbc937e951e7e2001609f0fb32edd0af45a2d63e" 485 684 dependencies = [ 685 + "rust_decimal", 486 686 "serde", 487 687 "utf8-width", 488 688 ] 489 689 490 690 [[package]] 491 - name = "bytecount" 492 - version = "0.6.7" 691 + name = "bytecheck" 692 + version = "0.6.12" 693 + source = "registry+https://github.com/rust-lang/crates.io-index" 694 + checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 695 + dependencies = [ 696 + "bytecheck_derive", 697 + "ptr_meta", 698 + "simdutf8", 699 + ] 700 + 701 + [[package]] 702 + name = "bytecheck_derive" 703 + version = "0.6.12" 493 704 source = "registry+https://github.com/rust-lang/crates.io-index" 494 - checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" 705 + checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 706 + dependencies = [ 707 + "proc-macro2", 708 + "quote", 709 + "syn 1.0.109", 710 + ] 495 711 496 712 [[package]] 497 713 name = "bytemuck" 498 - version = "1.14.0" 714 + version = "1.16.1" 499 715 source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 716 + checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e" 501 717 502 718 [[package]] 503 719 name = "byteorder" ··· 506 722 checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 507 723 508 724 [[package]] 725 + name = "byteorder-lite" 726 + version = "0.1.0" 727 + source = "registry+https://github.com/rust-lang/crates.io-index" 728 + checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 729 + 730 + [[package]] 509 731 name = "bytes" 510 - version = "1.5.0" 732 + version = "1.6.0" 511 733 source = "registry+https://github.com/rust-lang/crates.io-index" 512 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 734 + checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 513 735 dependencies = [ 514 736 "serde", 515 737 ] ··· 556 778 dependencies = [ 557 779 "glib-sys", 558 780 "libc", 559 - "system-deps 6.2.0", 781 + "system-deps 6.2.2", 560 782 ] 561 783 562 784 [[package]] ··· 580 802 581 803 [[package]] 582 804 name = "cc" 583 - version = "1.0.83" 805 + version = "1.0.99" 584 806 source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 807 + checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" 586 808 dependencies = [ 587 809 "jobserver", 588 810 "libc", 811 + "once_cell", 589 812 ] 590 813 591 814 [[package]] ··· 616 839 617 840 [[package]] 618 841 name = "cfg-expr" 619 - version = "0.15.5" 842 + version = "0.15.8" 620 843 source = "registry+https://github.com/rust-lang/crates.io-index" 621 - checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 844 + checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 622 845 dependencies = [ 623 846 "smallvec", 624 847 "target-lexicon", ··· 631 854 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 632 855 633 856 [[package]] 857 + name = "cfg_aliases" 858 + version = "0.1.1" 859 + source = "registry+https://github.com/rust-lang/crates.io-index" 860 + checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 861 + 862 + [[package]] 863 + name = "cfg_aliases" 864 + version = "0.2.1" 865 + source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 867 + 868 + [[package]] 634 869 name = "chrono" 635 - version = "0.4.31" 870 + version = "0.4.38" 636 871 source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 872 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 638 873 dependencies = [ 639 874 "android-tzdata", 640 875 "iana-time-zone", ··· 642 877 "num-traits", 643 878 "serde", 644 879 "wasm-bindgen", 645 - "windows-targets 0.48.5", 880 + "windows-targets 0.52.5", 646 881 ] 647 882 648 883 [[package]] ··· 663 898 664 899 [[package]] 665 900 name = "clipboard-win" 666 - version = "4.5.0" 901 + version = "5.3.1" 667 902 source = "registry+https://github.com/rust-lang/crates.io-index" 668 - checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" 903 + checksum = "79f4473f5144e20d9aceaf2972478f06ddf687831eafeeb434fbaf0acc4144ad" 669 904 dependencies = [ 670 905 "error-code", 671 - "str-buf", 672 - "winapi", 673 - ] 674 - 675 - [[package]] 676 - name = "cmake" 677 - version = "0.1.50" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 680 - dependencies = [ 681 - "cc", 682 906 ] 683 907 684 908 [[package]] ··· 707 931 "block", 708 932 "cocoa-foundation", 709 933 "core-foundation", 710 - "core-graphics 0.23.1", 934 + "core-graphics 0.23.2", 711 935 "foreign-types 0.5.0", 712 936 "libc", 713 937 "objc", ··· 735 959 736 960 [[package]] 737 961 name = "combine" 738 - version = "4.6.6" 962 + version = "4.6.7" 739 963 source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 964 + checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 741 965 dependencies = [ 742 966 "bytes", 743 967 "memchr", ··· 751 975 dependencies = [ 752 976 "castaway", 753 977 "cfg-if", 754 - "itoa 1.0.9", 978 + "itoa 1.0.11", 755 979 "ryu", 756 980 "static_assertions", 757 981 ] 758 982 759 983 [[package]] 760 984 name = "concurrent-queue" 761 - version = "2.3.0" 985 + version = "2.5.0" 762 986 source = "registry+https://github.com/rust-lang/crates.io-index" 763 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 987 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 764 988 dependencies = [ 765 989 "crossbeam-utils", 766 990 ] 767 991 768 992 [[package]] 769 993 name = "const-oid" 770 - version = "0.9.5" 994 + version = "0.9.6" 771 995 source = "registry+https://github.com/rust-lang/crates.io-index" 772 - checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" 996 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 773 997 774 998 [[package]] 775 999 name = "const-random" 776 - version = "0.1.17" 1000 + version = "0.1.18" 777 1001 source = "registry+https://github.com/rust-lang/crates.io-index" 778 - checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" 1002 + checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 779 1003 dependencies = [ 780 1004 "const-random-macro", 781 1005 ] ··· 786 1010 source = "registry+https://github.com/rust-lang/crates.io-index" 787 1011 checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 788 1012 dependencies = [ 789 - "getrandom 0.2.11", 1013 + "getrandom 0.2.15", 790 1014 "once_cell", 791 1015 "tiny-keccak", 792 1016 ] 793 1017 794 1018 [[package]] 795 1019 name = "constant_time_eq" 796 - version = "0.1.5" 1020 + version = "0.3.0" 797 1021 source = "registry+https://github.com/rust-lang/crates.io-index" 798 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1022 + checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 799 1023 800 1024 [[package]] 801 1025 name = "convert_case" ··· 805 1029 806 1030 [[package]] 807 1031 name = "core-foundation" 808 - version = "0.9.3" 1032 + version = "0.9.4" 809 1033 source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1034 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 811 1035 dependencies = [ 812 1036 "core-foundation-sys", 813 1037 "libc", ··· 815 1039 816 1040 [[package]] 817 1041 name = "core-foundation-sys" 818 - version = "0.8.4" 1042 + version = "0.8.6" 819 1043 source = "registry+https://github.com/rust-lang/crates.io-index" 820 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1044 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 821 1045 822 1046 [[package]] 823 1047 name = "core-graphics" ··· 834 1058 835 1059 [[package]] 836 1060 name = "core-graphics" 837 - version = "0.23.1" 1061 + version = "0.23.2" 838 1062 source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 1063 + checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 840 1064 dependencies = [ 841 1065 "bitflags 1.3.2", 842 1066 "core-foundation", ··· 847 1071 848 1072 [[package]] 849 1073 name = "core-graphics-types" 850 - version = "0.1.2" 1074 + version = "0.1.3" 851 1075 source = "registry+https://github.com/rust-lang/crates.io-index" 852 - checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 1076 + checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 853 1077 dependencies = [ 854 1078 "bitflags 1.3.2", 855 1079 "core-foundation", ··· 858 1082 859 1083 [[package]] 860 1084 name = "core-text" 861 - version = "19.2.0" 1085 + version = "20.1.0" 862 1086 source = "registry+https://github.com/rust-lang/crates.io-index" 863 - checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25" 1087 + checksum = "c9d2790b5c08465d49f8dc05c8bcae9fea467855947db39b0f8145c091aaced5" 864 1088 dependencies = [ 865 1089 "core-foundation", 866 - "core-graphics 0.22.3", 867 - "foreign-types 0.3.2", 1090 + "core-graphics 0.23.2", 1091 + "foreign-types 0.5.0", 868 1092 "libc", 869 1093 ] 870 1094 871 1095 [[package]] 872 1096 name = "cpufeatures" 873 - version = "0.2.11" 1097 + version = "0.2.12" 874 1098 source = "registry+https://github.com/rust-lang/crates.io-index" 875 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1099 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 876 1100 dependencies = [ 877 1101 "libc", 878 1102 ] 879 1103 880 1104 [[package]] 881 1105 name = "crc" 882 - version = "3.0.1" 1106 + version = "3.2.1" 883 1107 source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" 1108 + checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 885 1109 dependencies = [ 886 1110 "crc-catalog", 887 1111 ] ··· 894 1118 895 1119 [[package]] 896 1120 name = "crc32fast" 897 - version = "1.3.2" 1121 + version = "1.4.2" 898 1122 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1123 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 900 1124 dependencies = [ 901 1125 "cfg-if", 902 1126 ] 903 1127 904 1128 [[package]] 905 1129 name = "crossbeam-channel" 906 - version = "0.5.8" 1130 + version = "0.5.13" 907 1131 source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1132 + checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 909 1133 dependencies = [ 910 - "cfg-if", 911 1134 "crossbeam-utils", 912 1135 ] 913 1136 914 1137 [[package]] 915 1138 name = "crossbeam-deque" 916 - version = "0.8.3" 1139 + version = "0.8.5" 917 1140 source = "registry+https://github.com/rust-lang/crates.io-index" 918 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1141 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 919 1142 dependencies = [ 920 - "cfg-if", 921 1143 "crossbeam-epoch", 922 1144 "crossbeam-utils", 923 1145 ] 924 1146 925 1147 [[package]] 926 1148 name = "crossbeam-epoch" 927 - version = "0.9.15" 1149 + version = "0.9.18" 928 1150 source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 1151 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 930 1152 dependencies = [ 931 - "autocfg", 932 - "cfg-if", 933 1153 "crossbeam-utils", 934 - "memoffset 0.9.0", 935 - "scopeguard", 936 1154 ] 937 1155 938 1156 [[package]] 939 1157 name = "crossbeam-queue" 940 - version = "0.3.8" 1158 + version = "0.3.11" 941 1159 source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 1160 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 943 1161 dependencies = [ 944 - "cfg-if", 945 1162 "crossbeam-utils", 946 1163 ] 947 1164 948 1165 [[package]] 949 1166 name = "crossbeam-utils" 950 - version = "0.8.16" 1167 + version = "0.8.20" 951 1168 source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 953 - dependencies = [ 954 - "cfg-if", 955 - ] 1169 + checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 956 1170 957 1171 [[package]] 958 1172 name = "crunchy" ··· 994 1208 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 995 1209 dependencies = [ 996 1210 "quote", 997 - "syn 2.0.39", 1211 + "syn 2.0.67", 998 1212 ] 999 1213 1000 1214 [[package]] 1001 1215 name = "cstr" 1002 - version = "0.2.11" 1216 + version = "0.2.12" 1003 1217 source = "registry+https://github.com/rust-lang/crates.io-index" 1004 - checksum = "8aa998c33a6d3271e3678950a22134cd7dd27cef86dee1b611b5b14207d1d90b" 1218 + checksum = "68523903c8ae5aacfa32a0d9ae60cadeb764e1da14ee0d26b1f3089f13a54636" 1005 1219 dependencies = [ 1006 1220 "proc-macro2", 1007 1221 "quote", ··· 1009 1223 1010 1224 [[package]] 1011 1225 name = "ctor" 1012 - version = "0.1.26" 1226 + version = "0.2.8" 1013 1227 source = "registry+https://github.com/rust-lang/crates.io-index" 1014 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1228 + checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" 1015 1229 dependencies = [ 1016 1230 "quote", 1017 - "syn 1.0.109", 1231 + "syn 2.0.67", 1018 1232 ] 1019 1233 1020 1234 [[package]] 1021 1235 name = "darling" 1022 - version = "0.20.3" 1236 + version = "0.20.9" 1023 1237 source = "registry+https://github.com/rust-lang/crates.io-index" 1024 - checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 1238 + checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" 1025 1239 dependencies = [ 1026 1240 "darling_core", 1027 1241 "darling_macro", ··· 1029 1243 1030 1244 [[package]] 1031 1245 name = "darling_core" 1032 - version = "0.20.3" 1246 + version = "0.20.9" 1033 1247 source = "registry+https://github.com/rust-lang/crates.io-index" 1034 - checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 1248 + checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" 1035 1249 dependencies = [ 1036 1250 "fnv", 1037 1251 "ident_case", 1038 1252 "proc-macro2", 1039 1253 "quote", 1040 1254 "strsim", 1041 - "syn 2.0.39", 1255 + "syn 2.0.67", 1042 1256 ] 1043 1257 1044 1258 [[package]] 1045 1259 name = "darling_macro" 1046 - version = "0.20.3" 1260 + version = "0.20.9" 1047 1261 source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 1262 + checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" 1049 1263 dependencies = [ 1050 1264 "darling_core", 1051 1265 "quote", 1052 - "syn 2.0.39", 1266 + "syn 2.0.67", 1053 1267 ] 1054 1268 1055 1269 [[package]] ··· 1064 1278 ] 1065 1279 1066 1280 [[package]] 1281 + name = "deflate64" 1282 + version = "0.1.8" 1283 + source = "registry+https://github.com/rust-lang/crates.io-index" 1284 + checksum = "83ace6c86376be0b6cdcf3fb41882e81d94b31587573d1cfa9d01cd06bba210d" 1285 + 1286 + [[package]] 1067 1287 name = "der" 1068 - version = "0.7.8" 1288 + version = "0.7.9" 1069 1289 source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" 1290 + checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" 1071 1291 dependencies = [ 1072 1292 "const-oid", 1073 1293 "pem-rfc7468", ··· 1076 1296 1077 1297 [[package]] 1078 1298 name = "deranged" 1079 - version = "0.3.9" 1299 + version = "0.3.11" 1080 1300 source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1301 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1082 1302 dependencies = [ 1083 1303 "powerfmt", 1084 1304 "serde", ··· 1097 1317 1098 1318 [[package]] 1099 1319 name = "derive-new" 1100 - version = "0.5.9" 1320 + version = "0.6.0" 1321 + source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad" 1323 + dependencies = [ 1324 + "proc-macro2", 1325 + "quote", 1326 + "syn 2.0.67", 1327 + ] 1328 + 1329 + [[package]] 1330 + name = "derive_arbitrary" 1331 + version = "1.3.2" 1101 1332 source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535" 1333 + checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 1103 1334 dependencies = [ 1104 1335 "proc-macro2", 1105 1336 "quote", 1106 - "syn 1.0.109", 1337 + "syn 2.0.67", 1107 1338 ] 1108 1339 1109 1340 [[package]] 1110 1341 name = "derive_more" 1111 - version = "0.99.17" 1342 + version = "0.99.18" 1112 1343 source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1344 + checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 1114 1345 dependencies = [ 1115 1346 "convert_case", 1116 1347 "proc-macro2", 1117 1348 "quote", 1118 1349 "rustc_version", 1119 - "syn 1.0.109", 1350 + "syn 2.0.67", 1120 1351 ] 1121 1352 1122 1353 [[package]] ··· 1214 1445 1215 1446 [[package]] 1216 1447 name = "display-info" 1217 - version = "0.4.3" 1448 + version = "0.4.8" 1218 1449 source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "4f9fb6a73233755f827129d80a80a6a16448122040537c881248a09d5c80ab6b" 1450 + checksum = "4ba4b5ddb26d674c9cd40b7a747e42658ffe1289843615b838532f660e0e3dd0" 1220 1451 dependencies = [ 1221 1452 "anyhow", 1222 - "core-graphics 0.23.1", 1453 + "core-graphics 0.23.2", 1223 1454 "fxhash", 1224 1455 "widestring", 1225 - "windows 0.48.0", 1456 + "windows 0.52.0", 1226 1457 "xcb", 1227 1458 ] 1228 1459 1229 1460 [[package]] 1461 + name = "displaydoc" 1462 + version = "0.2.5" 1463 + source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1465 + dependencies = [ 1466 + "proc-macro2", 1467 + "quote", 1468 + "syn 2.0.67", 1469 + ] 1470 + 1471 + [[package]] 1230 1472 name = "dlib" 1231 1473 version = "0.5.2" 1232 1474 source = "registry+https://github.com/rust-lang/crates.io-index" 1233 1475 checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 1234 1476 dependencies = [ 1235 - "libloading 0.8.1", 1477 + "libloading 0.8.3", 1236 1478 ] 1237 1479 1238 1480 [[package]] ··· 1243 1485 1244 1486 [[package]] 1245 1487 name = "downcast-rs" 1246 - version = "1.2.0" 1488 + version = "1.2.1" 1247 1489 source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 1490 + checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 1249 1491 1250 1492 [[package]] 1251 1493 name = "dtoa" ··· 1255 1497 1256 1498 [[package]] 1257 1499 name = "dtoa-short" 1258 - version = "0.3.4" 1500 + version = "0.3.5" 1259 1501 source = "registry+https://github.com/rust-lang/crates.io-index" 1260 - checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" 1502 + checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 1261 1503 dependencies = [ 1262 1504 "dtoa", 1263 1505 ] ··· 1282 1524 1283 1525 [[package]] 1284 1526 name = "either" 1285 - version = "1.9.0" 1527 + version = "1.12.0" 1286 1528 source = "registry+https://github.com/rust-lang/crates.io-index" 1287 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1529 + checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" 1288 1530 dependencies = [ 1289 1531 "serde", 1290 1532 ] 1291 1533 1292 1534 [[package]] 1293 1535 name = "embed-resource" 1294 - version = "2.4.0" 1536 + version = "2.4.2" 1295 1537 source = "registry+https://github.com/rust-lang/crates.io-index" 1296 - checksum = "f54cc3e827ee1c3812239a9a41dede7b4d7d5d5464faa32d71bd7cba28ce2cb2" 1538 + checksum = "c6985554d0688b687c5cb73898a34fbe3ad6c24c58c238a4d91d5e840670ee9d" 1297 1539 dependencies = [ 1298 1540 "cc", 1541 + "memchr", 1299 1542 "rustc_version", 1300 - "toml 0.8.8", 1543 + "toml 0.8.14", 1301 1544 "vswhom", 1302 - "winreg 0.51.0", 1545 + "winreg 0.52.0", 1303 1546 ] 1304 1547 1305 1548 [[package]] ··· 1310 1553 1311 1554 [[package]] 1312 1555 name = "encoding_rs" 1313 - version = "0.8.33" 1556 + version = "0.8.34" 1314 1557 source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1558 + checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 1316 1559 dependencies = [ 1317 1560 "cfg-if", 1318 1561 ] 1319 1562 1320 1563 [[package]] 1564 + name = "endi" 1565 + version = "1.1.0" 1566 + source = "registry+https://github.com/rust-lang/crates.io-index" 1567 + checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 1568 + 1569 + [[package]] 1321 1570 name = "enigo" 1322 - version = "0.1.3" 1571 + version = "0.2.1" 1323 1572 source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "802e4b2ae123615659085369b453cba87c5562e46ed8050a909fee18a9bc3157" 1573 + checksum = "0087a01fc8591217447d28005379fb5a183683cc83f0a4707af28cc6603f70fb" 1325 1574 dependencies = [ 1326 - "core-graphics 0.23.1", 1575 + "core-graphics 0.23.2", 1576 + "foreign-types-shared 0.3.1", 1577 + "icrate", 1327 1578 "libc", 1328 - "objc", 1329 - "pkg-config", 1330 - "windows 0.51.1", 1579 + "log", 1580 + "objc2", 1581 + "windows 0.56.0", 1582 + "xkbcommon", 1583 + "xkeysym", 1331 1584 ] 1332 1585 1333 1586 [[package]] 1334 1587 name = "enumflags2" 1335 - version = "0.7.8" 1588 + version = "0.7.10" 1336 1589 source = "registry+https://github.com/rust-lang/crates.io-index" 1337 - checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1590 + checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" 1338 1591 dependencies = [ 1339 1592 "enumflags2_derive", 1340 1593 "serde", ··· 1342 1595 1343 1596 [[package]] 1344 1597 name = "enumflags2_derive" 1345 - version = "0.7.8" 1598 + version = "0.7.10" 1346 1599 source = "registry+https://github.com/rust-lang/crates.io-index" 1347 - checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1600 + checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" 1348 1601 dependencies = [ 1349 1602 "proc-macro2", 1350 1603 "quote", 1351 - "syn 2.0.39", 1604 + "syn 2.0.67", 1352 1605 ] 1353 1606 1354 1607 [[package]] ··· 1359 1612 1360 1613 [[package]] 1361 1614 name = "errno" 1362 - version = "0.3.8" 1615 + version = "0.3.9" 1363 1616 source = "registry+https://github.com/rust-lang/crates.io-index" 1364 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1617 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1365 1618 dependencies = [ 1366 1619 "libc", 1367 1620 "windows-sys 0.52.0", ··· 1369 1622 1370 1623 [[package]] 1371 1624 name = "error-code" 1372 - version = "2.3.1" 1625 + version = "3.2.0" 1373 1626 source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 1375 - dependencies = [ 1376 - "libc", 1377 - "str-buf", 1378 - ] 1627 + checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b" 1379 1628 1380 1629 [[package]] 1381 1630 name = "etcetera" ··· 1407 1656 1408 1657 [[package]] 1409 1658 name = "event-listener" 1410 - version = "4.0.0" 1659 + version = "5.3.1" 1411 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1412 - checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae" 1661 + checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1413 1662 dependencies = [ 1414 1663 "concurrent-queue", 1415 1664 "parking", ··· 1418 1667 1419 1668 [[package]] 1420 1669 name = "event-listener-strategy" 1421 - version = "0.4.0" 1670 + version = "0.5.2" 1422 1671 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1672 + checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1424 1673 dependencies = [ 1425 - "event-listener 4.0.0", 1674 + "event-listener 5.3.1", 1426 1675 "pin-project-lite", 1427 1676 ] 1428 1677 1429 1678 [[package]] 1430 1679 name = "exr" 1431 - version = "1.71.0" 1680 + version = "1.72.0" 1432 1681 source = "registry+https://github.com/rust-lang/crates.io-index" 1433 - checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" 1682 + checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 1434 1683 dependencies = [ 1435 1684 "bit_field", 1436 1685 "flume", ··· 1453 1702 1454 1703 [[package]] 1455 1704 name = "fastrand" 1456 - version = "2.0.1" 1705 + version = "2.1.0" 1457 1706 source = "registry+https://github.com/rust-lang/crates.io-index" 1458 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1707 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1459 1708 1460 1709 [[package]] 1461 1710 name = "fdeflate" 1462 - version = "0.3.1" 1711 + version = "0.3.4" 1463 1712 source = "registry+https://github.com/rust-lang/crates.io-index" 1464 - checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1713 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1465 1714 dependencies = [ 1466 1715 "simd-adler32", 1467 1716 ] ··· 1481 1730 source = "registry+https://github.com/rust-lang/crates.io-index" 1482 1731 checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 1483 1732 dependencies = [ 1484 - "memoffset 0.9.0", 1733 + "memoffset 0.9.1", 1485 1734 "rustc_version", 1486 1735 ] 1487 1736 1488 1737 [[package]] 1489 1738 name = "filetime" 1490 - version = "0.2.22" 1739 + version = "0.2.23" 1491 1740 source = "registry+https://github.com/rust-lang/crates.io-index" 1492 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1741 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1493 1742 dependencies = [ 1494 1743 "cfg-if", 1495 1744 "libc", 1496 - "redox_syscall 0.3.5", 1497 - "windows-sys 0.48.0", 1745 + "redox_syscall 0.4.1", 1746 + "windows-sys 0.52.0", 1498 1747 ] 1499 1748 1500 1749 [[package]] 1501 - name = "finl_unicode" 1502 - version = "1.2.0" 1503 - source = "registry+https://github.com/rust-lang/crates.io-index" 1504 - checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" 1505 - 1506 - [[package]] 1507 1750 name = "fixedbitset" 1508 1751 version = "0.4.2" 1509 1752 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1511 1754 1512 1755 [[package]] 1513 1756 name = "flate2" 1514 - version = "1.0.28" 1757 + version = "1.0.30" 1515 1758 source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1759 + checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 1517 1760 dependencies = [ 1518 1761 "crc32fast", 1519 1762 "miniz_oxide", ··· 1544 1787 1545 1788 [[package]] 1546 1789 name = "font-kit" 1547 - version = "0.12.0" 1790 + version = "0.13.2" 1548 1791 source = "registry+https://github.com/rust-lang/crates.io-index" 1549 - checksum = "b0504fc23a34d36352540ae5eedcec2623c86607a4efe25494ca9641845c5a50" 1792 + checksum = "2845a73bbd781e691ab7c2a028c579727cd254942e8ced57ff73e0eafd60de87" 1550 1793 dependencies = [ 1551 - "bitflags 2.4.1", 1794 + "bitflags 2.5.0", 1552 1795 "byteorder", 1553 1796 "core-foundation", 1554 - "core-graphics 0.22.3", 1797 + "core-graphics 0.23.2", 1555 1798 "core-text", 1556 1799 "dirs-next", 1557 1800 "dwrote", 1558 1801 "float-ord", 1559 - "freetype", 1802 + "freetype-sys", 1560 1803 "lazy_static", 1561 1804 "libc", 1562 1805 "log", ··· 1594 1837 dependencies = [ 1595 1838 "proc-macro2", 1596 1839 "quote", 1597 - "syn 2.0.39", 1840 + "syn 2.0.67", 1598 1841 ] 1599 1842 1600 1843 [[package]] ··· 1629 1872 ] 1630 1873 1631 1874 [[package]] 1632 - name = "freetype" 1633 - version = "0.7.0" 1634 - source = "registry+https://github.com/rust-lang/crates.io-index" 1635 - checksum = "bee38378a9e3db1cc693b4f88d166ae375338a0ff75cb8263e1c601d51f35dc6" 1636 - dependencies = [ 1637 - "freetype-sys", 1638 - "libc", 1639 - ] 1640 - 1641 - [[package]] 1642 1875 name = "freetype-sys" 1643 - version = "0.13.1" 1876 + version = "0.20.1" 1644 1877 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "a37d4011c0cc628dfa766fcc195454f4b068d7afdc2adfd28861191d866e731a" 1878 + checksum = "0e7edc5b9669349acfda99533e9e0bcf26a51862ab43b08ee7745c55d28eb134" 1646 1879 dependencies = [ 1647 - "cmake", 1880 + "cc", 1648 1881 "libc", 1649 1882 "pkg-config", 1650 1883 ] ··· 1659 1892 ] 1660 1893 1661 1894 [[package]] 1895 + name = "funty" 1896 + version = "2.0.0" 1897 + source = "registry+https://github.com/rust-lang/crates.io-index" 1898 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1899 + 1900 + [[package]] 1662 1901 name = "futf" 1663 1902 version = "0.1.5" 1664 1903 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1670 1909 1671 1910 [[package]] 1672 1911 name = "futures-channel" 1673 - version = "0.3.29" 1912 + version = "0.3.30" 1674 1913 source = "registry+https://github.com/rust-lang/crates.io-index" 1675 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1914 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1676 1915 dependencies = [ 1677 1916 "futures-core", 1678 1917 "futures-sink", ··· 1680 1919 1681 1920 [[package]] 1682 1921 name = "futures-core" 1683 - version = "0.3.29" 1922 + version = "0.3.30" 1684 1923 source = "registry+https://github.com/rust-lang/crates.io-index" 1685 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1924 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1686 1925 1687 1926 [[package]] 1688 1927 name = "futures-executor" 1689 - version = "0.3.29" 1928 + version = "0.3.30" 1690 1929 source = "registry+https://github.com/rust-lang/crates.io-index" 1691 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1930 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1692 1931 dependencies = [ 1693 1932 "futures-core", 1694 1933 "futures-task", ··· 1708 1947 1709 1948 [[package]] 1710 1949 name = "futures-io" 1711 - version = "0.3.29" 1950 + version = "0.3.30" 1712 1951 source = "registry+https://github.com/rust-lang/crates.io-index" 1713 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1952 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1714 1953 1715 1954 [[package]] 1716 1955 name = "futures-lite" ··· 1729 1968 1730 1969 [[package]] 1731 1970 name = "futures-lite" 1732 - version = "2.0.1" 1971 + version = "2.3.0" 1733 1972 source = "registry+https://github.com/rust-lang/crates.io-index" 1734 - checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 1973 + checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1735 1974 dependencies = [ 1736 - "fastrand 2.0.1", 1975 + "fastrand 2.1.0", 1737 1976 "futures-core", 1738 1977 "futures-io", 1739 - "memchr", 1740 1978 "parking", 1741 1979 "pin-project-lite", 1742 1980 ] 1743 1981 1744 1982 [[package]] 1745 1983 name = "futures-macro" 1746 - version = "0.3.29" 1984 + version = "0.3.30" 1747 1985 source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1986 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1749 1987 dependencies = [ 1750 1988 "proc-macro2", 1751 1989 "quote", 1752 - "syn 2.0.39", 1990 + "syn 2.0.67", 1753 1991 ] 1754 1992 1755 1993 [[package]] 1756 1994 name = "futures-sink" 1757 - version = "0.3.29" 1995 + version = "0.3.30" 1758 1996 source = "registry+https://github.com/rust-lang/crates.io-index" 1759 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1997 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1760 1998 1761 1999 [[package]] 1762 2000 name = "futures-task" 1763 - version = "0.3.29" 2001 + version = "0.3.30" 1764 2002 source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 2003 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1766 2004 1767 2005 [[package]] 1768 2006 name = "futures-util" 1769 - version = "0.3.29" 2007 + version = "0.3.30" 1770 2008 source = "registry+https://github.com/rust-lang/crates.io-index" 1771 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 2009 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1772 2010 dependencies = [ 1773 2011 "futures-core", 1774 2012 "futures-io", ··· 1829 2067 "glib-sys", 1830 2068 "gobject-sys", 1831 2069 "libc", 1832 - "system-deps 6.2.0", 2070 + "system-deps 6.2.2", 1833 2071 ] 1834 2072 1835 2073 [[package]] ··· 1846 2084 "libc", 1847 2085 "pango-sys", 1848 2086 "pkg-config", 1849 - "system-deps 6.2.0", 2087 + "system-deps 6.2.2", 1850 2088 ] 1851 2089 1852 2090 [[package]] ··· 1860 2098 "gobject-sys", 1861 2099 "libc", 1862 2100 "pkg-config", 1863 - "system-deps 6.2.0", 2101 + "system-deps 6.2.2", 1864 2102 ] 1865 2103 1866 2104 [[package]] ··· 1872 2110 "gdk-sys", 1873 2111 "glib-sys", 1874 2112 "libc", 1875 - "system-deps 6.2.0", 2113 + "system-deps 6.2.2", 1876 2114 "x11", 1877 2115 ] 1878 2116 ··· 1901 2139 1902 2140 [[package]] 1903 2141 name = "gethostname" 1904 - version = "0.3.0" 2142 + version = "0.4.3" 1905 2143 source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177" 2144 + checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1907 2145 dependencies = [ 1908 2146 "libc", 1909 - "winapi", 2147 + "windows-targets 0.48.5", 1910 2148 ] 1911 2149 1912 2150 [[package]] ··· 1922 2160 1923 2161 [[package]] 1924 2162 name = "getrandom" 1925 - version = "0.2.11" 2163 + version = "0.2.15" 1926 2164 source = "registry+https://github.com/rust-lang/crates.io-index" 1927 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2165 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1928 2166 dependencies = [ 1929 2167 "cfg-if", 1930 2168 "libc", ··· 1933 2171 1934 2172 [[package]] 1935 2173 name = "gif" 1936 - version = "0.12.0" 2174 + version = "0.13.1" 1937 2175 source = "registry+https://github.com/rust-lang/crates.io-index" 1938 - checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 2176 + checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 1939 2177 dependencies = [ 1940 2178 "color_quant", 1941 2179 "weezl", ··· 1943 2181 1944 2182 [[package]] 1945 2183 name = "gimli" 1946 - version = "0.28.1" 2184 + version = "0.29.0" 1947 2185 source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 2186 + checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 1949 2187 1950 2188 [[package]] 1951 2189 name = "gio" ··· 1973 2211 "glib-sys", 1974 2212 "gobject-sys", 1975 2213 "libc", 1976 - "system-deps 6.2.0", 2214 + "system-deps 6.2.2", 1977 2215 "winapi", 1978 2216 ] 1979 2217 ··· 2005 2243 dependencies = [ 2006 2244 "anyhow", 2007 2245 "heck 0.4.1", 2008 - "proc-macro-crate", 2246 + "proc-macro-crate 1.3.1", 2009 2247 "proc-macro-error", 2010 2248 "proc-macro2", 2011 2249 "quote", ··· 2019 2257 checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 2020 2258 dependencies = [ 2021 2259 "libc", 2022 - "system-deps 6.2.0", 2260 + "system-deps 6.2.2", 2023 2261 ] 2024 2262 2025 2263 [[package]] ··· 2037 2275 "aho-corasick", 2038 2276 "bstr", 2039 2277 "log", 2040 - "regex-automata 0.4.3", 2041 - "regex-syntax 0.8.2", 2278 + "regex-automata 0.4.7", 2279 + "regex-syntax 0.8.4", 2042 2280 ] 2043 2281 2044 2282 [[package]] ··· 2049 2287 dependencies = [ 2050 2288 "glib-sys", 2051 2289 "libc", 2052 - "system-deps 6.2.0", 2290 + "system-deps 6.2.2", 2053 2291 ] 2054 2292 2055 2293 [[package]] ··· 2090 2328 "gobject-sys", 2091 2329 "libc", 2092 2330 "pango-sys", 2093 - "system-deps 6.2.0", 2331 + "system-deps 6.2.2", 2094 2332 ] 2095 2333 2096 2334 [[package]] ··· 2100 2338 checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d" 2101 2339 dependencies = [ 2102 2340 "anyhow", 2103 - "proc-macro-crate", 2341 + "proc-macro-crate 1.3.1", 2104 2342 "proc-macro-error", 2105 2343 "proc-macro2", 2106 2344 "quote", ··· 2109 2347 2110 2348 [[package]] 2111 2349 name = "h2" 2112 - version = "0.3.22" 2350 + version = "0.3.26" 2113 2351 source = "registry+https://github.com/rust-lang/crates.io-index" 2114 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 2352 + checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 2115 2353 dependencies = [ 2116 2354 "bytes", 2117 2355 "fnv", 2118 2356 "futures-core", 2119 2357 "futures-sink", 2120 2358 "futures-util", 2121 - "http", 2122 - "indexmap 2.1.0", 2359 + "http 0.2.12", 2360 + "indexmap 2.2.6", 2361 + "slab", 2362 + "tokio", 2363 + "tokio-util", 2364 + "tracing", 2365 + ] 2366 + 2367 + [[package]] 2368 + name = "h2" 2369 + version = "0.4.5" 2370 + source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" 2372 + dependencies = [ 2373 + "atomic-waker", 2374 + "bytes", 2375 + "fnv", 2376 + "futures-core", 2377 + "futures-sink", 2378 + "http 1.1.0", 2379 + "indexmap 2.2.6", 2123 2380 "slab", 2124 2381 "tokio", 2125 2382 "tokio-util", ··· 2128 2385 2129 2386 [[package]] 2130 2387 name = "half" 2131 - version = "2.2.1" 2388 + version = "2.4.1" 2132 2389 source = "registry+https://github.com/rust-lang/crates.io-index" 2133 - checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" 2390 + checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 2134 2391 dependencies = [ 2392 + "cfg-if", 2135 2393 "crunchy", 2136 2394 ] 2137 2395 ··· 2140 2398 version = "0.12.3" 2141 2399 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 2400 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2401 + dependencies = [ 2402 + "ahash 0.7.8", 2403 + ] 2143 2404 2144 2405 [[package]] 2145 2406 name = "hashbrown" 2146 - version = "0.14.3" 2407 + version = "0.14.5" 2147 2408 source = "registry+https://github.com/rust-lang/crates.io-index" 2148 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2409 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 2149 2410 dependencies = [ 2150 - "ahash", 2411 + "ahash 0.8.11", 2151 2412 "allocator-api2", 2152 2413 ] 2153 2414 ··· 2157 2418 source = "registry+https://github.com/rust-lang/crates.io-index" 2158 2419 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 2159 2420 dependencies = [ 2160 - "hashbrown 0.14.3", 2421 + "hashbrown 0.14.5", 2161 2422 ] 2162 2423 2163 2424 [[package]] ··· 2179 2440 ] 2180 2441 2181 2442 [[package]] 2443 + name = "heck" 2444 + version = "0.5.0" 2445 + source = "registry+https://github.com/rust-lang/crates.io-index" 2446 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2447 + 2448 + [[package]] 2182 2449 name = "hermit-abi" 2183 - version = "0.3.3" 2450 + version = "0.3.9" 2184 2451 source = "registry+https://github.com/rust-lang/crates.io-index" 2185 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 2452 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2453 + 2454 + [[package]] 2455 + name = "hermit-abi" 2456 + version = "0.4.0" 2457 + source = "registry+https://github.com/rust-lang/crates.io-index" 2458 + checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 2186 2459 2187 2460 [[package]] 2188 2461 name = "hex" ··· 2192 2465 2193 2466 [[package]] 2194 2467 name = "hkdf" 2195 - version = "0.12.3" 2468 + version = "0.12.4" 2196 2469 source = "registry+https://github.com/rust-lang/crates.io-index" 2197 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 2470 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2198 2471 dependencies = [ 2199 2472 "hmac", 2200 2473 ] ··· 2210 2483 2211 2484 [[package]] 2212 2485 name = "home" 2213 - version = "0.5.5" 2486 + version = "0.5.9" 2214 2487 source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2488 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2216 2489 dependencies = [ 2217 - "windows-sys 0.48.0", 2490 + "windows-sys 0.52.0", 2218 2491 ] 2219 2492 2220 2493 [[package]] 2221 2494 name = "html5ever" 2222 - version = "0.25.2" 2495 + version = "0.26.0" 2223 2496 source = "registry+https://github.com/rust-lang/crates.io-index" 2224 - checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 2497 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 2225 2498 dependencies = [ 2226 2499 "log", 2227 2500 "mac", 2228 - "markup5ever 0.10.1", 2501 + "markup5ever", 2229 2502 "proc-macro2", 2230 2503 "quote", 2231 2504 "syn 1.0.109", 2232 2505 ] 2233 2506 2234 2507 [[package]] 2235 - name = "html5ever" 2236 - version = "0.26.0" 2508 + name = "http" 2509 + version = "0.2.12" 2237 2510 source = "registry+https://github.com/rust-lang/crates.io-index" 2238 - checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 2511 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2239 2512 dependencies = [ 2240 - "log", 2241 - "mac", 2242 - "markup5ever 0.11.0", 2243 - "proc-macro2", 2244 - "quote", 2245 - "syn 1.0.109", 2513 + "bytes", 2514 + "fnv", 2515 + "itoa 1.0.11", 2246 2516 ] 2247 2517 2248 2518 [[package]] 2249 2519 name = "http" 2250 - version = "0.2.11" 2520 + version = "1.1.0" 2251 2521 source = "registry+https://github.com/rust-lang/crates.io-index" 2252 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2522 + checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 2253 2523 dependencies = [ 2254 2524 "bytes", 2255 2525 "fnv", 2256 - "itoa 1.0.9", 2526 + "itoa 1.0.11", 2257 2527 ] 2258 2528 2259 2529 [[package]] 2260 2530 name = "http-body" 2261 - version = "0.4.5" 2531 + version = "0.4.6" 2262 2532 source = "registry+https://github.com/rust-lang/crates.io-index" 2263 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2533 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2264 2534 dependencies = [ 2265 2535 "bytes", 2266 - "http", 2536 + "http 0.2.12", 2537 + "pin-project-lite", 2538 + ] 2539 + 2540 + [[package]] 2541 + name = "http-body" 2542 + version = "1.0.0" 2543 + source = "registry+https://github.com/rust-lang/crates.io-index" 2544 + checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2545 + dependencies = [ 2546 + "bytes", 2547 + "http 1.1.0", 2548 + ] 2549 + 2550 + [[package]] 2551 + name = "http-body-util" 2552 + version = "0.1.2" 2553 + source = "registry+https://github.com/rust-lang/crates.io-index" 2554 + checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 2555 + dependencies = [ 2556 + "bytes", 2557 + "futures-util", 2558 + "http 1.1.0", 2559 + "http-body 1.0.0", 2267 2560 "pin-project-lite", 2268 2561 ] 2269 2562 ··· 2275 2568 2276 2569 [[package]] 2277 2570 name = "httparse" 2278 - version = "1.8.0" 2571 + version = "1.9.4" 2279 2572 source = "registry+https://github.com/rust-lang/crates.io-index" 2280 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2573 + checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 2281 2574 2282 2575 [[package]] 2283 2576 name = "httpdate" ··· 2287 2580 2288 2581 [[package]] 2289 2582 name = "hyper" 2290 - version = "0.14.27" 2583 + version = "0.14.29" 2291 2584 source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 2585 + checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33" 2293 2586 dependencies = [ 2294 2587 "bytes", 2295 2588 "futures-channel", 2296 2589 "futures-core", 2297 2590 "futures-util", 2298 - "h2", 2299 - "http", 2300 - "http-body", 2591 + "h2 0.3.26", 2592 + "http 0.2.12", 2593 + "http-body 0.4.6", 2301 2594 "httparse", 2302 2595 "httpdate", 2303 - "itoa 1.0.9", 2596 + "itoa 1.0.11", 2304 2597 "pin-project-lite", 2305 - "socket2 0.4.10", 2598 + "socket2 0.5.7", 2306 2599 "tokio", 2307 2600 "tower-service", 2308 2601 "tracing", ··· 2310 2603 ] 2311 2604 2312 2605 [[package]] 2606 + name = "hyper" 2607 + version = "1.3.1" 2608 + source = "registry+https://github.com/rust-lang/crates.io-index" 2609 + checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" 2610 + dependencies = [ 2611 + "bytes", 2612 + "futures-channel", 2613 + "futures-util", 2614 + "h2 0.4.5", 2615 + "http 1.1.0", 2616 + "http-body 1.0.0", 2617 + "httparse", 2618 + "itoa 1.0.11", 2619 + "pin-project-lite", 2620 + "smallvec", 2621 + "tokio", 2622 + "want", 2623 + ] 2624 + 2625 + [[package]] 2626 + name = "hyper-rustls" 2627 + version = "0.27.2" 2628 + source = "registry+https://github.com/rust-lang/crates.io-index" 2629 + checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" 2630 + dependencies = [ 2631 + "futures-util", 2632 + "http 1.1.0", 2633 + "hyper 1.3.1", 2634 + "hyper-util", 2635 + "rustls", 2636 + "rustls-pki-types", 2637 + "tokio", 2638 + "tokio-rustls", 2639 + "tower-service", 2640 + ] 2641 + 2642 + [[package]] 2313 2643 name = "hyper-tls" 2314 2644 version = "0.5.0" 2315 2645 source = "registry+https://github.com/rust-lang/crates.io-index" 2316 2646 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2317 2647 dependencies = [ 2318 2648 "bytes", 2319 - "hyper", 2649 + "hyper 0.14.29", 2320 2650 "native-tls", 2321 2651 "tokio", 2322 2652 "tokio-native-tls", 2323 2653 ] 2324 2654 2325 2655 [[package]] 2656 + name = "hyper-tls" 2657 + version = "0.6.0" 2658 + source = "registry+https://github.com/rust-lang/crates.io-index" 2659 + checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 2660 + dependencies = [ 2661 + "bytes", 2662 + "http-body-util", 2663 + "hyper 1.3.1", 2664 + "hyper-util", 2665 + "native-tls", 2666 + "tokio", 2667 + "tokio-native-tls", 2668 + "tower-service", 2669 + ] 2670 + 2671 + [[package]] 2672 + name = "hyper-util" 2673 + version = "0.1.5" 2674 + source = "registry+https://github.com/rust-lang/crates.io-index" 2675 + checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56" 2676 + dependencies = [ 2677 + "bytes", 2678 + "futures-channel", 2679 + "futures-util", 2680 + "http 1.1.0", 2681 + "http-body 1.0.0", 2682 + "hyper 1.3.1", 2683 + "pin-project-lite", 2684 + "socket2 0.5.7", 2685 + "tokio", 2686 + "tower", 2687 + "tower-service", 2688 + "tracing", 2689 + ] 2690 + 2691 + [[package]] 2326 2692 name = "iana-time-zone" 2327 - version = "0.1.58" 2693 + version = "0.1.60" 2328 2694 source = "registry+https://github.com/rust-lang/crates.io-index" 2329 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 2695 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2330 2696 dependencies = [ 2331 2697 "android_system_properties", 2332 2698 "core-foundation-sys", 2333 2699 "iana-time-zone-haiku", 2334 2700 "js-sys", 2335 2701 "wasm-bindgen", 2336 - "windows-core 0.51.1", 2702 + "windows-core 0.52.0", 2337 2703 ] 2338 2704 2339 2705 [[package]] ··· 2356 2722 ] 2357 2723 2358 2724 [[package]] 2725 + name = "icrate" 2726 + version = "0.1.2" 2727 + source = "registry+https://github.com/rust-lang/crates.io-index" 2728 + checksum = "3fb69199826926eb864697bddd27f73d9fddcffc004f5733131e15b465e30642" 2729 + dependencies = [ 2730 + "block2 0.4.0", 2731 + "objc2", 2732 + ] 2733 + 2734 + [[package]] 2359 2735 name = "ident_case" 2360 2736 version = "1.0.1" 2361 2737 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2373 2749 2374 2750 [[package]] 2375 2751 name = "ignore" 2376 - version = "0.4.21" 2752 + version = "0.4.22" 2377 2753 source = "registry+https://github.com/rust-lang/crates.io-index" 2378 - checksum = "747ad1b4ae841a78e8aba0d63adbfbeaea26b517b63705d47856b73015d27060" 2754 + checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 2379 2755 dependencies = [ 2380 2756 "crossbeam-deque", 2381 2757 "globset", 2382 2758 "log", 2383 2759 "memchr", 2384 - "regex-automata 0.4.3", 2760 + "regex-automata 0.4.7", 2385 2761 "same-file", 2386 2762 "walkdir", 2387 2763 "winapi-util", ··· 2389 2765 2390 2766 [[package]] 2391 2767 name = "image" 2392 - version = "0.24.7" 2768 + version = "0.24.9" 2769 + source = "registry+https://github.com/rust-lang/crates.io-index" 2770 + checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 2771 + dependencies = [ 2772 + "bytemuck", 2773 + "byteorder", 2774 + "color_quant", 2775 + "num-traits", 2776 + ] 2777 + 2778 + [[package]] 2779 + name = "image" 2780 + version = "0.25.1" 2393 2781 source = "registry+https://github.com/rust-lang/crates.io-index" 2394 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2782 + checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11" 2395 2783 dependencies = [ 2396 2784 "bytemuck", 2397 2785 "byteorder", 2398 2786 "color_quant", 2399 2787 "exr", 2400 2788 "gif", 2401 - "jpeg-decoder", 2402 - "num-rational", 2789 + "image-webp", 2403 2790 "num-traits", 2404 2791 "png", 2405 2792 "qoi", 2793 + "ravif", 2794 + "rayon", 2795 + "rgb", 2406 2796 "tiff", 2797 + "zune-core", 2798 + "zune-jpeg", 2407 2799 ] 2408 2800 2409 2801 [[package]] 2802 + name = "image-webp" 2803 + version = "0.1.2" 2804 + source = "registry+https://github.com/rust-lang/crates.io-index" 2805 + checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d" 2806 + dependencies = [ 2807 + "byteorder-lite", 2808 + "thiserror", 2809 + ] 2810 + 2811 + [[package]] 2812 + name = "imgref" 2813 + version = "1.10.1" 2814 + source = "registry+https://github.com/rust-lang/crates.io-index" 2815 + checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126" 2816 + 2817 + [[package]] 2410 2818 name = "include_dir" 2411 - version = "0.7.3" 2819 + version = "0.7.4" 2412 2820 source = "registry+https://github.com/rust-lang/crates.io-index" 2413 - checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" 2821 + checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd" 2414 2822 dependencies = [ 2415 2823 "include_dir_macros", 2416 2824 ] 2417 2825 2418 2826 [[package]] 2419 2827 name = "include_dir_macros" 2420 - version = "0.7.3" 2828 + version = "0.7.4" 2421 2829 source = "registry+https://github.com/rust-lang/crates.io-index" 2422 - checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" 2830 + checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75" 2423 2831 dependencies = [ 2424 2832 "proc-macro2", 2425 2833 "quote", ··· 2438 2846 2439 2847 [[package]] 2440 2848 name = "indexmap" 2441 - version = "2.1.0" 2849 + version = "2.2.6" 2442 2850 source = "registry+https://github.com/rust-lang/crates.io-index" 2443 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2851 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 2444 2852 dependencies = [ 2445 2853 "equivalent", 2446 - "hashbrown 0.14.3", 2854 + "hashbrown 0.14.5", 2447 2855 "serde", 2448 2856 ] 2449 2857 2450 2858 [[package]] 2451 2859 name = "infer" 2452 - version = "0.12.0" 2860 + version = "0.13.0" 2453 2861 source = "registry+https://github.com/rust-lang/crates.io-index" 2454 - checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" 2862 + checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc" 2455 2863 dependencies = [ 2456 2864 "cfb", 2457 2865 ] ··· 2487 2895 2488 2896 [[package]] 2489 2897 name = "instant" 2490 - version = "0.1.12" 2898 + version = "0.1.13" 2491 2899 source = "registry+https://github.com/rust-lang/crates.io-index" 2492 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2900 + checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 2493 2901 dependencies = [ 2494 2902 "cfg-if", 2495 2903 ] 2496 2904 2497 2905 [[package]] 2906 + name = "interpolate_name" 2907 + version = "0.2.4" 2908 + source = "registry+https://github.com/rust-lang/crates.io-index" 2909 + checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 2910 + dependencies = [ 2911 + "proc-macro2", 2912 + "quote", 2913 + "syn 2.0.67", 2914 + ] 2915 + 2916 + [[package]] 2498 2917 name = "io-lifetimes" 2499 2918 version = "1.0.11" 2500 2919 source = "registry+https://github.com/rust-lang/crates.io-index" 2501 2920 checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2502 2921 dependencies = [ 2503 - "hermit-abi", 2922 + "hermit-abi 0.3.9", 2504 2923 "libc", 2505 2924 "windows-sys 0.48.0", 2506 2925 ] ··· 2513 2932 2514 2933 [[package]] 2515 2934 name = "itertools" 2516 - version = "0.11.0" 2517 - source = "registry+https://github.com/rust-lang/crates.io-index" 2518 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2519 - dependencies = [ 2520 - "either", 2521 - ] 2522 - 2523 - [[package]] 2524 - name = "itertools" 2525 - version = "0.12.0" 2935 + version = "0.12.1" 2526 2936 source = "registry+https://github.com/rust-lang/crates.io-index" 2527 - checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" 2937 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2528 2938 dependencies = [ 2529 2939 "either", 2530 2940 ] ··· 2537 2947 2538 2948 [[package]] 2539 2949 name = "itoa" 2540 - version = "1.0.9" 2950 + version = "1.0.11" 2541 2951 source = "registry+https://github.com/rust-lang/crates.io-index" 2542 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 2952 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 2543 2953 2544 2954 [[package]] 2545 2955 name = "javascriptcore-rs" ··· 2586 2996 2587 2997 [[package]] 2588 2998 name = "jobserver" 2589 - version = "0.1.27" 2999 + version = "0.1.31" 2590 3000 source = "registry+https://github.com/rust-lang/crates.io-index" 2591 - checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 3001 + checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2592 3002 dependencies = [ 2593 3003 "libc", 2594 3004 ] 2595 3005 2596 3006 [[package]] 2597 3007 name = "jpeg-decoder" 2598 - version = "0.3.0" 3008 + version = "0.3.1" 2599 3009 source = "registry+https://github.com/rust-lang/crates.io-index" 2600 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2601 - dependencies = [ 2602 - "rayon", 2603 - ] 3010 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 2604 3011 2605 3012 [[package]] 2606 3013 name = "js-sys" 2607 - version = "0.3.66" 3014 + version = "0.3.69" 2608 3015 source = "registry+https://github.com/rust-lang/crates.io-index" 2609 - checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 3016 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2610 3017 dependencies = [ 2611 3018 "wasm-bindgen", 2612 3019 ] 2613 3020 2614 3021 [[package]] 2615 3022 name = "json-patch" 2616 - version = "1.2.0" 3023 + version = "1.4.0" 2617 3024 source = "registry+https://github.com/rust-lang/crates.io-index" 2618 - checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6" 3025 + checksum = "ec9ad60d674508f3ca8f380a928cfe7b096bc729c4e2dbfe3852bc45da3ab30b" 2619 3026 dependencies = [ 2620 3027 "serde", 2621 3028 "serde_json", 2622 3029 "thiserror", 2623 - "treediff", 2624 3030 ] 2625 3031 2626 3032 [[package]] ··· 2644 3050 ] 2645 3051 2646 3052 [[package]] 2647 - name = "kuchiki" 2648 - version = "0.8.1" 2649 - source = "registry+https://github.com/rust-lang/crates.io-index" 2650 - checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 2651 - dependencies = [ 2652 - "cssparser", 2653 - "html5ever 0.25.2", 2654 - "matches", 2655 - "selectors", 2656 - ] 2657 - 2658 - [[package]] 2659 3053 name = "kuchikiki" 2660 3054 version = "0.8.2" 2661 3055 source = "registry+https://github.com/rust-lang/crates.io-index" 2662 3056 checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 2663 3057 dependencies = [ 2664 3058 "cssparser", 2665 - "html5ever 0.26.0", 3059 + "html5ever", 2666 3060 "indexmap 1.9.3", 2667 3061 "matches", 2668 3062 "selectors", ··· 2709 3103 2710 3104 [[package]] 2711 3105 name = "libc" 2712 - version = "0.2.150" 3106 + version = "0.2.155" 2713 3107 source = "registry+https://github.com/rust-lang/crates.io-index" 2714 - checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 3108 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2715 3109 2716 3110 [[package]] 2717 3111 name = "libdbus-sys" ··· 2724 3118 ] 2725 3119 2726 3120 [[package]] 2727 - name = "libloader" 2728 - version = "0.1.4" 3121 + name = "libfuzzer-sys" 3122 + version = "0.4.7" 2729 3123 source = "registry+https://github.com/rust-lang/crates.io-index" 2730 - checksum = "4d39e73d63036eb973937a3d247e8c9799b1cd0e131079ae8aba294cb0328073" 3124 + checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" 2731 3125 dependencies = [ 2732 - "libloading 0.7.4", 3126 + "arbitrary", 3127 + "cc", 3128 + "once_cell", 2733 3129 ] 2734 3130 2735 3131 [[package]] ··· 2744 3140 2745 3141 [[package]] 2746 3142 name = "libloading" 2747 - version = "0.8.1" 3143 + version = "0.8.3" 2748 3144 source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 3145 + checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 2750 3146 dependencies = [ 2751 3147 "cfg-if", 2752 - "windows-sys 0.48.0", 3148 + "windows-targets 0.52.5", 2753 3149 ] 2754 3150 2755 3151 [[package]] ··· 2760 3156 2761 3157 [[package]] 2762 3158 name = "libredox" 2763 - version = "0.0.1" 3159 + version = "0.1.3" 2764 3160 source = "registry+https://github.com/rust-lang/crates.io-index" 2765 - checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 3161 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2766 3162 dependencies = [ 2767 - "bitflags 2.4.1", 3163 + "bitflags 2.5.0", 2768 3164 "libc", 2769 - "redox_syscall 0.4.1", 2770 3165 ] 2771 3166 2772 3167 [[package]] ··· 2782 3177 2783 3178 [[package]] 2784 3179 name = "line-wrap" 2785 - version = "0.1.1" 3180 + version = "0.2.0" 2786 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 2787 - checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 2788 - dependencies = [ 2789 - "safemem", 2790 - ] 3182 + checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e" 2791 3183 2792 3184 [[package]] 2793 3185 name = "lingua" ··· 2795 3187 source = "registry+https://github.com/rust-lang/crates.io-index" 2796 3188 checksum = "d109aef84956f04b8b5866db17e59f964152411915ad27b6e291b262d63a442c" 2797 3189 dependencies = [ 2798 - "ahash", 3190 + "ahash 0.8.11", 2799 3191 "brotli", 2800 3192 "compact_str", 2801 3193 "fraction", 2802 3194 "include_dir", 2803 - "itertools 0.12.0", 3195 + "itertools", 2804 3196 "lingua-arabic-language-model", 2805 3197 "lingua-bokmal-language-model", 2806 3198 "lingua-chinese-language-model", ··· 3041 3433 3042 3434 [[package]] 3043 3435 name = "linux-raw-sys" 3044 - version = "0.4.11" 3436 + version = "0.4.14" 3045 3437 source = "registry+https://github.com/rust-lang/crates.io-index" 3046 - checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 3438 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 3047 3439 3048 3440 [[package]] 3049 3441 name = "lock_api" 3050 - version = "0.4.11" 3442 + version = "0.4.12" 3051 3443 source = "registry+https://github.com/rust-lang/crates.io-index" 3052 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 3444 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 3053 3445 dependencies = [ 3054 3446 "autocfg", 3055 3447 "scopeguard", 3056 3448 ] 3057 3449 3058 3450 [[package]] 3451 + name = "lockfree-object-pool" 3452 + version = "0.1.6" 3453 + source = "registry+https://github.com/rust-lang/crates.io-index" 3454 + checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 3455 + 3456 + [[package]] 3059 3457 name = "log" 3060 - version = "0.4.20" 3458 + version = "0.4.21" 3061 3459 source = "registry+https://github.com/rust-lang/crates.io-index" 3062 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 3460 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 3063 3461 dependencies = [ 3064 3462 "value-bag", 3065 3463 ] ··· 3077 3475 "serde_json", 3078 3476 "tracing", 3079 3477 "tracing-subscriber", 3478 + ] 3479 + 3480 + [[package]] 3481 + name = "loop9" 3482 + version = "0.1.5" 3483 + source = "registry+https://github.com/rust-lang/crates.io-index" 3484 + checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 3485 + dependencies = [ 3486 + "imgref", 3487 + ] 3488 + 3489 + [[package]] 3490 + name = "lzma-rs" 3491 + version = "0.3.0" 3492 + source = "registry+https://github.com/rust-lang/crates.io-index" 3493 + checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e" 3494 + dependencies = [ 3495 + "byteorder", 3496 + "crc", 3080 3497 ] 3081 3498 3082 3499 [[package]] ··· 3125 3542 3126 3543 [[package]] 3127 3544 name = "markup5ever" 3128 - version = "0.10.1" 3129 - source = "registry+https://github.com/rust-lang/crates.io-index" 3130 - checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 3131 - dependencies = [ 3132 - "log", 3133 - "phf 0.8.0", 3134 - "phf_codegen 0.8.0", 3135 - "string_cache", 3136 - "string_cache_codegen", 3137 - "tendril", 3138 - ] 3139 - 3140 - [[package]] 3141 - name = "markup5ever" 3142 3545 version = "0.11.0" 3143 3546 source = "registry+https://github.com/rust-lang/crates.io-index" 3144 3547 checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" ··· 3167 3570 checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 3168 3571 3169 3572 [[package]] 3573 + name = "maybe-rayon" 3574 + version = "0.1.1" 3575 + source = "registry+https://github.com/rust-lang/crates.io-index" 3576 + checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 3577 + dependencies = [ 3578 + "cfg-if", 3579 + "rayon", 3580 + ] 3581 + 3582 + [[package]] 3170 3583 name = "md-5" 3171 3584 version = "0.10.6" 3172 3585 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3178 3591 3179 3592 [[package]] 3180 3593 name = "memchr" 3181 - version = "2.6.4" 3594 + version = "2.7.4" 3595 + source = "registry+https://github.com/rust-lang/crates.io-index" 3596 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 3597 + 3598 + [[package]] 3599 + name = "memmap2" 3600 + version = "0.8.0" 3182 3601 source = "registry+https://github.com/rust-lang/crates.io-index" 3183 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 3602 + checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 3603 + dependencies = [ 3604 + "libc", 3605 + ] 3184 3606 3185 3607 [[package]] 3186 3608 name = "memoffset" ··· 3193 3615 3194 3616 [[package]] 3195 3617 name = "memoffset" 3196 - version = "0.9.0" 3618 + version = "0.9.1" 3197 3619 source = "registry+https://github.com/rust-lang/crates.io-index" 3198 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 3620 + checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 3199 3621 dependencies = [ 3200 3622 "autocfg", 3201 3623 ] ··· 3230 3652 3231 3653 [[package]] 3232 3654 name = "miniz_oxide" 3233 - version = "0.7.1" 3655 + version = "0.7.4" 3234 3656 source = "registry+https://github.com/rust-lang/crates.io-index" 3235 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3657 + checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 3236 3658 dependencies = [ 3237 3659 "adler", 3238 3660 "simd-adler32", ··· 3240 3662 3241 3663 [[package]] 3242 3664 name = "mio" 3243 - version = "0.8.9" 3665 + version = "0.8.11" 3244 3666 source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 3667 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 3246 3668 dependencies = [ 3247 3669 "libc", 3248 3670 "log", ··· 3252 3674 3253 3675 [[package]] 3254 3676 name = "mouse_position" 3255 - version = "0.1.3" 3677 + version = "0.1.4" 3256 3678 source = "registry+https://github.com/rust-lang/crates.io-index" 3257 - checksum = "ffd272ac3ad817af3d158eecd4d4ba6f92a1fa5f7255e3c0d63b72d4dac12edd" 3679 + checksum = "824feb0675ad2ffda7b1da534f394c5779fb39d123b5f376a221d50fad54b3c2" 3258 3680 dependencies = [ 3259 3681 "core-graphics 0.22.3", 3260 3682 "winapi", ··· 3263 3685 3264 3686 [[package]] 3265 3687 name = "native-tls" 3266 - version = "0.2.11" 3688 + version = "0.2.12" 3267 3689 source = "registry+https://github.com/rust-lang/crates.io-index" 3268 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 3690 + checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 3269 3691 dependencies = [ 3270 - "lazy_static", 3271 3692 "libc", 3272 3693 "log", 3273 3694 "openssl", ··· 3309 3730 3310 3731 [[package]] 3311 3732 name = "new_debug_unreachable" 3312 - version = "1.0.4" 3733 + version = "1.0.6" 3313 3734 source = "registry+https://github.com/rust-lang/crates.io-index" 3314 - checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 3735 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 3315 3736 3316 3737 [[package]] 3317 3738 name = "nix" ··· 3323 3744 "cfg-if", 3324 3745 "libc", 3325 3746 "memoffset 0.7.1", 3326 - "pin-utils", 3327 3747 ] 3328 3748 3329 3749 [[package]] 3330 3750 name = "nix" 3331 - version = "0.27.1" 3751 + version = "0.28.0" 3332 3752 source = "registry+https://github.com/rust-lang/crates.io-index" 3333 - checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 3753 + checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 3334 3754 dependencies = [ 3335 - "bitflags 2.4.1", 3755 + "bitflags 2.5.0", 3336 3756 "cfg-if", 3757 + "cfg_aliases 0.1.1", 3337 3758 "libc", 3759 + "memoffset 0.9.1", 3338 3760 ] 3339 3761 3340 3762 [[package]] ··· 3354 3776 ] 3355 3777 3356 3778 [[package]] 3779 + name = "noop_proc_macro" 3780 + version = "0.3.0" 3781 + source = "registry+https://github.com/rust-lang/crates.io-index" 3782 + checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 3783 + 3784 + [[package]] 3357 3785 name = "notify" 3358 3786 version = "6.1.1" 3359 3787 source = "registry+https://github.com/rust-lang/crates.io-index" 3360 3788 checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 3361 3789 dependencies = [ 3362 - "bitflags 2.4.1", 3790 + "bitflags 2.5.0", 3363 3791 "crossbeam-channel", 3364 3792 "filetime", 3365 3793 "fsevent-sys", ··· 3387 3815 3388 3816 [[package]] 3389 3817 name = "notify-rust" 3390 - version = "4.10.0" 3818 + version = "4.11.0" 3391 3819 source = "registry+https://github.com/rust-lang/crates.io-index" 3392 - checksum = "827c5edfa80235ded4ab3fe8e9dc619b4f866ef16fe9b1c6b8a7f8692c0f2226" 3820 + checksum = "5312f837191c317644f313f7b2b39f9cb1496570c74f7c17152dd3961219551f" 3393 3821 dependencies = [ 3394 3822 "log", 3395 3823 "mac-notification-sys", 3396 3824 "serde", 3397 3825 "tauri-winrt-notification", 3398 - "zbus", 3826 + "zbus 4.3.0", 3399 3827 ] 3400 3828 3401 3829 [[package]] ··· 3410 3838 3411 3839 [[package]] 3412 3840 name = "num" 3413 - version = "0.4.1" 3841 + version = "0.4.3" 3414 3842 source = "registry+https://github.com/rust-lang/crates.io-index" 3415 - checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" 3843 + checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 3416 3844 dependencies = [ 3417 3845 "num-bigint", 3418 3846 "num-complex", ··· 3424 3852 3425 3853 [[package]] 3426 3854 name = "num-bigint" 3427 - version = "0.4.4" 3855 + version = "0.4.5" 3428 3856 source = "registry+https://github.com/rust-lang/crates.io-index" 3429 - checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 3857 + checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" 3430 3858 dependencies = [ 3431 - "autocfg", 3432 3859 "num-integer", 3433 3860 "num-traits", 3434 3861 ] ··· 3452 3879 3453 3880 [[package]] 3454 3881 name = "num-complex" 3455 - version = "0.4.4" 3882 + version = "0.4.6" 3456 3883 source = "registry+https://github.com/rust-lang/crates.io-index" 3457 - checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 3884 + checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 3458 3885 dependencies = [ 3459 3886 "num-traits", 3460 3887 ] 3461 3888 3462 3889 [[package]] 3890 + name = "num-conv" 3891 + version = "0.1.0" 3892 + source = "registry+https://github.com/rust-lang/crates.io-index" 3893 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3894 + 3895 + [[package]] 3896 + name = "num-derive" 3897 + version = "0.4.2" 3898 + source = "registry+https://github.com/rust-lang/crates.io-index" 3899 + checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 3900 + dependencies = [ 3901 + "proc-macro2", 3902 + "quote", 3903 + "syn 2.0.67", 3904 + ] 3905 + 3906 + [[package]] 3463 3907 name = "num-integer" 3464 - version = "0.1.45" 3908 + version = "0.1.46" 3465 3909 source = "registry+https://github.com/rust-lang/crates.io-index" 3466 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3910 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3467 3911 dependencies = [ 3468 - "autocfg", 3469 3912 "num-traits", 3470 3913 ] 3471 3914 3472 3915 [[package]] 3473 3916 name = "num-iter" 3474 - version = "0.1.43" 3917 + version = "0.1.45" 3475 3918 source = "registry+https://github.com/rust-lang/crates.io-index" 3476 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 3919 + checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 3477 3920 dependencies = [ 3478 3921 "autocfg", 3479 3922 "num-integer", ··· 3482 3925 3483 3926 [[package]] 3484 3927 name = "num-rational" 3485 - version = "0.4.1" 3928 + version = "0.4.2" 3486 3929 source = "registry+https://github.com/rust-lang/crates.io-index" 3487 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 3930 + checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 3488 3931 dependencies = [ 3489 - "autocfg", 3490 3932 "num-bigint", 3491 3933 "num-integer", 3492 3934 "num-traits", ··· 3494 3936 3495 3937 [[package]] 3496 3938 name = "num-traits" 3497 - version = "0.2.17" 3939 + version = "0.2.19" 3498 3940 source = "registry+https://github.com/rust-lang/crates.io-index" 3499 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3941 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3500 3942 dependencies = [ 3501 3943 "autocfg", 3502 3944 "libm", ··· 3508 3950 source = "registry+https://github.com/rust-lang/crates.io-index" 3509 3951 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 3510 3952 dependencies = [ 3511 - "hermit-abi", 3953 + "hermit-abi 0.3.9", 3512 3954 "libc", 3513 3955 ] 3514 3956 ··· 3527 3969 source = "registry+https://github.com/rust-lang/crates.io-index" 3528 3970 checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 3529 3971 dependencies = [ 3530 - "proc-macro-crate", 3972 + "proc-macro-crate 1.3.1", 3531 3973 "proc-macro2", 3532 3974 "quote", 3533 3975 "syn 1.0.109", ··· 3535 3977 3536 3978 [[package]] 3537 3979 name = "num_threads" 3538 - version = "0.1.6" 3980 + version = "0.1.7" 3539 3981 source = "registry+https://github.com/rust-lang/crates.io-index" 3540 - checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 3982 + checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 3541 3983 dependencies = [ 3542 3984 "libc", 3543 3985 ] ··· 3564 4006 ] 3565 4007 3566 4008 [[package]] 4009 + name = "objc-sys" 4010 + version = "0.3.5" 4011 + source = "registry+https://github.com/rust-lang/crates.io-index" 4012 + checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 4013 + 4014 + [[package]] 4015 + name = "objc2" 4016 + version = "0.5.2" 4017 + source = "registry+https://github.com/rust-lang/crates.io-index" 4018 + checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 4019 + dependencies = [ 4020 + "objc-sys", 4021 + "objc2-encode", 4022 + ] 4023 + 4024 + [[package]] 4025 + name = "objc2-app-kit" 4026 + version = "0.2.2" 4027 + source = "registry+https://github.com/rust-lang/crates.io-index" 4028 + checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 4029 + dependencies = [ 4030 + "bitflags 2.5.0", 4031 + "block2 0.5.1", 4032 + "libc", 4033 + "objc2", 4034 + "objc2-core-data", 4035 + "objc2-core-image", 4036 + "objc2-foundation", 4037 + "objc2-quartz-core", 4038 + ] 4039 + 4040 + [[package]] 4041 + name = "objc2-core-data" 4042 + version = "0.2.2" 4043 + source = "registry+https://github.com/rust-lang/crates.io-index" 4044 + checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 4045 + dependencies = [ 4046 + "bitflags 2.5.0", 4047 + "block2 0.5.1", 4048 + "objc2", 4049 + "objc2-foundation", 4050 + ] 4051 + 4052 + [[package]] 4053 + name = "objc2-core-image" 4054 + version = "0.2.2" 4055 + source = "registry+https://github.com/rust-lang/crates.io-index" 4056 + checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" 4057 + dependencies = [ 4058 + "block2 0.5.1", 4059 + "objc2", 4060 + "objc2-foundation", 4061 + "objc2-metal", 4062 + ] 4063 + 4064 + [[package]] 4065 + name = "objc2-encode" 4066 + version = "4.0.3" 4067 + source = "registry+https://github.com/rust-lang/crates.io-index" 4068 + checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 4069 + 4070 + [[package]] 4071 + name = "objc2-foundation" 4072 + version = "0.2.2" 4073 + source = "registry+https://github.com/rust-lang/crates.io-index" 4074 + checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 4075 + dependencies = [ 4076 + "bitflags 2.5.0", 4077 + "block2 0.5.1", 4078 + "libc", 4079 + "objc2", 4080 + ] 4081 + 4082 + [[package]] 4083 + name = "objc2-metal" 4084 + version = "0.2.2" 4085 + source = "registry+https://github.com/rust-lang/crates.io-index" 4086 + checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 4087 + dependencies = [ 4088 + "bitflags 2.5.0", 4089 + "block2 0.5.1", 4090 + "objc2", 4091 + "objc2-foundation", 4092 + ] 4093 + 4094 + [[package]] 4095 + name = "objc2-quartz-core" 4096 + version = "0.2.2" 4097 + source = "registry+https://github.com/rust-lang/crates.io-index" 4098 + checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 4099 + dependencies = [ 4100 + "bitflags 2.5.0", 4101 + "block2 0.5.1", 4102 + "objc2", 4103 + "objc2-foundation", 4104 + "objc2-metal", 4105 + ] 4106 + 4107 + [[package]] 3567 4108 name = "objc_exception" 3568 4109 version = "0.1.2" 3569 4110 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3583 4124 3584 4125 [[package]] 3585 4126 name = "object" 3586 - version = "0.32.1" 4127 + version = "0.36.0" 3587 4128 source = "registry+https://github.com/rust-lang/crates.io-index" 3588 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 4129 + checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434" 3589 4130 dependencies = [ 3590 4131 "memchr", 3591 4132 ] ··· 3608 4149 3609 4150 [[package]] 3610 4151 name = "openssl" 3611 - version = "0.10.60" 4152 + version = "0.10.64" 3612 4153 source = "registry+https://github.com/rust-lang/crates.io-index" 3613 - checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" 4154 + checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 3614 4155 dependencies = [ 3615 - "bitflags 2.4.1", 4156 + "bitflags 2.5.0", 3616 4157 "cfg-if", 3617 4158 "foreign-types 0.3.2", 3618 4159 "libc", ··· 3629 4170 dependencies = [ 3630 4171 "proc-macro2", 3631 4172 "quote", 3632 - "syn 2.0.39", 4173 + "syn 2.0.67", 3633 4174 ] 3634 4175 3635 4176 [[package]] ··· 3640 4181 3641 4182 [[package]] 3642 4183 name = "openssl-sys" 3643 - version = "0.9.96" 4184 + version = "0.9.102" 3644 4185 source = "registry+https://github.com/rust-lang/crates.io-index" 3645 - checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" 4186 + checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" 3646 4187 dependencies = [ 3647 4188 "cc", 3648 4189 "libc", ··· 3668 4209 3669 4210 [[package]] 3670 4211 name = "os_info" 3671 - version = "3.7.0" 4212 + version = "3.8.2" 3672 4213 source = "registry+https://github.com/rust-lang/crates.io-index" 3673 - checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" 4214 + checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092" 3674 4215 dependencies = [ 3675 4216 "log", 3676 4217 "serde", 3677 - "winapi", 4218 + "windows-sys 0.52.0", 3678 4219 ] 3679 4220 3680 4221 [[package]] 3681 4222 name = "os_pipe" 3682 - version = "1.1.4" 4223 + version = "1.2.0" 3683 4224 source = "registry+https://github.com/rust-lang/crates.io-index" 3684 - checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 4225 + checksum = "29d73ba8daf8fac13b0501d1abeddcfe21ba7401ada61a819144b6c2a4f32209" 3685 4226 dependencies = [ 3686 4227 "libc", 3687 - "windows-sys 0.48.0", 4228 + "windows-sys 0.52.0", 3688 4229 ] 3689 4230 3690 4231 [[package]] ··· 3715 4256 "glib-sys", 3716 4257 "gobject-sys", 3717 4258 "libc", 3718 - "system-deps 6.2.0", 4259 + "system-deps 6.2.2", 3719 4260 ] 3720 4261 3721 4262 [[package]] ··· 3726 4267 3727 4268 [[package]] 3728 4269 name = "parking_lot" 3729 - version = "0.12.1" 4270 + version = "0.12.3" 3730 4271 source = "registry+https://github.com/rust-lang/crates.io-index" 3731 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 4272 + checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 3732 4273 dependencies = [ 3733 4274 "lock_api", 3734 4275 "parking_lot_core", ··· 3736 4277 3737 4278 [[package]] 3738 4279 name = "parking_lot_core" 3739 - version = "0.9.9" 4280 + version = "0.9.10" 3740 4281 source = "registry+https://github.com/rust-lang/crates.io-index" 3741 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 4282 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 3742 4283 dependencies = [ 3743 4284 "cfg-if", 3744 4285 "libc", 3745 - "redox_syscall 0.4.1", 4286 + "redox_syscall 0.5.2", 3746 4287 "smallvec", 3747 - "windows-targets 0.48.5", 3748 - ] 3749 - 3750 - [[package]] 3751 - name = "password-hash" 3752 - version = "0.4.2" 3753 - source = "registry+https://github.com/rust-lang/crates.io-index" 3754 - checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 3755 - dependencies = [ 3756 - "base64ct", 3757 - "rand_core 0.6.4", 3758 - "subtle", 4288 + "windows-targets 0.52.5", 3759 4289 ] 3760 4290 3761 4291 [[package]] 3762 4292 name = "paste" 3763 - version = "1.0.14" 4293 + version = "1.0.15" 3764 4294 source = "registry+https://github.com/rust-lang/crates.io-index" 3765 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 4295 + checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3766 4296 3767 4297 [[package]] 3768 4298 name = "pathdiff" ··· 3782 4312 3783 4313 [[package]] 3784 4314 name = "pathfinder_simd" 3785 - version = "0.5.2" 4315 + version = "0.5.3" 3786 4316 source = "registry+https://github.com/rust-lang/crates.io-index" 3787 - checksum = "0444332826c70dc47be74a7c6a5fc44e23a7905ad6858d4162b658320455ef93" 4317 + checksum = "ebf45976c56919841273f2a0fc684c28437e2f304e264557d9c72be5d5a718be" 3788 4318 dependencies = [ 3789 4319 "rustc_version", 3790 4320 ] 3791 4321 3792 4322 [[package]] 3793 4323 name = "pbkdf2" 3794 - version = "0.11.0" 4324 + version = "0.12.2" 3795 4325 source = "registry+https://github.com/rust-lang/crates.io-index" 3796 - checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 4326 + checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 3797 4327 dependencies = [ 3798 4328 "digest", 3799 4329 "hmac", 3800 - "password-hash", 3801 - "sha2", 3802 4330 ] 3803 4331 3804 4332 [[package]] ··· 3818 4346 3819 4347 [[package]] 3820 4348 name = "petgraph" 3821 - version = "0.6.4" 4349 + version = "0.6.5" 3822 4350 source = "registry+https://github.com/rust-lang/crates.io-index" 3823 - checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 4351 + checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 3824 4352 dependencies = [ 3825 4353 "fixedbitset", 3826 - "indexmap 2.1.0", 4354 + "indexmap 2.2.6", 3827 4355 ] 3828 4356 3829 4357 [[package]] ··· 3843 4371 source = "registry+https://github.com/rust-lang/crates.io-index" 3844 4372 checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 3845 4373 dependencies = [ 3846 - "phf_macros 0.10.0", 3847 4374 "phf_shared 0.10.0", 3848 - "proc-macro-hack", 4375 + ] 4376 + 4377 + [[package]] 4378 + name = "phf" 4379 + version = "0.11.2" 4380 + source = "registry+https://github.com/rust-lang/crates.io-index" 4381 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 4382 + dependencies = [ 4383 + "phf_macros 0.11.2", 4384 + "phf_shared 0.11.2", 3849 4385 ] 3850 4386 3851 4387 [[package]] ··· 3889 4425 ] 3890 4426 3891 4427 [[package]] 4428 + name = "phf_generator" 4429 + version = "0.11.2" 4430 + source = "registry+https://github.com/rust-lang/crates.io-index" 4431 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 4432 + dependencies = [ 4433 + "phf_shared 0.11.2", 4434 + "rand 0.8.5", 4435 + ] 4436 + 4437 + [[package]] 3892 4438 name = "phf_macros" 3893 4439 version = "0.8.0" 3894 4440 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3904 4450 3905 4451 [[package]] 3906 4452 name = "phf_macros" 3907 - version = "0.10.0" 4453 + version = "0.11.2" 3908 4454 source = "registry+https://github.com/rust-lang/crates.io-index" 3909 - checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 4455 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 3910 4456 dependencies = [ 3911 - "phf_generator 0.10.0", 3912 - "phf_shared 0.10.0", 3913 - "proc-macro-hack", 4457 + "phf_generator 0.11.2", 4458 + "phf_shared 0.11.2", 3914 4459 "proc-macro2", 3915 4460 "quote", 3916 - "syn 1.0.109", 4461 + "syn 2.0.67", 3917 4462 ] 3918 4463 3919 4464 [[package]] ··· 3935 4480 ] 3936 4481 3937 4482 [[package]] 4483 + name = "phf_shared" 4484 + version = "0.11.2" 4485 + source = "registry+https://github.com/rust-lang/crates.io-index" 4486 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 4487 + dependencies = [ 4488 + "siphasher", 4489 + ] 4490 + 4491 + [[package]] 4492 + name = "pin-project" 4493 + version = "1.1.5" 4494 + source = "registry+https://github.com/rust-lang/crates.io-index" 4495 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 4496 + dependencies = [ 4497 + "pin-project-internal", 4498 + ] 4499 + 4500 + [[package]] 4501 + name = "pin-project-internal" 4502 + version = "1.1.5" 4503 + source = "registry+https://github.com/rust-lang/crates.io-index" 4504 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 4505 + dependencies = [ 4506 + "proc-macro2", 4507 + "quote", 4508 + "syn 2.0.67", 4509 + ] 4510 + 4511 + [[package]] 3938 4512 name = "pin-project-lite" 3939 - version = "0.2.13" 4513 + version = "0.2.14" 3940 4514 source = "registry+https://github.com/rust-lang/crates.io-index" 3941 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 4515 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 3942 4516 3943 4517 [[package]] 3944 4518 name = "pin-utils" ··· 3948 4522 3949 4523 [[package]] 3950 4524 name = "piper" 3951 - version = "0.2.1" 4525 + version = "0.2.3" 3952 4526 source = "registry+https://github.com/rust-lang/crates.io-index" 3953 - checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 4527 + checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" 3954 4528 dependencies = [ 3955 4529 "atomic-waker", 3956 - "fastrand 2.0.1", 4530 + "fastrand 2.1.0", 3957 4531 "futures-io", 3958 4532 ] 3959 4533 ··· 3980 4554 3981 4555 [[package]] 3982 4556 name = "pkg-config" 3983 - version = "0.3.27" 4557 + version = "0.3.30" 3984 4558 source = "registry+https://github.com/rust-lang/crates.io-index" 3985 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 4559 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 3986 4560 3987 4561 [[package]] 3988 4562 name = "plist" 3989 - version = "1.6.0" 4563 + version = "1.6.1" 3990 4564 source = "registry+https://github.com/rust-lang/crates.io-index" 3991 - checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 4565 + checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9" 3992 4566 dependencies = [ 3993 - "base64 0.21.5", 3994 - "indexmap 2.1.0", 4567 + "base64 0.21.7", 4568 + "indexmap 2.2.6", 3995 4569 "line-wrap", 3996 4570 "quick-xml 0.31.0", 3997 4571 "serde", ··· 4000 4574 4001 4575 [[package]] 4002 4576 name = "png" 4003 - version = "0.17.10" 4577 + version = "0.17.13" 4004 4578 source = "registry+https://github.com/rust-lang/crates.io-index" 4005 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 4579 + checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 4006 4580 dependencies = [ 4007 4581 "bitflags 1.3.2", 4008 4582 "crc32fast", ··· 4029 4603 4030 4604 [[package]] 4031 4605 name = "polling" 4032 - version = "3.3.1" 4606 + version = "3.7.2" 4033 4607 source = "registry+https://github.com/rust-lang/crates.io-index" 4034 - checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" 4608 + checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" 4035 4609 dependencies = [ 4036 4610 "cfg-if", 4037 4611 "concurrent-queue", 4612 + "hermit-abi 0.4.0", 4038 4613 "pin-project-lite", 4039 - "rustix 0.38.25", 4614 + "rustix 0.38.34", 4040 4615 "tracing", 4041 4616 "windows-sys 0.52.0", 4042 4617 ] ··· 4046 4621 version = "0.0.0" 4047 4622 dependencies = [ 4048 4623 "arboard", 4049 - "base64 0.21.5", 4624 + "base64 0.22.1", 4050 4625 "dirs 5.0.1", 4051 4626 "font-kit", 4052 - "image", 4053 - "libloader", 4054 - "libloading 0.8.1", 4627 + "image 0.25.1", 4055 4628 "lingua", 4056 4629 "log", 4057 4630 "macos-accessibility-client", 4058 4631 "mouse_position", 4059 4632 "once_cell", 4060 - "reqwest", 4633 + "reqwest 0.12.5", 4061 4634 "reqwest_dav", 4062 4635 "screenshots", 4063 4636 "selection", ··· 4075 4648 "tiny_http", 4076 4649 "walkdir", 4077 4650 "window-shadows", 4078 - "windows 0.44.0", 4079 - "zip", 4651 + "windows 0.57.0", 4652 + "zip 2.1.3", 4080 4653 ] 4081 4654 4082 4655 [[package]] ··· 4108 4681 ] 4109 4682 4110 4683 [[package]] 4684 + name = "proc-macro-crate" 4685 + version = "3.1.0" 4686 + source = "registry+https://github.com/rust-lang/crates.io-index" 4687 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 4688 + dependencies = [ 4689 + "toml_edit 0.21.1", 4690 + ] 4691 + 4692 + [[package]] 4111 4693 name = "proc-macro-error" 4112 4694 version = "1.0.4" 4113 4695 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4139 4721 4140 4722 [[package]] 4141 4723 name = "proc-macro2" 4142 - version = "1.0.70" 4724 + version = "1.0.86" 4143 4725 source = "registry+https://github.com/rust-lang/crates.io-index" 4144 - checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 4726 + checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 4145 4727 dependencies = [ 4146 4728 "unicode-ident", 4147 4729 ] 4148 4730 4149 4731 [[package]] 4732 + name = "profiling" 4733 + version = "1.0.15" 4734 + source = "registry+https://github.com/rust-lang/crates.io-index" 4735 + checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58" 4736 + dependencies = [ 4737 + "profiling-procmacros", 4738 + ] 4739 + 4740 + [[package]] 4741 + name = "profiling-procmacros" 4742 + version = "1.0.15" 4743 + source = "registry+https://github.com/rust-lang/crates.io-index" 4744 + checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd" 4745 + dependencies = [ 4746 + "quote", 4747 + "syn 2.0.67", 4748 + ] 4749 + 4750 + [[package]] 4751 + name = "ptr_meta" 4752 + version = "0.1.4" 4753 + source = "registry+https://github.com/rust-lang/crates.io-index" 4754 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 4755 + dependencies = [ 4756 + "ptr_meta_derive", 4757 + ] 4758 + 4759 + [[package]] 4760 + name = "ptr_meta_derive" 4761 + version = "0.1.4" 4762 + source = "registry+https://github.com/rust-lang/crates.io-index" 4763 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 4764 + dependencies = [ 4765 + "proc-macro2", 4766 + "quote", 4767 + "syn 1.0.109", 4768 + ] 4769 + 4770 + [[package]] 4150 4771 name = "qoi" 4151 4772 version = "0.4.1" 4152 4773 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4156 4777 ] 4157 4778 4158 4779 [[package]] 4159 - name = "quick-xml" 4160 - version = "0.28.2" 4780 + name = "quick-error" 4781 + version = "2.0.1" 4161 4782 source = "registry+https://github.com/rust-lang/crates.io-index" 4162 - checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 4163 - dependencies = [ 4164 - "memchr", 4165 - ] 4783 + checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 4166 4784 4167 4785 [[package]] 4168 4786 name = "quick-xml" ··· 4184 4802 4185 4803 [[package]] 4186 4804 name = "quote" 4187 - version = "1.0.33" 4805 + version = "1.0.36" 4188 4806 source = "registry+https://github.com/rust-lang/crates.io-index" 4189 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 4807 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 4190 4808 dependencies = [ 4191 4809 "proc-macro2", 4192 4810 ] 4811 + 4812 + [[package]] 4813 + name = "radium" 4814 + version = "0.7.0" 4815 + source = "registry+https://github.com/rust-lang/crates.io-index" 4816 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4193 4817 4194 4818 [[package]] 4195 4819 name = "rand" ··· 4251 4875 source = "registry+https://github.com/rust-lang/crates.io-index" 4252 4876 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4253 4877 dependencies = [ 4254 - "getrandom 0.2.11", 4878 + "getrandom 0.2.15", 4255 4879 ] 4256 4880 4257 4881 [[package]] ··· 4273 4897 ] 4274 4898 4275 4899 [[package]] 4900 + name = "rav1e" 4901 + version = "0.7.1" 4902 + source = "registry+https://github.com/rust-lang/crates.io-index" 4903 + checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" 4904 + dependencies = [ 4905 + "arbitrary", 4906 + "arg_enum_proc_macro", 4907 + "arrayvec", 4908 + "av1-grain", 4909 + "bitstream-io", 4910 + "built", 4911 + "cfg-if", 4912 + "interpolate_name", 4913 + "itertools", 4914 + "libc", 4915 + "libfuzzer-sys", 4916 + "log", 4917 + "maybe-rayon", 4918 + "new_debug_unreachable", 4919 + "noop_proc_macro", 4920 + "num-derive", 4921 + "num-traits", 4922 + "once_cell", 4923 + "paste", 4924 + "profiling", 4925 + "rand 0.8.5", 4926 + "rand_chacha 0.3.1", 4927 + "simd_helpers", 4928 + "system-deps 6.2.2", 4929 + "thiserror", 4930 + "v_frame", 4931 + "wasm-bindgen", 4932 + ] 4933 + 4934 + [[package]] 4935 + name = "ravif" 4936 + version = "0.11.7" 4937 + source = "registry+https://github.com/rust-lang/crates.io-index" 4938 + checksum = "67376f469e7e7840d0040bbf4b9b3334005bb167f814621326e4c7ab8cd6e944" 4939 + dependencies = [ 4940 + "avif-serialize", 4941 + "imgref", 4942 + "loop9", 4943 + "quick-error", 4944 + "rav1e", 4945 + "rayon", 4946 + "rgb", 4947 + ] 4948 + 4949 + [[package]] 4276 4950 name = "raw-window-handle" 4277 4951 version = "0.5.2" 4278 4952 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4280 4954 4281 4955 [[package]] 4282 4956 name = "rayon" 4283 - version = "1.8.0" 4957 + version = "1.10.0" 4284 4958 source = "registry+https://github.com/rust-lang/crates.io-index" 4285 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 4959 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 4286 4960 dependencies = [ 4287 4961 "either", 4288 4962 "rayon-core", ··· 4290 4964 4291 4965 [[package]] 4292 4966 name = "rayon-core" 4293 - version = "1.12.0" 4967 + version = "1.12.1" 4294 4968 source = "registry+https://github.com/rust-lang/crates.io-index" 4295 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 4969 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 4296 4970 dependencies = [ 4297 4971 "crossbeam-deque", 4298 4972 "crossbeam-utils", ··· 4300 4974 4301 4975 [[package]] 4302 4976 name = "redox_syscall" 4303 - version = "0.3.5" 4977 + version = "0.4.1" 4304 4978 source = "registry+https://github.com/rust-lang/crates.io-index" 4305 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 4979 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4306 4980 dependencies = [ 4307 4981 "bitflags 1.3.2", 4308 4982 ] 4309 4983 4310 4984 [[package]] 4311 4985 name = "redox_syscall" 4312 - version = "0.4.1" 4986 + version = "0.5.2" 4313 4987 source = "registry+https://github.com/rust-lang/crates.io-index" 4314 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4988 + checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd" 4315 4989 dependencies = [ 4316 - "bitflags 1.3.2", 4990 + "bitflags 2.5.0", 4317 4991 ] 4318 4992 4319 4993 [[package]] 4320 4994 name = "redox_users" 4321 - version = "0.4.4" 4995 + version = "0.4.5" 4322 4996 source = "registry+https://github.com/rust-lang/crates.io-index" 4323 - checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 4997 + checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 4324 4998 dependencies = [ 4325 - "getrandom 0.2.11", 4999 + "getrandom 0.2.15", 4326 5000 "libredox", 4327 5001 "thiserror", 4328 5002 ] 4329 5003 4330 5004 [[package]] 4331 5005 name = "regex" 4332 - version = "1.10.2" 5006 + version = "1.10.5" 4333 5007 source = "registry+https://github.com/rust-lang/crates.io-index" 4334 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 5008 + checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 4335 5009 dependencies = [ 4336 5010 "aho-corasick", 4337 5011 "memchr", 4338 - "regex-automata 0.4.3", 4339 - "regex-syntax 0.8.2", 5012 + "regex-automata 0.4.7", 5013 + "regex-syntax 0.8.4", 4340 5014 ] 4341 5015 4342 5016 [[package]] ··· 4350 5024 4351 5025 [[package]] 4352 5026 name = "regex-automata" 4353 - version = "0.4.3" 5027 + version = "0.4.7" 4354 5028 source = "registry+https://github.com/rust-lang/crates.io-index" 4355 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 5029 + checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 4356 5030 dependencies = [ 4357 5031 "aho-corasick", 4358 5032 "memchr", 4359 - "regex-syntax 0.8.2", 5033 + "regex-syntax 0.8.4", 4360 5034 ] 4361 5035 4362 5036 [[package]] ··· 4367 5041 4368 5042 [[package]] 4369 5043 name = "regex-syntax" 4370 - version = "0.8.2" 5044 + version = "0.8.4" 5045 + source = "registry+https://github.com/rust-lang/crates.io-index" 5046 + checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 5047 + 5048 + [[package]] 5049 + name = "rend" 5050 + version = "0.4.2" 4371 5051 source = "registry+https://github.com/rust-lang/crates.io-index" 4372 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 5052 + checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 5053 + dependencies = [ 5054 + "bytecheck", 5055 + ] 4373 5056 4374 5057 [[package]] 4375 5058 name = "reqwest" 4376 - version = "0.11.22" 5059 + version = "0.11.27" 4377 5060 source = "registry+https://github.com/rust-lang/crates.io-index" 4378 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 5061 + checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 4379 5062 dependencies = [ 4380 - "base64 0.21.5", 5063 + "base64 0.21.7", 4381 5064 "bytes", 4382 5065 "encoding_rs", 4383 5066 "futures-core", 4384 5067 "futures-util", 4385 - "h2", 4386 - "http", 4387 - "http-body", 4388 - "hyper", 4389 - "hyper-tls", 5068 + "h2 0.3.26", 5069 + "http 0.2.12", 5070 + "http-body 0.4.6", 5071 + "hyper 0.14.29", 5072 + "hyper-tls 0.5.0", 4390 5073 "ipnet", 4391 5074 "js-sys", 4392 5075 "log", ··· 4396 5079 "once_cell", 4397 5080 "percent-encoding", 4398 5081 "pin-project-lite", 5082 + "rustls-pemfile 1.0.4", 4399 5083 "serde", 4400 5084 "serde_json", 4401 5085 "serde_urlencoded", 5086 + "sync_wrapper 0.1.2", 4402 5087 "system-configuration", 4403 5088 "tokio", 4404 5089 "tokio-native-tls", ··· 4413 5098 ] 4414 5099 4415 5100 [[package]] 5101 + name = "reqwest" 5102 + version = "0.12.5" 5103 + source = "registry+https://github.com/rust-lang/crates.io-index" 5104 + checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" 5105 + dependencies = [ 5106 + "base64 0.22.1", 5107 + "bytes", 5108 + "encoding_rs", 5109 + "futures-core", 5110 + "futures-util", 5111 + "h2 0.4.5", 5112 + "http 1.1.0", 5113 + "http-body 1.0.0", 5114 + "http-body-util", 5115 + "hyper 1.3.1", 5116 + "hyper-rustls", 5117 + "hyper-tls 0.6.0", 5118 + "hyper-util", 5119 + "ipnet", 5120 + "js-sys", 5121 + "log", 5122 + "mime", 5123 + "native-tls", 5124 + "once_cell", 5125 + "percent-encoding", 5126 + "pin-project-lite", 5127 + "rustls-pemfile 2.1.2", 5128 + "serde", 5129 + "serde_json", 5130 + "serde_urlencoded", 5131 + "sync_wrapper 1.0.1", 5132 + "system-configuration", 5133 + "tokio", 5134 + "tokio-native-tls", 5135 + "tower-service", 5136 + "url", 5137 + "wasm-bindgen", 5138 + "wasm-bindgen-futures", 5139 + "web-sys", 5140 + "winreg 0.52.0", 5141 + ] 5142 + 5143 + [[package]] 4416 5144 name = "reqwest_dav" 4417 5145 version = "0.1.5" 4418 5146 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4421 5149 "async-trait", 4422 5150 "chrono", 4423 5151 "digest_auth", 4424 - "http", 4425 - "reqwest", 5152 + "http 0.2.12", 5153 + "reqwest 0.11.27", 4426 5154 "serde", 4427 5155 "serde-xml-rs", 4428 5156 "serde_derive", ··· 4456 5184 ] 4457 5185 4458 5186 [[package]] 5187 + name = "rgb" 5188 + version = "0.8.37" 5189 + source = "registry+https://github.com/rust-lang/crates.io-index" 5190 + checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 5191 + dependencies = [ 5192 + "bytemuck", 5193 + ] 5194 + 5195 + [[package]] 5196 + name = "ring" 5197 + version = "0.17.8" 5198 + source = "registry+https://github.com/rust-lang/crates.io-index" 5199 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 5200 + dependencies = [ 5201 + "cc", 5202 + "cfg-if", 5203 + "getrandom 0.2.15", 5204 + "libc", 5205 + "spin 0.9.8", 5206 + "untrusted", 5207 + "windows-sys 0.52.0", 5208 + ] 5209 + 5210 + [[package]] 5211 + name = "rkyv" 5212 + version = "0.7.44" 5213 + source = "registry+https://github.com/rust-lang/crates.io-index" 5214 + checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 5215 + dependencies = [ 5216 + "bitvec", 5217 + "bytecheck", 5218 + "bytes", 5219 + "hashbrown 0.12.3", 5220 + "ptr_meta", 5221 + "rend", 5222 + "rkyv_derive", 5223 + "seahash", 5224 + "tinyvec", 5225 + "uuid", 5226 + ] 5227 + 5228 + [[package]] 5229 + name = "rkyv_derive" 5230 + version = "0.7.44" 5231 + source = "registry+https://github.com/rust-lang/crates.io-index" 5232 + checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 5233 + dependencies = [ 5234 + "proc-macro2", 5235 + "quote", 5236 + "syn 1.0.109", 5237 + ] 5238 + 5239 + [[package]] 4459 5240 name = "rsa" 4460 - version = "0.9.5" 5241 + version = "0.9.6" 4461 5242 source = "registry+https://github.com/rust-lang/crates.io-index" 4462 - checksum = "af6c4b23d99685a1408194da11270ef8e9809aff951cc70ec9b17350b087e474" 5243 + checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 4463 5244 dependencies = [ 4464 5245 "const-oid", 4465 5246 "digest", ··· 4476 5257 ] 4477 5258 4478 5259 [[package]] 5260 + name = "rust_decimal" 5261 + version = "1.35.0" 5262 + source = "registry+https://github.com/rust-lang/crates.io-index" 5263 + checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" 5264 + dependencies = [ 5265 + "arrayvec", 5266 + "borsh", 5267 + "bytes", 5268 + "num-traits", 5269 + "rand 0.8.5", 5270 + "rkyv", 5271 + "serde", 5272 + "serde_json", 5273 + ] 5274 + 5275 + [[package]] 4479 5276 name = "rustc-demangle" 4480 - version = "0.1.23" 5277 + version = "0.1.24" 4481 5278 source = "registry+https://github.com/rust-lang/crates.io-index" 4482 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 5279 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 4483 5280 4484 5281 [[package]] 4485 5282 name = "rustc_version" ··· 4506 5303 4507 5304 [[package]] 4508 5305 name = "rustix" 4509 - version = "0.38.25" 5306 + version = "0.38.34" 4510 5307 source = "registry+https://github.com/rust-lang/crates.io-index" 4511 - checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e" 5308 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 4512 5309 dependencies = [ 4513 - "bitflags 2.4.1", 5310 + "bitflags 2.5.0", 4514 5311 "errno", 4515 5312 "libc", 4516 - "linux-raw-sys 0.4.11", 4517 - "windows-sys 0.48.0", 5313 + "linux-raw-sys 0.4.14", 5314 + "windows-sys 0.52.0", 5315 + ] 5316 + 5317 + [[package]] 5318 + name = "rustls" 5319 + version = "0.23.10" 5320 + source = "registry+https://github.com/rust-lang/crates.io-index" 5321 + checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402" 5322 + dependencies = [ 5323 + "once_cell", 5324 + "rustls-pki-types", 5325 + "rustls-webpki", 5326 + "subtle", 5327 + "zeroize", 4518 5328 ] 4519 5329 4520 5330 [[package]] 4521 - name = "rustversion" 4522 - version = "1.0.14" 5331 + name = "rustls-pemfile" 5332 + version = "1.0.4" 4523 5333 source = "registry+https://github.com/rust-lang/crates.io-index" 4524 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 5334 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 5335 + dependencies = [ 5336 + "base64 0.21.7", 5337 + ] 4525 5338 4526 5339 [[package]] 4527 - name = "ryu" 4528 - version = "1.0.15" 5340 + name = "rustls-pemfile" 5341 + version = "2.1.2" 5342 + source = "registry+https://github.com/rust-lang/crates.io-index" 5343 + checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 5344 + dependencies = [ 5345 + "base64 0.22.1", 5346 + "rustls-pki-types", 5347 + ] 5348 + 5349 + [[package]] 5350 + name = "rustls-pki-types" 5351 + version = "1.7.0" 5352 + source = "registry+https://github.com/rust-lang/crates.io-index" 5353 + checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 5354 + 5355 + [[package]] 5356 + name = "rustls-webpki" 5357 + version = "0.102.4" 5358 + source = "registry+https://github.com/rust-lang/crates.io-index" 5359 + checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" 5360 + dependencies = [ 5361 + "ring", 5362 + "rustls-pki-types", 5363 + "untrusted", 5364 + ] 5365 + 5366 + [[package]] 5367 + name = "rustversion" 5368 + version = "1.0.17" 4529 5369 source = "registry+https://github.com/rust-lang/crates.io-index" 4530 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 5370 + checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 4531 5371 4532 5372 [[package]] 4533 - name = "safemem" 4534 - version = "0.3.3" 5373 + name = "ryu" 5374 + version = "1.0.18" 4535 5375 source = "registry+https://github.com/rust-lang/crates.io-index" 4536 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 5376 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 4537 5377 4538 5378 [[package]] 4539 5379 name = "same-file" ··· 4546 5386 4547 5387 [[package]] 4548 5388 name = "schannel" 4549 - version = "0.1.22" 5389 + version = "0.1.23" 4550 5390 source = "registry+https://github.com/rust-lang/crates.io-index" 4551 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 5391 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 4552 5392 dependencies = [ 4553 - "windows-sys 0.48.0", 5393 + "windows-sys 0.52.0", 4554 5394 ] 4555 5395 4556 5396 [[package]] ··· 4567 5407 4568 5408 [[package]] 4569 5409 name = "screenshots" 4570 - version = "0.7.3" 5410 + version = "0.7.2" 4571 5411 source = "registry+https://github.com/rust-lang/crates.io-index" 4572 - checksum = "0fa2e9c30ca7f738a53367336d820f4a9af213c706ea55266d608d38e3b5cbff" 5412 + checksum = "a5949a375cfa59d2da560c886629e237b7471074ddaf64ce81fe6f96a1a15ec7" 4573 5413 dependencies = [ 4574 5414 "anyhow", 4575 5415 "core-graphics 0.22.3", ··· 4584 5424 ] 4585 5425 4586 5426 [[package]] 5427 + name = "seahash" 5428 + version = "4.1.0" 5429 + source = "registry+https://github.com/rust-lang/crates.io-index" 5430 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 5431 + 5432 + [[package]] 4587 5433 name = "security-framework" 4588 - version = "2.9.2" 5434 + version = "2.11.0" 4589 5435 source = "registry+https://github.com/rust-lang/crates.io-index" 4590 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 5436 + checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 4591 5437 dependencies = [ 4592 - "bitflags 1.3.2", 5438 + "bitflags 2.5.0", 4593 5439 "core-foundation", 4594 5440 "core-foundation-sys", 4595 5441 "libc", ··· 4598 5444 4599 5445 [[package]] 4600 5446 name = "security-framework-sys" 4601 - version = "2.9.1" 5447 + version = "2.11.0" 4602 5448 source = "registry+https://github.com/rust-lang/crates.io-index" 4603 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 5449 + checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 4604 5450 dependencies = [ 4605 5451 "core-foundation-sys", 4606 5452 "libc", ··· 4608 5454 4609 5455 [[package]] 4610 5456 name = "selection" 4611 - version = "1.1.1" 5457 + version = "1.2.0" 4612 5458 source = "registry+https://github.com/rust-lang/crates.io-index" 4613 - checksum = "1f4c5f3c0a904e16c649b1c59e95bda2d0983334a7b836b3aa4a85430831af16" 5459 + checksum = "c56bdfb3cbb220dd9ae541e7a50318f6073cc7920949684c9788c54ba78edd64" 4614 5460 dependencies = [ 5461 + "accessibility-ng", 5462 + "accessibility-sys-ng", 4615 5463 "arboard", 5464 + "core-foundation", 4616 5465 "enigo", 4617 5466 "log", 4618 - "windows 0.52.0", 5467 + "windows 0.56.0", 4619 5468 "wl-clipboard-rs", 4620 5469 "x11-clipboard", 4621 5470 ] ··· 4642 5491 4643 5492 [[package]] 4644 5493 name = "semver" 4645 - version = "1.0.20" 5494 + version = "1.0.23" 4646 5495 source = "registry+https://github.com/rust-lang/crates.io-index" 4647 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 5496 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 4648 5497 dependencies = [ 4649 5498 "serde", 4650 5499 ] 4651 5500 4652 5501 [[package]] 4653 5502 name = "serde" 4654 - version = "1.0.193" 5503 + version = "1.0.203" 4655 5504 source = "registry+https://github.com/rust-lang/crates.io-index" 4656 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 5505 + checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 4657 5506 dependencies = [ 4658 5507 "serde_derive", 4659 5508 ] 4660 5509 4661 5510 [[package]] 4662 5511 name = "serde-wasm-bindgen" 4663 - version = "0.6.4" 5512 + version = "0.6.5" 4664 5513 source = "registry+https://github.com/rust-lang/crates.io-index" 4665 - checksum = "4c1432112bce8b966497ac46519535189a3250a3812cd27a999678a69756f79f" 5514 + checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" 4666 5515 dependencies = [ 4667 5516 "js-sys", 4668 5517 "serde", ··· 4683 5532 4684 5533 [[package]] 4685 5534 name = "serde_derive" 4686 - version = "1.0.193" 5535 + version = "1.0.203" 4687 5536 source = "registry+https://github.com/rust-lang/crates.io-index" 4688 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 5537 + checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 4689 5538 dependencies = [ 4690 5539 "proc-macro2", 4691 5540 "quote", 4692 - "syn 2.0.39", 5541 + "syn 2.0.67", 4693 5542 ] 4694 5543 4695 5544 [[package]] 4696 5545 name = "serde_json" 4697 - version = "1.0.108" 5546 + version = "1.0.117" 4698 5547 source = "registry+https://github.com/rust-lang/crates.io-index" 4699 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 5548 + checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 4700 5549 dependencies = [ 4701 - "itoa 1.0.9", 5550 + "indexmap 2.2.6", 5551 + "itoa 1.0.11", 4702 5552 "ryu", 4703 5553 "serde", 4704 5554 ] 4705 5555 4706 5556 [[package]] 4707 5557 name = "serde_repr" 4708 - version = "0.1.17" 5558 + version = "0.1.19" 4709 5559 source = "registry+https://github.com/rust-lang/crates.io-index" 4710 - checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 5560 + checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 4711 5561 dependencies = [ 4712 5562 "proc-macro2", 4713 5563 "quote", 4714 - "syn 2.0.39", 5564 + "syn 2.0.67", 4715 5565 ] 4716 5566 4717 5567 [[package]] 4718 5568 name = "serde_spanned" 4719 - version = "0.6.4" 5569 + version = "0.6.6" 4720 5570 source = "registry+https://github.com/rust-lang/crates.io-index" 4721 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 5571 + checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 4722 5572 dependencies = [ 4723 5573 "serde", 4724 5574 ] ··· 4730 5580 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4731 5581 dependencies = [ 4732 5582 "form_urlencoded", 4733 - "itoa 1.0.9", 5583 + "itoa 1.0.11", 4734 5584 "ryu", 4735 5585 "serde", 4736 5586 ] 4737 5587 4738 5588 [[package]] 4739 5589 name = "serde_with" 4740 - version = "3.4.0" 5590 + version = "3.8.1" 4741 5591 source = "registry+https://github.com/rust-lang/crates.io-index" 4742 - checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" 5592 + checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20" 4743 5593 dependencies = [ 4744 - "base64 0.21.5", 5594 + "base64 0.22.1", 4745 5595 "chrono", 4746 5596 "hex", 4747 5597 "indexmap 1.9.3", 4748 - "indexmap 2.1.0", 5598 + "indexmap 2.2.6", 4749 5599 "serde", 5600 + "serde_derive", 4750 5601 "serde_json", 4751 5602 "serde_with_macros", 4752 5603 "time", ··· 4754 5605 4755 5606 [[package]] 4756 5607 name = "serde_with_macros" 4757 - version = "3.4.0" 5608 + version = "3.8.1" 4758 5609 source = "registry+https://github.com/rust-lang/crates.io-index" 4759 - checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" 5610 + checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2" 4760 5611 dependencies = [ 4761 5612 "darling", 4762 5613 "proc-macro2", 4763 5614 "quote", 4764 - "syn 2.0.39", 5615 + "syn 2.0.67", 4765 5616 ] 4766 5617 4767 5618 [[package]] ··· 4839 5690 4840 5691 [[package]] 4841 5692 name = "signal-hook-registry" 4842 - version = "1.4.1" 5693 + version = "1.4.2" 4843 5694 source = "registry+https://github.com/rust-lang/crates.io-index" 4844 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 5695 + checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 4845 5696 dependencies = [ 4846 5697 "libc", 4847 5698 ] ··· 4863 5714 checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 4864 5715 4865 5716 [[package]] 5717 + name = "simd_helpers" 5718 + version = "0.1.0" 5719 + source = "registry+https://github.com/rust-lang/crates.io-index" 5720 + checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 5721 + dependencies = [ 5722 + "quote", 5723 + ] 5724 + 5725 + [[package]] 5726 + name = "simdutf8" 5727 + version = "0.1.4" 5728 + source = "registry+https://github.com/rust-lang/crates.io-index" 5729 + checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 5730 + 5731 + [[package]] 4866 5732 name = "siphasher" 4867 5733 version = "0.3.11" 4868 5734 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4879 5745 4880 5746 [[package]] 4881 5747 name = "smallvec" 4882 - version = "1.11.2" 5748 + version = "1.13.2" 4883 5749 source = "registry+https://github.com/rust-lang/crates.io-index" 4884 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 5750 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 4885 5751 4886 5752 [[package]] 4887 5753 name = "socket2" ··· 4895 5761 4896 5762 [[package]] 4897 5763 name = "socket2" 4898 - version = "0.5.5" 5764 + version = "0.5.7" 4899 5765 source = "registry+https://github.com/rust-lang/crates.io-index" 4900 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 5766 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 4901 5767 dependencies = [ 4902 5768 "libc", 4903 - "windows-sys 0.48.0", 5769 + "windows-sys 0.52.0", 4904 5770 ] 4905 5771 4906 5772 [[package]] ··· 4958 5824 4959 5825 [[package]] 4960 5826 name = "sqlformat" 4961 - version = "0.2.2" 5827 + version = "0.2.4" 4962 5828 source = "registry+https://github.com/rust-lang/crates.io-index" 4963 - checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85" 5829 + checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f" 4964 5830 dependencies = [ 4965 - "itertools 0.11.0", 4966 5831 "nom", 4967 5832 "unicode_categories", 4968 5833 ] 4969 5834 4970 5835 [[package]] 4971 5836 name = "sqlx" 4972 - version = "0.7.3" 5837 + version = "0.7.4" 4973 5838 source = "registry+https://github.com/rust-lang/crates.io-index" 4974 - checksum = "dba03c279da73694ef99763320dea58b51095dfe87d001b1d4b5fe78ba8763cf" 5839 + checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" 4975 5840 dependencies = [ 4976 5841 "sqlx-core", 4977 5842 "sqlx-macros", ··· 4982 5847 4983 5848 [[package]] 4984 5849 name = "sqlx-core" 4985 - version = "0.7.3" 5850 + version = "0.7.4" 4986 5851 source = "registry+https://github.com/rust-lang/crates.io-index" 4987 - checksum = "d84b0a3c3739e220d94b3239fd69fb1f74bc36e16643423bd99de3b43c21bfbd" 5852 + checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" 4988 5853 dependencies = [ 4989 - "ahash", 5854 + "ahash 0.8.11", 4990 5855 "atoi", 4991 5856 "byteorder", 4992 5857 "bytes", 4993 5858 "crc", 4994 5859 "crossbeam-queue", 4995 - "dotenvy", 4996 5860 "either", 4997 5861 "event-listener 2.5.3", 4998 5862 "futures-channel", ··· 5002 5866 "futures-util", 5003 5867 "hashlink", 5004 5868 "hex", 5005 - "indexmap 2.1.0", 5869 + "indexmap 2.2.6", 5006 5870 "log", 5007 5871 "memchr", 5008 5872 "once_cell", ··· 5023 5887 5024 5888 [[package]] 5025 5889 name = "sqlx-macros" 5026 - version = "0.7.3" 5890 + version = "0.7.4" 5027 5891 source = "registry+https://github.com/rust-lang/crates.io-index" 5028 - checksum = "89961c00dc4d7dffb7aee214964b065072bff69e36ddb9e2c107541f75e4f2a5" 5892 + checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" 5029 5893 dependencies = [ 5030 5894 "proc-macro2", 5031 5895 "quote", ··· 5036 5900 5037 5901 [[package]] 5038 5902 name = "sqlx-macros-core" 5039 - version = "0.7.3" 5903 + version = "0.7.4" 5040 5904 source = "registry+https://github.com/rust-lang/crates.io-index" 5041 - checksum = "d0bd4519486723648186a08785143599760f7cc81c52334a55d6a83ea1e20841" 5905 + checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" 5042 5906 dependencies = [ 5043 - "atomic-write-file", 5044 5907 "dotenvy", 5045 5908 "either", 5046 5909 "heck 0.4.1", ··· 5063 5926 5064 5927 [[package]] 5065 5928 name = "sqlx-mysql" 5066 - version = "0.7.3" 5929 + version = "0.7.4" 5067 5930 source = "registry+https://github.com/rust-lang/crates.io-index" 5068 - checksum = "e37195395df71fd068f6e2082247891bc11e3289624bbc776a0cdfa1ca7f1ea4" 5931 + checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" 5069 5932 dependencies = [ 5070 5933 "atoi", 5071 - "base64 0.21.5", 5072 - "bitflags 2.4.1", 5934 + "base64 0.21.7", 5935 + "bitflags 2.5.0", 5073 5936 "byteorder", 5074 5937 "bytes", 5075 5938 "crc", ··· 5084 5947 "hex", 5085 5948 "hkdf", 5086 5949 "hmac", 5087 - "itoa 1.0.9", 5950 + "itoa 1.0.11", 5088 5951 "log", 5089 5952 "md-5", 5090 5953 "memchr", ··· 5106 5969 5107 5970 [[package]] 5108 5971 name = "sqlx-postgres" 5109 - version = "0.7.3" 5972 + version = "0.7.4" 5110 5973 source = "registry+https://github.com/rust-lang/crates.io-index" 5111 - checksum = "d6ac0ac3b7ccd10cc96c7ab29791a7dd236bd94021f31eec7ba3d46a74aa1c24" 5974 + checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" 5112 5975 dependencies = [ 5113 5976 "atoi", 5114 - "base64 0.21.5", 5115 - "bitflags 2.4.1", 5977 + "base64 0.21.7", 5978 + "bitflags 2.5.0", 5116 5979 "byteorder", 5117 5980 "crc", 5118 5981 "dotenvy", ··· 5125 5988 "hkdf", 5126 5989 "hmac", 5127 5990 "home", 5128 - "itoa 1.0.9", 5991 + "itoa 1.0.11", 5129 5992 "log", 5130 5993 "md-5", 5131 5994 "memchr", ··· 5133 5996 "rand 0.8.5", 5134 5997 "serde", 5135 5998 "serde_json", 5136 - "sha1", 5137 5999 "sha2", 5138 6000 "smallvec", 5139 6001 "sqlx-core", ··· 5146 6008 5147 6009 [[package]] 5148 6010 name = "sqlx-sqlite" 5149 - version = "0.7.3" 6011 + version = "0.7.4" 5150 6012 source = "registry+https://github.com/rust-lang/crates.io-index" 5151 - checksum = "210976b7d948c7ba9fced8ca835b11cbb2d677c59c79de41ac0d397e14547490" 6013 + checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" 5152 6014 dependencies = [ 5153 6015 "atoi", 5154 6016 "flume", ··· 5190 6052 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5191 6053 5192 6054 [[package]] 5193 - name = "str-buf" 5194 - version = "1.0.6" 5195 - source = "registry+https://github.com/rust-lang/crates.io-index" 5196 - checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 5197 - 5198 - [[package]] 5199 6055 name = "string_cache" 5200 6056 version = "0.8.7" 5201 6057 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5223 6079 5224 6080 [[package]] 5225 6081 name = "stringprep" 5226 - version = "0.1.4" 6082 + version = "0.1.5" 5227 6083 source = "registry+https://github.com/rust-lang/crates.io-index" 5228 - checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" 6084 + checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 5229 6085 dependencies = [ 5230 - "finl_unicode", 5231 6086 "unicode-bidi", 5232 6087 "unicode-normalization", 6088 + "unicode-properties", 5233 6089 ] 5234 6090 5235 6091 [[package]] 5236 6092 name = "strsim" 5237 - version = "0.10.0" 6093 + version = "0.11.1" 5238 6094 source = "registry+https://github.com/rust-lang/crates.io-index" 5239 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 6095 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 5240 6096 5241 6097 [[package]] 5242 6098 name = "strum" ··· 5254 6110 "proc-macro2", 5255 6111 "quote", 5256 6112 "rustversion", 5257 - "syn 2.0.39", 6113 + "syn 2.0.67", 5258 6114 ] 5259 6115 5260 6116 [[package]] 5261 6117 name = "subtle" 5262 - version = "2.5.0" 6118 + version = "2.6.0" 5263 6119 source = "registry+https://github.com/rust-lang/crates.io-index" 5264 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 6120 + checksum = "0d0208408ba0c3df17ed26eb06992cb1a1268d41b2c0e12e65203fbe3972cee5" 5265 6121 5266 6122 [[package]] 5267 6123 name = "syn" ··· 5276 6132 5277 6133 [[package]] 5278 6134 name = "syn" 5279 - version = "2.0.39" 6135 + version = "2.0.67" 5280 6136 source = "registry+https://github.com/rust-lang/crates.io-index" 5281 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 6137 + checksum = "ff8655ed1d86f3af4ee3fd3263786bc14245ad17c4c7e85ba7187fb3ae028c90" 5282 6138 dependencies = [ 5283 6139 "proc-macro2", 5284 6140 "quote", ··· 5286 6142 ] 5287 6143 5288 6144 [[package]] 6145 + name = "syn_derive" 6146 + version = "0.1.8" 6147 + source = "registry+https://github.com/rust-lang/crates.io-index" 6148 + checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 6149 + dependencies = [ 6150 + "proc-macro-error", 6151 + "proc-macro2", 6152 + "quote", 6153 + "syn 2.0.67", 6154 + ] 6155 + 6156 + [[package]] 6157 + name = "sync_wrapper" 6158 + version = "0.1.2" 6159 + source = "registry+https://github.com/rust-lang/crates.io-index" 6160 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 6161 + 6162 + [[package]] 6163 + name = "sync_wrapper" 6164 + version = "1.0.1" 6165 + source = "registry+https://github.com/rust-lang/crates.io-index" 6166 + checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 6167 + 6168 + [[package]] 5289 6169 name = "sys-locale" 5290 6170 version = "0.2.4" 5291 6171 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5334 6214 5335 6215 [[package]] 5336 6216 name = "system-deps" 5337 - version = "6.2.0" 6217 + version = "6.2.2" 5338 6218 source = "registry+https://github.com/rust-lang/crates.io-index" 5339 - checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 6219 + checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 5340 6220 dependencies = [ 5341 - "cfg-expr 0.15.5", 5342 - "heck 0.4.1", 6221 + "cfg-expr 0.15.8", 6222 + "heck 0.5.0", 5343 6223 "pkg-config", 5344 - "toml 0.8.8", 5345 - "version-compare 0.1.1", 6224 + "toml 0.8.14", 6225 + "version-compare 0.2.0", 5346 6226 ] 5347 6227 5348 6228 [[package]] 5349 6229 name = "tao" 5350 - version = "0.16.5" 6230 + version = "0.16.9" 5351 6231 source = "registry+https://github.com/rust-lang/crates.io-index" 5352 - checksum = "75f5aefd6be4cd3ad3f047442242fd9f57cbfb3e565379f66b5e14749364fa4f" 6232 + checksum = "575c856fc21e551074869dcfaad8f706412bd5b803dfa0fbf6881c4ff4bfafab" 5353 6233 dependencies = [ 5354 6234 "bitflags 1.3.2", 5355 6235 "cairo-rs", ··· 5369 6249 "glib", 5370 6250 "glib-sys", 5371 6251 "gtk", 5372 - "image", 6252 + "image 0.24.9", 5373 6253 "instant", 5374 6254 "jni", 5375 6255 "lazy_static", ··· 5390 6270 "unicode-segmentation", 5391 6271 "uuid", 5392 6272 "windows 0.39.0", 5393 - "windows-implement", 6273 + "windows-implement 0.39.0", 5394 6274 "x11-dl", 5395 6275 ] 5396 6276 ··· 5406 6286 ] 5407 6287 5408 6288 [[package]] 6289 + name = "tap" 6290 + version = "1.0.1" 6291 + source = "registry+https://github.com/rust-lang/crates.io-index" 6292 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6293 + 6294 + [[package]] 5409 6295 name = "tar" 5410 - version = "0.4.40" 6296 + version = "0.4.41" 5411 6297 source = "registry+https://github.com/rust-lang/crates.io-index" 5412 - checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 6298 + checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" 5413 6299 dependencies = [ 5414 6300 "filetime", 5415 6301 "libc", ··· 5418 6304 5419 6305 [[package]] 5420 6306 name = "target-lexicon" 5421 - version = "0.12.12" 6307 + version = "0.12.14" 5422 6308 source = "registry+https://github.com/rust-lang/crates.io-index" 5423 - checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 6309 + checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 5424 6310 5425 6311 [[package]] 5426 6312 name = "tauri" 5427 - version = "1.5.2" 6313 + version = "1.6.8" 5428 6314 source = "registry+https://github.com/rust-lang/crates.io-index" 5429 - checksum = "9bfe673cf125ef364d6f56b15e8ce7537d9ca7e4dae1cf6fbbdeed2e024db3d9" 6315 + checksum = "77567d2b3b74de4588d544147142d02297f3eaa171a25a065252141d8597a516" 5430 6316 dependencies = [ 5431 6317 "anyhow", 5432 - "base64 0.21.5", 6318 + "base64 0.21.7", 5433 6319 "bytes", 5434 6320 "cocoa 0.24.1", 5435 6321 "dirs-next", 6322 + "dunce", 5436 6323 "embed_plist", 5437 6324 "encoding_rs", 5438 6325 "flate2", 5439 6326 "futures-util", 6327 + "getrandom 0.2.15", 5440 6328 "glib", 5441 6329 "glob", 5442 6330 "gtk", 5443 - "heck 0.4.1", 5444 - "http", 6331 + "heck 0.5.0", 6332 + "http 0.2.12", 5445 6333 "ignore", 6334 + "indexmap 1.9.3", 5446 6335 "minisign-verify", 6336 + "nix 0.26.4", 5447 6337 "notify-rust", 5448 6338 "objc", 5449 6339 "once_cell", ··· 5454 6344 "rand 0.8.5", 5455 6345 "raw-window-handle", 5456 6346 "regex", 5457 - "reqwest", 6347 + "reqwest 0.11.27", 5458 6348 "rfd", 5459 6349 "semver", 5460 6350 "serde", ··· 5478 6368 "webkit2gtk", 5479 6369 "webview2-com", 5480 6370 "windows 0.39.0", 5481 - "zip", 6371 + "zip 0.6.6", 5482 6372 ] 5483 6373 5484 6374 [[package]] 5485 6375 name = "tauri-build" 5486 - version = "1.5.0" 6376 + version = "1.5.2" 5487 6377 source = "registry+https://github.com/rust-lang/crates.io-index" 5488 - checksum = "defbfc551bd38ab997e5f8e458f87396d2559d05ce32095076ad6c30f7fc5f9c" 6378 + checksum = "ab30cba12974d0f9b09794f61e72cad6da2142d3ceb81e519321bab86ce53312" 5489 6379 dependencies = [ 5490 6380 "anyhow", 5491 6381 "cargo_toml", 5492 6382 "dirs-next", 5493 - "heck 0.4.1", 6383 + "heck 0.5.0", 5494 6384 "json-patch", 5495 6385 "semver", 5496 6386 "serde", ··· 5502 6392 5503 6393 [[package]] 5504 6394 name = "tauri-codegen" 5505 - version = "1.4.1" 6395 + version = "1.4.3" 5506 6396 source = "registry+https://github.com/rust-lang/crates.io-index" 5507 - checksum = "7b3475e55acec0b4a50fb96435f19631fb58cbcd31923e1a213de5c382536bbb" 6397 + checksum = "c3a1d90db526a8cdfd54444ad3f34d8d4d58fa5c536463915942393743bd06f8" 5508 6398 dependencies = [ 5509 - "base64 0.21.5", 6399 + "base64 0.21.7", 5510 6400 "brotli", 5511 6401 "ico", 5512 6402 "json-patch", ··· 5528 6418 5529 6419 [[package]] 5530 6420 name = "tauri-macros" 5531 - version = "1.4.1" 6421 + version = "1.4.4" 5532 6422 source = "registry+https://github.com/rust-lang/crates.io-index" 5533 - checksum = "613740228de92d9196b795ac455091d3a5fbdac2654abb8bb07d010b62ab43af" 6423 + checksum = "6a582d75414250122e4a597b9dd7d3c910a2c77906648fc2ac9353845ff0feec" 5534 6424 dependencies = [ 5535 - "heck 0.4.1", 6425 + "heck 0.5.0", 5536 6426 "proc-macro2", 5537 6427 "quote", 5538 6428 "syn 1.0.109", ··· 5543 6433 [[package]] 5544 6434 name = "tauri-plugin-autostart" 5545 6435 version = "0.0.0" 5546 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b2e9ab6c9b853a861292c69770458e5409992c0" 6436 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#0d649843c6b49b7a69200816c8d5195f9953a4fb" 5547 6437 dependencies = [ 5548 6438 "auto-launch", 5549 6439 "log", ··· 5556 6446 [[package]] 5557 6447 name = "tauri-plugin-fs-watch" 5558 6448 version = "0.0.0" 5559 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b2e9ab6c9b853a861292c69770458e5409992c0" 6449 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#0d649843c6b49b7a69200816c8d5195f9953a4fb" 5560 6450 dependencies = [ 5561 6451 "log", 5562 6452 "notify", ··· 5570 6460 [[package]] 5571 6461 name = "tauri-plugin-log" 5572 6462 version = "0.0.0" 5573 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b2e9ab6c9b853a861292c69770458e5409992c0" 6463 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#0d649843c6b49b7a69200816c8d5195f9953a4fb" 5574 6464 dependencies = [ 5575 6465 "byte-unit", 5576 6466 "fern", ··· 5585 6475 [[package]] 5586 6476 name = "tauri-plugin-single-instance" 5587 6477 version = "0.0.0" 5588 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b2e9ab6c9b853a861292c69770458e5409992c0" 6478 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#0d649843c6b49b7a69200816c8d5195f9953a4fb" 5589 6479 dependencies = [ 5590 6480 "log", 5591 6481 "serde", ··· 5593 6483 "tauri", 5594 6484 "thiserror", 5595 6485 "windows-sys 0.52.0", 5596 - "zbus", 6486 + "zbus 3.15.2", 5597 6487 ] 5598 6488 5599 6489 [[package]] 5600 6490 name = "tauri-plugin-sql" 5601 6491 version = "0.0.0" 5602 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b2e9ab6c9b853a861292c69770458e5409992c0" 6492 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#0d649843c6b49b7a69200816c8d5195f9953a4fb" 5603 6493 dependencies = [ 5604 6494 "futures-core", 5605 6495 "log", ··· 5615 6505 [[package]] 5616 6506 name = "tauri-plugin-store" 5617 6507 version = "0.0.0" 5618 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b2e9ab6c9b853a861292c69770458e5409992c0" 6508 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#0d649843c6b49b7a69200816c8d5195f9953a4fb" 5619 6509 dependencies = [ 5620 6510 "log", 5621 6511 "serde", ··· 5626 6516 5627 6517 [[package]] 5628 6518 name = "tauri-runtime" 5629 - version = "0.14.1" 6519 + version = "0.14.3" 5630 6520 source = "registry+https://github.com/rust-lang/crates.io-index" 5631 - checksum = "07f8e9e53e00e9f41212c115749e87d5cd2a9eebccafca77a19722eeecd56d43" 6521 + checksum = "cd7ffddf36d450791018e63a3ddf54979b9581d9644c584a5fb5611e6b5f20b4" 5632 6522 dependencies = [ 5633 6523 "gtk", 5634 - "http", 6524 + "http 0.2.12", 5635 6525 "http-range", 5636 6526 "rand 0.8.5", 5637 6527 "raw-window-handle", ··· 5647 6537 5648 6538 [[package]] 5649 6539 name = "tauri-runtime-wry" 5650 - version = "0.14.1" 6540 + version = "0.14.8" 5651 6541 source = "registry+https://github.com/rust-lang/crates.io-index" 5652 - checksum = "8141d72b6b65f2008911e9ef5b98a68d1e3413b7a1464e8f85eb3673bb19a895" 6542 + checksum = "1989b3b4d611f5428b3414a4abae6fa6df30c7eb8ed33250ca90a5f7e5bb3655" 5653 6543 dependencies = [ 6544 + "arboard", 5654 6545 "cocoa 0.24.1", 5655 6546 "gtk", 5656 6547 "percent-encoding", ··· 5667 6558 5668 6559 [[package]] 5669 6560 name = "tauri-utils" 5670 - version = "1.5.0" 6561 + version = "1.5.4" 5671 6562 source = "registry+https://github.com/rust-lang/crates.io-index" 5672 - checksum = "34d55e185904a84a419308d523c2c6891d5e2dbcee740c4997eb42e75a7b0f46" 6563 + checksum = "450b17a7102e5d46d4bdabae0d1590fd27953e704e691fc081f06c06d2253b35" 5673 6564 dependencies = [ 5674 6565 "brotli", 5675 6566 "ctor", 5676 6567 "dunce", 5677 6568 "glob", 5678 - "heck 0.4.1", 5679 - "html5ever 0.26.0", 6569 + "heck 0.5.0", 6570 + "html5ever", 5680 6571 "infer", 5681 6572 "json-patch", 5682 6573 "kuchikiki", 5683 6574 "log", 5684 6575 "memchr", 5685 - "phf 0.10.1", 6576 + "phf 0.11.2", 5686 6577 "proc-macro2", 5687 6578 "quote", 5688 6579 "semver", ··· 5692 6583 "thiserror", 5693 6584 "url", 5694 6585 "walkdir", 5695 - "windows 0.39.0", 6586 + "windows-version", 5696 6587 ] 5697 6588 5698 6589 [[package]] ··· 5707 6598 5708 6599 [[package]] 5709 6600 name = "tauri-winrt-notification" 5710 - version = "0.1.3" 6601 + version = "0.2.1" 5711 6602 source = "registry+https://github.com/rust-lang/crates.io-index" 5712 - checksum = "006851c9ccefa3c38a7646b8cec804bb429def3da10497bfa977179869c3e8e2" 6603 + checksum = "f89f5fb70d6f62381f5d9b2ba9008196150b40b75f3068eb24faeddf1c686871" 5713 6604 dependencies = [ 5714 - "quick-xml 0.30.0", 5715 - "windows 0.51.1", 6605 + "quick-xml 0.31.0", 6606 + "windows 0.56.0", 6607 + "windows-version", 5716 6608 ] 5717 6609 5718 6610 [[package]] 5719 6611 name = "tempfile" 5720 - version = "3.8.1" 6612 + version = "3.10.1" 5721 6613 source = "registry+https://github.com/rust-lang/crates.io-index" 5722 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 6614 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 5723 6615 dependencies = [ 5724 6616 "cfg-if", 5725 - "fastrand 2.0.1", 5726 - "redox_syscall 0.4.1", 5727 - "rustix 0.38.25", 5728 - "windows-sys 0.48.0", 6617 + "fastrand 2.1.0", 6618 + "rustix 0.38.34", 6619 + "windows-sys 0.52.0", 5729 6620 ] 5730 6621 5731 6622 [[package]] ··· 5747 6638 5748 6639 [[package]] 5749 6640 name = "thiserror" 5750 - version = "1.0.50" 6641 + version = "1.0.61" 5751 6642 source = "registry+https://github.com/rust-lang/crates.io-index" 5752 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 6643 + checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 5753 6644 dependencies = [ 5754 6645 "thiserror-impl", 5755 6646 ] 5756 6647 5757 6648 [[package]] 5758 6649 name = "thiserror-impl" 5759 - version = "1.0.50" 6650 + version = "1.0.61" 5760 6651 source = "registry+https://github.com/rust-lang/crates.io-index" 5761 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 6652 + checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 5762 6653 dependencies = [ 5763 6654 "proc-macro2", 5764 6655 "quote", 5765 - "syn 2.0.39", 6656 + "syn 2.0.67", 5766 6657 ] 5767 6658 5768 6659 [[package]] 5769 6660 name = "thread_local" 5770 - version = "1.1.7" 6661 + version = "1.1.8" 5771 6662 source = "registry+https://github.com/rust-lang/crates.io-index" 5772 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 6663 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 5773 6664 dependencies = [ 5774 6665 "cfg-if", 5775 6666 "once_cell", ··· 5777 6668 5778 6669 [[package]] 5779 6670 name = "tiff" 5780 - version = "0.9.0" 6671 + version = "0.9.1" 5781 6672 source = "registry+https://github.com/rust-lang/crates.io-index" 5782 - checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 6673 + checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 5783 6674 dependencies = [ 5784 6675 "flate2", 5785 6676 "jpeg-decoder", ··· 5788 6679 5789 6680 [[package]] 5790 6681 name = "time" 5791 - version = "0.3.30" 6682 + version = "0.3.36" 5792 6683 source = "registry+https://github.com/rust-lang/crates.io-index" 5793 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 6684 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 5794 6685 dependencies = [ 5795 6686 "deranged", 5796 - "itoa 1.0.9", 6687 + "itoa 1.0.11", 5797 6688 "libc", 6689 + "num-conv", 5798 6690 "num_threads", 5799 6691 "powerfmt", 5800 6692 "serde", ··· 5810 6702 5811 6703 [[package]] 5812 6704 name = "time-macros" 5813 - version = "0.2.15" 6705 + version = "0.2.18" 5814 6706 source = "registry+https://github.com/rust-lang/crates.io-index" 5815 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 6707 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 5816 6708 dependencies = [ 6709 + "num-conv", 5817 6710 "time-core", 5818 6711 ] 5819 6712 ··· 5855 6748 5856 6749 [[package]] 5857 6750 name = "tokio" 5858 - version = "1.34.0" 6751 + version = "1.38.0" 5859 6752 source = "registry+https://github.com/rust-lang/crates.io-index" 5860 - checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 6753 + checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 5861 6754 dependencies = [ 5862 6755 "backtrace", 5863 6756 "bytes", ··· 5865 6758 "mio", 5866 6759 "num_cpus", 5867 6760 "pin-project-lite", 5868 - "socket2 0.5.5", 6761 + "socket2 0.5.7", 5869 6762 "windows-sys 0.48.0", 5870 6763 ] 5871 6764 ··· 5880 6773 ] 5881 6774 5882 6775 [[package]] 6776 + name = "tokio-rustls" 6777 + version = "0.26.0" 6778 + source = "registry+https://github.com/rust-lang/crates.io-index" 6779 + checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 6780 + dependencies = [ 6781 + "rustls", 6782 + "rustls-pki-types", 6783 + "tokio", 6784 + ] 6785 + 6786 + [[package]] 5883 6787 name = "tokio-stream" 5884 - version = "0.1.14" 6788 + version = "0.1.15" 5885 6789 source = "registry+https://github.com/rust-lang/crates.io-index" 5886 - checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 6790 + checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 5887 6791 dependencies = [ 5888 6792 "futures-core", 5889 6793 "pin-project-lite", ··· 5892 6796 5893 6797 [[package]] 5894 6798 name = "tokio-util" 5895 - version = "0.7.10" 6799 + version = "0.7.11" 5896 6800 source = "registry+https://github.com/rust-lang/crates.io-index" 5897 - checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 6801 + checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 5898 6802 dependencies = [ 5899 6803 "bytes", 5900 6804 "futures-core", 5901 6805 "futures-sink", 5902 6806 "pin-project-lite", 5903 6807 "tokio", 5904 - "tracing", 5905 6808 ] 5906 6809 5907 6810 [[package]] ··· 5927 6830 5928 6831 [[package]] 5929 6832 name = "toml" 5930 - version = "0.8.8" 6833 + version = "0.8.14" 5931 6834 source = "registry+https://github.com/rust-lang/crates.io-index" 5932 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 6835 + checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" 5933 6836 dependencies = [ 5934 6837 "serde", 5935 6838 "serde_spanned", 5936 6839 "toml_datetime", 5937 - "toml_edit 0.21.0", 6840 + "toml_edit 0.22.14", 5938 6841 ] 5939 6842 5940 6843 [[package]] 5941 6844 name = "toml_datetime" 5942 - version = "0.6.5" 6845 + version = "0.6.6" 5943 6846 source = "registry+https://github.com/rust-lang/crates.io-index" 5944 - checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 6847 + checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 5945 6848 dependencies = [ 5946 6849 "serde", 5947 6850 ] ··· 5952 6855 source = "registry+https://github.com/rust-lang/crates.io-index" 5953 6856 checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5954 6857 dependencies = [ 5955 - "indexmap 2.1.0", 6858 + "indexmap 2.2.6", 5956 6859 "serde", 5957 6860 "serde_spanned", 5958 6861 "toml_datetime", 5959 - "winnow", 6862 + "winnow 0.5.40", 5960 6863 ] 5961 6864 5962 6865 [[package]] 5963 6866 name = "toml_edit" 5964 - version = "0.21.0" 6867 + version = "0.21.1" 6868 + source = "registry+https://github.com/rust-lang/crates.io-index" 6869 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 6870 + dependencies = [ 6871 + "indexmap 2.2.6", 6872 + "toml_datetime", 6873 + "winnow 0.5.40", 6874 + ] 6875 + 6876 + [[package]] 6877 + name = "toml_edit" 6878 + version = "0.22.14" 5965 6879 source = "registry+https://github.com/rust-lang/crates.io-index" 5966 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 6880 + checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" 5967 6881 dependencies = [ 5968 - "indexmap 2.1.0", 6882 + "indexmap 2.2.6", 5969 6883 "serde", 5970 6884 "serde_spanned", 5971 6885 "toml_datetime", 5972 - "winnow", 6886 + "winnow 0.6.13", 6887 + ] 6888 + 6889 + [[package]] 6890 + name = "tower" 6891 + version = "0.4.13" 6892 + source = "registry+https://github.com/rust-lang/crates.io-index" 6893 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 6894 + dependencies = [ 6895 + "futures-core", 6896 + "futures-util", 6897 + "pin-project", 6898 + "pin-project-lite", 6899 + "tokio", 6900 + "tower-layer", 6901 + "tower-service", 5973 6902 ] 5974 6903 5975 6904 [[package]] 6905 + name = "tower-layer" 6906 + version = "0.3.2" 6907 + source = "registry+https://github.com/rust-lang/crates.io-index" 6908 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 6909 + 6910 + [[package]] 5976 6911 name = "tower-service" 5977 6912 version = "0.3.2" 5978 6913 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5998 6933 dependencies = [ 5999 6934 "proc-macro2", 6000 6935 "quote", 6001 - "syn 2.0.39", 6936 + "syn 2.0.67", 6002 6937 ] 6003 6938 6004 6939 [[package]] ··· 6042 6977 6043 6978 [[package]] 6044 6979 name = "tree_magic_mini" 6045 - version = "3.0.3" 6980 + version = "3.1.5" 6046 6981 source = "registry+https://github.com/rust-lang/crates.io-index" 6047 - checksum = "91adfd0607cacf6e4babdb870e9bec4037c1c4b151cfd279ccefc5e0c7feaa6d" 6982 + checksum = "469a727cac55b41448315cc10427c069c618ac59bb6a4480283fcd811749bdc2" 6048 6983 dependencies = [ 6049 - "bytecount", 6050 6984 "fnv", 6051 - "lazy_static", 6985 + "home", 6986 + "memchr", 6052 6987 "nom", 6053 6988 "once_cell", 6054 6989 "petgraph", 6055 6990 ] 6056 6991 6057 6992 [[package]] 6058 - name = "treediff" 6059 - version = "4.0.2" 6060 - source = "registry+https://github.com/rust-lang/crates.io-index" 6061 - checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303" 6062 - dependencies = [ 6063 - "serde_json", 6064 - ] 6065 - 6066 - [[package]] 6067 6993 name = "try-lock" 6068 - version = "0.2.4" 6994 + version = "0.2.5" 6069 6995 source = "registry+https://github.com/rust-lang/crates.io-index" 6070 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 6996 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 6071 6997 6072 6998 [[package]] 6073 6999 name = "typenum" ··· 6077 7003 6078 7004 [[package]] 6079 7005 name = "uds_windows" 6080 - version = "1.0.2" 7006 + version = "1.1.0" 6081 7007 source = "registry+https://github.com/rust-lang/crates.io-index" 6082 - checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 7008 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 6083 7009 dependencies = [ 7010 + "memoffset 0.9.1", 6084 7011 "tempfile", 6085 7012 "winapi", 6086 7013 ] ··· 6096 7023 6097 7024 [[package]] 6098 7025 name = "unicode-bidi" 6099 - version = "0.3.13" 7026 + version = "0.3.15" 6100 7027 source = "registry+https://github.com/rust-lang/crates.io-index" 6101 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 7028 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 6102 7029 6103 7030 [[package]] 6104 7031 name = "unicode-ident" ··· 6108 7035 6109 7036 [[package]] 6110 7037 name = "unicode-normalization" 6111 - version = "0.1.22" 7038 + version = "0.1.23" 6112 7039 source = "registry+https://github.com/rust-lang/crates.io-index" 6113 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 7040 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 6114 7041 dependencies = [ 6115 7042 "tinyvec", 6116 7043 ] 6117 7044 6118 7045 [[package]] 7046 + name = "unicode-properties" 7047 + version = "0.1.1" 7048 + source = "registry+https://github.com/rust-lang/crates.io-index" 7049 + checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 7050 + 7051 + [[package]] 6119 7052 name = "unicode-segmentation" 6120 - version = "1.10.1" 7053 + version = "1.11.0" 6121 7054 source = "registry+https://github.com/rust-lang/crates.io-index" 6122 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 7055 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 6123 7056 6124 7057 [[package]] 6125 7058 name = "unicode_categories" ··· 6128 7061 checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 6129 7062 6130 7063 [[package]] 7064 + name = "untrusted" 7065 + version = "0.9.0" 7066 + source = "registry+https://github.com/rust-lang/crates.io-index" 7067 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 7068 + 7069 + [[package]] 6131 7070 name = "url" 6132 - version = "2.5.0" 7071 + version = "2.5.2" 6133 7072 source = "registry+https://github.com/rust-lang/crates.io-index" 6134 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 7073 + checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 6135 7074 dependencies = [ 6136 7075 "form_urlencoded", 6137 7076 "idna", ··· 6159 7098 6160 7099 [[package]] 6161 7100 name = "uuid" 6162 - version = "1.6.1" 7101 + version = "1.8.0" 6163 7102 source = "registry+https://github.com/rust-lang/crates.io-index" 6164 - checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 7103 + checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 6165 7104 dependencies = [ 6166 - "getrandom 0.2.11", 7105 + "getrandom 0.2.15", 7106 + ] 7107 + 7108 + [[package]] 7109 + name = "v_frame" 7110 + version = "0.3.8" 7111 + source = "registry+https://github.com/rust-lang/crates.io-index" 7112 + checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" 7113 + dependencies = [ 7114 + "aligned-vec", 7115 + "num-traits", 7116 + "wasm-bindgen", 6167 7117 ] 6168 7118 6169 7119 [[package]] ··· 6174 7124 6175 7125 [[package]] 6176 7126 name = "value-bag" 6177 - version = "1.4.2" 7127 + version = "1.9.0" 6178 7128 source = "registry+https://github.com/rust-lang/crates.io-index" 6179 - checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe" 7129 + checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" 6180 7130 6181 7131 [[package]] 6182 7132 name = "vcpkg" ··· 6192 7142 6193 7143 [[package]] 6194 7144 name = "version-compare" 6195 - version = "0.1.1" 7145 + version = "0.2.0" 6196 7146 source = "registry+https://github.com/rust-lang/crates.io-index" 6197 - checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 7147 + checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 6198 7148 6199 7149 [[package]] 6200 7150 name = "version_check" ··· 6224 7174 6225 7175 [[package]] 6226 7176 name = "waker-fn" 6227 - version = "1.1.1" 7177 + version = "1.2.0" 6228 7178 source = "registry+https://github.com/rust-lang/crates.io-index" 6229 - checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 7179 + checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 6230 7180 6231 7181 [[package]] 6232 7182 name = "walkdir" 6233 - version = "2.4.0" 7183 + version = "2.5.0" 6234 7184 source = "registry+https://github.com/rust-lang/crates.io-index" 6235 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 7185 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 6236 7186 dependencies = [ 6237 7187 "same-file", 6238 7188 "winapi-util", ··· 6260 7210 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 6261 7211 6262 7212 [[package]] 7213 + name = "wasite" 7214 + version = "0.1.0" 7215 + source = "registry+https://github.com/rust-lang/crates.io-index" 7216 + checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 7217 + 7218 + [[package]] 6263 7219 name = "wasm-bindgen" 6264 - version = "0.2.89" 7220 + version = "0.2.92" 6265 7221 source = "registry+https://github.com/rust-lang/crates.io-index" 6266 - checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 7222 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 6267 7223 dependencies = [ 6268 7224 "cfg-if", 6269 7225 "wasm-bindgen-macro", ··· 6271 7227 6272 7228 [[package]] 6273 7229 name = "wasm-bindgen-backend" 6274 - version = "0.2.89" 7230 + version = "0.2.92" 6275 7231 source = "registry+https://github.com/rust-lang/crates.io-index" 6276 - checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 7232 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 6277 7233 dependencies = [ 6278 7234 "bumpalo", 6279 7235 "log", 6280 7236 "once_cell", 6281 7237 "proc-macro2", 6282 7238 "quote", 6283 - "syn 2.0.39", 7239 + "syn 2.0.67", 6284 7240 "wasm-bindgen-shared", 6285 7241 ] 6286 7242 6287 7243 [[package]] 6288 7244 name = "wasm-bindgen-futures" 6289 - version = "0.4.39" 7245 + version = "0.4.42" 6290 7246 source = "registry+https://github.com/rust-lang/crates.io-index" 6291 - checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 7247 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 6292 7248 dependencies = [ 6293 7249 "cfg-if", 6294 7250 "js-sys", ··· 6298 7254 6299 7255 [[package]] 6300 7256 name = "wasm-bindgen-macro" 6301 - version = "0.2.89" 7257 + version = "0.2.92" 6302 7258 source = "registry+https://github.com/rust-lang/crates.io-index" 6303 - checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 7259 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 6304 7260 dependencies = [ 6305 7261 "quote", 6306 7262 "wasm-bindgen-macro-support", ··· 6308 7264 6309 7265 [[package]] 6310 7266 name = "wasm-bindgen-macro-support" 6311 - version = "0.2.89" 7267 + version = "0.2.92" 6312 7268 source = "registry+https://github.com/rust-lang/crates.io-index" 6313 - checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 7269 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 6314 7270 dependencies = [ 6315 7271 "proc-macro2", 6316 7272 "quote", 6317 - "syn 2.0.39", 7273 + "syn 2.0.67", 6318 7274 "wasm-bindgen-backend", 6319 7275 "wasm-bindgen-shared", 6320 7276 ] 6321 7277 6322 7278 [[package]] 6323 7279 name = "wasm-bindgen-shared" 6324 - version = "0.2.89" 7280 + version = "0.2.92" 6325 7281 source = "registry+https://github.com/rust-lang/crates.io-index" 6326 - checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 7282 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 6327 7283 6328 7284 [[package]] 6329 7285 name = "wasm-streams" 6330 - version = "0.3.0" 7286 + version = "0.4.0" 6331 7287 source = "registry+https://github.com/rust-lang/crates.io-index" 6332 - checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 7288 + checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 6333 7289 dependencies = [ 6334 7290 "futures-util", 6335 7291 "js-sys", ··· 6340 7296 6341 7297 [[package]] 6342 7298 name = "wayland-backend" 6343 - version = "0.3.2" 7299 + version = "0.3.4" 6344 7300 source = "registry+https://github.com/rust-lang/crates.io-index" 6345 - checksum = "19152ddd73f45f024ed4534d9ca2594e0ef252c1847695255dae47f34df9fbe4" 7301 + checksum = "34e9e6b6d4a2bb4e7e69433e0b35c7923b95d4dc8503a84d25ec917a4bbfdf07" 6346 7302 dependencies = [ 6347 7303 "cc", 6348 7304 "downcast-rs", 6349 - "nix 0.26.4", 7305 + "rustix 0.38.34", 6350 7306 "scoped-tls", 6351 7307 "smallvec", 6352 7308 "wayland-sys", ··· 6354 7310 6355 7311 [[package]] 6356 7312 name = "wayland-client" 6357 - version = "0.31.1" 7313 + version = "0.31.3" 6358 7314 source = "registry+https://github.com/rust-lang/crates.io-index" 6359 - checksum = "1ca7d52347346f5473bf2f56705f360e8440873052e575e55890c4fa57843ed3" 7315 + checksum = "1e63801c85358a431f986cffa74ba9599ff571fc5774ac113ed3b490c19a1133" 6360 7316 dependencies = [ 6361 - "bitflags 2.4.1", 6362 - "nix 0.26.4", 7317 + "bitflags 2.5.0", 7318 + "rustix 0.38.34", 6363 7319 "wayland-backend", 6364 7320 "wayland-scanner", 6365 7321 ] 6366 7322 6367 7323 [[package]] 6368 7324 name = "wayland-protocols" 6369 - version = "0.31.0" 7325 + version = "0.31.2" 6370 7326 source = "registry+https://github.com/rust-lang/crates.io-index" 6371 - checksum = "e253d7107ba913923dc253967f35e8561a3c65f914543e46843c88ddd729e21c" 7327 + checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4" 6372 7328 dependencies = [ 6373 - "bitflags 2.4.1", 7329 + "bitflags 2.5.0", 6374 7330 "wayland-backend", 6375 7331 "wayland-client", 6376 7332 "wayland-scanner", ··· 6382 7338 source = "registry+https://github.com/rust-lang/crates.io-index" 6383 7339 checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6" 6384 7340 dependencies = [ 6385 - "bitflags 2.4.1", 7341 + "bitflags 2.5.0", 6386 7342 "wayland-backend", 6387 7343 "wayland-client", 6388 7344 "wayland-protocols", ··· 6391 7347 6392 7348 [[package]] 6393 7349 name = "wayland-scanner" 6394 - version = "0.31.0" 7350 + version = "0.31.2" 6395 7351 source = "registry+https://github.com/rust-lang/crates.io-index" 6396 - checksum = "fb8e28403665c9f9513202b7e1ed71ec56fde5c107816843fb14057910b2c09c" 7352 + checksum = "67da50b9f80159dec0ea4c11c13e24ef9e7574bd6ce24b01860a175010cea565" 6397 7353 dependencies = [ 6398 7354 "proc-macro2", 6399 - "quick-xml 0.30.0", 7355 + "quick-xml 0.31.0", 6400 7356 "quote", 6401 7357 ] 6402 7358 6403 7359 [[package]] 6404 7360 name = "wayland-sys" 6405 - version = "0.31.1" 7361 + version = "0.31.2" 6406 7362 source = "registry+https://github.com/rust-lang/crates.io-index" 6407 - checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af" 7363 + checksum = "105b1842da6554f91526c14a2a2172897b7f745a805d62af4ce698706be79c12" 6408 7364 dependencies = [ 6409 7365 "dlib", 6410 7366 "log", ··· 6413 7369 6414 7370 [[package]] 6415 7371 name = "web-sys" 6416 - version = "0.3.66" 7372 + version = "0.3.69" 6417 7373 source = "registry+https://github.com/rust-lang/crates.io-index" 6418 - checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 7374 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 6419 7375 dependencies = [ 6420 7376 "js-sys", 6421 7377 "wasm-bindgen", ··· 6465 7421 "pango-sys", 6466 7422 "pkg-config", 6467 7423 "soup2-sys", 6468 - "system-deps 6.2.0", 7424 + "system-deps 6.2.2", 6469 7425 ] 6470 7426 6471 7427 [[package]] ··· 6477 7433 "webview2-com-macros", 6478 7434 "webview2-com-sys", 6479 7435 "windows 0.39.0", 6480 - "windows-implement", 7436 + "windows-implement 0.39.0", 6481 7437 ] 6482 7438 6483 7439 [[package]] ··· 6508 7464 6509 7465 [[package]] 6510 7466 name = "weezl" 6511 - version = "0.1.7" 7467 + version = "0.1.8" 6512 7468 source = "registry+https://github.com/rust-lang/crates.io-index" 6513 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 7469 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 6514 7470 6515 7471 [[package]] 6516 7472 name = "whoami" 6517 - version = "1.4.1" 7473 + version = "1.5.1" 6518 7474 source = "registry+https://github.com/rust-lang/crates.io-index" 6519 - checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" 7475 + checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" 7476 + dependencies = [ 7477 + "redox_syscall 0.4.1", 7478 + "wasite", 7479 + ] 6520 7480 6521 7481 [[package]] 6522 7482 name = "widestring" 6523 - version = "1.0.2" 7483 + version = "1.1.0" 6524 7484 source = "registry+https://github.com/rust-lang/crates.io-index" 6525 - checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 7485 + checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 6526 7486 6527 7487 [[package]] 6528 7488 name = "winapi" ··· 6542 7502 6543 7503 [[package]] 6544 7504 name = "winapi-util" 6545 - version = "0.1.6" 7505 + version = "0.1.8" 6546 7506 source = "registry+https://github.com/rust-lang/crates.io-index" 6547 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 7507 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 6548 7508 dependencies = [ 6549 - "winapi", 6550 - ] 6551 - 6552 - [[package]] 6553 - name = "winapi-wsapoll" 6554 - version = "0.1.1" 6555 - source = "registry+https://github.com/rust-lang/crates.io-index" 6556 - checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e" 6557 - dependencies = [ 6558 - "winapi", 7509 + "windows-sys 0.52.0", 6559 7510 ] 6560 7511 6561 7512 [[package]] ··· 6595 7546 source = "registry+https://github.com/rust-lang/crates.io-index" 6596 7547 checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 6597 7548 dependencies = [ 6598 - "windows-implement", 7549 + "windows-implement 0.39.0", 6599 7550 "windows_aarch64_msvc 0.39.0", 6600 7551 "windows_i686_gnu 0.39.0", 6601 7552 "windows_i686_msvc 0.39.0", ··· 6605 7556 6606 7557 [[package]] 6607 7558 name = "windows" 6608 - version = "0.44.0" 7559 + version = "0.48.0" 6609 7560 source = "registry+https://github.com/rust-lang/crates.io-index" 6610 - checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 7561 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 6611 7562 dependencies = [ 6612 - "windows-targets 0.42.2", 7563 + "windows-targets 0.48.5", 6613 7564 ] 6614 7565 6615 7566 [[package]] 6616 7567 name = "windows" 6617 - version = "0.48.0" 7568 + version = "0.52.0" 6618 7569 source = "registry+https://github.com/rust-lang/crates.io-index" 6619 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 7570 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 6620 7571 dependencies = [ 6621 - "windows-targets 0.48.5", 7572 + "windows-core 0.52.0", 7573 + "windows-targets 0.52.5", 6622 7574 ] 6623 7575 6624 7576 [[package]] 6625 7577 name = "windows" 6626 - version = "0.51.1" 7578 + version = "0.56.0" 6627 7579 source = "registry+https://github.com/rust-lang/crates.io-index" 6628 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 7580 + checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132" 6629 7581 dependencies = [ 6630 - "windows-core 0.51.1", 6631 - "windows-targets 0.48.5", 7582 + "windows-core 0.56.0", 7583 + "windows-targets 0.52.5", 6632 7584 ] 6633 7585 6634 7586 [[package]] 6635 7587 name = "windows" 6636 - version = "0.52.0" 7588 + version = "0.57.0" 6637 7589 source = "registry+https://github.com/rust-lang/crates.io-index" 6638 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 7590 + checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 6639 7591 dependencies = [ 6640 - "windows-core 0.52.0", 6641 - "windows-targets 0.52.0", 7592 + "windows-core 0.57.0", 7593 + "windows-targets 0.52.5", 6642 7594 ] 6643 7595 6644 7596 [[package]] ··· 6653 7605 6654 7606 [[package]] 6655 7607 name = "windows-core" 6656 - version = "0.51.1" 7608 + version = "0.52.0" 6657 7609 source = "registry+https://github.com/rust-lang/crates.io-index" 6658 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 7610 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 6659 7611 dependencies = [ 6660 - "windows-targets 0.48.5", 7612 + "windows-targets 0.52.5", 6661 7613 ] 6662 7614 6663 7615 [[package]] 6664 7616 name = "windows-core" 6665 - version = "0.52.0" 7617 + version = "0.56.0" 6666 7618 source = "registry+https://github.com/rust-lang/crates.io-index" 6667 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 7619 + checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6" 6668 7620 dependencies = [ 6669 - "windows-targets 0.52.0", 7621 + "windows-implement 0.56.0", 7622 + "windows-interface 0.56.0", 7623 + "windows-result", 7624 + "windows-targets 0.52.5", 7625 + ] 7626 + 7627 + [[package]] 7628 + name = "windows-core" 7629 + version = "0.57.0" 7630 + source = "registry+https://github.com/rust-lang/crates.io-index" 7631 + checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 7632 + dependencies = [ 7633 + "windows-implement 0.57.0", 7634 + "windows-interface 0.57.0", 7635 + "windows-result", 7636 + "windows-targets 0.52.5", 6670 7637 ] 6671 7638 6672 7639 [[package]] ··· 6680 7647 ] 6681 7648 6682 7649 [[package]] 7650 + name = "windows-implement" 7651 + version = "0.56.0" 7652 + source = "registry+https://github.com/rust-lang/crates.io-index" 7653 + checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b" 7654 + dependencies = [ 7655 + "proc-macro2", 7656 + "quote", 7657 + "syn 2.0.67", 7658 + ] 7659 + 7660 + [[package]] 7661 + name = "windows-implement" 7662 + version = "0.57.0" 7663 + source = "registry+https://github.com/rust-lang/crates.io-index" 7664 + checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 7665 + dependencies = [ 7666 + "proc-macro2", 7667 + "quote", 7668 + "syn 2.0.67", 7669 + ] 7670 + 7671 + [[package]] 7672 + name = "windows-interface" 7673 + version = "0.56.0" 7674 + source = "registry+https://github.com/rust-lang/crates.io-index" 7675 + checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc" 7676 + dependencies = [ 7677 + "proc-macro2", 7678 + "quote", 7679 + "syn 2.0.67", 7680 + ] 7681 + 7682 + [[package]] 7683 + name = "windows-interface" 7684 + version = "0.57.0" 7685 + source = "registry+https://github.com/rust-lang/crates.io-index" 7686 + checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 7687 + dependencies = [ 7688 + "proc-macro2", 7689 + "quote", 7690 + "syn 2.0.67", 7691 + ] 7692 + 7693 + [[package]] 6683 7694 name = "windows-metadata" 6684 7695 version = "0.39.0" 6685 7696 source = "registry+https://github.com/rust-lang/crates.io-index" 6686 7697 checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278" 6687 7698 6688 7699 [[package]] 7700 + name = "windows-result" 7701 + version = "0.1.2" 7702 + source = "registry+https://github.com/rust-lang/crates.io-index" 7703 + checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 7704 + dependencies = [ 7705 + "windows-targets 0.52.5", 7706 + ] 7707 + 7708 + [[package]] 6689 7709 name = "windows-sys" 6690 7710 version = "0.42.0" 6691 7711 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6724 7744 source = "registry+https://github.com/rust-lang/crates.io-index" 6725 7745 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6726 7746 dependencies = [ 6727 - "windows-targets 0.52.0", 7747 + "windows-targets 0.52.5", 6728 7748 ] 6729 7749 6730 7750 [[package]] ··· 6759 7779 6760 7780 [[package]] 6761 7781 name = "windows-targets" 6762 - version = "0.52.0" 7782 + version = "0.52.5" 6763 7783 source = "registry+https://github.com/rust-lang/crates.io-index" 6764 - checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 7784 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 6765 7785 dependencies = [ 6766 - "windows_aarch64_gnullvm 0.52.0", 6767 - "windows_aarch64_msvc 0.52.0", 6768 - "windows_i686_gnu 0.52.0", 6769 - "windows_i686_msvc 0.52.0", 6770 - "windows_x86_64_gnu 0.52.0", 6771 - "windows_x86_64_gnullvm 0.52.0", 6772 - "windows_x86_64_msvc 0.52.0", 7786 + "windows_aarch64_gnullvm 0.52.5", 7787 + "windows_aarch64_msvc 0.52.5", 7788 + "windows_i686_gnu 0.52.5", 7789 + "windows_i686_gnullvm", 7790 + "windows_i686_msvc 0.52.5", 7791 + "windows_x86_64_gnu 0.52.5", 7792 + "windows_x86_64_gnullvm 0.52.5", 7793 + "windows_x86_64_msvc 0.52.5", 6773 7794 ] 6774 7795 6775 7796 [[package]] ··· 6779 7800 checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 6780 7801 6781 7802 [[package]] 7803 + name = "windows-version" 7804 + version = "0.1.1" 7805 + source = "registry+https://github.com/rust-lang/crates.io-index" 7806 + checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515" 7807 + dependencies = [ 7808 + "windows-targets 0.52.5", 7809 + ] 7810 + 7811 + [[package]] 6782 7812 name = "windows_aarch64_gnullvm" 6783 7813 version = "0.42.2" 6784 7814 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6792 7822 6793 7823 [[package]] 6794 7824 name = "windows_aarch64_gnullvm" 6795 - version = "0.52.0" 7825 + version = "0.52.5" 6796 7826 source = "registry+https://github.com/rust-lang/crates.io-index" 6797 - checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 7827 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 6798 7828 6799 7829 [[package]] 6800 7830 name = "windows_aarch64_msvc" ··· 6822 7852 6823 7853 [[package]] 6824 7854 name = "windows_aarch64_msvc" 6825 - version = "0.52.0" 7855 + version = "0.52.5" 6826 7856 source = "registry+https://github.com/rust-lang/crates.io-index" 6827 - checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 7857 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 6828 7858 6829 7859 [[package]] 6830 7860 name = "windows_i686_gnu" ··· 6852 7882 6853 7883 [[package]] 6854 7884 name = "windows_i686_gnu" 6855 - version = "0.52.0" 7885 + version = "0.52.5" 7886 + source = "registry+https://github.com/rust-lang/crates.io-index" 7887 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 7888 + 7889 + [[package]] 7890 + name = "windows_i686_gnullvm" 7891 + version = "0.52.5" 6856 7892 source = "registry+https://github.com/rust-lang/crates.io-index" 6857 - checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 7893 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 6858 7894 6859 7895 [[package]] 6860 7896 name = "windows_i686_msvc" ··· 6882 7918 6883 7919 [[package]] 6884 7920 name = "windows_i686_msvc" 6885 - version = "0.52.0" 7921 + version = "0.52.5" 6886 7922 source = "registry+https://github.com/rust-lang/crates.io-index" 6887 - checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 7923 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 6888 7924 6889 7925 [[package]] 6890 7926 name = "windows_x86_64_gnu" ··· 6912 7948 6913 7949 [[package]] 6914 7950 name = "windows_x86_64_gnu" 6915 - version = "0.52.0" 7951 + version = "0.52.5" 6916 7952 source = "registry+https://github.com/rust-lang/crates.io-index" 6917 - checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 7953 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 6918 7954 6919 7955 [[package]] 6920 7956 name = "windows_x86_64_gnullvm" ··· 6930 7966 6931 7967 [[package]] 6932 7968 name = "windows_x86_64_gnullvm" 6933 - version = "0.52.0" 7969 + version = "0.52.5" 6934 7970 source = "registry+https://github.com/rust-lang/crates.io-index" 6935 - checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 7971 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 6936 7972 6937 7973 [[package]] 6938 7974 name = "windows_x86_64_msvc" ··· 6960 7996 6961 7997 [[package]] 6962 7998 name = "windows_x86_64_msvc" 6963 - version = "0.52.0" 7999 + version = "0.52.5" 8000 + source = "registry+https://github.com/rust-lang/crates.io-index" 8001 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 8002 + 8003 + [[package]] 8004 + name = "winnow" 8005 + version = "0.5.40" 6964 8006 source = "registry+https://github.com/rust-lang/crates.io-index" 6965 - checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 8007 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 8008 + dependencies = [ 8009 + "memchr", 8010 + ] 6966 8011 6967 8012 [[package]] 6968 8013 name = "winnow" 6969 - version = "0.5.19" 8014 + version = "0.6.13" 6970 8015 source = "registry+https://github.com/rust-lang/crates.io-index" 6971 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 8016 + checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" 6972 8017 dependencies = [ 6973 8018 "memchr", 6974 8019 ] ··· 6994 8039 6995 8040 [[package]] 6996 8041 name = "winreg" 6997 - version = "0.51.0" 8042 + version = "0.52.0" 6998 8043 source = "registry+https://github.com/rust-lang/crates.io-index" 6999 - checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc" 8044 + checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 7000 8045 dependencies = [ 7001 8046 "cfg-if", 7002 8047 "windows-sys 0.48.0", ··· 7013 8058 7014 8059 [[package]] 7015 8060 name = "wl-clipboard-rs" 7016 - version = "0.8.0" 8061 + version = "0.8.1" 7017 8062 source = "registry+https://github.com/rust-lang/crates.io-index" 7018 - checksum = "57af79e973eadf08627115c73847392e6b766856ab8e3844a59245354b23d2fa" 8063 + checksum = "12b41773911497b18ca8553c3daaf8ec9fe9819caf93d451d3055f69de028adb" 7019 8064 dependencies = [ 7020 8065 "derive-new", 7021 8066 "libc", 7022 8067 "log", 7023 - "nix 0.26.4", 8068 + "nix 0.28.0", 7024 8069 "os_pipe", 7025 8070 "tempfile", 7026 8071 "thiserror", ··· 7033 8078 7034 8079 [[package]] 7035 8080 name = "wry" 7036 - version = "0.24.6" 8081 + version = "0.24.10" 7037 8082 source = "registry+https://github.com/rust-lang/crates.io-index" 7038 - checksum = "64a70547e8f9d85da0f5af609143f7bde3ac7457a6e1073104d9b73d6c5ac744" 8083 + checksum = "00711278ed357350d44c749c286786ecac644e044e4da410d466212152383b45" 7039 8084 dependencies = [ 7040 8085 "base64 0.13.1", 7041 8086 "block", ··· 7047 8092 "gio", 7048 8093 "glib", 7049 8094 "gtk", 7050 - "html5ever 0.25.2", 7051 - "http", 7052 - "kuchiki", 8095 + "html5ever", 8096 + "http 0.2.12", 8097 + "kuchikiki", 7053 8098 "libc", 7054 8099 "log", 7055 8100 "objc", ··· 7066 8111 "webkit2gtk-sys", 7067 8112 "webview2-com", 7068 8113 "windows 0.39.0", 7069 - "windows-implement", 8114 + "windows-implement 0.39.0", 8115 + ] 8116 + 8117 + [[package]] 8118 + name = "wyz" 8119 + version = "0.5.1" 8120 + source = "registry+https://github.com/rust-lang/crates.io-index" 8121 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 8122 + dependencies = [ 8123 + "tap", 7070 8124 ] 7071 8125 7072 8126 [[package]] ··· 7081 8135 7082 8136 [[package]] 7083 8137 name = "x11-clipboard" 7084 - version = "0.8.1" 8138 + version = "0.9.2" 7085 8139 source = "registry+https://github.com/rust-lang/crates.io-index" 7086 - checksum = "b41aca1115b1f195f21c541c5efb423470848d48143127d0f07f8b90c27440df" 8140 + checksum = "b98785a09322d7446e28a13203d2cae1059a0dd3dfb32cb06d0a225f023d8286" 7087 8141 dependencies = [ 8142 + "libc", 7088 8143 "x11rb", 7089 8144 ] 7090 8145 ··· 7101 8156 7102 8157 [[package]] 7103 8158 name = "x11rb" 7104 - version = "0.12.0" 8159 + version = "0.13.1" 7105 8160 source = "registry+https://github.com/rust-lang/crates.io-index" 7106 - checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a" 8161 + checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" 7107 8162 dependencies = [ 7108 8163 "gethostname", 7109 - "nix 0.26.4", 7110 - "winapi", 7111 - "winapi-wsapoll", 8164 + "rustix 0.38.34", 7112 8165 "x11rb-protocol", 7113 8166 ] 7114 8167 7115 8168 [[package]] 7116 8169 name = "x11rb-protocol" 7117 - version = "0.12.0" 8170 + version = "0.13.1" 7118 8171 source = "registry+https://github.com/rust-lang/crates.io-index" 7119 - checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc" 7120 - dependencies = [ 7121 - "nix 0.26.4", 7122 - ] 8172 + checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" 7123 8173 7124 8174 [[package]] 7125 8175 name = "xattr" 7126 - version = "1.0.1" 8176 + version = "1.3.1" 7127 8177 source = "registry+https://github.com/rust-lang/crates.io-index" 7128 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 8178 + checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 7129 8179 dependencies = [ 7130 8180 "libc", 8181 + "linux-raw-sys 0.4.14", 8182 + "rustix 0.38.34", 7131 8183 ] 7132 8184 7133 8185 [[package]] 7134 8186 name = "xcb" 7135 - version = "1.2.2" 8187 + version = "1.4.0" 7136 8188 source = "registry+https://github.com/rust-lang/crates.io-index" 7137 - checksum = "fb3acf6b0945550d37d3a683b8f7de9d9f66b2c14dc390313b34d7ac6f1b4089" 8189 + checksum = "02e75181b5a62b6eeaa72f303d3cef7dbb841e22885bf6d3e66fe23e88c55dc6" 7138 8190 dependencies = [ 7139 8191 "bitflags 1.3.2", 7140 8192 "libc", 7141 - "quick-xml 0.28.2", 8193 + "quick-xml 0.30.0", 7142 8194 ] 7143 8195 7144 8196 [[package]] 7145 8197 name = "xdg-home" 7146 - version = "1.0.0" 8198 + version = "1.2.0" 7147 8199 source = "registry+https://github.com/rust-lang/crates.io-index" 7148 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 8200 + checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8" 7149 8201 dependencies = [ 7150 - "nix 0.26.4", 7151 - "winapi", 8202 + "libc", 8203 + "windows-sys 0.52.0", 7152 8204 ] 7153 8205 7154 8206 [[package]] 8207 + name = "xkbcommon" 8208 + version = "0.7.0" 8209 + source = "registry+https://github.com/rust-lang/crates.io-index" 8210 + checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" 8211 + dependencies = [ 8212 + "libc", 8213 + "memmap2", 8214 + "xkeysym", 8215 + ] 8216 + 8217 + [[package]] 8218 + name = "xkeysym" 8219 + version = "0.2.1" 8220 + source = "registry+https://github.com/rust-lang/crates.io-index" 8221 + checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" 8222 + 8223 + [[package]] 7155 8224 name = "xml-rs" 7156 - version = "0.8.19" 8225 + version = "0.8.20" 7157 8226 source = "registry+https://github.com/rust-lang/crates.io-index" 7158 - checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 8227 + checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" 7159 8228 7160 8229 [[package]] 7161 8230 name = "yeslogic-fontconfig-sys" ··· 7171 8240 7172 8241 [[package]] 7173 8242 name = "zbus" 7174 - version = "3.14.1" 8243 + version = "3.15.2" 7175 8244 source = "registry+https://github.com/rust-lang/crates.io-index" 7176 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 8245 + checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6" 7177 8246 dependencies = [ 7178 - "async-broadcast", 8247 + "async-broadcast 0.5.1", 7179 8248 "async-executor", 7180 - "async-fs", 8249 + "async-fs 1.6.0", 7181 8250 "async-io 1.13.0", 7182 8251 "async-lock 2.8.0", 7183 - "async-process", 8252 + "async-process 1.8.1", 7184 8253 "async-recursion", 7185 8254 "async-task", 7186 8255 "async-trait", ··· 7205 8274 "uds_windows", 7206 8275 "winapi", 7207 8276 "xdg-home", 7208 - "zbus_macros", 7209 - "zbus_names", 7210 - "zvariant", 8277 + "zbus_macros 3.15.2", 8278 + "zbus_names 2.6.1", 8279 + "zvariant 3.15.2", 8280 + ] 8281 + 8282 + [[package]] 8283 + name = "zbus" 8284 + version = "4.3.0" 8285 + source = "registry+https://github.com/rust-lang/crates.io-index" 8286 + checksum = "23915fcb26e7a9a9dc05fd93a9870d336d6d032cd7e8cebf1c5c37666489fdd5" 8287 + dependencies = [ 8288 + "async-broadcast 0.7.1", 8289 + "async-executor", 8290 + "async-fs 2.1.2", 8291 + "async-io 2.3.3", 8292 + "async-lock 3.4.0", 8293 + "async-process 2.2.3", 8294 + "async-recursion", 8295 + "async-task", 8296 + "async-trait", 8297 + "blocking", 8298 + "enumflags2", 8299 + "event-listener 5.3.1", 8300 + "futures-core", 8301 + "futures-sink", 8302 + "futures-util", 8303 + "hex", 8304 + "nix 0.28.0", 8305 + "ordered-stream", 8306 + "rand 0.8.5", 8307 + "serde", 8308 + "serde_repr", 8309 + "sha1", 8310 + "static_assertions", 8311 + "tracing", 8312 + "uds_windows", 8313 + "windows-sys 0.52.0", 8314 + "xdg-home", 8315 + "zbus_macros 4.3.0", 8316 + "zbus_names 3.0.0", 8317 + "zvariant 4.1.1", 7211 8318 ] 7212 8319 7213 8320 [[package]] 7214 8321 name = "zbus_macros" 7215 - version = "3.14.1" 8322 + version = "3.15.2" 7216 8323 source = "registry+https://github.com/rust-lang/crates.io-index" 7217 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 8324 + checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5" 7218 8325 dependencies = [ 7219 - "proc-macro-crate", 8326 + "proc-macro-crate 1.3.1", 7220 8327 "proc-macro2", 7221 8328 "quote", 7222 8329 "regex", 7223 8330 "syn 1.0.109", 7224 - "zvariant_utils", 8331 + "zvariant_utils 1.0.1", 8332 + ] 8333 + 8334 + [[package]] 8335 + name = "zbus_macros" 8336 + version = "4.3.0" 8337 + source = "registry+https://github.com/rust-lang/crates.io-index" 8338 + checksum = "02bcca0b586d2f8589da32347b4784ba424c4891ed86aa5b50d5e88f6b2c4f5d" 8339 + dependencies = [ 8340 + "proc-macro-crate 3.1.0", 8341 + "proc-macro2", 8342 + "quote", 8343 + "syn 2.0.67", 8344 + "zvariant_utils 2.0.0", 7225 8345 ] 7226 8346 7227 8347 [[package]] 7228 8348 name = "zbus_names" 7229 - version = "2.6.0" 8349 + version = "2.6.1" 7230 8350 source = "registry+https://github.com/rust-lang/crates.io-index" 7231 - checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 8351 + checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d" 7232 8352 dependencies = [ 7233 8353 "serde", 7234 8354 "static_assertions", 7235 - "zvariant", 8355 + "zvariant 3.15.2", 8356 + ] 8357 + 8358 + [[package]] 8359 + name = "zbus_names" 8360 + version = "3.0.0" 8361 + source = "registry+https://github.com/rust-lang/crates.io-index" 8362 + checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" 8363 + dependencies = [ 8364 + "serde", 8365 + "static_assertions", 8366 + "zvariant 4.1.1", 7236 8367 ] 7237 8368 7238 8369 [[package]] 7239 8370 name = "zerocopy" 7240 - version = "0.7.26" 8371 + version = "0.7.34" 7241 8372 source = "registry+https://github.com/rust-lang/crates.io-index" 7242 - checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0" 8373 + checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" 7243 8374 dependencies = [ 7244 8375 "zerocopy-derive", 7245 8376 ] 7246 8377 7247 8378 [[package]] 7248 8379 name = "zerocopy-derive" 7249 - version = "0.7.26" 8380 + version = "0.7.34" 7250 8381 source = "registry+https://github.com/rust-lang/crates.io-index" 7251 - checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f" 8382 + checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" 7252 8383 dependencies = [ 7253 8384 "proc-macro2", 7254 8385 "quote", 7255 - "syn 2.0.39", 8386 + "syn 2.0.67", 7256 8387 ] 7257 8388 7258 8389 [[package]] 7259 8390 name = "zeroize" 7260 - version = "1.7.0" 8391 + version = "1.8.1" 8392 + source = "registry+https://github.com/rust-lang/crates.io-index" 8393 + checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 8394 + dependencies = [ 8395 + "zeroize_derive", 8396 + ] 8397 + 8398 + [[package]] 8399 + name = "zeroize_derive" 8400 + version = "1.4.2" 7261 8401 source = "registry+https://github.com/rust-lang/crates.io-index" 7262 - checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 8402 + checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 8403 + dependencies = [ 8404 + "proc-macro2", 8405 + "quote", 8406 + "syn 2.0.67", 8407 + ] 7263 8408 7264 8409 [[package]] 7265 8410 name = "zip" ··· 7267 8412 source = "registry+https://github.com/rust-lang/crates.io-index" 7268 8413 checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 7269 8414 dependencies = [ 8415 + "byteorder", 8416 + "crc32fast", 8417 + "crossbeam-utils", 8418 + ] 8419 + 8420 + [[package]] 8421 + name = "zip" 8422 + version = "2.1.3" 8423 + source = "registry+https://github.com/rust-lang/crates.io-index" 8424 + checksum = "775a2b471036342aa69bc5a602bc889cb0a06cda00477d0c69566757d5553d39" 8425 + dependencies = [ 7270 8426 "aes", 7271 - "byteorder", 8427 + "arbitrary", 7272 8428 "bzip2", 7273 8429 "constant_time_eq", 7274 8430 "crc32fast", 7275 8431 "crossbeam-utils", 8432 + "deflate64", 8433 + "displaydoc", 7276 8434 "flate2", 7277 8435 "hmac", 8436 + "indexmap 2.2.6", 8437 + "lzma-rs", 8438 + "memchr", 7278 8439 "pbkdf2", 8440 + "rand 0.8.5", 7279 8441 "sha1", 8442 + "thiserror", 7280 8443 "time", 8444 + "zeroize", 8445 + "zopfli", 7281 8446 "zstd", 7282 8447 ] 7283 8448 7284 8449 [[package]] 8450 + name = "zopfli" 8451 + version = "0.8.1" 8452 + source = "registry+https://github.com/rust-lang/crates.io-index" 8453 + checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 8454 + dependencies = [ 8455 + "bumpalo", 8456 + "crc32fast", 8457 + "lockfree-object-pool", 8458 + "log", 8459 + "once_cell", 8460 + "simd-adler32", 8461 + ] 8462 + 8463 + [[package]] 7285 8464 name = "zstd" 7286 - version = "0.11.2+zstd.1.5.2" 8465 + version = "0.13.1" 7287 8466 source = "registry+https://github.com/rust-lang/crates.io-index" 7288 - checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 8467 + checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" 7289 8468 dependencies = [ 7290 8469 "zstd-safe", 7291 8470 ] 7292 8471 7293 8472 [[package]] 7294 8473 name = "zstd-safe" 7295 - version = "5.0.2+zstd.1.5.2" 8474 + version = "7.1.0" 7296 8475 source = "registry+https://github.com/rust-lang/crates.io-index" 7297 - checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 8476 + checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" 7298 8477 dependencies = [ 7299 - "libc", 7300 8478 "zstd-sys", 7301 8479 ] 7302 8480 7303 8481 [[package]] 7304 8482 name = "zstd-sys" 7305 - version = "2.0.9+zstd.1.5.5" 8483 + version = "2.0.11+zstd.1.5.6" 7306 8484 source = "registry+https://github.com/rust-lang/crates.io-index" 7307 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 8485 + checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4" 7308 8486 dependencies = [ 7309 8487 "cc", 7310 8488 "pkg-config", 7311 8489 ] 7312 8490 7313 8491 [[package]] 8492 + name = "zune-core" 8493 + version = "0.4.12" 8494 + source = "registry+https://github.com/rust-lang/crates.io-index" 8495 + checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 8496 + 8497 + [[package]] 7314 8498 name = "zune-inflate" 7315 8499 version = "0.2.54" 7316 8500 source = "registry+https://github.com/rust-lang/crates.io-index" 7317 8501 checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 7318 8502 dependencies = [ 7319 8503 "simd-adler32", 8504 + ] 8505 + 8506 + [[package]] 8507 + name = "zune-jpeg" 8508 + version = "0.4.11" 8509 + source = "registry+https://github.com/rust-lang/crates.io-index" 8510 + checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448" 8511 + dependencies = [ 8512 + "zune-core", 7320 8513 ] 7321 8514 7322 8515 [[package]] 7323 8516 name = "zvariant" 7324 - version = "3.15.0" 8517 + version = "3.15.2" 7325 8518 source = "registry+https://github.com/rust-lang/crates.io-index" 7326 - checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 8519 + checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db" 7327 8520 dependencies = [ 7328 8521 "byteorder", 7329 8522 "enumflags2", 7330 8523 "libc", 7331 8524 "serde", 7332 8525 "static_assertions", 7333 - "zvariant_derive", 8526 + "zvariant_derive 3.15.2", 8527 + ] 8528 + 8529 + [[package]] 8530 + name = "zvariant" 8531 + version = "4.1.1" 8532 + source = "registry+https://github.com/rust-lang/crates.io-index" 8533 + checksum = "9aa6d31a02fbfb602bfde791de7fedeb9c2c18115b3d00f3a36e489f46ffbbc7" 8534 + dependencies = [ 8535 + "endi", 8536 + "enumflags2", 8537 + "serde", 8538 + "static_assertions", 8539 + "zvariant_derive 4.1.1", 7334 8540 ] 7335 8541 7336 8542 [[package]] 7337 8543 name = "zvariant_derive" 7338 - version = "3.15.0" 8544 + version = "3.15.2" 7339 8545 source = "registry+https://github.com/rust-lang/crates.io-index" 7340 - checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 8546 + checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9" 7341 8547 dependencies = [ 7342 - "proc-macro-crate", 8548 + "proc-macro-crate 1.3.1", 7343 8549 "proc-macro2", 7344 8550 "quote", 7345 8551 "syn 1.0.109", 7346 - "zvariant_utils", 8552 + "zvariant_utils 1.0.1", 8553 + ] 8554 + 8555 + [[package]] 8556 + name = "zvariant_derive" 8557 + version = "4.1.1" 8558 + source = "registry+https://github.com/rust-lang/crates.io-index" 8559 + checksum = "642bf1b6b6d527988b3e8193d20969d53700a36eac734d21ae6639db168701c8" 8560 + dependencies = [ 8561 + "proc-macro-crate 3.1.0", 8562 + "proc-macro2", 8563 + "quote", 8564 + "syn 2.0.67", 8565 + "zvariant_utils 2.0.0", 7347 8566 ] 7348 8567 7349 8568 [[package]] ··· 7356 8575 "quote", 7357 8576 "syn 1.0.109", 7358 8577 ] 8578 + 8579 + [[package]] 8580 + name = "zvariant_utils" 8581 + version = "2.0.0" 8582 + source = "registry+https://github.com/rust-lang/crates.io-index" 8583 + checksum = "fc242db087efc22bd9ade7aa7809e4ba828132edc312871584a6b4391bdf8786" 8584 + dependencies = [ 8585 + "proc-macro2", 8586 + "quote", 8587 + "syn 2.0.67", 8588 + ]
+45 -35
pkgs/by-name/po/pot/package.nix
··· 1 - { lib 2 - , stdenv 3 - , rustPlatform 4 - , fetchFromGitHub 5 - , nodejs 6 - , pnpm 7 - , wrapGAppsHook3 8 - , cargo 9 - , rustc 10 - , cargo-tauri 11 - , pkg-config 12 - , esbuild 13 - , buildGoModule 14 - , libayatana-appindicator 15 - , gtk3 16 - , webkitgtk 17 - , libsoup 18 - , openssl 19 - , xdotool 1 + { 2 + lib, 3 + stdenv, 4 + rustPlatform, 5 + fetchFromGitHub, 6 + nodejs, 7 + pnpm_9, 8 + wrapGAppsHook3, 9 + cargo, 10 + rustc, 11 + cargo-tauri, 12 + pkg-config, 13 + esbuild, 14 + buildGoModule, 15 + libayatana-appindicator, 16 + gtk3, 17 + webkitgtk, 18 + libsoup, 19 + openssl, 20 + xdotool, 20 21 }: 21 22 23 + let 24 + pnpm = pnpm_9; 25 + in 22 26 stdenv.mkDerivation (finalAttrs: { 23 27 pname = "pot"; 24 - version = "2.7.9"; 28 + version = "3.0.5"; 25 29 26 30 src = fetchFromGitHub { 27 31 owner = "pot-app"; 28 32 repo = "pot-desktop"; 29 33 rev = finalAttrs.version; 30 - hash = "sha256-Y2gFLvRNBjOGxdpIeoY1CXEip0Ht73aymWIP5wuc9kU="; 34 + hash = "sha256-Y0/N5xunEXOG+FuZE23xsSwFd6PL1XClV5UIckTYNPs="; 31 35 }; 32 36 33 37 sourceRoot = "${finalAttrs.src.name}/src-tauri"; ··· 39 43 40 44 pnpmDeps = pnpm.fetchDeps { 41 45 inherit (finalAttrs) pname version src; 42 - hash = "sha256-nRRUX6CH3s1cEoI80gtRmu0ovXpIwS+h1rFJo8kw60E="; 46 + hash = "sha256-AmMV8Nrn+zH/9bDkFX3Mx5xIQjkoXR8SzkdJRXkxTbA="; 43 47 }; 44 48 45 49 pnpmRoot = ".."; ··· 48 52 lockFile = ./Cargo.lock; 49 53 outputHashes = { 50 54 # All other crates in the same workspace reuse this hash. 51 - "tauri-plugin-autostart-0.0.0" = "sha256-/uxaSBp+N1VjjSiwf6NwNnSH02Vk6gQZ/CzO+AyEI7o="; 55 + "tauri-plugin-autostart-0.0.0" = "sha256-fgJvoe3rKom2DdXXgd5rx7kzaWL/uvvye8jfL2SNhrM="; 52 56 }; 53 57 }; 54 58 ··· 72 76 xdotool 73 77 ]; 74 78 75 - ESBUILD_BINARY_PATH = "${lib.getExe (esbuild.override { 76 - buildGoModule = args: buildGoModule (args // rec { 77 - version = "0.18.20"; 78 - src = fetchFromGitHub { 79 - owner = "evanw"; 80 - repo = "esbuild"; 81 - rev = "v${version}"; 82 - hash = "sha256-mED3h+mY+4H465m02ewFK/BgA1i/PQ+ksUNxBlgpUoI="; 83 - }; 84 - vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 85 - }); 86 - })}"; 79 + env.ESBUILD_BINARY_PATH = "${lib.getExe ( 80 + esbuild.override { 81 + buildGoModule = 82 + args: 83 + buildGoModule ( 84 + args 85 + // rec { 86 + version = "0.21.5"; 87 + src = fetchFromGitHub { 88 + owner = "evanw"; 89 + repo = "esbuild"; 90 + rev = "v${version}"; 91 + hash = "sha256-FpvXWIlt67G8w3pBKZo/mcp57LunxDmRUaCU/Ne89B8="; 92 + }; 93 + } 94 + ); 95 + } 96 + )}"; 87 97 88 98 preConfigure = '' 89 99 # pnpm.configHook has to write to .., as our sourceRoot is set to src-tauri
+5 -13
pkgs/by-name/pr/pretalx/package.nix
··· 3 3 , gettext 4 4 , python3 5 5 , fetchFromGitHub 6 - , fetchpatch2 7 6 , plugins ? [ ] 8 7 , nixosTests 9 8 }: ··· 30 29 }; 31 30 }; 32 31 33 - version = "2024.1.0"; 32 + version = "2024.2.0"; 34 33 35 34 src = fetchFromGitHub { 36 35 owner = "pretalx"; 37 36 repo = "pretalx"; 38 37 rev = "v${version}"; 39 - hash = "sha256-rFOlovybaEZnv5wBx6Dv8bVkP1D+CgYAKRXuNb6hLKQ="; 38 + hash = "sha256-2HkxFS+T/lN/8EvAL3S4iVYn30y0OPmaUSneEPEA62k="; 40 39 }; 41 40 42 41 meta = with lib; { ··· 55 54 56 55 sourceRoot = "${src.name}/src/pretalx/frontend/schedule-editor"; 57 56 58 - npmDepsHash = "sha256-B9R3Nn4tURNxzeyLDHscqHxYOQK9AcmDnyNq3k5WQQs="; 57 + npmDepsHash = "sha256-EAdeXdcC3gHun6BOHzvqpzv9+oDl1b/VTeNkYLiD+hA="; 59 58 60 59 npmBuildScript = "build"; 61 60 ··· 72 71 "static" 73 72 ]; 74 73 75 - patches = [ 76 - (fetchpatch2 { 77 - # Backport support for Djangorestframework 3.15.x 78 - name = "pretalx-drf-3.15.patch"; 79 - url = "https://github.com/pretalx/pretalx/commit/43a0416c6968d64ea57720abdb82f482940b11f8.patch"; 80 - hash = "sha256-Iw1xVF7j7c712kwIk1SMbQSF0ixMUZr1BJib3KAb2HY="; 81 - }) 82 - ]; 83 - 84 74 postPatch = '' 85 75 substituteInPlace src/pretalx/common/management/commands/rebuild.py \ 86 76 --replace 'subprocess.check_call(["npm", "run", "build"], cwd=frontend_dir, env=env)' "" ··· 99 89 "celery" 100 90 "css-inline" 101 91 "cssutils" 92 + "defusedxml" 102 93 "django-compressor" 103 94 "django-csp" 104 95 "django-filter" ··· 122 113 csscompressor 123 114 cssutils 124 115 defusedcsv 116 + defusedxml 125 117 django 126 118 django-bootstrap4 127 119 django-compressor
+2 -2
pkgs/by-name/pr/pretalx/plugins/downstream.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pretalx-downstream"; 10 - version = "1.2.0"; 10 + version = "1.3.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pretalx"; 15 15 repo = "pretalx-downstream"; 16 16 rev = "v${version}"; 17 - hash = "sha256-MzoK/tzf6ajZ/THIXyad/tfb3lsQD9k9J6aBfoP9ONo="; 17 + hash = "sha256-xpacfU655vg6g1rD4uteeizj+Bll4fgI0AEddaGiCLE="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+2 -2
pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pretalx-media-ccc-de"; 10 - version = "1.2.1"; 10 + version = "1.3.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pretalx"; 15 15 repo = "pretalx-media-ccc-de"; 16 16 rev = "v${version}"; 17 - hash = "sha256-QCnZZpYjHxj92Dl2nRd4lXapufcqRmlVH6LEq0rzQ2U="; 17 + hash = "sha256-Cr9qbkb1VOH2EtDLSA5jmLiCnn1ICdvHnmTugCvHLc0="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+2 -2
pkgs/by-name/pr/pretalx/plugins/pages.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pretalx-pages"; 10 - version = "1.4.0"; 10 + version = "1.5.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pretalx"; 15 15 repo = "pretalx-pages"; 16 16 rev = "v${version}"; 17 - hash = "sha256-Wzd3uf+mdoyeMCZ4ZYcPLGqlUWCqSL02eeKRubTiH00="; 17 + hash = "sha256-wLMl+2hAJQksCyeBnXxMIFh1/Qkosm7PqByW6QxMsyg="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+2 -2
pkgs/by-name/pr/pretalx/plugins/public-voting.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pretalx-public-voting"; 10 - version = "1.5.0"; 10 + version = "1.6.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pretalx"; 15 15 repo = "pretalx-public-voting"; 16 16 rev = "v${version}"; 17 - hash = "sha256-0dSnUVXtWEuu+m5PyFjjM2WVYE3+cNqZYlMkRQlI+2U="; 17 + hash = "sha256-1zxJ1b2CHfV2AVAneUJxurZ0L3QoMzuBf8c2wrj7yBA="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+2 -2
pkgs/by-name/pr/pretalx/plugins/venueless.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pretalx-venueless"; 13 - version = "1.3.0"; 13 + version = "1.4.0"; 14 14 pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "pretalx"; 18 18 repo = "pretalx-venueless"; 19 19 rev = "v${version}"; 20 - hash = "sha256-h8o5q1roFm8Bct/Qf8obIJYkkGPcz3WJ15quxZH48H8="; 20 + hash = "sha256-llgRa18hxVoRSwU5UH6w4sE2W5ozCZm4Btbia2y0LbE="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ gettext ];
+2 -2
pkgs/by-name/pr/pretalx/plugins/vimeo.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pretalx-vimeo"; 10 - version = "2.2.0"; 10 + version = "2.3.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pretalx"; 15 15 repo = "pretalx-vimeo"; 16 16 rev = "v${version}"; 17 - hash = "sha256-CVP9C2wY51p8UDnzPpjzdVv5b9CSVanGbkaJiOo+9eY="; 17 + hash = "sha256-ZlF/wWD5FaC4CfYIYvcbykPajoCOotmmaY+rQ0sGAo8="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+2 -2
pkgs/by-name/pr/pretalx/plugins/youtube.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pretalx-youtube"; 10 - version = "2.1.0"; 10 + version = "2.2.0"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pretalx"; 15 15 repo = "pretalx-youtube"; 16 16 rev = "v${version}"; 17 - hash = "sha256-j3NZ+5QBbdpE2bxenqq5bW/42CWvQ9FqrKMmfYIe4Lo="; 17 + hash = "sha256-cTxkFSK84NRn7Z2uWYBJ2NvQ3pOsUbdZDg6XE5yswPg="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+48
pkgs/by-name/pr/pretix-banktool/package.nix
··· 1 + { 2 + lib, 3 + python3Packages, 4 + fetchFromGitHub, 5 + fetchpatch2, 6 + }: 7 + 8 + python3Packages.buildPythonApplication rec { 9 + pname = "pretix-banktool"; 10 + version = "1.0.0"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "pretix"; 15 + repo = "pretix-banktool"; 16 + rev = "v${version}"; 17 + hash = "sha256-vYHjotx1RujPV53Ei7bXAc3kL/3cwbWQB1T3sQ15MFA="; 18 + }; 19 + 20 + patches = [ 21 + (fetchpatch2 { 22 + # migrate to pyproject.toml, relax constraints 23 + url = "https://github.com/pretix/pretix-banktool/commit/48a8125aba86d70f62c2b1f88bcf21c783402589.patch"; 24 + hash = "sha256-HbVzWoI5LlNyh0MZnPsLmzu7RMY8/BDfOwgDWMD+k5w="; 25 + }) 26 + ]; 27 + 28 + build-system = with python3Packages; [ setuptools ]; 29 + 30 + dependencies = with python3Packages; [ 31 + click 32 + fints 33 + requests 34 + mt-940 35 + ]; 36 + 37 + doCheck = false; # no tests 38 + 39 + pythonImportsCheck = [ "pretix_banktool" ]; 40 + 41 + meta = with lib; { 42 + description = "Automatic bank data upload tool for pretix (with FinTS client)"; 43 + homepage = "https://github.com/pretix/pretix-banktool"; 44 + license = licenses.gpl3Only; 45 + maintainers = with maintainers; [ hexa ]; 46 + mainProgram = "pretix-banktool"; 47 + }; 48 + }
+5 -5
pkgs/by-name/re/renode-unstable/package.nix
··· 5 5 6 6 renode.overrideAttrs (finalAttrs: _: { 7 7 pname = "renode-unstable"; 8 - version = "1.15.1+20240716gita55a3d050"; 8 + version = "1.15.1+20240801git19eb5fb22"; 9 9 10 10 src = fetchurl { 11 - url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz"; 12 - hash = "sha256-cYK/PNXy+G6Cg6oY1U13MX03d2r0hwKVMp9f3LqpTd0="; 11 + url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-dotnet.tar.gz"; 12 + hash = "sha256-dIyMQtFXvHivlzC+Y3TrWsN81/cETKTaucZY5r/x5rU="; 13 13 }; 14 14 15 15 passthru.updateScript = ··· 23 23 latestVersion=$( 24 24 curl -sS https://builds.renode.io \ 25 25 | pup 'a text{}' \ 26 - | egrep 'renode-${versionRegex}\.linux-portable\.tar\.gz' \ 26 + | egrep 'renode-${versionRegex}\.linux-dotnet\.tar\.gz' \ 27 27 | head -n1 \ 28 - | sed -e 's,renode-\(.*\)\.linux-portable\.tar\.gz,\1,g' 28 + | sed -e 's,renode-\(.*\)\.linux-dotnet\.tar\.gz,\1,g' 29 29 ) 30 30 31 31 update-source-version ${finalAttrs.pname} "$latestVersion" \
+21 -15
pkgs/by-name/re/renode/package.nix
··· 7 7 , nix-update-script 8 8 , glibcLocales 9 9 , python3Packages 10 - , gtk-sharp-2_0 11 - , gtk2-x11 12 - , screen 10 + , dotnetCorePackages 11 + , gtk-sharp-3_0 12 + , gtk3-x11 13 + , dconf 13 14 }: 14 15 15 16 let ··· 18 19 psutil 19 20 pyyaml 20 21 requests 22 + tkinter 23 + 24 + # from tools/csv2resd/requirements.txt 25 + construct 26 + 27 + # from tools/execution_tracer/requirements.txt 28 + pyelftools 21 29 22 30 (robotframework.overrideDerivation (oldAttrs: { 23 31 src = fetchFromGitHub { ··· 34 42 version = "1.15.1"; 35 43 36 44 src = fetchurl { 37 - url = "https://github.com/renode/renode/releases/download/v${finalAttrs.version}/renode-${finalAttrs.version}.linux-portable.tar.gz"; 38 - hash = "sha256-W+JtyaXcYZD+iaVEFX6eatxV3/Vr4aZrsCLm1Aj+ISs="; 45 + url = "https://github.com/renode/renode/releases/download/v${finalAttrs.version}/renode-${finalAttrs.version}.linux-dotnet.tar.gz"; 46 + hash = "sha256-NrbdkHxZ5g4dhmkhOIWTSxuY3GA1h1FM5JkWVPuQjjc="; 39 47 }; 40 48 41 49 nativeBuildInputs = [ ··· 44 52 ]; 45 53 46 54 propagatedBuildInputs = [ 47 - gtk2-x11 48 - gtk-sharp-2_0 49 - screen 55 + gtk-sharp-3_0 50 56 ]; 51 57 52 58 strictDeps = true; ··· 58 64 59 65 mv * $out/libexec/renode 60 66 mv .renode-root $out/libexec/renode 61 - chmod +x $out/libexec/renode/*.so 62 67 63 68 makeWrapper "$out/libexec/renode/renode" "$out/bin/renode" \ 64 - --prefix PATH : "$out/libexec/renode" \ 65 - --suffix LD_LIBRARY_PATH : "${gtk2-x11}/lib" \ 69 + --prefix PATH : "$out/libexec/renode:${lib.makeBinPath [ dotnetCorePackages.runtime_8_0 ]}" \ 70 + --prefix GIO_EXTRA_MODULES : "${lib.getLib dconf}/lib/gio/modules" \ 71 + --suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ gtk3-x11 ]}" \ 72 + --prefix PYTHONPATH : "${pythonLibs}" \ 66 73 --set LOCALE_ARCHIVE "${glibcLocales}/lib/locale/locale-archive" 67 - 68 74 makeWrapper "$out/libexec/renode/renode-test" "$out/bin/renode-test" \ 69 - --prefix PATH : "$out/libexec/renode" \ 75 + --prefix PATH : "$out/libexec/renode:${lib.makeBinPath [ dotnetCorePackages.runtime_8_0 ]}" \ 76 + --prefix GIO_EXTRA_MODULES : "${lib.getLib dconf}/lib/gio/modules" \ 77 + --suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ gtk3-x11 ]}" \ 70 78 --prefix PYTHONPATH : "${pythonLibs}" \ 71 - --suffix LD_LIBRARY_PATH : "${gtk2-x11}/lib" \ 72 79 --set LOCALE_ARCHIVE "${glibcLocales}/lib/locale/locale-archive" 73 80 74 81 substituteInPlace "$out/libexec/renode/renode-test" \ ··· 82 89 meta = { 83 90 description = "Virtual development framework for complex embedded systems"; 84 91 homepage = "https://renode.io"; 85 - changelog = "https://github.com/renode/renode/blob/v${finalAttrs.version}/CHANGELOG.rst"; 86 92 license = lib.licenses.bsd3; 87 93 maintainers = with lib.maintainers; [ otavio ]; 88 94 platforms = [ "x86_64-linux" ];
+41 -41
pkgs/by-name/sv/svelte-language-server/package-lock.json
··· 1 1 { 2 2 "name": "svelte-language-server", 3 - "version": "0.16.13", 3 + "version": "0.16.14", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "svelte-language-server", 9 - "version": "0.16.13", 9 + "version": "0.16.14", 10 10 "license": "MIT", 11 11 "dependencies": { 12 12 "@jridgewell/trace-mapping": "^0.3.17", ··· 22 22 "svelte2tsx": "~0.7.0", 23 23 "typescript": "^5.5.2", 24 24 "typescript-auto-import-cache": "^0.3.3", 25 - "vscode-css-languageservice": "~6.2.10", 26 - "vscode-html-languageservice": "~5.1.1", 25 + "vscode-css-languageservice": "~6.3.0", 26 + "vscode-html-languageservice": "~5.3.0", 27 27 "vscode-languageserver": "8.0.2", 28 28 "vscode-languageserver-protocol": "3.17.2", 29 29 "vscode-languageserver-types": "3.17.2", ··· 100 100 } 101 101 }, 102 102 "node_modules/@jridgewell/sourcemap-codec": { 103 - "version": "1.4.15", 104 - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 105 - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 103 + "version": "1.5.0", 104 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 105 + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" 106 106 }, 107 107 "node_modules/@jridgewell/trace-mapping": { 108 108 "version": "0.3.25", ··· 211 211 "dev": true 212 212 }, 213 213 "node_modules/@types/lodash": { 214 - "version": "4.17.5", 215 - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.5.tgz", 216 - "integrity": "sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==", 214 + "version": "4.17.7", 215 + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz", 216 + "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==", 217 217 "dev": true 218 218 }, 219 219 "node_modules/@types/mocha": { ··· 223 223 "dev": true 224 224 }, 225 225 "node_modules/@types/node": { 226 - "version": "16.18.101", 227 - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.101.tgz", 228 - "integrity": "sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==", 226 + "version": "16.18.104", 227 + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.104.tgz", 228 + "integrity": "sha512-OF3keVCbfPlkzxnnDBUZJn1RiCJzKeadjiW0xTEb0G1SUJ5gDVb3qnzZr2T4uIFvsbKJbXy1v2DN7e2zaEY7jQ==", 229 229 "dev": true 230 230 }, 231 231 "node_modules/@types/prettier": { ··· 275 275 "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==" 276 276 }, 277 277 "node_modules/acorn": { 278 - "version": "8.12.0", 279 - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", 280 - "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", 278 + "version": "8.12.1", 279 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 280 + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 281 281 "dev": true, 282 282 "bin": { 283 283 "acorn": "bin/acorn" ··· 972 972 } 973 973 }, 974 974 "node_modules/magic-string": { 975 - "version": "0.30.10", 976 - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", 977 - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", 975 + "version": "0.30.11", 976 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", 977 + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", 978 978 "dependencies": { 979 - "@jridgewell/sourcemap-codec": "^1.4.15" 979 + "@jridgewell/sourcemap-codec": "^1.5.0" 980 980 } 981 981 }, 982 982 "node_modules/make-error": { ··· 1285 1285 } 1286 1286 }, 1287 1287 "node_modules/prettier-plugin-svelte": { 1288 - "version": "3.2.5", 1289 - "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.5.tgz", 1290 - "integrity": "sha512-vP/M/Goc8z4iVIvrwXwbrYVjJgA0Hf8PO1G4LBh/ocSt6vUP6sLvyu9F3ABEGr+dbKyxZjEKLkeFsWy/yYl0HQ==", 1288 + "version": "3.2.6", 1289 + "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.6.tgz", 1290 + "integrity": "sha512-Y1XWLw7vXUQQZmgv1JAEiLcErqUniAF2wO7QJsw8BVMvpLET2dI5WpEIEJx1r11iHVdSMzQxivyfrH9On9t2IQ==", 1291 1291 "peerDependencies": { 1292 1292 "prettier": "^3.0.0", 1293 1293 "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" ··· 1416 1416 } 1417 1417 }, 1418 1418 "node_modules/semver": { 1419 - "version": "7.6.2", 1420 - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 1421 - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 1419 + "version": "7.6.3", 1420 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 1421 + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 1422 1422 "bin": { 1423 1423 "semver": "bin/semver.js" 1424 1424 }, ··· 1635 1635 } 1636 1636 }, 1637 1637 "node_modules/svelte2tsx": { 1638 - "version": "0.7.13", 1639 - "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.13.tgz", 1640 - "integrity": "sha512-aObZ93/kGAiLXA/I/kP+x9FriZM+GboB/ReOIGmLNbVGEd2xC+aTCppm3mk1cc9I/z60VQf7b2QDxC3jOXu3yw==", 1638 + "version": "0.7.15", 1639 + "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.15.tgz", 1640 + "integrity": "sha512-91RbLJI448FR1UEZqXSS3ucVMERuWo8ACOhxfkBPK1CL2ocGMOC5bwc8tzFvb/Ji8NqZ7wmSGfvRebcUsiauKA==", 1641 1641 "dependencies": { 1642 1642 "dedent-js": "^1.0.1", 1643 1643 "pascal-case": "^3.1.1" ··· 1725 1725 } 1726 1726 }, 1727 1727 "node_modules/typescript": { 1728 - "version": "5.5.2", 1729 - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz", 1730 - "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==", 1728 + "version": "5.5.4", 1729 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", 1730 + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", 1731 1731 "bin": { 1732 1732 "tsc": "bin/tsc", 1733 1733 "tsserver": "bin/tsserver" ··· 1751 1751 "dev": true 1752 1752 }, 1753 1753 "node_modules/vscode-css-languageservice": { 1754 - "version": "6.2.14", 1755 - "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.2.14.tgz", 1756 - "integrity": "sha512-5UPQ9Y1sUTnuMyaMBpO7LrBkqjhEJb5eAwdUlDp+Uez8lry+Tspnk3+3p2qWS4LlNsr4p3v9WkZxUf1ltgFpgw==", 1754 + "version": "6.3.0", 1755 + "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.0.tgz", 1756 + "integrity": "sha512-nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==", 1757 1757 "dependencies": { 1758 1758 "@vscode/l10n": "^0.0.18", 1759 1759 "vscode-languageserver-textdocument": "^1.0.11", ··· 1767 1767 "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==" 1768 1768 }, 1769 1769 "node_modules/vscode-html-languageservice": { 1770 - "version": "5.1.2", 1771 - "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.1.2.tgz", 1772 - "integrity": "sha512-wkWfEx/IIR3s2P5yD4aTGHiOb8IAzFxgkSt1uSC3itJ4oDAm23yG7o0L29JljUdnXDDgLafPAvhv8A2I/8riHw==", 1770 + "version": "5.3.0", 1771 + "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.3.0.tgz", 1772 + "integrity": "sha512-C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==", 1773 1773 "dependencies": { 1774 1774 "@vscode/l10n": "^0.0.18", 1775 1775 "vscode-languageserver-textdocument": "^1.0.11", ··· 1811 1811 } 1812 1812 }, 1813 1813 "node_modules/vscode-languageserver-textdocument": { 1814 - "version": "1.0.11", 1815 - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", 1816 - "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==" 1814 + "version": "1.0.12", 1815 + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", 1816 + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==" 1817 1817 }, 1818 1818 "node_modules/vscode-languageserver-types": { 1819 1819 "version": "3.17.2",
+3 -3
pkgs/by-name/sv/svelte-language-server/package.nix
··· 3 3 , fetchurl 4 4 }: 5 5 let 6 - version = "0.16.13"; 6 + version = "0.16.14"; 7 7 in buildNpmPackage { 8 8 pname = "svelte-language-server"; 9 9 inherit version; 10 10 11 11 src = fetchurl { 12 12 url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-${version}.tgz"; 13 - hash = "sha256-BtKeYAFDxaGPvN3d/2Kt+ViNukfKV92c6K0W2qdQHjU="; 13 + hash = "sha256-vBnNrzjnWmlZZ1C5WO4VwlTI9+bNmxgFpLFzzExnW+U="; 14 14 }; 15 15 16 - npmDepsHash = "sha256-YG6gxXDfgaHevwO62EdhWTXXZq/plC7Mx9RKZNDyLqo="; 16 + npmDepsHash = "sha256-TiabvRCxMccsuIFm7t8vhXstX4WRSbndKnm1nKRmBfw="; 17 17 18 18 postPatch = '' 19 19 ln -s ${./package-lock.json} package-lock.json
+7 -3
pkgs/by-name/wa/walker/package.nix
··· 7 7 wrapGAppsHook4, 8 8 gtk4, 9 9 gtk4-layer-shell, 10 + nix-update-script, 10 11 }: 11 12 12 13 buildGoModule rec { 13 14 pname = "walker"; 14 - version = "0.0.88"; 15 + version = "0.6.7"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "abenz1267"; 18 19 repo = "walker"; 19 20 rev = "v${version}"; 20 - hash = "sha256-1y4lXKpaNUoxjFJNhGn3e6wn/IPXNqHFeSetfyKoAXE="; 21 + hash = "sha256-BuqxodieG5RUSXPkU1tFXiKtweM4uyJV71aIjh7GbVs="; 21 22 }; 22 23 23 - vendorHash = "sha256-zDntJ695k8dbwyFXbg9PapWD335MHrWbep1xxzXNIL4="; 24 + vendorHash = "sha256-2t6WXQ5XoDtnlhzc96KeJ2cx+8sVS1oy2z3tsIRGq1Y="; 25 + subPackages = [ "cmd/walker.go" ]; 26 + 27 + passthru.updateScript = nix-update-script { }; 24 28 25 29 nativeBuildInputs = [ 26 30 pkg-config
+2
pkgs/development/compilers/gcc/common/configure-flags.nix
··· 24 24 , langObjC 25 25 , langObjCpp 26 26 , langJit 27 + , langRust ? false 27 28 , disableBootstrap ? stdenv.targetPlatform != stdenv.hostPlatform 28 29 }: 29 30 ··· 171 172 ++ lib.optional langObjCpp "obj-c++" 172 173 ++ lib.optionals crossDarwin [ "objc" "obj-c++" ] 173 174 ++ lib.optional langJit "jit" 175 + ++ lib.optional langRust "rust" 174 176 ) 175 177 }" 176 178 ]
+3
pkgs/development/compilers/gcc/common/dependencies.nix
··· 31 31 , javaAwtGtk ? false 32 32 , langAda ? false 33 33 , langGo ? false 34 + , langRust ? false 35 + , cargo 34 36 , withoutTargetLibc ? null 35 37 , threadsCross ? null 36 38 }: ··· 53 55 ++ optionals javaAwtGtk [ pkg-config ] 54 56 ++ optionals (with stdenv.targetPlatform; isVc4 || isRedox && flex != null) [ flex ] 55 57 ++ optionals langAda [ gnat-bootstrap ] 58 + ++ optionals langRust [ cargo ] 56 59 # The builder relies on GNU sed (for instance, Darwin's `sed' fails with 57 60 # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. 58 61 ++ optionals buildPlatform.isDarwin [ gnused ]
+4
pkgs/development/compilers/gcc/default.nix
··· 8 8 , reproducibleBuild ? true 9 9 , profiledCompiler ? false 10 10 , langJit ? false 11 + , langRust ? false 12 + , cargo 11 13 , staticCompiler ? false 12 14 , enableShared ? stdenv.targetPlatform.hasSharedLibraries 13 15 , enableLTO ? stdenv.hostPlatform.hasSharedLibraries ··· 128 130 inherit 129 131 binutils 130 132 buildPackages 133 + cargo 131 134 cloog 132 135 withoutTargetLibc 133 136 darwin ··· 153 156 langJit 154 157 langObjC 155 158 langObjCpp 159 + langRust 156 160 lib 157 161 libcCross 158 162 libmpc
+2 -2
pkgs/development/interpreters/clojure/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "clojure"; 5 - version = "1.11.3.1463"; 5 + version = "1.11.4.1474"; 6 6 7 7 src = fetchurl { 8 8 # https://github.com/clojure/brew-install/releases 9 9 url = "https://github.com/clojure/brew-install/releases/download/${finalAttrs.version}/clojure-tools-${finalAttrs.version}.tar.gz"; 10 - hash = "sha256-26QZ3j54XztpW2WJ1xg0Gc+OwrsvmfK4iv0GsLV8FIc="; 10 + hash = "sha256-sNFDXvrHMrFgLrBHmbv3DKOXuNu6u1OqcmlqZNX/EAg="; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+1 -1
pkgs/development/interpreters/octave/default.nix
··· 204 204 inherit enableQt enableReadline enableJava; 205 205 buildEnv = callPackage ./build-env.nix { 206 206 octave = finalAttrs.finalPackage; 207 - inherit octavePackages wrapOctave; 207 + inherit wrapOctave; 208 208 inherit (octavePackages) computeRequiredOctavePackages; 209 209 }; 210 210 withPackages = import ./with-packages.nix { inherit buildEnv octavePackages; };
+12 -2
pkgs/development/interpreters/spidermonkey/common.nix
··· 14 14 , pkg-config 15 15 , python3 16 16 , python39 17 + , python311 17 18 , rustc 18 19 , which 19 20 , zip ··· 68 69 ] ++ lib.optionals (lib.versionAtLeast version "91" && lib.versionOlder version "102") [ 69 70 # Fix 91 compatibility with python311 70 71 (fetchpatch { 71 - url = "https://src.fedoraproject.org/rpms/mozjs91/raw/rawhide/f/0001-Python-Build-Use-r-instead-of-rU-file-read-modes.patch"; 72 + url = "https://src.fedoraproject.org/rpms/mozjs91/raw/e3729167646775e60a3d8c602c0412e04f206baf/f/0001-Python-Build-Use-r-instead-of-rU-file-read-modes.patch"; 72 73 hash = "sha256-WgDIBidB9XNQ/+HacK7jxWnjOF8PEUt5eB0+Aubtl48="; 73 74 }) 74 75 ]; ··· 79 80 perl 80 81 pkg-config 81 82 # 78 requires python up to 3.9 82 - (if lib.versionOlder version "91" then python39 else python3) 83 + # 91 does not build with python 3.12: ModuleNotFoundError: No module named 'six.moves' 84 + # 102 does not build with python 3.12: ModuleNotFoundError: No module named 'distutils' 85 + ( 86 + if lib.versionOlder version "91" then 87 + python39 88 + else if lib.versionOlder version "115" then 89 + python311 90 + else 91 + python3 92 + ) 83 93 rustc 84 94 rustc.llvmPackages.llvm # for llvm-objdump 85 95 which
+2 -2
pkgs/development/python-modules/aioopenexchangerates/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "aioopenexchangerates"; 16 - version = "0.4.14"; 16 + version = "0.4.15"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.9"; ··· 22 22 owner = "MartinHjelmare"; 23 23 repo = "aioopenexchangerates"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-tQPLGtz6lqwa61tpAm+O3+5EM9zJqZEyWh5TPHXBlag="; 25 + hash = "sha256-WKXxCa3wUTvLaN12EZE4l/hTTzSe291lnNLrspwUCs4="; 26 26 }; 27 27 28 28 postPatch = ''
+2 -2
pkgs/development/python-modules/miniaudio/default.nix
··· 24 24 in 25 25 buildPythonPackage rec { 26 26 pname = "miniaudio"; 27 - version = "1.60"; 27 + version = "1.61"; 28 28 pyproject = true; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "irmen"; 32 32 repo = "pyminiaudio"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-Bw9zq98RJmfp6KoZ43SNsh7vVrhUe6GNzcM4flxPJ60="; 34 + hash = "sha256-H3o2IWGuMqLrJTzQ7w636Ito6f57WBtMXpXXzrZ7UD8="; 35 35 }; 36 36 37 37 postPatch = ''
+50
pkgs/development/python-modules/mypermobil/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + aiocache, 7 + aiohttp, 8 + aiounittest, 9 + pytestCheckHook, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "mypermobil"; 14 + version = "0.1.8"; 15 + pyproject = true; 16 + 17 + src = fetchFromGitHub { 18 + owner = "Permobil-Software"; 19 + repo = "mypermobil"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-linnaRyA45EzqeSeNmvIE5gXkHA2F504U1++QBeRa90="; 22 + }; 23 + 24 + build-system = [ setuptools ]; 25 + 26 + dependencies = [ 27 + aiocache 28 + aiohttp 29 + ]; 30 + 31 + pythonImportsCheck = [ "mypermobil" ]; 32 + 33 + nativeCheckInputs = [ 34 + aiounittest 35 + pytestCheckHook 36 + ]; 37 + 38 + disabledTests = [ 39 + # requires networking 40 + "test_region" 41 + ]; 42 + 43 + meta = { 44 + changelog = "https://github.com/Permobil-Software/mypermobil/releases/tag/v${version}"; 45 + description = "Python wrapper for the MyPermobil API"; 46 + homepage = "https://github.com/Permobil-Software/mypermobil"; 47 + license = lib.licenses.mit; 48 + maintainers = with lib.maintainers; [ dotlambda ]; 49 + }; 50 + }
+4 -10
pkgs/development/python-modules/pyatv/default.nix
··· 44 44 45 45 postPatch = '' 46 46 substituteInPlace setup.py \ 47 - --replace "pytest-runner" "" 47 + --replace-fail "pytest-runner" "" 48 48 ''; 49 49 50 50 pythonRelaxDeps = [ ··· 62 62 "zeroconf" 63 63 ]; 64 64 65 - nativeBuildInputs = [ 66 - setuptools 67 - ]; 65 + build-system = [ setuptools ]; 68 66 69 - propagatedBuildInputs = [ 67 + dependencies = [ 70 68 aiohttp 71 69 async-timeout 72 70 chacha20poly1305-reuseable ··· 93 91 ]; 94 92 95 93 disabledTests = 96 - [ 97 - # https://github.com/postlund/pyatv/issues/2307 98 - "test_zeroconf_service_published" 99 - ] 100 - ++ lib.optionals (pythonAtLeast "3.12") [ 94 + lib.optionals (pythonAtLeast "3.12") [ 101 95 # https://github.com/postlund/pyatv/issues/2365 102 96 "test_simple_dispatch" 103 97 ]
+3 -3
pkgs/development/python-modules/python-hcl2/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "python-hcl2"; 14 - version = "4.3.4"; 14 + version = "4.3.5"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "amplify-education"; 19 19 repo = "python-hcl2"; 20 - rev = "v${version}"; 21 - hash = "sha256-P/EZG6LVW33X9IDE4TbQxakEfenkOqBJ1RM6BZE/7Kk="; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-Pz1FS1g0OYSThpxFcs6UCOAzGnF4kOuRwhx2KIl9sv4="; 22 22 }; 23 23 24 24 disabled = pythonOlder "3.7";
+3 -22
pkgs/development/python-modules/python-rapidjson/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 pythonOlder, 7 6 rapidjson, 8 7 pytestCheckHook, ··· 11 10 substituteAll, 12 11 }: 13 12 14 - let 15 - rapidjson' = rapidjson.overrideAttrs (old: { 16 - version = "unstable-2023-03-06"; 17 - src = fetchFromGitHub { 18 - owner = "Tencent"; 19 - repo = "rapidjson"; 20 - rev = "5e17dbed34eef33af8f3e734820b5dc547a2a3aa"; 21 - hash = "sha256-CTy42X6P6+Gz4WbJ3tCpAw3qqlJ+mU1PaWW9LGG+6nU="; 22 - }; 23 - patches = [ 24 - (fetchpatch { 25 - name = "do-not-include-gtest-src-dir.patch"; 26 - url = "https://git.alpinelinux.org/aports/plain/community/rapidjson/do-not-include-gtest-src-dir.patch?id=9e5eefc7a5fcf5938a8dc8a3be8c75e9e6809909"; 27 - hash = "sha256-BjSZEwfCXA/9V+kxQ/2JPWbc26jQn35CfN8+8NW24s4="; 28 - }) 29 - ]; 30 - }); 31 - in 32 13 buildPythonPackage rec { 33 - version = "1.18"; 14 + version = "1.20"; 34 15 pname = "python-rapidjson"; 35 16 disabled = pythonOlder "3.8"; 36 17 ··· 40 21 owner = "python-rapidjson"; 41 22 repo = "python-rapidjson"; 42 23 rev = "refs/tags/v${version}"; 43 - hash = "sha256-4gJm6EnT6YNg+EkkBPiPQ4TBGG/u+FZTK4bKWyqw1pM="; 24 + hash = "sha256-xIswmHQMl5pAqvcTNqeuO3P6MynKt3ahzUgGQroaqmw="; 44 25 }; 45 26 46 27 patches = [ 47 28 (substituteAll { 48 29 src = ./rapidjson-include-dir.patch; 49 - rapidjson = lib.getDev rapidjson'; 30 + rapidjson = lib.getDev rapidjson; 50 31 }) 51 32 ]; 52 33
+14 -8
pkgs/development/python-modules/pyturbojpeg/default.nix
··· 2 2 lib, 3 3 stdenv, 4 4 buildPythonPackage, 5 - fetchPypi, 5 + fetchFromGitHub, 6 6 libjpeg_turbo, 7 7 setuptools, 8 8 numpy, ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pyturbojpeg"; 15 - version = "1.7.3"; 15 + version = "1.7.5"; 16 16 pyproject = true; 17 17 18 - src = fetchPypi { 19 - pname = "PyTurboJPEG"; 20 - inherit version; 21 - hash = "sha256-edSOOrU0YVKP+4AJxCCYnQh6iewxVFTM1QmU88mukis="; 18 + src = fetchFromGitHub { 19 + owner = "lilohuang"; 20 + repo = "PyTurboJPEG"; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-HML56qnv//fSeXBcQC+nED/CNqUY9p8Hwrmd0EGCzx0="; 22 23 }; 23 24 24 25 patches = [ ··· 28 29 }) 29 30 ]; 30 31 31 - nativeBuildInputs = [ setuptools ]; 32 + build-system = [ setuptools ]; 32 33 33 - propagatedBuildInputs = [ numpy ]; 34 + dependencies = [ numpy ]; 34 35 35 36 # upstream has no tests, but we want to test whether the library is found 36 37 checkPhase = '' 38 + runHook preCheck 39 + 37 40 ${python.interpreter} -c 'from turbojpeg import TurboJPEG; TurboJPEG()' 41 + 42 + runHook postCheck 38 43 ''; 39 44 40 45 pythonImportsCheck = [ "turbojpeg" ]; 41 46 42 47 meta = with lib; { 48 + changelog = "https://github.com/lilohuang/PyTurboJPEG/releases/tag/v${version}"; 43 49 description = "Python wrapper of libjpeg-turbo for decoding and encoding JPEG image"; 44 50 homepage = "https://github.com/lilohuang/PyTurboJPEG"; 45 51 license = licenses.mit;
+2 -2
pkgs/development/python-modules/transitions/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "transitions"; 18 - version = "0.9.1"; 18 + version = "0.9.2"; 19 19 pyproject = true; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-NULDcQjpPirl8hUgjsVzLJSncpN4VKECzXNFuWf+5hs="; 23 + hash = "sha256-L4SQ29vUGTZs7xUWAyqwbQfMtYOe9UkF6EKkcmktQgQ="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+1 -1
pkgs/development/python-modules/whool/default.nix
··· 42 42 meta = { 43 43 description = "Standards-compliant Python build backend to package Odoo addons"; 44 44 homepage = "https://github.com/sbidoul/whool"; 45 - changelog = "https://github.com/sbidoul/whool/blob/${version}/CHANGELOG.md"; 45 + changelog = "https://github.com/sbidoul/whool/blob/v${version}/CHANGELOG.md"; 46 46 license = lib.licenses.mit; 47 47 maintainers = [ lib.maintainers.yajo ]; 48 48 };
+3 -3
pkgs/development/tools/bearer/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "bearer"; 11 - version = "1.45.2"; 11 + version = "1.46.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "bearer"; 15 15 repo = "bearer"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-eOeXNfBm0bDWS04pPkQODkX2Gm0i2TIgztcMEd4+HOI="; 17 + hash = "sha256-3zazf7dAw0dt+eZHirpKBQrB1BrOLCJokkvL3RxAdnw="; 18 18 }; 19 19 20 - vendorHash = "sha256-+PwkjmelmPEba7T6OJwuDdTr8Umw1GmNBIGDTSkWCeE="; 20 + vendorHash = "sha256-wlo8HZqbrBEcCzNms6PKNV7JjmwlL2vJ3bly12RrcB4="; 21 21 22 22 subPackages = [ "cmd/bearer" ]; 23 23
+2 -2
pkgs/development/tools/buildpack/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pack"; 5 - version = "0.35.0"; 5 + version = "0.35.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "buildpacks"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-Y6weRD3MrWEL/KYBMb/bJd6NKfcRELG+RQAhmh/gsuo="; 11 + hash = "sha256-iQkYtnobhAt73JMRrejk0DkOH1ZW2bqfZx05ZrDG5bA="; 12 12 }; 13 13 14 14 vendorHash = "sha256-gp6Hd0MZxtUX0yYshFIGwrm6yY2pdSOtUs6xmzXBqc4=";
pkgs/development/tools/mongosh/default.nix pkgs/by-name/mo/mongosh/package.nix
+393 -439
pkgs/development/tools/mongosh/package-lock.json pkgs/by-name/mo/mongosh/package-lock.json
··· 1 1 { 2 2 "name": "mongosh", 3 - "version": "2.2.12", 3 + "version": "2.2.15", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "mongosh", 9 - "version": "2.2.12", 9 + "version": "2.2.15", 10 10 "license": "Apache-2.0", 11 11 "dependencies": { 12 - "@mongosh/cli-repl": "2.2.12" 12 + "@mongosh/cli-repl": "2.2.15" 13 13 }, 14 14 "bin": { 15 15 "mongosh": "bin/mongosh.js" ··· 146 146 } 147 147 }, 148 148 "node_modules/@aws-sdk/client-cognito-identity": { 149 - "version": "3.616.0", 150 - "resolved": "https://registry.npmmirror.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.616.0.tgz", 151 - "integrity": "sha512-3yli0rchw7FuI8CmxUKW5z6TzrAJzBm9x+Se20Gqm0idXc2X2RT4Z8axtni5umBu8+4QWgNDZAr/WG6bR/JUGA==", 149 + "version": "3.621.0", 150 + "resolved": "https://registry.npmmirror.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.621.0.tgz", 151 + "integrity": "sha512-FpXia5qFf6ijcNDWenVq+mP9r1LbiW/+52i9wrv2+Afi6Nn1ROf8W7St8WvE9TEZ3t78y+vis4CwqfGts+uiKA==", 152 152 "dependencies": { 153 153 "@aws-crypto/sha256-browser": "5.2.0", 154 154 "@aws-crypto/sha256-js": "5.2.0", 155 - "@aws-sdk/client-sso-oidc": "3.616.0", 156 - "@aws-sdk/client-sts": "3.616.0", 157 - "@aws-sdk/core": "3.616.0", 158 - "@aws-sdk/credential-provider-node": "3.616.0", 159 - "@aws-sdk/middleware-host-header": "3.616.0", 155 + "@aws-sdk/client-sso-oidc": "3.621.0", 156 + "@aws-sdk/client-sts": "3.621.0", 157 + "@aws-sdk/core": "3.621.0", 158 + "@aws-sdk/credential-provider-node": "3.621.0", 159 + "@aws-sdk/middleware-host-header": "3.620.0", 160 160 "@aws-sdk/middleware-logger": "3.609.0", 161 - "@aws-sdk/middleware-recursion-detection": "3.616.0", 162 - "@aws-sdk/middleware-user-agent": "3.616.0", 161 + "@aws-sdk/middleware-recursion-detection": "3.620.0", 162 + "@aws-sdk/middleware-user-agent": "3.620.0", 163 163 "@aws-sdk/region-config-resolver": "3.614.0", 164 164 "@aws-sdk/types": "3.609.0", 165 165 "@aws-sdk/util-endpoints": "3.614.0", 166 166 "@aws-sdk/util-user-agent-browser": "3.609.0", 167 167 "@aws-sdk/util-user-agent-node": "3.614.0", 168 168 "@smithy/config-resolver": "^3.0.5", 169 - "@smithy/core": "^2.2.7", 170 - "@smithy/fetch-http-handler": "^3.2.2", 169 + "@smithy/core": "^2.3.1", 170 + "@smithy/fetch-http-handler": "^3.2.4", 171 171 "@smithy/hash-node": "^3.0.3", 172 172 "@smithy/invalid-dependency": "^3.0.3", 173 - "@smithy/middleware-content-length": "^3.0.4", 174 - "@smithy/middleware-endpoint": "^3.0.5", 175 - "@smithy/middleware-retry": "^3.0.10", 173 + "@smithy/middleware-content-length": "^3.0.5", 174 + "@smithy/middleware-endpoint": "^3.1.0", 175 + "@smithy/middleware-retry": "^3.0.13", 176 176 "@smithy/middleware-serde": "^3.0.3", 177 177 "@smithy/middleware-stack": "^3.0.3", 178 178 "@smithy/node-config-provider": "^3.1.4", 179 - "@smithy/node-http-handler": "^3.1.3", 180 - "@smithy/protocol-http": "^4.0.4", 181 - "@smithy/smithy-client": "^3.1.8", 179 + "@smithy/node-http-handler": "^3.1.4", 180 + "@smithy/protocol-http": "^4.1.0", 181 + "@smithy/smithy-client": "^3.1.11", 182 182 "@smithy/types": "^3.3.0", 183 183 "@smithy/url-parser": "^3.0.3", 184 184 "@smithy/util-base64": "^3.0.0", 185 185 "@smithy/util-body-length-browser": "^3.0.0", 186 186 "@smithy/util-body-length-node": "^3.0.0", 187 - "@smithy/util-defaults-mode-browser": "^3.0.10", 188 - "@smithy/util-defaults-mode-node": "^3.0.10", 187 + "@smithy/util-defaults-mode-browser": "^3.0.13", 188 + "@smithy/util-defaults-mode-node": "^3.0.13", 189 189 "@smithy/util-endpoints": "^2.0.5", 190 190 "@smithy/util-middleware": "^3.0.3", 191 191 "@smithy/util-retry": "^3.0.3", ··· 197 197 } 198 198 }, 199 199 "node_modules/@aws-sdk/client-sso": { 200 - "version": "3.616.0", 201 - "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sso/-/client-sso-3.616.0.tgz", 202 - "integrity": "sha512-hwW0u1f8U4dSloAe61/eupUiGd5Q13B72BuzGxvRk0cIpYX/2m0KBG8DDl7jW1b2QQ+CflTLpG2XUf2+vRJxGA==", 200 + "version": "3.621.0", 201 + "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz", 202 + "integrity": "sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA==", 203 203 "dependencies": { 204 204 "@aws-crypto/sha256-browser": "5.2.0", 205 205 "@aws-crypto/sha256-js": "5.2.0", 206 - "@aws-sdk/core": "3.616.0", 207 - "@aws-sdk/middleware-host-header": "3.616.0", 206 + "@aws-sdk/core": "3.621.0", 207 + "@aws-sdk/middleware-host-header": "3.620.0", 208 208 "@aws-sdk/middleware-logger": "3.609.0", 209 - "@aws-sdk/middleware-recursion-detection": "3.616.0", 210 - "@aws-sdk/middleware-user-agent": "3.616.0", 209 + "@aws-sdk/middleware-recursion-detection": "3.620.0", 210 + "@aws-sdk/middleware-user-agent": "3.620.0", 211 211 "@aws-sdk/region-config-resolver": "3.614.0", 212 212 "@aws-sdk/types": "3.609.0", 213 213 "@aws-sdk/util-endpoints": "3.614.0", 214 214 "@aws-sdk/util-user-agent-browser": "3.609.0", 215 215 "@aws-sdk/util-user-agent-node": "3.614.0", 216 216 "@smithy/config-resolver": "^3.0.5", 217 - "@smithy/core": "^2.2.7", 218 - "@smithy/fetch-http-handler": "^3.2.2", 217 + "@smithy/core": "^2.3.1", 218 + "@smithy/fetch-http-handler": "^3.2.4", 219 219 "@smithy/hash-node": "^3.0.3", 220 220 "@smithy/invalid-dependency": "^3.0.3", 221 - "@smithy/middleware-content-length": "^3.0.4", 222 - "@smithy/middleware-endpoint": "^3.0.5", 223 - "@smithy/middleware-retry": "^3.0.10", 221 + "@smithy/middleware-content-length": "^3.0.5", 222 + "@smithy/middleware-endpoint": "^3.1.0", 223 + "@smithy/middleware-retry": "^3.0.13", 224 224 "@smithy/middleware-serde": "^3.0.3", 225 225 "@smithy/middleware-stack": "^3.0.3", 226 226 "@smithy/node-config-provider": "^3.1.4", 227 - "@smithy/node-http-handler": "^3.1.3", 228 - "@smithy/protocol-http": "^4.0.4", 229 - "@smithy/smithy-client": "^3.1.8", 227 + "@smithy/node-http-handler": "^3.1.4", 228 + "@smithy/protocol-http": "^4.1.0", 229 + "@smithy/smithy-client": "^3.1.11", 230 230 "@smithy/types": "^3.3.0", 231 231 "@smithy/url-parser": "^3.0.3", 232 232 "@smithy/util-base64": "^3.0.0", 233 233 "@smithy/util-body-length-browser": "^3.0.0", 234 234 "@smithy/util-body-length-node": "^3.0.0", 235 - "@smithy/util-defaults-mode-browser": "^3.0.10", 236 - "@smithy/util-defaults-mode-node": "^3.0.10", 235 + "@smithy/util-defaults-mode-browser": "^3.0.13", 236 + "@smithy/util-defaults-mode-node": "^3.0.13", 237 237 "@smithy/util-endpoints": "^2.0.5", 238 238 "@smithy/util-middleware": "^3.0.3", 239 239 "@smithy/util-retry": "^3.0.3", ··· 245 245 } 246 246 }, 247 247 "node_modules/@aws-sdk/client-sso-oidc": { 248 - "version": "3.616.0", 249 - "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.616.0.tgz", 250 - "integrity": "sha512-YY1hpYS/G1uRGjQf88dL8VLHkP/IjGxKeXdhy+JnzMdCkAWl3V9j0fEALw40NZe0x79gr6R2KUOUH/IKYQfUmg==", 248 + "version": "3.621.0", 249 + "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz", 250 + "integrity": "sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg==", 251 251 "dependencies": { 252 252 "@aws-crypto/sha256-browser": "5.2.0", 253 253 "@aws-crypto/sha256-js": "5.2.0", 254 - "@aws-sdk/core": "3.616.0", 255 - "@aws-sdk/credential-provider-node": "3.616.0", 256 - "@aws-sdk/middleware-host-header": "3.616.0", 254 + "@aws-sdk/core": "3.621.0", 255 + "@aws-sdk/credential-provider-node": "3.621.0", 256 + "@aws-sdk/middleware-host-header": "3.620.0", 257 257 "@aws-sdk/middleware-logger": "3.609.0", 258 - "@aws-sdk/middleware-recursion-detection": "3.616.0", 259 - "@aws-sdk/middleware-user-agent": "3.616.0", 258 + "@aws-sdk/middleware-recursion-detection": "3.620.0", 259 + "@aws-sdk/middleware-user-agent": "3.620.0", 260 260 "@aws-sdk/region-config-resolver": "3.614.0", 261 261 "@aws-sdk/types": "3.609.0", 262 262 "@aws-sdk/util-endpoints": "3.614.0", 263 263 "@aws-sdk/util-user-agent-browser": "3.609.0", 264 264 "@aws-sdk/util-user-agent-node": "3.614.0", 265 265 "@smithy/config-resolver": "^3.0.5", 266 - "@smithy/core": "^2.2.7", 267 - "@smithy/fetch-http-handler": "^3.2.2", 266 + "@smithy/core": "^2.3.1", 267 + "@smithy/fetch-http-handler": "^3.2.4", 268 268 "@smithy/hash-node": "^3.0.3", 269 269 "@smithy/invalid-dependency": "^3.0.3", 270 - "@smithy/middleware-content-length": "^3.0.4", 271 - "@smithy/middleware-endpoint": "^3.0.5", 272 - "@smithy/middleware-retry": "^3.0.10", 270 + "@smithy/middleware-content-length": "^3.0.5", 271 + "@smithy/middleware-endpoint": "^3.1.0", 272 + "@smithy/middleware-retry": "^3.0.13", 273 273 "@smithy/middleware-serde": "^3.0.3", 274 274 "@smithy/middleware-stack": "^3.0.3", 275 275 "@smithy/node-config-provider": "^3.1.4", 276 - "@smithy/node-http-handler": "^3.1.3", 277 - "@smithy/protocol-http": "^4.0.4", 278 - "@smithy/smithy-client": "^3.1.8", 276 + "@smithy/node-http-handler": "^3.1.4", 277 + "@smithy/protocol-http": "^4.1.0", 278 + "@smithy/smithy-client": "^3.1.11", 279 279 "@smithy/types": "^3.3.0", 280 280 "@smithy/url-parser": "^3.0.3", 281 281 "@smithy/util-base64": "^3.0.0", 282 282 "@smithy/util-body-length-browser": "^3.0.0", 283 283 "@smithy/util-body-length-node": "^3.0.0", 284 - "@smithy/util-defaults-mode-browser": "^3.0.10", 285 - "@smithy/util-defaults-mode-node": "^3.0.10", 284 + "@smithy/util-defaults-mode-browser": "^3.0.13", 285 + "@smithy/util-defaults-mode-node": "^3.0.13", 286 286 "@smithy/util-endpoints": "^2.0.5", 287 287 "@smithy/util-middleware": "^3.0.3", 288 288 "@smithy/util-retry": "^3.0.3", ··· 293 293 "node": ">=16.0.0" 294 294 }, 295 295 "peerDependencies": { 296 - "@aws-sdk/client-sts": "^3.616.0" 296 + "@aws-sdk/client-sts": "^3.621.0" 297 297 } 298 298 }, 299 299 "node_modules/@aws-sdk/client-sts": { 300 - "version": "3.616.0", 301 - "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sts/-/client-sts-3.616.0.tgz", 302 - "integrity": "sha512-FP7i7hS5FpReqnysQP1ukQF1OUWy8lkomaOnbu15H415YUrfCp947SIx6+BItjmx+esKxPkEjh/fbCVzw2D6hQ==", 300 + "version": "3.621.0", 301 + "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz", 302 + "integrity": "sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA==", 303 303 "dependencies": { 304 304 "@aws-crypto/sha256-browser": "5.2.0", 305 305 "@aws-crypto/sha256-js": "5.2.0", 306 - "@aws-sdk/client-sso-oidc": "3.616.0", 307 - "@aws-sdk/core": "3.616.0", 308 - "@aws-sdk/credential-provider-node": "3.616.0", 309 - "@aws-sdk/middleware-host-header": "3.616.0", 306 + "@aws-sdk/client-sso-oidc": "3.621.0", 307 + "@aws-sdk/core": "3.621.0", 308 + "@aws-sdk/credential-provider-node": "3.621.0", 309 + "@aws-sdk/middleware-host-header": "3.620.0", 310 310 "@aws-sdk/middleware-logger": "3.609.0", 311 - "@aws-sdk/middleware-recursion-detection": "3.616.0", 312 - "@aws-sdk/middleware-user-agent": "3.616.0", 311 + "@aws-sdk/middleware-recursion-detection": "3.620.0", 312 + "@aws-sdk/middleware-user-agent": "3.620.0", 313 313 "@aws-sdk/region-config-resolver": "3.614.0", 314 314 "@aws-sdk/types": "3.609.0", 315 315 "@aws-sdk/util-endpoints": "3.614.0", 316 316 "@aws-sdk/util-user-agent-browser": "3.609.0", 317 317 "@aws-sdk/util-user-agent-node": "3.614.0", 318 318 "@smithy/config-resolver": "^3.0.5", 319 - "@smithy/core": "^2.2.7", 320 - "@smithy/fetch-http-handler": "^3.2.2", 319 + "@smithy/core": "^2.3.1", 320 + "@smithy/fetch-http-handler": "^3.2.4", 321 321 "@smithy/hash-node": "^3.0.3", 322 322 "@smithy/invalid-dependency": "^3.0.3", 323 - "@smithy/middleware-content-length": "^3.0.4", 324 - "@smithy/middleware-endpoint": "^3.0.5", 325 - "@smithy/middleware-retry": "^3.0.10", 323 + "@smithy/middleware-content-length": "^3.0.5", 324 + "@smithy/middleware-endpoint": "^3.1.0", 325 + "@smithy/middleware-retry": "^3.0.13", 326 326 "@smithy/middleware-serde": "^3.0.3", 327 327 "@smithy/middleware-stack": "^3.0.3", 328 328 "@smithy/node-config-provider": "^3.1.4", 329 - "@smithy/node-http-handler": "^3.1.3", 330 - "@smithy/protocol-http": "^4.0.4", 331 - "@smithy/smithy-client": "^3.1.8", 329 + "@smithy/node-http-handler": "^3.1.4", 330 + "@smithy/protocol-http": "^4.1.0", 331 + "@smithy/smithy-client": "^3.1.11", 332 332 "@smithy/types": "^3.3.0", 333 333 "@smithy/url-parser": "^3.0.3", 334 334 "@smithy/util-base64": "^3.0.0", 335 335 "@smithy/util-body-length-browser": "^3.0.0", 336 336 "@smithy/util-body-length-node": "^3.0.0", 337 - "@smithy/util-defaults-mode-browser": "^3.0.10", 338 - "@smithy/util-defaults-mode-node": "^3.0.10", 337 + "@smithy/util-defaults-mode-browser": "^3.0.13", 338 + "@smithy/util-defaults-mode-node": "^3.0.13", 339 339 "@smithy/util-endpoints": "^2.0.5", 340 340 "@smithy/util-middleware": "^3.0.3", 341 341 "@smithy/util-retry": "^3.0.3", ··· 347 347 } 348 348 }, 349 349 "node_modules/@aws-sdk/core": { 350 - "version": "3.616.0", 351 - "resolved": "https://registry.npmmirror.com/@aws-sdk/core/-/core-3.616.0.tgz", 352 - "integrity": "sha512-O/urkh2kECs/IqZIVZxyeyHZ7OR2ZWhLNK7btsVQBQvJKrEspLrk/Fp20Qfg5JDerQfBN83ZbyRXLJOOucdZpw==", 350 + "version": "3.621.0", 351 + "resolved": "https://registry.npmmirror.com/@aws-sdk/core/-/core-3.621.0.tgz", 352 + "integrity": "sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ==", 353 353 "dependencies": { 354 - "@smithy/core": "^2.2.7", 355 - "@smithy/protocol-http": "^4.0.4", 356 - "@smithy/signature-v4": "^4.0.0", 357 - "@smithy/smithy-client": "^3.1.8", 354 + "@smithy/core": "^2.3.1", 355 + "@smithy/node-config-provider": "^3.1.4", 356 + "@smithy/protocol-http": "^4.1.0", 357 + "@smithy/signature-v4": "^4.1.0", 358 + "@smithy/smithy-client": "^3.1.11", 358 359 "@smithy/types": "^3.3.0", 359 - "fast-xml-parser": "4.2.5", 360 + "@smithy/util-middleware": "^3.0.3", 361 + "fast-xml-parser": "4.4.1", 360 362 "tslib": "^2.6.2" 361 363 }, 362 364 "engines": { ··· 364 366 } 365 367 }, 366 368 "node_modules/@aws-sdk/credential-provider-cognito-identity": { 367 - "version": "3.616.0", 368 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.616.0.tgz", 369 - "integrity": "sha512-bcsf36gdGY2SpvTmoxd7t2235q+Rjg6xnTeCiKs9YuzbNezZ4FosqSORs7/vu2CvyaXWwV28909Q1boZ76v4TA==", 369 + "version": "3.621.0", 370 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.621.0.tgz", 371 + "integrity": "sha512-Q+3awvTVJSqIGRjCUQflRwKPKlZ0TfmL3EQHgFLhZZrToeBapEA62+FY+T70aTKAZZZZprlvYeFPtBloNd5ziA==", 370 372 "dependencies": { 371 - "@aws-sdk/client-cognito-identity": "3.616.0", 373 + "@aws-sdk/client-cognito-identity": "3.621.0", 372 374 "@aws-sdk/types": "3.609.0", 373 375 "@smithy/property-provider": "^3.1.3", 374 376 "@smithy/types": "^3.3.0", ··· 379 381 } 380 382 }, 381 383 "node_modules/@aws-sdk/credential-provider-env": { 382 - "version": "3.609.0", 383 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.609.0.tgz", 384 - "integrity": "sha512-v69ZCWcec2iuV9vLVJMa6fAb5xwkzN4jYIT8yjo2c4Ia/j976Q+TPf35Pnz5My48Xr94EFcaBazrWedF+kwfuQ==", 384 + "version": "3.620.1", 385 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz", 386 + "integrity": "sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg==", 385 387 "dependencies": { 386 388 "@aws-sdk/types": "3.609.0", 387 389 "@smithy/property-provider": "^3.1.3", ··· 393 395 } 394 396 }, 395 397 "node_modules/@aws-sdk/credential-provider-http": { 396 - "version": "3.616.0", 397 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.616.0.tgz", 398 - "integrity": "sha512-1rgCkr7XvEMBl7qWCo5BKu3yAxJs71dRaZ55Xnjte/0ZHH6Oc93ZrHzyYy6UH6t0nZrH+FAuw7Yko2YtDDwDeg==", 398 + "version": "3.621.0", 399 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz", 400 + "integrity": "sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg==", 399 401 "dependencies": { 400 402 "@aws-sdk/types": "3.609.0", 401 - "@smithy/fetch-http-handler": "^3.2.2", 402 - "@smithy/node-http-handler": "^3.1.3", 403 + "@smithy/fetch-http-handler": "^3.2.4", 404 + "@smithy/node-http-handler": "^3.1.4", 403 405 "@smithy/property-provider": "^3.1.3", 404 - "@smithy/protocol-http": "^4.0.4", 405 - "@smithy/smithy-client": "^3.1.8", 406 + "@smithy/protocol-http": "^4.1.0", 407 + "@smithy/smithy-client": "^3.1.11", 406 408 "@smithy/types": "^3.3.0", 407 - "@smithy/util-stream": "^3.1.0", 409 + "@smithy/util-stream": "^3.1.3", 408 410 "tslib": "^2.6.2" 409 411 }, 410 412 "engines": { ··· 412 414 } 413 415 }, 414 416 "node_modules/@aws-sdk/credential-provider-ini": { 415 - "version": "3.616.0", 416 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.616.0.tgz", 417 - "integrity": "sha512-5gQdMr9cca3xV7FF2SxpxWGH2t6+t4o+XBGiwsHm8muEjf4nUmw7Ij863x25Tjt2viPYV0UStczSb5Sihp7bkA==", 417 + "version": "3.621.0", 418 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz", 419 + "integrity": "sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA==", 418 420 "dependencies": { 419 - "@aws-sdk/credential-provider-env": "3.609.0", 420 - "@aws-sdk/credential-provider-http": "3.616.0", 421 - "@aws-sdk/credential-provider-process": "3.614.0", 422 - "@aws-sdk/credential-provider-sso": "3.616.0", 423 - "@aws-sdk/credential-provider-web-identity": "3.609.0", 421 + "@aws-sdk/credential-provider-env": "3.620.1", 422 + "@aws-sdk/credential-provider-http": "3.621.0", 423 + "@aws-sdk/credential-provider-process": "3.620.1", 424 + "@aws-sdk/credential-provider-sso": "3.621.0", 425 + "@aws-sdk/credential-provider-web-identity": "3.621.0", 424 426 "@aws-sdk/types": "3.609.0", 425 - "@smithy/credential-provider-imds": "^3.1.4", 427 + "@smithy/credential-provider-imds": "^3.2.0", 426 428 "@smithy/property-provider": "^3.1.3", 427 429 "@smithy/shared-ini-file-loader": "^3.1.4", 428 430 "@smithy/types": "^3.3.0", ··· 432 434 "node": ">=16.0.0" 433 435 }, 434 436 "peerDependencies": { 435 - "@aws-sdk/client-sts": "^3.616.0" 437 + "@aws-sdk/client-sts": "^3.621.0" 436 438 } 437 439 }, 438 440 "node_modules/@aws-sdk/credential-provider-node": { 439 - "version": "3.616.0", 440 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.616.0.tgz", 441 - "integrity": "sha512-Se+u6DAxjDPjKE3vX1X2uxjkWgGq69BTo0uTB0vDUiWwBVgh16s9BsBhSAlKEH1CCbbJHvOg4YdTrzjwzqyClg==", 441 + "version": "3.621.0", 442 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz", 443 + "integrity": "sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw==", 442 444 "dependencies": { 443 - "@aws-sdk/credential-provider-env": "3.609.0", 444 - "@aws-sdk/credential-provider-http": "3.616.0", 445 - "@aws-sdk/credential-provider-ini": "3.616.0", 446 - "@aws-sdk/credential-provider-process": "3.614.0", 447 - "@aws-sdk/credential-provider-sso": "3.616.0", 448 - "@aws-sdk/credential-provider-web-identity": "3.609.0", 445 + "@aws-sdk/credential-provider-env": "3.620.1", 446 + "@aws-sdk/credential-provider-http": "3.621.0", 447 + "@aws-sdk/credential-provider-ini": "3.621.0", 448 + "@aws-sdk/credential-provider-process": "3.620.1", 449 + "@aws-sdk/credential-provider-sso": "3.621.0", 450 + "@aws-sdk/credential-provider-web-identity": "3.621.0", 449 451 "@aws-sdk/types": "3.609.0", 450 - "@smithy/credential-provider-imds": "^3.1.4", 452 + "@smithy/credential-provider-imds": "^3.2.0", 451 453 "@smithy/property-provider": "^3.1.3", 452 454 "@smithy/shared-ini-file-loader": "^3.1.4", 453 455 "@smithy/types": "^3.3.0", ··· 458 460 } 459 461 }, 460 462 "node_modules/@aws-sdk/credential-provider-process": { 461 - "version": "3.614.0", 462 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.614.0.tgz", 463 - "integrity": "sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==", 463 + "version": "3.620.1", 464 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz", 465 + "integrity": "sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg==", 464 466 "dependencies": { 465 467 "@aws-sdk/types": "3.609.0", 466 468 "@smithy/property-provider": "^3.1.3", ··· 473 475 } 474 476 }, 475 477 "node_modules/@aws-sdk/credential-provider-sso": { 476 - "version": "3.616.0", 477 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.616.0.tgz", 478 - "integrity": "sha512-3rsWs9GBi8Z8Gps5ROwqguxtw+J6OIg1vawZMLRNMqqZoBvbOToe9wEnpid8ylU+27+oG8uibJNlNuRyXApUjw==", 478 + "version": "3.621.0", 479 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz", 480 + "integrity": "sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw==", 479 481 "dependencies": { 480 - "@aws-sdk/client-sso": "3.616.0", 482 + "@aws-sdk/client-sso": "3.621.0", 481 483 "@aws-sdk/token-providers": "3.614.0", 482 484 "@aws-sdk/types": "3.609.0", 483 485 "@smithy/property-provider": "^3.1.3", ··· 490 492 } 491 493 }, 492 494 "node_modules/@aws-sdk/credential-provider-web-identity": { 493 - "version": "3.609.0", 494 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.609.0.tgz", 495 - "integrity": "sha512-U+PG8NhlYYF45zbr1km3ROtBMYqyyj/oK8NRp++UHHeuavgrP+4wJ4wQnlEaKvJBjevfo3+dlIBcaeQ7NYejWg==", 495 + "version": "3.621.0", 496 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz", 497 + "integrity": "sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w==", 496 498 "dependencies": { 497 499 "@aws-sdk/types": "3.609.0", 498 500 "@smithy/property-provider": "^3.1.3", ··· 503 505 "node": ">=16.0.0" 504 506 }, 505 507 "peerDependencies": { 506 - "@aws-sdk/client-sts": "^3.609.0" 508 + "@aws-sdk/client-sts": "^3.621.0" 507 509 } 508 510 }, 509 511 "node_modules/@aws-sdk/credential-providers": { 510 - "version": "3.616.0", 511 - "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-providers/-/credential-providers-3.616.0.tgz", 512 - "integrity": "sha512-uyscpYV21lr24FNFu8ZkIKzOCD/xoysRci9HmShtKBY/FixwZRlLv7aUpqH7xcLd7sgsQwa2UD/7s9PKj/DXSg==", 512 + "version": "3.621.0", 513 + "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-providers/-/credential-providers-3.621.0.tgz", 514 + "integrity": "sha512-FQbC7I8ae/72ZekLBa45jWJ+Q3d+YPhc3bW/rCks6RrldM6RgLTGr8pTOPCxHl828ky10RjkBiBmVU818rliyw==", 513 515 "dependencies": { 514 - "@aws-sdk/client-cognito-identity": "3.616.0", 515 - "@aws-sdk/client-sso": "3.616.0", 516 - "@aws-sdk/client-sts": "3.616.0", 517 - "@aws-sdk/credential-provider-cognito-identity": "3.616.0", 518 - "@aws-sdk/credential-provider-env": "3.609.0", 519 - "@aws-sdk/credential-provider-http": "3.616.0", 520 - "@aws-sdk/credential-provider-ini": "3.616.0", 521 - "@aws-sdk/credential-provider-node": "3.616.0", 522 - "@aws-sdk/credential-provider-process": "3.614.0", 523 - "@aws-sdk/credential-provider-sso": "3.616.0", 524 - "@aws-sdk/credential-provider-web-identity": "3.609.0", 516 + "@aws-sdk/client-cognito-identity": "3.621.0", 517 + "@aws-sdk/client-sso": "3.621.0", 518 + "@aws-sdk/client-sts": "3.621.0", 519 + "@aws-sdk/credential-provider-cognito-identity": "3.621.0", 520 + "@aws-sdk/credential-provider-env": "3.620.1", 521 + "@aws-sdk/credential-provider-http": "3.621.0", 522 + "@aws-sdk/credential-provider-ini": "3.621.0", 523 + "@aws-sdk/credential-provider-node": "3.621.0", 524 + "@aws-sdk/credential-provider-process": "3.620.1", 525 + "@aws-sdk/credential-provider-sso": "3.621.0", 526 + "@aws-sdk/credential-provider-web-identity": "3.621.0", 525 527 "@aws-sdk/types": "3.609.0", 526 - "@smithy/credential-provider-imds": "^3.1.4", 528 + "@smithy/credential-provider-imds": "^3.2.0", 527 529 "@smithy/property-provider": "^3.1.3", 528 530 "@smithy/types": "^3.3.0", 529 531 "tslib": "^2.6.2" ··· 533 535 } 534 536 }, 535 537 "node_modules/@aws-sdk/middleware-host-header": { 536 - "version": "3.616.0", 537 - "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.616.0.tgz", 538 - "integrity": "sha512-mhNfHuGhCDZwYCABebaOvTgOM44UCZZRq2cBpgPZLVKP0ydAv5aFHXv01goexxXHqgHoEGx0uXWxlw0s2EpFDg==", 538 + "version": "3.620.0", 539 + "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz", 540 + "integrity": "sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg==", 539 541 "dependencies": { 540 542 "@aws-sdk/types": "3.609.0", 541 - "@smithy/protocol-http": "^4.0.4", 543 + "@smithy/protocol-http": "^4.1.0", 542 544 "@smithy/types": "^3.3.0", 543 545 "tslib": "^2.6.2" 544 546 }, ··· 560 562 } 561 563 }, 562 564 "node_modules/@aws-sdk/middleware-recursion-detection": { 563 - "version": "3.616.0", 564 - "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.616.0.tgz", 565 - "integrity": "sha512-LQKAcrZRrR9EGez4fdCIVjdn0Ot2HMN12ChnoMGEU6oIxnQ2aSC7iASFFCV39IYfeMh7iSCPj7Wopqw8rAouzg==", 565 + "version": "3.620.0", 566 + "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz", 567 + "integrity": "sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w==", 566 568 "dependencies": { 567 569 "@aws-sdk/types": "3.609.0", 568 - "@smithy/protocol-http": "^4.0.4", 570 + "@smithy/protocol-http": "^4.1.0", 569 571 "@smithy/types": "^3.3.0", 570 572 "tslib": "^2.6.2" 571 573 }, ··· 574 576 } 575 577 }, 576 578 "node_modules/@aws-sdk/middleware-user-agent": { 577 - "version": "3.616.0", 578 - "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.616.0.tgz", 579 - "integrity": "sha512-iMcAb4E+Z3vuEcrDsG6T2OBNiqWAquwahP9qepHqfmnmJqHr1mSHtXDYTGBNid31+621sUQmneUQ+fagpGAe4w==", 579 + "version": "3.620.0", 580 + "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz", 581 + "integrity": "sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A==", 580 582 "dependencies": { 581 583 "@aws-sdk/types": "3.609.0", 582 584 "@aws-sdk/util-endpoints": "3.614.0", 583 - "@smithy/protocol-http": "^4.0.4", 585 + "@smithy/protocol-http": "^4.1.0", 584 586 "@smithy/types": "^3.3.0", 585 587 "tslib": "^2.6.2" 586 588 }, ··· 705 707 } 706 708 }, 707 709 "node_modules/@babel/compat-data": { 708 - "version": "7.24.9", 709 - "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.24.9.tgz", 710 - "integrity": "sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==", 710 + "version": "7.25.2", 711 + "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.25.2.tgz", 712 + "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", 711 713 "engines": { 712 714 "node": ">=6.9.0" 713 715 } 714 716 }, 715 717 "node_modules/@babel/core": { 716 - "version": "7.24.9", 717 - "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.24.9.tgz", 718 - "integrity": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==", 718 + "version": "7.25.2", 719 + "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.25.2.tgz", 720 + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", 719 721 "dependencies": { 720 722 "@ampproject/remapping": "^2.2.0", 721 723 "@babel/code-frame": "^7.24.7", 722 - "@babel/generator": "^7.24.9", 723 - "@babel/helper-compilation-targets": "^7.24.8", 724 - "@babel/helper-module-transforms": "^7.24.9", 725 - "@babel/helpers": "^7.24.8", 726 - "@babel/parser": "^7.24.8", 727 - "@babel/template": "^7.24.7", 728 - "@babel/traverse": "^7.24.8", 729 - "@babel/types": "^7.24.9", 724 + "@babel/generator": "^7.25.0", 725 + "@babel/helper-compilation-targets": "^7.25.2", 726 + "@babel/helper-module-transforms": "^7.25.2", 727 + "@babel/helpers": "^7.25.0", 728 + "@babel/parser": "^7.25.0", 729 + "@babel/template": "^7.25.0", 730 + "@babel/traverse": "^7.25.2", 731 + "@babel/types": "^7.25.2", 730 732 "convert-source-map": "^2.0.0", 731 733 "debug": "^4.1.0", 732 734 "gensync": "^1.0.0-beta.2", ··· 750 752 } 751 753 }, 752 754 "node_modules/@babel/generator": { 753 - "version": "7.24.10", 754 - "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.24.10.tgz", 755 - "integrity": "sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==", 755 + "version": "7.25.0", 756 + "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.25.0.tgz", 757 + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", 756 758 "dependencies": { 757 - "@babel/types": "^7.24.9", 759 + "@babel/types": "^7.25.0", 758 760 "@jridgewell/gen-mapping": "^0.3.5", 759 761 "@jridgewell/trace-mapping": "^0.3.25", 760 762 "jsesc": "^2.5.1" ··· 764 766 } 765 767 }, 766 768 "node_modules/@babel/helper-compilation-targets": { 767 - "version": "7.24.8", 768 - "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz", 769 - "integrity": "sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==", 769 + "version": "7.25.2", 770 + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", 771 + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", 770 772 "dependencies": { 771 - "@babel/compat-data": "^7.24.8", 773 + "@babel/compat-data": "^7.25.2", 772 774 "@babel/helper-validator-option": "^7.24.8", 773 775 "browserslist": "^4.23.1", 774 776 "lru-cache": "^5.1.1", ··· 786 788 "semver": "bin/semver.js" 787 789 } 788 790 }, 789 - "node_modules/@babel/helper-environment-visitor": { 790 - "version": "7.24.7", 791 - "resolved": "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", 792 - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", 793 - "dependencies": { 794 - "@babel/types": "^7.24.7" 795 - }, 796 - "engines": { 797 - "node": ">=6.9.0" 798 - } 799 - }, 800 - "node_modules/@babel/helper-function-name": { 801 - "version": "7.24.7", 802 - "resolved": "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", 803 - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", 804 - "dependencies": { 805 - "@babel/template": "^7.24.7", 806 - "@babel/types": "^7.24.7" 807 - }, 808 - "engines": { 809 - "node": ">=6.9.0" 810 - } 811 - }, 812 - "node_modules/@babel/helper-hoist-variables": { 813 - "version": "7.24.7", 814 - "resolved": "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", 815 - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", 816 - "dependencies": { 817 - "@babel/types": "^7.24.7" 818 - }, 819 - "engines": { 820 - "node": ">=6.9.0" 821 - } 822 - }, 823 791 "node_modules/@babel/helper-module-imports": { 824 792 "version": "7.24.7", 825 793 "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", ··· 833 801 } 834 802 }, 835 803 "node_modules/@babel/helper-module-transforms": { 836 - "version": "7.24.9", 837 - "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.9.tgz", 838 - "integrity": "sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==", 804 + "version": "7.25.2", 805 + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", 806 + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", 839 807 "dependencies": { 840 - "@babel/helper-environment-visitor": "^7.24.7", 841 808 "@babel/helper-module-imports": "^7.24.7", 842 809 "@babel/helper-simple-access": "^7.24.7", 843 - "@babel/helper-split-export-declaration": "^7.24.7", 844 - "@babel/helper-validator-identifier": "^7.24.7" 810 + "@babel/helper-validator-identifier": "^7.24.7", 811 + "@babel/traverse": "^7.25.2" 845 812 }, 846 813 "engines": { 847 814 "node": ">=6.9.0" ··· 870 837 "node": ">=6.9.0" 871 838 } 872 839 }, 873 - "node_modules/@babel/helper-split-export-declaration": { 874 - "version": "7.24.7", 875 - "resolved": "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", 876 - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", 877 - "dependencies": { 878 - "@babel/types": "^7.24.7" 879 - }, 880 - "engines": { 881 - "node": ">=6.9.0" 882 - } 883 - }, 884 840 "node_modules/@babel/helper-string-parser": { 885 841 "version": "7.24.8", 886 842 "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", ··· 906 862 } 907 863 }, 908 864 "node_modules/@babel/helpers": { 909 - "version": "7.24.8", 910 - "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.24.8.tgz", 911 - "integrity": "sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==", 865 + "version": "7.25.0", 866 + "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.25.0.tgz", 867 + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", 912 868 "dependencies": { 913 - "@babel/template": "^7.24.7", 914 - "@babel/types": "^7.24.8" 869 + "@babel/template": "^7.25.0", 870 + "@babel/types": "^7.25.0" 915 871 }, 916 872 "engines": { 917 873 "node": ">=6.9.0" ··· 932 888 } 933 889 }, 934 890 "node_modules/@babel/parser": { 935 - "version": "7.24.8", 936 - "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.24.8.tgz", 937 - "integrity": "sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==", 891 + "version": "7.25.0", 892 + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.25.0.tgz", 893 + "integrity": "sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==", 938 894 "bin": { 939 895 "parser": "bin/babel-parser.js" 940 896 }, ··· 985 941 } 986 942 }, 987 943 "node_modules/@babel/template": { 988 - "version": "7.24.7", 989 - "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.24.7.tgz", 990 - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", 944 + "version": "7.25.0", 945 + "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.25.0.tgz", 946 + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", 991 947 "dependencies": { 992 948 "@babel/code-frame": "^7.24.7", 993 - "@babel/parser": "^7.24.7", 994 - "@babel/types": "^7.24.7" 949 + "@babel/parser": "^7.25.0", 950 + "@babel/types": "^7.25.0" 995 951 }, 996 952 "engines": { 997 953 "node": ">=6.9.0" 998 954 } 999 955 }, 1000 956 "node_modules/@babel/traverse": { 1001 - "version": "7.24.8", 1002 - "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.24.8.tgz", 1003 - "integrity": "sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==", 957 + "version": "7.25.2", 958 + "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.25.2.tgz", 959 + "integrity": "sha512-s4/r+a7xTnny2O6FcZzqgT6nE4/GHEdcqj4qAeglbUOh0TeglEfmNJFAd/OLoVtGd6ZhAO8GCVvCNUO5t/VJVQ==", 1004 960 "dependencies": { 1005 961 "@babel/code-frame": "^7.24.7", 1006 - "@babel/generator": "^7.24.8", 1007 - "@babel/helper-environment-visitor": "^7.24.7", 1008 - "@babel/helper-function-name": "^7.24.7", 1009 - "@babel/helper-hoist-variables": "^7.24.7", 1010 - "@babel/helper-split-export-declaration": "^7.24.7", 1011 - "@babel/parser": "^7.24.8", 1012 - "@babel/types": "^7.24.8", 962 + "@babel/generator": "^7.25.0", 963 + "@babel/parser": "^7.25.0", 964 + "@babel/template": "^7.25.0", 965 + "@babel/types": "^7.25.2", 1013 966 "debug": "^4.3.1", 1014 967 "globals": "^11.1.0" 1015 968 }, ··· 1018 971 } 1019 972 }, 1020 973 "node_modules/@babel/types": { 1021 - "version": "7.24.9", 1022 - "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.24.9.tgz", 1023 - "integrity": "sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==", 974 + "version": "7.25.2", 975 + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.25.2.tgz", 976 + "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", 1024 977 "dependencies": { 1025 978 "@babel/helper-string-parser": "^7.24.8", 1026 979 "@babel/helper-validator-identifier": "^7.24.7", ··· 1183 1136 "integrity": "sha512-YcRlJ/HkKMahWvaPFTN/al5MGGX6CKQTsBHFTpNduxmeHd40jO8Cj5W7dfrqJAoit5E/G+GOwMaEfWdNrdlihg==" 1184 1137 }, 1185 1138 "node_modules/@mongodb-js/oidc-plugin": { 1186 - "version": "1.0.2", 1187 - "resolved": "https://registry.npmmirror.com/@mongodb-js/oidc-plugin/-/oidc-plugin-1.0.2.tgz", 1188 - "integrity": "sha512-hwTbkmJ31RPB5ksA6pLepnaQOBz6iurE+uH89B1IIJdxVuiO0Qz+OqpTN8vk8LZzcVDb/WbNoxqxogCWwMqFKw==", 1139 + "version": "1.1.0", 1140 + "resolved": "https://registry.npmmirror.com/@mongodb-js/oidc-plugin/-/oidc-plugin-1.1.0.tgz", 1141 + "integrity": "sha512-edf5cMYpuJHfbxAyc6d0fDxeO3bE50w9vagi4NDfUH+Pz3gVN4Uj7rQUYCKMwjuKVE8hxyVqTgd0oSYAqsLjmA==", 1189 1142 "dependencies": { 1190 1143 "express": "^4.18.2", 1191 1144 "open": "^9.1.0", ··· 1204 1157 } 1205 1158 }, 1206 1159 "node_modules/@mongosh/arg-parser": { 1207 - "version": "2.2.12", 1208 - "resolved": "https://registry.npmmirror.com/@mongosh/arg-parser/-/arg-parser-2.2.12.tgz", 1209 - "integrity": "sha512-JayM6b5QnSMopt484MMD3u9uPtjNLlmTNlkbBSYxtTYpvom2WHGdrHmb1dQ50cPZ6sidH5aQ25MlzyYxcaopxQ==", 1160 + "version": "2.2.15", 1161 + "resolved": "https://registry.npmmirror.com/@mongosh/arg-parser/-/arg-parser-2.2.15.tgz", 1162 + "integrity": "sha512-KGYiw5bl8cv6wDSrTCDF1B2PjddPhiD5BkulXvgpkfuD5bB2zTJSgpx+EGGcD60OSDRnMdk0tu9AY8uIExtNvA==", 1210 1163 "dependencies": { 1211 - "@mongosh/errors": "2.2.12", 1212 - "@mongosh/i18n": "2.2.12", 1164 + "@mongosh/errors": "2.2.15", 1165 + "@mongosh/i18n": "2.2.15", 1213 1166 "mongodb-connection-string-url": "^3.0.1" 1214 1167 }, 1215 1168 "engines": { ··· 1217 1170 } 1218 1171 }, 1219 1172 "node_modules/@mongosh/async-rewriter2": { 1220 - "version": "2.2.12", 1221 - "resolved": "https://registry.npmmirror.com/@mongosh/async-rewriter2/-/async-rewriter2-2.2.12.tgz", 1222 - "integrity": "sha512-BNZYYpfLiiX+Z+9Svf0OtxuW6lHCvdn4rjSZkdOgUQMYI93I897aW3HmDRhde5yMF/QMaT7STBjmBvC2TXAkCQ==", 1173 + "version": "2.2.15", 1174 + "resolved": "https://registry.npmmirror.com/@mongosh/async-rewriter2/-/async-rewriter2-2.2.15.tgz", 1175 + "integrity": "sha512-y7LyjulLYe0QodRa4YIpvpHt23VQWrFGx4C5AD3IVVFhgNd0yxg2bWLIMaFsM7wwgbGJU3BxnVecAnHOgiuRHg==", 1223 1176 "dependencies": { 1224 1177 "@babel/core": "^7.22.8", 1225 1178 "@babel/plugin-transform-destructuring": "^7.22.5", ··· 1235 1188 } 1236 1189 }, 1237 1190 "node_modules/@mongosh/autocomplete": { 1238 - "version": "2.2.12", 1239 - "resolved": "https://registry.npmmirror.com/@mongosh/autocomplete/-/autocomplete-2.2.12.tgz", 1240 - "integrity": "sha512-LFB4eFN2jH9q6ZAN3kt3ZdKjLBNJ8dqgagKV3IDM6gc9bQRxaI53MUWDxwUqA0xLFLLe7nchjmlQqOgo6nvH1g==", 1191 + "version": "2.2.15", 1192 + "resolved": "https://registry.npmmirror.com/@mongosh/autocomplete/-/autocomplete-2.2.15.tgz", 1193 + "integrity": "sha512-R1rZVWLNmlOsOVGoHCdAxB0mx7J1A4ElPvzRBWcPW+PSEzlTT/9j0AT87exK/jjUE8ZnkzUw/soh4tqFQIjwAA==", 1241 1194 "dependencies": { 1242 1195 "@mongodb-js/mongodb-constants": "^0.10.1", 1243 - "@mongosh/shell-api": "2.2.12", 1196 + "@mongosh/shell-api": "2.2.15", 1244 1197 "semver": "^7.5.4" 1245 1198 }, 1246 1199 "engines": { ··· 1248 1201 } 1249 1202 }, 1250 1203 "node_modules/@mongosh/cli-repl": { 1251 - "version": "2.2.12", 1252 - "resolved": "https://registry.npmmirror.com/@mongosh/cli-repl/-/cli-repl-2.2.12.tgz", 1253 - "integrity": "sha512-QukyHafcVX7dOut4HufM8c3PNuXJxkJcC7OylgzajubZzlUwyLNQSM7GAZBahx4tXjyzpe7hvHdhNdFMlvIUCA==", 1204 + "version": "2.2.15", 1205 + "resolved": "https://registry.npmmirror.com/@mongosh/cli-repl/-/cli-repl-2.2.15.tgz", 1206 + "integrity": "sha512-bpNQkJBTCY6Sj4iFveG+5S35vOUzaqw+nRd7PmJ0a5PQ4mE/qkaAUG1cUEYB/y2HJeK2SHQLiBqNlDtsekFhvg==", 1254 1207 "dependencies": { 1255 - "@mongosh/arg-parser": "2.2.12", 1256 - "@mongosh/autocomplete": "2.2.12", 1257 - "@mongosh/editor": "2.2.12", 1258 - "@mongosh/errors": "2.2.12", 1259 - "@mongosh/history": "2.2.12", 1260 - "@mongosh/i18n": "2.2.12", 1261 - "@mongosh/import-node-fetch": "2.2.12", 1262 - "@mongosh/js-multiline-to-singleline": "2.2.12", 1263 - "@mongosh/logging": "2.2.12", 1264 - "@mongosh/service-provider-core": "2.2.12", 1265 - "@mongosh/service-provider-server": "2.2.12", 1266 - "@mongosh/shell-api": "2.2.12", 1267 - "@mongosh/shell-evaluator": "2.2.12", 1268 - "@mongosh/snippet-manager": "2.2.12", 1269 - "@mongosh/types": "2.2.12", 1208 + "@mongosh/arg-parser": "2.2.15", 1209 + "@mongosh/autocomplete": "2.2.15", 1210 + "@mongosh/editor": "2.2.15", 1211 + "@mongosh/errors": "2.2.15", 1212 + "@mongosh/history": "2.2.15", 1213 + "@mongosh/i18n": "2.2.15", 1214 + "@mongosh/import-node-fetch": "2.2.15", 1215 + "@mongosh/js-multiline-to-singleline": "2.2.15", 1216 + "@mongosh/logging": "2.2.15", 1217 + "@mongosh/service-provider-core": "2.2.15", 1218 + "@mongosh/service-provider-server": "2.2.15", 1219 + "@mongosh/shell-api": "2.2.15", 1220 + "@mongosh/shell-evaluator": "2.2.15", 1221 + "@mongosh/snippet-manager": "2.2.15", 1222 + "@mongosh/types": "2.2.15", 1270 1223 "@segment/analytics-node": "^1.3.0", 1271 1224 "ansi-escape-sequences": "^5.1.2", 1272 1225 "askcharacter": "^2.0.4", ··· 1295 1248 "glibc-version": "^1.0.0", 1296 1249 "macos-export-certificate-and-key": "^1.1.2", 1297 1250 "mongodb-crypt-library-version": "^1.0.5", 1298 - "win-export-certificate-and-key": "^2.0.0" 1251 + "win-export-certificate-and-key": "^2.0.1" 1299 1252 } 1300 1253 }, 1301 1254 "node_modules/@mongosh/editor": { 1302 - "version": "2.2.12", 1303 - "resolved": "https://registry.npmmirror.com/@mongosh/editor/-/editor-2.2.12.tgz", 1304 - "integrity": "sha512-+9NSkCNmx0xseTcSVPKH5XptlYbDV0MFq6cxspU7YLfQGHI85fvjr73Oo51Ih9TDynI9CMXZzVV5Cpy1omo7SQ==", 1255 + "version": "2.2.15", 1256 + "resolved": "https://registry.npmmirror.com/@mongosh/editor/-/editor-2.2.15.tgz", 1257 + "integrity": "sha512-7KB5kLibRTFBsJfVahsYzuoRnXbQatkM9JahSshPgdpLqXW+42l8CHsW6J1EadrCFS9oxjOxLCZJ1xN4elx5RQ==", 1305 1258 "dependencies": { 1306 - "@mongosh/js-multiline-to-singleline": "2.2.12", 1307 - "@mongosh/service-provider-core": "2.2.12", 1308 - "@mongosh/shell-api": "2.2.12", 1309 - "@mongosh/shell-evaluator": "2.2.12", 1310 - "@mongosh/types": "2.2.12", 1259 + "@mongosh/js-multiline-to-singleline": "2.2.15", 1260 + "@mongosh/service-provider-core": "2.2.15", 1261 + "@mongosh/shell-api": "2.2.15", 1262 + "@mongosh/shell-evaluator": "2.2.15", 1263 + "@mongosh/types": "2.2.15", 1311 1264 "js-beautify": "^1.15.1" 1312 1265 }, 1313 1266 "engines": { ··· 1315 1268 } 1316 1269 }, 1317 1270 "node_modules/@mongosh/errors": { 1318 - "version": "2.2.12", 1319 - "resolved": "https://registry.npmmirror.com/@mongosh/errors/-/errors-2.2.12.tgz", 1320 - "integrity": "sha512-7Ns3xOFXhQil99wmU5HAC+GzJljzWV1X5a5khdCU/xq2oRKNJc92JGJMRfG6MK8YXB8rhkjYBoqssPdBaeE5gA==", 1271 + "version": "2.2.15", 1272 + "resolved": "https://registry.npmmirror.com/@mongosh/errors/-/errors-2.2.15.tgz", 1273 + "integrity": "sha512-RHCRv3Fg/xWS5XV4hOyh6KDBrn2kld+J5PVtXfsuke73jfQTLlR2PGMzSEpPWiayRLgLExq56qdXGOtNecmhuA==", 1321 1274 "engines": { 1322 1275 "node": ">=14.15.1" 1323 1276 } 1324 1277 }, 1325 1278 "node_modules/@mongosh/history": { 1326 - "version": "2.2.12", 1327 - "resolved": "https://registry.npmmirror.com/@mongosh/history/-/history-2.2.12.tgz", 1328 - "integrity": "sha512-JcNSwB/HnVK2RJRJY3MwtTNuWA9aeXWY5mc+wNYYIQ77dXtrphXpIxzSaLL0EXMrQZQBeCibxoYzBFZx4n2jFg==", 1279 + "version": "2.2.15", 1280 + "resolved": "https://registry.npmmirror.com/@mongosh/history/-/history-2.2.15.tgz", 1281 + "integrity": "sha512-GV1i3RmG38+OUxBnqTeAlcPezkJ4fH3bBs4bwvLEV7iXMcVNzNoJBMyDa7gO6er45w38Kczx9kVDIOYdutt2Yg==", 1329 1282 "dependencies": { 1330 1283 "mongodb-connection-string-url": "^3.0.1", 1331 - "mongodb-redact": "^1.1.0" 1284 + "mongodb-redact": "^1.1.2" 1332 1285 }, 1333 1286 "engines": { 1334 1287 "node": ">=14.15.1" 1335 1288 } 1336 1289 }, 1337 1290 "node_modules/@mongosh/i18n": { 1338 - "version": "2.2.12", 1339 - "resolved": "https://registry.npmmirror.com/@mongosh/i18n/-/i18n-2.2.12.tgz", 1340 - "integrity": "sha512-2A59O56WG/fwtNs0VjS/tvsen0MKXSHCSn9w51PGbdLYFCD8RQUetPSSfLcEuqlsXn88NDFsiQbkSsRo4sEMXw==", 1291 + "version": "2.2.15", 1292 + "resolved": "https://registry.npmmirror.com/@mongosh/i18n/-/i18n-2.2.15.tgz", 1293 + "integrity": "sha512-7pjQbvJbtaglZKj86/2GRQnXLRekmpTPIVR2M58kAVXaNGqGrfCpe6mkBEkIwdjk6UHQIvkwMSzUIbFGm7nFvA==", 1341 1294 "dependencies": { 1342 - "@mongosh/errors": "2.2.12" 1295 + "@mongosh/errors": "2.2.15" 1343 1296 }, 1344 1297 "engines": { 1345 1298 "node": ">=14.15.1" 1346 1299 } 1347 1300 }, 1348 1301 "node_modules/@mongosh/import-node-fetch": { 1349 - "version": "2.2.12", 1350 - "resolved": "https://registry.npmmirror.com/@mongosh/import-node-fetch/-/import-node-fetch-2.2.12.tgz", 1351 - "integrity": "sha512-JlmLFM/cUwkPWG8UaL9LUzr4Uh4K9CxBhW3VdEH8VkulRxzwLPhiWhcEzz1luW9FHpSKKG3YwYOt/qSQUYgrAQ==", 1302 + "version": "2.2.15", 1303 + "resolved": "https://registry.npmmirror.com/@mongosh/import-node-fetch/-/import-node-fetch-2.2.15.tgz", 1304 + "integrity": "sha512-ibhURnK4txTrim2sQZRwgfsrNgryUr/5WGvj1u8icZTSItM/sNU6L34Mi/R7UGsf7R4vEfHCIKp0rB1qEduvkg==", 1352 1305 "dependencies": { 1353 1306 "node-fetch": "^3.3.2" 1354 1307 }, ··· 1357 1310 } 1358 1311 }, 1359 1312 "node_modules/@mongosh/js-multiline-to-singleline": { 1360 - "version": "2.2.12", 1361 - "resolved": "https://registry.npmmirror.com/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.2.12.tgz", 1362 - "integrity": "sha512-FHgoapYi/aDfFomh7WujQaTJCjhjy2UxLsGbnx5SwORQGxeHfkv2mtKxI3IZyIPeckU9DgpN/f7nukulbkPP7A==", 1313 + "version": "2.2.15", 1314 + "resolved": "https://registry.npmmirror.com/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.2.15.tgz", 1315 + "integrity": "sha512-eEJPE8yX7Frk9uZGzawOjU8A33hMvtKNZ8NXwTvs7fSMhVjSM+GhZnpncsQwzyQ9/R31V4ztbRAUKwGpWnTLbw==", 1363 1316 "dependencies": { 1364 1317 "@babel/core": "^7.16.12", 1365 1318 "@babel/types": "^7.21.2" ··· 1369 1322 } 1370 1323 }, 1371 1324 "node_modules/@mongosh/logging": { 1372 - "version": "2.2.12", 1373 - "resolved": "https://registry.npmmirror.com/@mongosh/logging/-/logging-2.2.12.tgz", 1374 - "integrity": "sha512-fSBO0dLfzRQ0ZtflKqWwDLLWn6t7ZYjUBCsDIpTVhvJlexvZQ/71izD3yEN4k2MRZyTFiTM5lYGURSqTldppNA==", 1325 + "version": "2.2.15", 1326 + "resolved": "https://registry.npmmirror.com/@mongosh/logging/-/logging-2.2.15.tgz", 1327 + "integrity": "sha512-65mZzQ633f0TK8QMN8i6Dj7DXP2oDrBuKRpSZhqp/xvy9gvpikgy96SdIdxd3kPyDT2Ja5OFZyJHihUvCvoFog==", 1375 1328 "dependencies": { 1376 - "@mongodb-js/devtools-connect": "^3.0.2", 1377 - "@mongosh/errors": "2.2.12", 1378 - "@mongosh/history": "2.2.12", 1379 - "@mongosh/types": "2.2.12", 1329 + "@mongodb-js/devtools-connect": "^3.0.5", 1330 + "@mongosh/errors": "2.2.15", 1331 + "@mongosh/history": "2.2.15", 1332 + "@mongosh/types": "2.2.15", 1380 1333 "mongodb-log-writer": "^1.4.2", 1381 - "mongodb-redact": "^1.1.0" 1334 + "mongodb-redact": "^1.1.2" 1382 1335 }, 1383 1336 "engines": { 1384 1337 "node": ">=14.15.1" 1385 1338 } 1386 1339 }, 1387 1340 "node_modules/@mongosh/service-provider-core": { 1388 - "version": "2.2.12", 1389 - "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-core/-/service-provider-core-2.2.12.tgz", 1390 - "integrity": "sha512-pYd2KKlNFn/6fn9w5vSlkFUUkKoK8F+UAhy8TqjfYBA9cSQKLD+Et5qClC09APIAcVyk0Xd66n7KHG0Qb0vaxA==", 1341 + "version": "2.2.15", 1342 + "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-core/-/service-provider-core-2.2.15.tgz", 1343 + "integrity": "sha512-Pk+Sxxf0rE7KacEMZvhGjr15cWkV+lcbI8cv5Hf7Taxj8kLXfbKM45WBIgGtMDTh/fbmbT15qI7StG5sCO8CCg==", 1391 1344 "dependencies": { 1392 1345 "@aws-sdk/credential-providers": "^3.525.0", 1393 - "@mongosh/errors": "2.2.12", 1346 + "@mongosh/errors": "2.2.15", 1394 1347 "bson": "^6.7.0", 1395 - "mongodb": "^6.7.0", 1348 + "mongodb": "^6.8.0", 1396 1349 "mongodb-build-info": "^1.7.2" 1397 1350 }, 1398 1351 "engines": { ··· 1403 1356 } 1404 1357 }, 1405 1358 "node_modules/@mongosh/service-provider-server": { 1406 - "version": "2.2.12", 1407 - "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-server/-/service-provider-server-2.2.12.tgz", 1408 - "integrity": "sha512-+BSkQSyoHtdmmm5FBhVNDme5H9pbMm014DnbBGfIEmi3ism5DSgCMeAHIQUK0+zDC6gsRn6d9mmCy/5qnHT8jA==", 1359 + "version": "2.2.15", 1360 + "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-server/-/service-provider-server-2.2.15.tgz", 1361 + "integrity": "sha512-TtQVsMlQhZqRQ6Aj9tUcSvNLL6tthkzx3m/FhBxyT/7rxxuK56w0IUVg31Cqq/gz9xUfkP3JiKounIgYqRCbXQ==", 1409 1362 "dependencies": { 1410 - "@mongodb-js/devtools-connect": "^3.0.2", 1363 + "@mongodb-js/devtools-connect": "^3.0.5", 1411 1364 "@mongodb-js/oidc-plugin": "^1.0.2", 1412 - "@mongosh/errors": "2.2.12", 1413 - "@mongosh/service-provider-core": "2.2.12", 1414 - "@mongosh/types": "2.2.12", 1365 + "@mongosh/errors": "2.2.15", 1366 + "@mongosh/service-provider-core": "2.2.15", 1367 + "@mongosh/types": "2.2.15", 1415 1368 "aws4": "^1.12.0", 1416 - "mongodb": "^6.7.0", 1369 + "mongodb": "^6.8.0", 1417 1370 "mongodb-connection-string-url": "^3.0.1", 1418 1371 "socks": "^2.8.3" 1419 1372 }, ··· 1426 1379 } 1427 1380 }, 1428 1381 "node_modules/@mongosh/shell-api": { 1429 - "version": "2.2.12", 1430 - "resolved": "https://registry.npmmirror.com/@mongosh/shell-api/-/shell-api-2.2.12.tgz", 1431 - "integrity": "sha512-sjy6di7W5h0MbQ4lPXYOModwSnebiwWYDJVv6wtj9TvCz8Bua19fIr9jnW4GTjA/MLaWO0DjYh6MFg34SqvoLQ==", 1382 + "version": "2.2.15", 1383 + "resolved": "https://registry.npmmirror.com/@mongosh/shell-api/-/shell-api-2.2.15.tgz", 1384 + "integrity": "sha512-HkJhDKWHRRqa7fznsRVp/ivolM7RKeCyTuJXMVFym3qt4wlC63Tc3IQjm8HYORlFGRz04AOOwCgzkIp8ddPXkg==", 1432 1385 "dependencies": { 1433 - "@mongosh/arg-parser": "2.2.12", 1434 - "@mongosh/errors": "2.2.12", 1435 - "@mongosh/history": "2.2.12", 1436 - "@mongosh/i18n": "2.2.12", 1437 - "@mongosh/service-provider-core": "2.2.12", 1438 - "mongodb-redact": "^1.1.0" 1386 + "@mongosh/arg-parser": "2.2.15", 1387 + "@mongosh/errors": "2.2.15", 1388 + "@mongosh/history": "2.2.15", 1389 + "@mongosh/i18n": "2.2.15", 1390 + "@mongosh/service-provider-core": "2.2.15", 1391 + "mongodb-redact": "^1.1.2" 1439 1392 }, 1440 1393 "engines": { 1441 1394 "node": ">=14.15.1" 1442 1395 } 1443 1396 }, 1444 1397 "node_modules/@mongosh/shell-evaluator": { 1445 - "version": "2.2.12", 1446 - "resolved": "https://registry.npmmirror.com/@mongosh/shell-evaluator/-/shell-evaluator-2.2.12.tgz", 1447 - "integrity": "sha512-oSxx996l1vumeBDNZ2XYOWSmbPKA5b1XLL9YEFpsS27WLnxwvBiAb2qu6pJ8fDmJh9nDDAkWP5jlf2zYBitByA==", 1398 + "version": "2.2.15", 1399 + "resolved": "https://registry.npmmirror.com/@mongosh/shell-evaluator/-/shell-evaluator-2.2.15.tgz", 1400 + "integrity": "sha512-Km/rThnbklPiYfNd/K1qFUNXICMRaYVq1pOWWSYbrT7a97KcFHIoD2OgUUudksuva4zc24CfeP5GSWRtYpbq+w==", 1448 1401 "dependencies": { 1449 - "@mongosh/async-rewriter2": "2.2.12", 1450 - "@mongosh/history": "2.2.12", 1451 - "@mongosh/shell-api": "2.2.12" 1402 + "@mongosh/async-rewriter2": "2.2.15", 1403 + "@mongosh/history": "2.2.15", 1404 + "@mongosh/shell-api": "2.2.15" 1452 1405 }, 1453 1406 "engines": { 1454 1407 "node": ">=14.15.1" 1455 1408 } 1456 1409 }, 1457 1410 "node_modules/@mongosh/snippet-manager": { 1458 - "version": "2.2.12", 1459 - "resolved": "https://registry.npmmirror.com/@mongosh/snippet-manager/-/snippet-manager-2.2.12.tgz", 1460 - "integrity": "sha512-ZcM7lTCDBKP/JS97xcDd67sXFzMXeNJ/BlctfdL+huS8Ff90rBVVOTsKPGCH/ScYBk+IgDtSep7GU4RSYgdtJA==", 1411 + "version": "2.2.15", 1412 + "resolved": "https://registry.npmmirror.com/@mongosh/snippet-manager/-/snippet-manager-2.2.15.tgz", 1413 + "integrity": "sha512-iA5Z7QjxVRTZChbX7GNHlpZ80W020W0DJgUgFQzFUmrIIgFxZKwfNuXszP8gywKRXFlrNNcPInHLgZHRoI62eg==", 1461 1414 "dependencies": { 1462 - "@mongosh/errors": "2.2.12", 1463 - "@mongosh/import-node-fetch": "2.2.12", 1464 - "@mongosh/shell-api": "2.2.12", 1465 - "@mongosh/types": "2.2.12", 1415 + "@mongosh/errors": "2.2.15", 1416 + "@mongosh/import-node-fetch": "2.2.15", 1417 + "@mongosh/shell-api": "2.2.15", 1418 + "@mongosh/types": "2.2.15", 1466 1419 "bson": "^6.7.0", 1467 1420 "cross-spawn": "^7.0.3", 1468 1421 "escape-string-regexp": "^4.0.0", ··· 1474 1427 } 1475 1428 }, 1476 1429 "node_modules/@mongosh/types": { 1477 - "version": "2.2.12", 1478 - "resolved": "https://registry.npmmirror.com/@mongosh/types/-/types-2.2.12.tgz", 1479 - "integrity": "sha512-19LPOUVDy1FE01U6CvOjplv5U8prY0RZa3Cf0QSTpHQlnzWcrzMIHqPWS3luXFwGSKhQU/GxFfEJesqdE8C7HQ==", 1430 + "version": "2.2.15", 1431 + "resolved": "https://registry.npmmirror.com/@mongosh/types/-/types-2.2.15.tgz", 1432 + "integrity": "sha512-HkhZkjrkK9w+QHd2kPl7mspZUOpCUmgEvvHLMHmhpaYksLcxm2H4/H+s5F1Kj3EpuC9yyOHuvfC3ZMhDOgF0tg==", 1480 1433 "dependencies": { 1481 - "@mongodb-js/devtools-connect": "^3.0.2" 1434 + "@mongodb-js/devtools-connect": "^3.0.5" 1482 1435 }, 1483 1436 "engines": { 1484 1437 "node": ">=14.15.1" ··· 1617 1570 } 1618 1571 }, 1619 1572 "node_modules/@smithy/core": { 1620 - "version": "2.2.8", 1621 - "resolved": "https://registry.npmmirror.com/@smithy/core/-/core-2.2.8.tgz", 1622 - "integrity": "sha512-1Y0XX0Ucyg0LWTfTVLWpmvSRtFRniykUl3dQ0os1sTd03mKDudR6mVyX+2ak1phwPXx2aEWMAAdW52JNi0mc3A==", 1573 + "version": "2.3.1", 1574 + "resolved": "https://registry.npmmirror.com/@smithy/core/-/core-2.3.1.tgz", 1575 + "integrity": "sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w==", 1623 1576 "dependencies": { 1624 - "@smithy/middleware-endpoint": "^3.0.5", 1625 - "@smithy/middleware-retry": "^3.0.11", 1577 + "@smithy/middleware-endpoint": "^3.1.0", 1578 + "@smithy/middleware-retry": "^3.0.13", 1626 1579 "@smithy/middleware-serde": "^3.0.3", 1627 - "@smithy/protocol-http": "^4.0.4", 1628 - "@smithy/smithy-client": "^3.1.9", 1580 + "@smithy/protocol-http": "^4.1.0", 1581 + "@smithy/smithy-client": "^3.1.11", 1629 1582 "@smithy/types": "^3.3.0", 1630 1583 "@smithy/util-middleware": "^3.0.3", 1631 1584 "tslib": "^2.6.2" ··· 1635 1588 } 1636 1589 }, 1637 1590 "node_modules/@smithy/credential-provider-imds": { 1638 - "version": "3.1.4", 1639 - "resolved": "https://registry.npmmirror.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.4.tgz", 1640 - "integrity": "sha512-NKyH01m97Xa5xf3pB2QOF3lnuE8RIK0hTVNU5zvZAwZU8uspYO4DHQVlK+Y5gwSrujTfHvbfd1D9UFJAc0iYKQ==", 1591 + "version": "3.2.0", 1592 + "resolved": "https://registry.npmmirror.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz", 1593 + "integrity": "sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA==", 1641 1594 "dependencies": { 1642 1595 "@smithy/node-config-provider": "^3.1.4", 1643 1596 "@smithy/property-provider": "^3.1.3", ··· 1650 1603 } 1651 1604 }, 1652 1605 "node_modules/@smithy/fetch-http-handler": { 1653 - "version": "3.2.2", 1654 - "resolved": "https://registry.npmmirror.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.2.tgz", 1655 - "integrity": "sha512-3LaWlBZObyGrOOd7e5MlacnAKEwFBmAeiW/TOj2eR9475Vnq30uS2510+tnKbxrGjROfNdOhQqGo5j3sqLT6bA==", 1606 + "version": "3.2.4", 1607 + "resolved": "https://registry.npmmirror.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz", 1608 + "integrity": "sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg==", 1656 1609 "dependencies": { 1657 - "@smithy/protocol-http": "^4.0.4", 1610 + "@smithy/protocol-http": "^4.1.0", 1658 1611 "@smithy/querystring-builder": "^3.0.3", 1659 1612 "@smithy/types": "^3.3.0", 1660 1613 "@smithy/util-base64": "^3.0.0", ··· 1696 1649 } 1697 1650 }, 1698 1651 "node_modules/@smithy/middleware-content-length": { 1699 - "version": "3.0.4", 1700 - "resolved": "https://registry.npmmirror.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.4.tgz", 1701 - "integrity": "sha512-wySGje/KfhsnF8YSh9hP16pZcl3C+X6zRsvSfItQGvCyte92LliilU3SD0nR7kTlxnAJwxY8vE/k4Eoezj847Q==", 1652 + "version": "3.0.5", 1653 + "resolved": "https://registry.npmmirror.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz", 1654 + "integrity": "sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw==", 1702 1655 "dependencies": { 1703 - "@smithy/protocol-http": "^4.0.4", 1656 + "@smithy/protocol-http": "^4.1.0", 1704 1657 "@smithy/types": "^3.3.0", 1705 1658 "tslib": "^2.6.2" 1706 1659 }, ··· 1709 1662 } 1710 1663 }, 1711 1664 "node_modules/@smithy/middleware-endpoint": { 1712 - "version": "3.0.5", 1713 - "resolved": "https://registry.npmmirror.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.5.tgz", 1714 - "integrity": "sha512-V4acqqrh5tDxUEGVTOgf2lYMZqPQsoGntCrjrJZEeBzEzDry2d2vcI1QCXhGltXPPY+BMc6eksZMguA9fIY8vA==", 1665 + "version": "3.1.0", 1666 + "resolved": "https://registry.npmmirror.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz", 1667 + "integrity": "sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw==", 1715 1668 "dependencies": { 1716 1669 "@smithy/middleware-serde": "^3.0.3", 1717 1670 "@smithy/node-config-provider": "^3.1.4", ··· 1726 1679 } 1727 1680 }, 1728 1681 "node_modules/@smithy/middleware-retry": { 1729 - "version": "3.0.11", 1730 - "resolved": "https://registry.npmmirror.com/@smithy/middleware-retry/-/middleware-retry-3.0.11.tgz", 1731 - "integrity": "sha512-/TIRWmhwMpv99JCGuMhJPnH7ggk/Lah7s/uNDyr7faF02BxNsyD/fz9Tw7pgCf9tYOKgjimm2Qml1Aq1pbkt6g==", 1682 + "version": "3.0.13", 1683 + "resolved": "https://registry.npmmirror.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz", 1684 + "integrity": "sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw==", 1732 1685 "dependencies": { 1733 1686 "@smithy/node-config-provider": "^3.1.4", 1734 - "@smithy/protocol-http": "^4.0.4", 1687 + "@smithy/protocol-http": "^4.1.0", 1735 1688 "@smithy/service-error-classification": "^3.0.3", 1736 - "@smithy/smithy-client": "^3.1.9", 1689 + "@smithy/smithy-client": "^3.1.11", 1737 1690 "@smithy/types": "^3.3.0", 1738 1691 "@smithy/util-middleware": "^3.0.3", 1739 1692 "@smithy/util-retry": "^3.0.3", ··· 1783 1736 } 1784 1737 }, 1785 1738 "node_modules/@smithy/node-http-handler": { 1786 - "version": "3.1.3", 1787 - "resolved": "https://registry.npmmirror.com/@smithy/node-http-handler/-/node-http-handler-3.1.3.tgz", 1788 - "integrity": "sha512-UiKZm8KHb/JeOPzHZtRUfyaRDO1KPKPpsd7iplhiwVGOeVdkiVJ5bVe7+NhWREMOKomrDIDdSZyglvMothLg0Q==", 1739 + "version": "3.1.4", 1740 + "resolved": "https://registry.npmmirror.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz", 1741 + "integrity": "sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg==", 1789 1742 "dependencies": { 1790 1743 "@smithy/abort-controller": "^3.1.1", 1791 - "@smithy/protocol-http": "^4.0.4", 1744 + "@smithy/protocol-http": "^4.1.0", 1792 1745 "@smithy/querystring-builder": "^3.0.3", 1793 1746 "@smithy/types": "^3.3.0", 1794 1747 "tslib": "^2.6.2" ··· 1810 1763 } 1811 1764 }, 1812 1765 "node_modules/@smithy/protocol-http": { 1813 - "version": "4.0.4", 1814 - "resolved": "https://registry.npmmirror.com/@smithy/protocol-http/-/protocol-http-4.0.4.tgz", 1815 - "integrity": "sha512-fAA2O4EFyNRyYdFLVIv5xMMeRb+3fRKc/Rt2flh5k831vLvUmNFXcydeg7V3UeEhGURJI4c1asmGJBjvmF6j8Q==", 1766 + "version": "4.1.0", 1767 + "resolved": "https://registry.npmmirror.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz", 1768 + "integrity": "sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA==", 1816 1769 "dependencies": { 1817 1770 "@smithy/types": "^3.3.0", 1818 1771 "tslib": "^2.6.2" ··· 1870 1823 } 1871 1824 }, 1872 1825 "node_modules/@smithy/signature-v4": { 1873 - "version": "4.0.0", 1874 - "resolved": "https://registry.npmmirror.com/@smithy/signature-v4/-/signature-v4-4.0.0.tgz", 1875 - "integrity": "sha512-ervYjQ+ZvmNG51Ui77IOTPri7nOyo8Kembzt9uwwlmtXJPmFXvslOahbA1blvAVs7G0KlYMiOBog1rAt7RVXxg==", 1826 + "version": "4.1.0", 1827 + "resolved": "https://registry.npmmirror.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz", 1828 + "integrity": "sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag==", 1876 1829 "dependencies": { 1877 1830 "@smithy/is-array-buffer": "^3.0.0", 1831 + "@smithy/protocol-http": "^4.1.0", 1878 1832 "@smithy/types": "^3.3.0", 1879 1833 "@smithy/util-hex-encoding": "^3.0.0", 1880 1834 "@smithy/util-middleware": "^3.0.3", ··· 1887 1841 } 1888 1842 }, 1889 1843 "node_modules/@smithy/smithy-client": { 1890 - "version": "3.1.9", 1891 - "resolved": "https://registry.npmmirror.com/@smithy/smithy-client/-/smithy-client-3.1.9.tgz", 1892 - "integrity": "sha512-My2RaInZ4gSwJUPMaiLR/Nk82+c4LlvqpXA+n7lonGYgCZq23Tg+/xFhgmiejJ6XPElYJysTPyV90vKyp17+1g==", 1844 + "version": "3.1.11", 1845 + "resolved": "https://registry.npmmirror.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz", 1846 + "integrity": "sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ==", 1893 1847 "dependencies": { 1894 - "@smithy/middleware-endpoint": "^3.0.5", 1848 + "@smithy/middleware-endpoint": "^3.1.0", 1895 1849 "@smithy/middleware-stack": "^3.0.3", 1896 - "@smithy/protocol-http": "^4.0.4", 1850 + "@smithy/protocol-http": "^4.1.0", 1897 1851 "@smithy/types": "^3.3.0", 1898 - "@smithy/util-stream": "^3.1.1", 1852 + "@smithy/util-stream": "^3.1.3", 1899 1853 "tslib": "^2.6.2" 1900 1854 }, 1901 1855 "engines": { ··· 1979 1933 } 1980 1934 }, 1981 1935 "node_modules/@smithy/util-defaults-mode-browser": { 1982 - "version": "3.0.11", 1983 - "resolved": "https://registry.npmmirror.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.11.tgz", 1984 - "integrity": "sha512-O3s9DGb3bmRvEKmT8RwvSWK4A9r6svfd+MnJB+UMi9ZcCkAnoRtliulOnGF0qCMkKF9mwk2tkopBBstalPY/vg==", 1936 + "version": "3.0.13", 1937 + "resolved": "https://registry.npmmirror.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz", 1938 + "integrity": "sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw==", 1985 1939 "dependencies": { 1986 1940 "@smithy/property-provider": "^3.1.3", 1987 - "@smithy/smithy-client": "^3.1.9", 1941 + "@smithy/smithy-client": "^3.1.11", 1988 1942 "@smithy/types": "^3.3.0", 1989 1943 "bowser": "^2.11.0", 1990 1944 "tslib": "^2.6.2" ··· 1994 1948 } 1995 1949 }, 1996 1950 "node_modules/@smithy/util-defaults-mode-node": { 1997 - "version": "3.0.11", 1998 - "resolved": "https://registry.npmmirror.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.11.tgz", 1999 - "integrity": "sha512-qd4a9qtyOa/WY14aHHOkMafhh9z8D2QTwlcBoXMTPnEwtcY+xpe1JyFm9vya7VsB8hHsfn3XodEtwqREiu4ygQ==", 1951 + "version": "3.0.13", 1952 + "resolved": "https://registry.npmmirror.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz", 1953 + "integrity": "sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g==", 2000 1954 "dependencies": { 2001 1955 "@smithy/config-resolver": "^3.0.5", 2002 - "@smithy/credential-provider-imds": "^3.1.4", 1956 + "@smithy/credential-provider-imds": "^3.2.0", 2003 1957 "@smithy/node-config-provider": "^3.1.4", 2004 1958 "@smithy/property-provider": "^3.1.3", 2005 - "@smithy/smithy-client": "^3.1.9", 1959 + "@smithy/smithy-client": "^3.1.11", 2006 1960 "@smithy/types": "^3.3.0", 2007 1961 "tslib": "^2.6.2" 2008 1962 }, ··· 2060 2014 } 2061 2015 }, 2062 2016 "node_modules/@smithy/util-stream": { 2063 - "version": "3.1.1", 2064 - "resolved": "https://registry.npmmirror.com/@smithy/util-stream/-/util-stream-3.1.1.tgz", 2065 - "integrity": "sha512-EhRnVvl3AhoHAT2rGQ5o+oSDRM/BUSMPLZZdRJZLcNVUsFAjOs4vHaPdNQivTSzRcFxf5DA4gtO46WWU2zimaw==", 2017 + "version": "3.1.3", 2018 + "resolved": "https://registry.npmmirror.com/@smithy/util-stream/-/util-stream-3.1.3.tgz", 2019 + "integrity": "sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw==", 2066 2020 "dependencies": { 2067 - "@smithy/fetch-http-handler": "^3.2.2", 2068 - "@smithy/node-http-handler": "^3.1.3", 2021 + "@smithy/fetch-http-handler": "^3.2.4", 2022 + "@smithy/node-http-handler": "^3.1.4", 2069 2023 "@smithy/types": "^3.3.0", 2070 2024 "@smithy/util-base64": "^3.0.0", 2071 2025 "@smithy/util-buffer-from": "^3.0.0", ··· 2553 2507 } 2554 2508 }, 2555 2509 "node_modules/caniuse-lite": { 2556 - "version": "1.0.30001642", 2557 - "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz", 2558 - "integrity": "sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==", 2510 + "version": "1.0.30001644", 2511 + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001644.tgz", 2512 + "integrity": "sha512-YGvlOZB4QhZuiis+ETS0VXR+MExbFf4fZYYeMTEE0aTQd/RdIjkTyZjLrbYVKnHzppDvnOhritRVv+i7Go6mHw==", 2559 2513 "funding": [ 2560 2514 { 2561 2515 "type": "opencollective", ··· 2689 2643 } 2690 2644 }, 2691 2645 "node_modules/debug": { 2692 - "version": "4.3.5", 2693 - "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.5.tgz", 2694 - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 2646 + "version": "4.3.6", 2647 + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.6.tgz", 2648 + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", 2695 2649 "dependencies": { 2696 2650 "ms": "2.1.2" 2697 2651 }, ··· 2862 2816 "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 2863 2817 }, 2864 2818 "node_modules/electron-to-chromium": { 2865 - "version": "1.4.830", 2866 - "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.830.tgz", 2867 - "integrity": "sha512-TrPKKH20HeN0J1LHzsYLs2qwXrp8TF4nHdu4sq61ozGbzMpWhI7iIOPYPPkxeq1azMT9PZ8enPFcftbs/Npcjg==" 2819 + "version": "1.5.4", 2820 + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.4.tgz", 2821 + "integrity": "sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==" 2868 2822 }, 2869 2823 "node_modules/emoji-regex": { 2870 2824 "version": "9.2.2", ··· 3156 3110 "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 3157 3111 }, 3158 3112 "node_modules/fast-xml-parser": { 3159 - "version": "4.2.5", 3160 - "resolved": "https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", 3161 - "integrity": "sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==", 3113 + "version": "4.4.1", 3114 + "resolved": "https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", 3115 + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", 3162 3116 "funding": [ 3163 3117 { 3164 - "type": "paypal", 3165 - "url": "https://paypal.me/naturalintelligence" 3118 + "type": "github", 3119 + "url": "https://github.com/sponsors/NaturalIntelligence" 3166 3120 }, 3167 3121 { 3168 - "type": "github", 3169 - "url": "https://github.com/sponsors/NaturalIntelligence" 3122 + "type": "paypal", 3123 + "url": "https://paypal.me/naturalintelligence" 3170 3124 } 3171 3125 ], 3172 3126 "dependencies": { ··· 4349 4303 } 4350 4304 }, 4351 4305 "node_modules/node-releases": { 4352 - "version": "2.0.17", 4353 - "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.17.tgz", 4354 - "integrity": "sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==" 4306 + "version": "2.0.18", 4307 + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.18.tgz", 4308 + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" 4355 4309 }, 4356 4310 "node_modules/nopt": { 4357 4311 "version": "7.2.1",
-6
pkgs/development/tools/mongosh/source.json
··· 1 - { 2 - "version": "2.2.12", 3 - "integrity": "sha512-xdjUc5p7ccHHpigT4dQb8OKRFF6rxDu8T8cMHLAHmJV3YhQdh2j+3NPn4Cj0JQQ5J1nmzPKM6jp+SlyUbs+2xg==", 4 - "filename": "mongosh-2.2.12.tgz", 5 - "deps": "sha256-yM9C4joROSyX02noNS4n5bUhWyDDXzFttGyyyFAubPM=" 6 - }
pkgs/development/tools/mongosh/update.sh pkgs/by-name/mo/mongosh/update.sh
+3 -3
pkgs/development/tools/protoc-gen-validate/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "protoc-gen-validate"; 5 - version = "1.0.4"; 5 + version = "1.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bufbuild"; 9 9 repo = "protoc-gen-validate"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-NPjBVd5Ch8h2+48uymMRjjY6nepmGiY8z9Kwt+wN4lI="; 11 + sha256 = "sha256-QY7MqggMNYq6x1VkkWVGN07VZgkexe7mGj/+6QvJiHs="; 12 12 }; 13 13 14 - vendorHash = "sha256-1bR6cV7R9JEmayE3XN2fcrPQL6xspkKb+WYf+IrOhds="; 14 + vendorHash = "sha256-DqM+Am7Pi0UTz7NxYOCMN9W3H6WipX4oRRa8ceMsYZ0="; 15 15 16 16 excludedPackages = [ "tests" ]; 17 17
+2 -2
pkgs/development/tools/sqldef/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "sqldef"; 5 - version = "0.17.14"; 5 + version = "0.17.16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "k0kubun"; 9 9 repo = "sqldef"; 10 10 rev = "v${version}"; 11 - hash = "sha256-APitl7BZPmMXmW1e45FE3Z6BaWd8pNeL0QQomQb7wgg="; 11 + hash = "sha256-LnkaHVkh/yoONtYEZ7z4QM6NRKuGjTUwT0GFy20neNQ="; 12 12 }; 13 13 14 14 proxyVendor = true;
+3 -3
pkgs/os-specific/linux/ipp-usb/default.nix
··· 1 1 { buildGoModule, avahi, libusb1, pkg-config, lib, fetchFromGitHub, ronn }: 2 2 buildGoModule rec { 3 3 pname = "ipp-usb"; 4 - version = "0.9.25"; 4 + version = "0.9.27"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "openprinting"; 8 8 repo = "ipp-usb"; 9 9 rev = version; 10 - sha256 = "sha256-ryKQDzb31JA192lbCYkwJrXgwErViqIzP4mD2NmWdgA="; 10 + sha256 = "sha256-TBnEEH7GoOOFUh5zwJeb7c2nltaP7oCEZGnPWiK9sXk="; 11 11 }; 12 12 13 13 postPatch = '' ··· 24 24 nativeBuildInputs = [ pkg-config ronn ]; 25 25 buildInputs = [ libusb1 avahi ]; 26 26 27 - vendorHash = "sha256-61vCER1yR70Pn+CrfTai1sgiQQLU6msb9jxushus5W4="; 27 + vendorHash = null; 28 28 29 29 postInstall = '' 30 30 # to accomodate the makefile
+6 -6
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 51 51 }); 52 52 53 53 beta = selectHighestVersion latest (generic { 54 - version = "560.28.03"; 55 - sha256_64bit = "sha256-martv18vngYBJw1IFUCAaYr+uc65KtlHAMdLMdtQJ+Y="; 56 - sha256_aarch64 = "sha256-+u0ZolZcZoej4nqPGmZn5qpyynLvu2QSm9Rd3wLdDmM="; 57 - openSha256 = "sha256-asGpqOpU0tIO9QqceA8XRn5L27OiBFuI9RZ1NjSVwaM="; 58 - settingsSha256 = "sha256-b4nhUMCzZc3VANnNb0rmcEH6H7SK2D5eZIplgPV59c8="; 59 - persistencedSha256 = "sha256-MhITuC8tH/IPhCOUm60SrPOldOpitk78mH0rg+egkTE="; 54 + version = "560.31.02"; 55 + sha256_64bit = "sha256-0cwgejoFsefl2M6jdWZC+CKc58CqOXDjSi4saVPNKY0="; 56 + sha256_aarch64 = "sha256-m7da+/Uc2+BOYj6mGON75h03hKlIWItHORc5+UvXBQc="; 57 + openSha256 = "sha256-X5UzbIkILvo0QZlsTl9PisosgPj/XRmuuMH+cDohdZQ="; 58 + settingsSha256 = "sha256-A3SzGAW4vR2uxT1Cv+Pn+Sbm9lLF5a/DGzlnPhxVvmE="; 59 + persistencedSha256 = "sha256-BDtdpH5f9/PutG3Pv9G4ekqHafPm3xgDYdTcQumyMtg="; 60 60 }); 61 61 62 62 # Vulkan developer beta driver
+2 -2
pkgs/servers/atlassian/bamboo.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "atlassian-bamboo"; 8 - version = "8.2.6"; 8 + version = "9.6.4"; 9 9 10 10 src = fetchurl { 11 11 url = "https://product-downloads.atlassian.com/software/bamboo/downloads/atlassian-bamboo-${version}.tar.gz"; 12 - sha256 = "sha256-9TYTXSdGQ7qSqvF25Bn1l5N8NbKndcO8HiJSc4NUois="; 12 + hash = "sha256-Gd4+rH/40s9AvJi/waEVfVwWtT0H3bSlknNV6wxGpNg="; 13 13 }; 14 14 15 15 buildPhase = ''
+2 -2
pkgs/servers/atlassian/confluence.nix
··· 9 9 lib.warnIf (crowdProperties != null) "Using `crowdProperties` is deprecated!" 10 10 (stdenvNoCC.mkDerivation rec { 11 11 pname = "atlassian-confluence"; 12 - version = "7.19.14"; 12 + version = "9.0.1"; 13 13 14 14 src = fetchurl { 15 15 url = "https://product-downloads.atlassian.com/software/confluence/downloads/${pname}-${version}.tar.gz"; 16 - sha256 = "sha256-Z4a4YZO9UnZSAZYB0FHRsX8QwX0ju3SeISsQquyA+w0="; 16 + hash = "sha256-WCshWmJaTfyjRLaXUtkDuXHO5eEhHa/rDCPVFSLd3aU="; 17 17 }; 18 18 19 19 buildPhase = ''
+2 -2
pkgs/servers/atlassian/jira.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "atlassian-jira"; 11 - version = "9.13.0"; 11 + version = "9.17.1"; 12 12 13 13 src = fetchurl { 14 14 url = "https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-${version}.tar.gz"; 15 - sha256 = "sha256-WKb43gb8VUhnmm+Jvh7w/MHbyJVrYnxkpqfPk5hQk/w="; 15 + hash = "sha256-hSwPVYIN1/BG6d8UepopLEMExjwDg/w/Bwj9k27nmDQ="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ makeWrapper ];
+3 -1
pkgs/servers/home-assistant/component-packages.nix
··· 3356 3356 "pepco" = ps: with ps; [ 3357 3357 ]; 3358 3358 "permobil" = ps: with ps; [ 3359 - ]; # missing inputs: mypermobil 3359 + mypermobil 3360 + ]; 3360 3361 "persistent_notification" = ps: with ps; [ 3361 3362 ]; 3362 3363 "person" = ps: with ps; [ ··· 5768 5769 "panel_iframe" 5769 5770 "peco" 5770 5771 "pegel_online" 5772 + "permobil" 5771 5773 "persistent_notification" 5772 5774 "person" 5773 5775 "philips_js"
+3 -3
pkgs/servers/spicedb/zed.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "zed"; 8 - version = "0.19.2"; 8 + version = "0.20.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "authzed"; 12 12 repo = "zed"; 13 13 rev = "v${version}"; 14 - hash = "sha256-K7pcvIF195yJIbLKKHUOmyUQ/sEknFsqc8Y171oSmA0="; 14 + hash = "sha256-AdHkSkoxCK0iV4ZmaSYsYRkstGpsmahXpgAFUYt2/DU="; 15 15 }; 16 16 17 - vendorHash = "sha256-l3wu3IimmPQL4z7WOx+u9dO/AUKPV+lQkWMzphj2bbA="; 17 + vendorHash = "sha256-nYf/ruU1IPDOcumhQz6LGEpKLyAxgASgxjPT7qz0N8c="; 18 18 19 19 ldflags = [ 20 20 "-X 'github.com/jzelinskie/cobrautil/v2.Version=${src.rev}'"
+3 -3
pkgs/tools/admin/granted/default.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "granted"; 15 - version = "0.30.0"; 15 + version = "0.31.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "common-fate"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-MKnzhfA5hUaZRrvyxjkEXwoyr6uD4eVEPmhW7Hu7PS4="; 21 + sha256 = "sha256-FgPTXp0QZGviFin6vH5JArPZB3g254mgx2kp2lm65Jg="; 22 22 }; 23 23 24 - vendorHash = "sha256-EEyIeLlU+0Pd+B6atqLXTmmlGpYWkEuQlQNSsp1zbug="; 24 + vendorHash = "sha256-iGYAjbWQ8w60NZeMCVydltQLuwxOI74VxLltYIJ37K8="; 25 25 26 26 nativeBuildInputs = [ makeWrapper ]; 27 27
+2 -2
pkgs/tools/misc/plowshare/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeWrapper, curl, recode, spidermonkey_102 }: 1 + { lib, stdenv, fetchFromGitHub, makeWrapper, curl, recode, spidermonkey_115 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 ··· 20 20 make PREFIX="$out" install 21 21 22 22 for fn in plow{del,down,list,mod,probe,up}; do 23 - wrapProgram "$out/bin/$fn" --prefix PATH : "${lib.makeBinPath [ curl recode spidermonkey_102 ]}" 23 + wrapProgram "$out/bin/$fn" --prefix PATH : "${lib.makeBinPath [ curl recode spidermonkey_115 ]}" 24 24 done 25 25 ''; 26 26
+2 -2
pkgs/tools/networking/ddns-go/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ddns-go"; 8 - version = "6.6.4"; 8 + version = "6.6.7"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jeessy2"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-1rYxZIfzRuVGVlQOkXERh7uQhnr6n2Lw3I9aH3kMlzg="; 14 + hash = "sha256-Ejoe6e9GFhHxQ9oIBDgDRQW9Xx1XZK+qSAXiRXLdn+c="; 15 15 }; 16 16 17 17 vendorHash = "sha256-XZii7gV3DmTunYyGYzt5xXhv/VpTPIoYKbW4LnmlAgs=";
+3 -3
pkgs/tools/networking/gp-saml-gui/default.nix
··· 12 12 }: 13 13 buildPythonPackage rec { 14 14 pname = "gp-saml-gui"; 15 - version = "0.1+20230507-${lib.strings.substring 0 7 src.rev}"; 15 + version = "0.1+20240731-${lib.strings.substring 0 7 src.rev}"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "dlenski"; 19 19 repo = "gp-saml-gui"; 20 - rev = "258f47cdc4a8ed57a1eef16667f6cad0d1cb49b1"; 21 - sha256 = "sha256-g10S8C32mnOymCmGNdM8gmGpYn5/ObMJK3g6amKtQmI="; 20 + rev = "c46af04b3a6325b0ecc982840d7cfbd1629b6d43"; 21 + sha256 = "sha256-4MFHad1cuCWawy2hrqdXOgud0pXpYiV9J3Jwqyg4Udk="; 22 22 }; 23 23 24 24 buildInputs = lib.optional stdenv.isLinux glib-networking;
+3 -3
pkgs/tools/networking/ockam/default.nix
··· 13 13 14 14 let 15 15 pname = "ockam"; 16 - version = "0.129.0"; 16 + version = "0.130.0"; 17 17 in 18 18 rustPlatform.buildRustPackage { 19 19 inherit pname version; ··· 22 22 owner = "build-trust"; 23 23 repo = pname; 24 24 rev = "ockam_v${version}"; 25 - hash = "sha256-KlfR5/SYm8r5c31P0L8HF/mBAkwPesZedKNR0hKxAR0="; 25 + hash = "sha256-k64EiISQMGtXcgB5iqkq+hPLfLGIS3ma2vyGedkCHsg="; 26 26 }; 27 27 28 - cargoHash = "sha256-YadksBZIwUfJN1pPpDDwQNknOyzc6WRTZZlOUZxI5uk="; 28 + cargoHash = "sha256-qWfAGzWCPiFgxhbfUoar81jrRJMlOrZT7h/PJI9yz9Y="; 29 29 nativeBuildInputs = [ git pkg-config ]; 30 30 buildInputs = [ openssl dbus ] 31 31 ++ lib.optionals stdenv.isDarwin [ AppKit Security ];
+30 -1
pkgs/tools/package-management/ciel/Cargo.lock
··· 349 349 350 350 [[package]] 351 351 name = "ciel-rs" 352 - version = "3.2.7" 352 + version = "3.3.0" 353 353 dependencies = [ 354 354 "adler32", 355 355 "anyhow", ··· 387 387 "xattr", 388 388 "xz2", 389 389 "zbus", 390 + "zstd", 390 391 ] 391 392 392 393 [[package]] ··· 2661 2662 version = "1.7.0" 2662 2663 source = "registry+https://github.com/rust-lang/crates.io-index" 2663 2664 checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 2665 + 2666 + [[package]] 2667 + name = "zstd" 2668 + version = "0.13.2" 2669 + source = "registry+https://github.com/rust-lang/crates.io-index" 2670 + checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 2671 + dependencies = [ 2672 + "zstd-safe", 2673 + ] 2674 + 2675 + [[package]] 2676 + name = "zstd-safe" 2677 + version = "7.2.0" 2678 + source = "registry+https://github.com/rust-lang/crates.io-index" 2679 + checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa" 2680 + dependencies = [ 2681 + "zstd-sys", 2682 + ] 2683 + 2684 + [[package]] 2685 + name = "zstd-sys" 2686 + version = "2.0.12+zstd.1.5.6" 2687 + source = "registry+https://github.com/rust-lang/crates.io-index" 2688 + checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13" 2689 + dependencies = [ 2690 + "cc", 2691 + "pkg-config", 2692 + ] 2664 2693 2665 2694 [[package]] 2666 2695 name = "zvariant"
+2 -2
pkgs/tools/package-management/ciel/default.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "ciel"; 19 - version = "3.2.7"; 19 + version = "3.3.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "AOSC-Dev"; 23 23 repo = "ciel-rs"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-4SVBaQDr0O1Fei8qwNjSNtv3sz9tu7oQPyGmoQypWno="; 25 + hash = "sha256-vV1qZLVVVc6KFZrpF4blKmbfQjf/Ltn+IhmM5Zqb2zU="; 26 26 }; 27 27 28 28 cargoLock = {
+3 -3
pkgs/tools/security/gopass/git-credential.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "git-credential-gopass"; 10 - version = "1.15.13"; 10 + version = "1.15.14"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "gopasspw"; 14 14 repo = "git-credential-gopass"; 15 15 rev = "v${version}"; 16 - hash = "sha256-X2i0w5sJXteCI1F1PAtIzElAD51I/nk1DPkBlQV5fxs="; 16 + hash = "sha256-Kj7VIk81CzVbPMfGqm0z6APECF4IlqM0tbyogbWeBkg="; 17 17 }; 18 18 19 - vendorHash = "sha256-s1Zouw1619DbGjnZY26N6En91lzDaeDRZmul/te2z7M="; 19 + vendorHash = "sha256-ZNHAjFzMMxodxb/AGVq8q+sP36qR5+8eaKdmmjIaMjs="; 20 20 21 21 subPackages = [ "." ]; 22 22
+6 -2
pkgs/tools/typesetting/tex/texlive/bin.nix
··· 239 239 # to the version vendored by texlive (2.1.0-beta3) 240 240 (fetchpatch { 241 241 name = "luajit-fix-aarch64-linux.patch"; 242 - url = "https://raw.githubusercontent.com/void-linux/void-packages/master/srcpkgs/LuaJIT/patches/e9af1abec542e6f9851ff2368e7f196b6382a44c.patch"; 242 + url = "https://raw.githubusercontent.com/void-linux/void-packages/30253fbfc22cd93d97ec53df323778a3aab82754/srcpkgs/LuaJIT/patches/e9af1abec542e6f9851ff2368e7f196b6382a44c.patch"; 243 243 hash = "sha256-ysSZmfpfCFMukfHmIqwofAZux1e2kEq/37lfqp7HoWo="; 244 244 stripLen = 1; 245 245 extraPrefix = "libs/luajit/LuaJIT-src/"; ··· 320 320 version = "2.10.08"; 321 321 322 322 src = fetchurl { 323 - url = "https://tug.org/svn/texlive/trunk/Master/source/luametatex-${version}.tar.xz?revision=67034&view=co"; 323 + url = "https://tug.org/svn/texlive/trunk/Master/source/luametatex-${version}.tar.xz?pathrev=67034&view=co"; 324 + # keep the name the same, to avoid rebuilds now 325 + name = "luametatex-${version}.tar.xz?revision=67034&view=co"; 326 + # when bumping the version this should probably be changed to: 327 + # name = "luametatex-${version}.tar.xz"; 324 328 hash = "sha256-3JeOUQ63jJOZWTxFCoyWjfcrspmdmC/yqgS1JaLfTWk="; 325 329 }; 326 330
-4
pkgs/top-level/all-packages.nix
··· 1041 1041 1042 1042 mod = callPackage ../development/tools/mod { }; 1043 1043 1044 - mongosh = callPackage ../development/tools/mongosh { }; 1045 - 1046 1044 mya = callPackage ../applications/misc/mya { }; 1047 1045 1048 1046 mysql-shell = mysql-shell_8; ··· 2877 2875 pcmanfm = callPackage ../applications/file-managers/pcmanfm { }; 2878 2876 2879 2877 portfolio-filemanager = callPackage ../applications/file-managers/portfolio-filemanager { }; 2880 - 2881 - pot = callPackage ../by-name/po/pot/package.nix { pnpm = pnpm_8; }; 2882 2878 2883 2879 potreeconverter = callPackage ../applications/graphics/potreeconverter { }; 2884 2880
+2
pkgs/top-level/python-packages.nix
··· 8128 8128 8129 8129 myjwt = callPackage ../development/python-modules/myjwt { }; 8130 8130 8131 + mypermobil = callPackage ../development/python-modules/mypermobil { }; 8132 + 8131 8133 mypy = callPackage ../development/python-modules/mypy { }; 8132 8134 8133 8135 mypy-boto3-builder = callPackage ../development/python-modules/mypy-boto3-builder { };