Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 5254a09f 85f8ce65

+4627 -3008
-2
nixos/doc/manual/release-notes/rl-2411.section.md
··· 20 20 - `hardware.display` is a new module implementing workarounds for misbehaving monitors 21 21 through setting up custom EDID files and forcing kernel/framebuffer modes. 22 22 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 - 25 23 - A new display-manager `services.displayManager.ly` was added. 26 24 It is a tui based replacement of sddm and lightdm for window manager users. 27 25 Users can use it by `services.displayManager.ly.enable` and config it by
+4 -1
nixos/modules/services/misc/open-webui.nix
··· 54 54 WEBUI_AUTH = "False"; 55 55 } 56 56 ''; 57 - description = "Extra environment variables for Open-WebUI"; 57 + description = '' 58 + Extra environment variables for Open-WebUI. 59 + For more details see https://docs.openwebui.com/getting-started/env-configuration/ 60 + ''; 58 61 }; 59 62 60 63 openFirewall = lib.mkOption {
+1 -18
nixos/modules/system/activation/specialisation.nix
··· 1 - { config, lib, extendModules, noUserModules, ... }: 1 + { config, lib, pkgs, extendModules, noUserModules, ... }: 2 2 3 3 let 4 4 inherit (lib) 5 - attrNames 6 5 concatStringsSep 7 - filter 8 - length 9 6 mapAttrs 10 7 mapAttrsToList 11 - match 12 8 mkOption 13 9 types 14 10 ; ··· 77 73 }; 78 74 79 75 config = { 80 - assertions = [( 81 - let 82 - invalidNames = filter (name: match "[[:alnum:]_]+" name == null) (attrNames config.specialisation); 83 - in 84 - { 85 - assertion = length invalidNames == 0; 86 - message = '' 87 - Specialisation names can only contain alphanumeric characters and underscores 88 - Invalid specialisation names: ${concatStringsSep ", " invalidNames} 89 - ''; 90 - } 91 - )]; 92 - 93 76 system.systemBuilderCommands = '' 94 77 mkdir $out/specialisation 95 78 ${concatStringsSep "\n"
-38
nixos/modules/system/boot/loader/systemd-boot/boot-counting.md
··· 1 - # Automatic boot assessment with systemd-boot {#sec-automatic-boot-assessment} 2 - 3 - ## Overview {#sec-automatic-boot-assessment-overview} 4 - 5 - Automatic boot assessment (or boot-counting) is a feature of `systemd-boot` that allows for automatically detecting invalid boot entries. 6 - When the feature is active, each boot entry has an associated counter with a user defined number of trials. Whenever `systemd-boot` boots an entry, its counter is decreased by one, ultimately being marked as *bad* if the counter ever reaches zero. However, if an entry is successfully booted, systemd will permanently mark it as *good* and remove the counter altogether. Whenever an entry is marked as *bad*, it is sorted last in the `systemd-boot` menu. 7 - A complete explanation of how that feature works can be found [here](https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT/). 8 - 9 - ## Enabling the feature {#sec-automatic-boot-assessment-enable} 10 - 11 - The feature can be enabled by toogling the [boot.loader.systemd-boot.bootCounting](#opt-boot.loader.systemd-boot.bootCounting.enable) option. 12 - 13 - ## The boot-complete.target unit {#sec-automatic-boot-assessment-boot-complete-target} 14 - 15 - A *successful boot* for an entry is defined in terms of the `boot-complete.target` synchronisation point. It is up to the user to schedule all necessary units for the machine to be considered successfully booted before that synchronisation point. 16 - For example, if you are running `docker` on a machine and you want to be sure that a *good* entry is an entry where docker is started successfully. 17 - A configuration for that NixOS machine could look like that: 18 - 19 - ``` 20 - boot.loader.systemd-boot.bootCounting.enable = true; 21 - services.docker.enable = true; 22 - 23 - systemd.services.docker = { 24 - before = [ "boot-complete.target" ]; 25 - wantedBy = [ "boot-complete.target" ]; 26 - unitConfig.FailureAction = "reboot"; 27 - }; 28 - ``` 29 - 30 - The systemd service type must be of type `notify` or `oneshot` for systemd to dectect the startup error properly. 31 - 32 - ## Interaction with specialisations {#sec-automatic-boot-assessment-specialisations} 33 - 34 - When the boot-counting feature is enabled, `systemd-boot` will still try the boot entries in the same order as they are displayed in the boot menu. This means that the specialisations of a given generation will be tried directly after that generation, but that behavior is customizable with the [boot.loader.systemd-boot.sortKey](#opt-boot.loader.systemd-boot.sortKey) option. 35 - 36 - ## Limitations {#sec-automatic-boot-assessment-limitations} 37 - 38 - This feature has to be used wisely to not risk any data integrity issues. Rollbacking into past generations can sometimes be dangerous, for example if some of the services may have undefined behaviors in the presence of unrecognized data migrations from future versions of themselves.
+67 -180
nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py
··· 12 12 import sys 13 13 import warnings 14 14 import json 15 - from typing import NamedTuple, Any, Type 15 + from typing import NamedTuple, Any 16 16 from dataclasses import dataclass 17 - from pathlib import Path 18 17 19 18 # These values will be replaced with actual values during the package build 20 19 EFI_SYS_MOUNT_POINT = "@efiSysMountPoint@" ··· 34 33 GRACEFUL = "@graceful@" 35 34 COPY_EXTRA_FILES = "@copyExtraFiles@" 36 35 CHECK_MOUNTPOINTS = "@checkMountpoints@" 37 - BOOT_COUNTING_TRIES = "@bootCountingTries@" 38 - BOOT_COUNTING = "@bootCounting@" == "True" 39 36 40 37 @dataclass 41 38 class BootSpec: ··· 51 48 devicetree: str | None = None # noqa: N815 52 49 initrdSecrets: str | None = None # noqa: N815 53 50 54 - @dataclass 55 - class Entry: 56 - profile: str | None 57 - generation_number: int 58 - specialisation: str | None 59 - 60 - @classmethod 61 - def from_path(cls: Type["Entry"], path: Path) -> "Entry": 62 - filename = path.name 63 - # Matching nixos-$profile-generation-*.conf 64 - rex_profile = re.compile(r"^nixos-(.*)-generation-.*\.conf$") 65 - # Matching nixos*-generation-$number*.conf 66 - rex_generation = re.compile(r"^nixos.*-generation-([0-9]+).*\.conf$") 67 - # Matching nixos*-generation-$number-specialisation-$specialisation_name*.conf 68 - rex_specialisation = re.compile(r"^nixos.*-generation-([0-9]+)-specialisation-([a-zA-Z0-9_]+).*\.conf$") 69 - profile = rex_profile.sub(r"\1", filename) if rex_profile.match(filename) else None 70 - specialisation = rex_specialisation.sub(r"\2", filename) if rex_specialisation.match(filename) else None 71 - try: 72 - generation_number = int(rex_generation.sub(r"\1", filename)) 73 - except ValueError: 74 - raise 75 - return cls(profile, generation_number, specialisation) 76 - 77 - @dataclass 78 - class DiskEntry: 79 - entry: Entry 80 - default: bool 81 - counters: str | None 82 - title: str | None 83 - description: str | None 84 - kernel: str 85 - initrd: str 86 - kernel_params: str | None 87 - machine_id: str | None 88 - sort_key: str 89 - devicetree: str | None 90 - 91 - @classmethod 92 - def from_path(cls: Type["DiskEntry"], path: Path) -> "DiskEntry": 93 - entry = Entry.from_path(path) 94 - data = path.read_text().splitlines() 95 - if '' in data: 96 - data.remove('') 97 - entry_map = dict(lines.split(' ', 1) for lines in data) 98 - assert "linux" in entry_map 99 - assert "initrd" in entry_map 100 - filename = path.name 101 - # Matching nixos*-generation-*$counters.conf 102 - rex_counters = re.compile(r"^nixos.*-generation-.*(\+\d(-\d)?)\.conf$") 103 - counters = rex_counters.sub(r"\1", filename) if rex_counters.match(filename) else None 104 - disk_entry = cls( 105 - entry=entry, 106 - default=(entry_map.get("sort-key") == "default"), 107 - counters=counters, 108 - title=entry_map.get("title"), 109 - description=entry_map.get("version"), 110 - kernel=entry_map["linux"], 111 - initrd=entry_map["initrd"], 112 - kernel_params=entry_map.get("options"), 113 - machine_id=entry_map.get("machine-id"), 114 - sort_key=entry_map.get("sort_key", "nixos"), 115 - devicetree=entry_map.get("devicetree"), 116 - ) 117 - return disk_entry 118 - 119 - def write(self, sorted_first: str) -> None: 120 - # Compute a sort-key sorted before sorted_first 121 - # This will compute something like: nixos -> nixor-default to make sure we come before other nixos entries, 122 - # while allowing users users can pre-pend their own entries before. 123 - default_sort_key = sorted_first[:-1] + chr(ord(sorted_first[-1])-1) + "-default" 124 - tmp_path = self.path.with_suffix(".tmp") 125 - with tmp_path.open('w') as f: 126 - # We use "sort-key" to sort the default generation first. 127 - # The "default" string is sorted before "non-default" (alphabetically) 128 - boot_entry = [ 129 - f"title {self.title}" if self.title is not None else None, 130 - f"version {self.description}" if self.description is not None else None, 131 - f"linux {self.kernel}", 132 - f"initrd {self.initrd}", 133 - f"options {self.kernel_params}" if self.kernel_params is not None else None, 134 - f"machine-id {self.machine_id}" if self.machine_id is not None else None, 135 - f"sort-key {default_sort_key if self.default else self.sort_key}", 136 - f"devicetree {self.devicetree}" if self.devicetree is not None else None, 137 - ] 138 - 139 - f.write("\n".join(filter(None, boot_entry))) 140 - f.flush() 141 - os.fsync(f.fileno()) 142 - tmp_path.rename(self.path) 143 - 144 - 145 - @property 146 - def path(self) -> Path: 147 - pieces = [ 148 - "nixos", 149 - self.entry.profile or None, 150 - "generation", 151 - str(self.entry.generation_number), 152 - f"specialisation-{self.entry.specialisation}" if self.entry.specialisation else None, 153 - ] 154 - prefix = "-".join(p for p in pieces if p) 155 - return Path(f"{BOOT_MOUNT_POINT}/loader/entries/{prefix}{self.counters if self.counters else ''}.conf") 156 51 157 52 libc = ctypes.CDLL("libc.so.6") 158 53 ··· 185 80 else: 186 81 return d 187 82 188 - def write_loader_conf(profile: str | None) -> None: 189 - with open(f"{EFI_SYS_MOUNT_POINT}/loader/loader.conf.tmp", 'w') as f: 83 + BOOT_ENTRY = """title {title} 84 + sort-key {sort_key} 85 + version Generation {generation} {description} 86 + linux {kernel} 87 + initrd {initrd} 88 + options {kernel_params} 89 + """ 90 + 91 + def generation_conf_filename(profile: str | None, generation: int, specialisation: str | None) -> str: 92 + pieces = [ 93 + "nixos", 94 + profile or None, 95 + "generation", 96 + str(generation), 97 + f"specialisation-{specialisation}" if specialisation else None, 98 + ] 99 + return "-".join(p for p in pieces if p) + ".conf" 100 + 101 + 102 + def write_loader_conf(profile: str | None, generation: int, specialisation: str | None) -> None: 103 + with open(f"{LOADER_CONF}.tmp", 'w') as f: 190 104 f.write(f"timeout {TIMEOUT}\n") 191 - if profile: 192 - f.write("default nixos-%s-generation-*\n" % profile) 193 - else: 194 - f.write("default nixos-generation-*\n") 105 + f.write("default %s\n" % generation_conf_filename(profile, generation, specialisation)) 195 106 if not EDITOR: 196 107 f.write("editor 0\n") 197 108 if REBOOT_FOR_BITLOCKER: ··· 201 112 os.fsync(f.fileno()) 202 113 os.rename(f"{LOADER_CONF}.tmp", LOADER_CONF) 203 114 204 - def scan_entries() -> list[DiskEntry]: 205 - """ 206 - Scan all entries in $ESP/loader/entries/* 207 - Does not support Type 2 entries as we do not support them for now. 208 - Returns a generator of Entry. 209 - """ 210 - entries = [] 211 - for path in Path(f"{EFI_SYS_MOUNT_POINT}/loader/entries/").glob("nixos*-generation-[1-9]*.conf"): 212 - try: 213 - entries.append(DiskEntry.from_path(path)) 214 - except ValueError: 215 - continue 216 - return entries 217 115 218 116 def get_bootspec(profile: str | None, generation: int) -> BootSpec: 219 117 system_directory = system_dir(profile, generation, None) ··· 258 156 copy_if_not_exists(store_file_path, f"{BOOT_MOUNT_POINT}{efi_file_path}") 259 157 return efi_file_path 260 158 261 - def write_entry(profile: str | None, 262 - generation: int, 263 - specialisation: str | None, 264 - machine_id: str, 265 - bootspec: BootSpec, 266 - entries: list[DiskEntry], 267 - sorted_first: str, 268 - current: bool) -> None: 159 + def write_entry(profile: str | None, generation: int, specialisation: str | None, 160 + machine_id: str, bootspec: BootSpec, current: bool) -> None: 269 161 if specialisation: 270 162 bootspec = bootspec.specialisations[specialisation] 271 163 kernel = copy_from_file(bootspec.kernel) ··· 289 181 f'for "{title} - Configuration {generation}", an older generation', file=sys.stderr) 290 182 print("note: this is normal after having removed " 291 183 "or renamed a file in `boot.initrd.secrets`", file=sys.stderr) 184 + entry_file = f"{BOOT_MOUNT_POINT}/loader/entries/%s" % ( 185 + generation_conf_filename(profile, generation, specialisation)) 186 + tmp_path = "%s.tmp" % (entry_file) 292 187 kernel_params = "init=%s " % bootspec.init 188 + 293 189 kernel_params = kernel_params + " ".join(bootspec.kernelParams) 294 190 build_time = int(os.path.getctime(system_dir(profile, generation, specialisation))) 295 191 build_date = datetime.datetime.fromtimestamp(build_time).strftime('%F') 296 - counters = f"+{BOOT_COUNTING_TRIES}" if BOOT_COUNTING else "" 297 - entry = Entry(profile, generation, specialisation) 298 - # We check if the entry we are writing is already on disk 299 - # and we update its "default entry" status 300 - for entry_on_disk in entries: 301 - if entry == entry_on_disk.entry: 302 - entry_on_disk.default = current 303 - entry_on_disk.write(sorted_first) 304 - return 192 + 193 + with open(tmp_path, 'w') as f: 194 + f.write(BOOT_ENTRY.format(title=title, 195 + sort_key=bootspec.sortKey, 196 + generation=generation, 197 + kernel=kernel, 198 + initrd=initrd, 199 + kernel_params=kernel_params, 200 + description=f"{bootspec.label}, built on {build_date}")) 201 + if machine_id is not None: 202 + f.write("machine-id %s\n" % machine_id) 203 + if devicetree is not None: 204 + f.write("devicetree %s\n" % devicetree) 205 + f.flush() 206 + os.fsync(f.fileno()) 207 + os.rename(tmp_path, entry_file) 305 208 306 - DiskEntry( 307 - entry=entry, 308 - title=title, 309 - kernel=kernel, 310 - initrd=initrd, 311 - counters=counters, 312 - kernel_params=kernel_params, 313 - machine_id=machine_id, 314 - description=f"Generation {generation} {bootspec.label}, built on {build_date}", 315 - sort_key=bootspec.sortKey, 316 - devicetree=devicetree, 317 - default=current 318 - ).write(sorted_first) 319 209 320 210 def get_generations(profile: str | None = None) -> list[SystemIdentifier]: 321 211 gen_list = run( ··· 343 233 return configurations[-configurationLimit:] 344 234 345 235 346 - def remove_old_entries(gens: list[SystemIdentifier], disk_entries: list[DiskEntry]) -> None: 236 + def remove_old_entries(gens: list[SystemIdentifier]) -> None: 237 + rex_profile = re.compile(r"^" + re.escape(BOOT_MOUNT_POINT) + r"/loader/entries/nixos-(.*)-generation-.*\.conf$") 238 + rex_generation = re.compile(r"^" + re.escape(BOOT_MOUNT_POINT) + r"/loader/entries/nixos.*-generation-([0-9]+)(-specialisation-.*)?\.conf$") 347 239 known_paths = [] 348 240 for gen in gens: 349 241 bootspec = get_bootspec(gen.profile, gen.generation) 350 242 known_paths.append(copy_from_file(bootspec.kernel, True)) 351 243 known_paths.append(copy_from_file(bootspec.initrd, True)) 352 - for disk_entry in disk_entries: 353 - if (disk_entry.entry.profile, disk_entry.entry.generation_number, None) not in gens: 354 - os.unlink(disk_entry.path) 355 - for path in glob.iglob(f"{EFI_SYS_MOUNT_POINT}/efi/nixos/*"): 244 + for path in glob.iglob(f"{BOOT_MOUNT_POINT}/loader/entries/nixos*-generation-[1-9]*.conf"): 245 + if rex_profile.match(path): 246 + prof = rex_profile.sub(r"\1", path) 247 + else: 248 + prof = None 249 + try: 250 + gen_number = int(rex_generation.sub(r"\1", path)) 251 + except ValueError: 252 + continue 253 + if (prof, gen_number, None) not in gens: 254 + os.unlink(path) 255 + for path in glob.iglob(f"{BOOT_MOUNT_POINT}/{NIXOS_DIR}/*"): 356 256 if path not in known_paths and not os.path.isdir(path): 357 257 os.unlink(path) 258 + 358 259 359 260 def cleanup_esp() -> None: 360 261 for path in glob.iglob(f"{EFI_SYS_MOUNT_POINT}/loader/entries/nixos*"): ··· 374 275 def install_bootloader(args: argparse.Namespace) -> None: 375 276 try: 376 277 with open("/etc/machine-id") as machine_file: 377 - machine_id = machine_file.readlines()[0].strip() 278 + machine_id = machine_file.readlines()[0] 378 279 except IOError as e: 379 280 if e.errno != errno.ENOENT: 380 281 raise ··· 458 359 gens = get_generations() 459 360 for profile in get_profiles(): 460 361 gens += get_generations(profile) 461 - entries = scan_entries() 462 - remove_old_entries(gens, entries) 463 - # Compute the sort-key that will be sorted first. 464 - sorted_first = "" 465 - for gen in gens: 466 - try: 467 - bootspec = get_bootspec(gen.profile, gen.generation) 468 - if bootspec.sortKey < sorted_first or sorted_first == "": 469 - sorted_first = bootspec.sortKey 470 - except OSError as e: 471 - # See https://github.com/NixOS/nixpkgs/issues/114552 472 - if e.errno == errno.EINVAL: 473 - profile = f"profile '{gen.profile}'" if gen.profile else "default profile" 474 - print("ignoring {} in the list of boot entries because of the following error:\n{}".format(profile, e), file=sys.stderr) 475 - else: 476 - raise e 362 + 363 + remove_old_entries(gens) 477 364 478 365 for gen in gens: 479 366 try: 480 367 bootspec = get_bootspec(gen.profile, gen.generation) 481 368 is_default = os.path.dirname(bootspec.init) == args.default_config 482 - write_entry(*gen, machine_id, bootspec, entries, sorted_first, current=is_default) 369 + write_entry(*gen, machine_id, bootspec, current=is_default) 483 370 for specialisation in bootspec.specialisations.keys(): 484 - write_entry(gen.profile, gen.generation, specialisation, machine_id, bootspec, entries, sorted_first, current=(is_default and bootspec.specialisations[specialisation].sortKey == bootspec.sortKey)) 371 + write_entry(gen.profile, gen.generation, specialisation, machine_id, bootspec, current=is_default) 485 372 if is_default: 486 - write_loader_conf(gen.profile) 373 + write_loader_conf(*gen) 487 374 except OSError as e: 488 375 # See https://github.com/NixOS/nixpkgs/issues/114552 489 376 if e.errno == errno.EINVAL:
+1 -15
nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix
··· 80 80 ${pkgs.coreutils}/bin/install -D $empty_file "${bootMountPoint}/${nixosDir}/.extra-files/loader/entries/"${escapeShellArg n} 81 81 '') cfg.extraEntries)} 82 82 ''; 83 - bootCountingTries = cfg.bootCounting.tries; 84 - bootCounting = if cfg.bootCounting.enable then "True" else "False"; 85 83 }; 86 84 87 85 finalSystemdBootBuilder = pkgs.writeScript "install-systemd-boot.sh" '' ··· 91 89 ''; 92 90 in { 93 91 94 - meta = { 95 - maintainers = with lib.maintainers; [ julienmalka ]; 96 - doc = ./boot-counting.md; 97 - }; 92 + meta.maintainers = with lib.maintainers; [ julienmalka ]; 98 93 99 94 imports = 100 95 [ (mkRenamedOptionModule [ "boot" "loader" "gummiboot" "enable" ] [ "boot" "loader" "systemd-boot" "enable" ]) ··· 331 326 Only enable this option if `systemd-boot` otherwise fails to install, as the 332 327 scope or implication of the `--graceful` option may change in the future. 333 328 ''; 334 - }; 335 - 336 - bootCounting = { 337 - enable = mkEnableOption "automatic boot assessment"; 338 - tries = mkOption { 339 - default = 3; 340 - type = types.int; 341 - description = "number of tries each entry should start with"; 342 - }; 343 329 }; 344 330 345 331 rebootForBitlocker = mkOption {
-4
nixos/modules/system/boot/systemd.nix
··· 107 107 "systemd-rfkill.service" 108 108 "systemd-rfkill.socket" 109 109 110 - # Boot counting 111 - "boot-complete.target" 112 - ] ++ lib.optional config.boot.loader.systemd-boot.bootCounting.enable "systemd-bless-boot.service" ++ [ 113 - 114 110 # Hibernate / suspend. 115 111 "hibernate.target" 116 112 "suspend.target"
-33
nixos/tests/nixos-rebuild-specialisations.nix
··· 71 71 } 72 72 ''; 73 73 74 - wrongConfigFile = pkgs.writeText "configuration.nix" '' 75 - { lib, pkgs, ... }: { 76 - imports = [ 77 - ./hardware-configuration.nix 78 - <nixpkgs/nixos/modules/testing/test-instrumentation.nix> 79 - ]; 80 - 81 - boot.loader.grub = { 82 - enable = true; 83 - device = "/dev/vda"; 84 - forceInstall = true; 85 - }; 86 - 87 - documentation.enable = false; 88 - 89 - environment.systemPackages = [ 90 - (pkgs.writeShellScriptBin "parent" "") 91 - ]; 92 - 93 - specialisation.foo-bar = { 94 - inheritParentConfig = true; 95 - 96 - configuration = { ... }: { }; 97 - }; 98 - } 99 - ''; 100 74 in 101 75 '' 102 76 machine.start() ··· 142 116 with subtest("Make sure nonsense command combinations are forbidden"): 143 117 machine.fail("nixos-rebuild boot --specialisation foo") 144 118 machine.fail("nixos-rebuild boot -c foo") 145 - 146 - machine.copy_from_host( 147 - "${wrongConfigFile}", 148 - "/etc/nixos/configuration.nix", 149 - ) 150 - with subtest("Make sure that invalid specialisation names are rejected"): 151 - machine.fail("nixos-rebuild switch") 152 119 ''; 153 120 })
+6 -147
nixos/tests/systemd-boot.nix
··· 13 13 boot.loader.systemd-boot.enable = true; 14 14 boot.loader.efi.canTouchEfiVariables = true; 15 15 environment.systemPackages = [ pkgs.efibootmgr ]; 16 - # Needed for machine-id to be persisted between reboots 17 - environment.etc."machine-id".text = "00000000000000000000000000000000"; 18 16 }; 19 17 20 18 commonXbootldr = { config, lib, pkgs, ... }: ··· 83 81 os.environ['NIX_DISK_IMAGE'] = tmp_disk_image.name 84 82 ''; 85 83 in 86 - rec { 84 + { 87 85 basic = makeTest { 88 86 name = "systemd-boot"; 89 87 meta.maintainers = with pkgs.lib.maintainers; [ danielfullmer julienmalka ]; ··· 95 93 machine.wait_for_unit("multi-user.target") 96 94 97 95 machine.succeed("test -e /boot/loader/entries/nixos-generation-1.conf") 98 - # our sort-key will uses r to sort before nixos 99 - machine.succeed("grep 'sort-key nixor-default' /boot/loader/entries/nixos-generation-1.conf") 96 + machine.succeed("grep 'sort-key nixos' /boot/loader/entries/nixos-generation-1.conf") 100 97 101 98 # Ensure we actually booted using systemd-boot 102 99 # Magic number is the vendor UUID used by systemd-boot. ··· 434 431 ''; 435 432 }; 436 433 437 - garbage-collect-entry = { withBootCounting ? false, ... }: makeTest { 438 - name = "systemd-boot-garbage-collect-entry" + optionalString withBootCounting "-with-boot-counting"; 434 + garbage-collect-entry = makeTest { 435 + name = "systemd-boot-garbage-collect-entry"; 439 436 meta.maintainers = with pkgs.lib.maintainers; [ julienmalka ]; 440 437 441 438 nodes = { 442 439 inherit common; 443 440 machine = { pkgs, nodes, ... }: { 444 441 imports = [ common ]; 445 - boot.loader.systemd-boot.bootCounting.enable = withBootCounting; 442 + 446 443 # These are configs for different nodes, but we'll use them here in `machine` 447 444 system.extraDependencies = [ 448 445 nodes.common.system.build.toplevel ··· 457 454 '' 458 455 machine.succeed("nix-env -p /nix/var/nix/profiles/system --set ${baseSystem}") 459 456 machine.succeed("nix-env -p /nix/var/nix/profiles/system --delete-generations 1") 460 - # At this point generation 1 has already been marked as good so we reintroduce counters artificially 461 - ${optionalString withBootCounting '' 462 - machine.succeed("mv /boot/loader/entries/nixos-generation-1.conf /boot/loader/entries/nixos-generation-1+3.conf") 463 - ''} 464 457 machine.succeed("${baseSystem}/bin/switch-to-configuration boot") 465 - machine.fail("test -e /boot/loader/entries/nixos-generation-1*") 458 + machine.fail("test -e /boot/loader/entries/nixos-generation-1.conf") 466 459 machine.succeed("test -e /boot/loader/entries/nixos-generation-2.conf") 467 460 ''; 468 461 }; ··· 482 475 machine.wait_for_unit("multi-user.target") 483 476 ''; 484 477 }; 485 - 486 - # Check that we are booting the default entry and not the generation with largest version number 487 - defaultEntry = { withBootCounting ? false, ... }: makeTest { 488 - name = "systemd-boot-default-entry" + optionalString withBootCounting "-with-boot-counting"; 489 - meta.maintainers = with pkgs.lib.maintainers; [ julienmalka ]; 490 - 491 - nodes = { 492 - machine = { pkgs, lib, nodes, ... }: { 493 - imports = [ common ]; 494 - system.extraDependencies = [ nodes.other_machine.system.build.toplevel ]; 495 - boot.loader.systemd-boot.bootCounting.enable = withBootCounting; 496 - }; 497 - 498 - other_machine = { pkgs, lib, ... }: { 499 - imports = [ common ]; 500 - boot.loader.systemd-boot.bootCounting.enable = withBootCounting; 501 - environment.systemPackages = [ pkgs.hello ]; 502 - }; 503 - }; 504 - testScript = { nodes, ... }: 505 - let 506 - orig = nodes.machine.system.build.toplevel; 507 - other = nodes.other_machine.system.build.toplevel; 508 - in 509 - '' 510 - orig = "${orig}" 511 - other = "${other}" 512 - 513 - def check_current_system(system_path): 514 - machine.succeed(f'test $(readlink -f /run/current-system) = "{system_path}"') 515 - 516 - check_current_system(orig) 517 - 518 - # Switch to other configuration 519 - machine.succeed("nix-env -p /nix/var/nix/profiles/system --set ${other}") 520 - machine.succeed(f"{other}/bin/switch-to-configuration boot") 521 - # Rollback, default entry is now generation 1 522 - machine.succeed("nix-env -p /nix/var/nix/profiles/system --rollback") 523 - machine.succeed(f"{orig}/bin/switch-to-configuration boot") 524 - machine.shutdown() 525 - machine.start() 526 - machine.wait_for_unit("multi-user.target") 527 - # Check that we booted generation 1 (default) 528 - # even though generation 2 comes first in alphabetical order 529 - check_current_system(orig) 530 - ''; 531 - }; 532 - 533 - 534 - bootCounting = 535 - let 536 - baseConfig = { pkgs, lib, ... }: { 537 - imports = [ common ]; 538 - boot.loader.systemd-boot.bootCounting.enable = true; 539 - boot.loader.systemd-boot.bootCounting.tries = 2; 540 - }; 541 - in 542 - makeTest { 543 - name = "systemd-boot-counting"; 544 - meta.maintainers = with pkgs.lib.maintainers; [ julienmalka ]; 545 - 546 - nodes = { 547 - machine = { pkgs, lib, nodes, ... }: { 548 - imports = [ baseConfig ]; 549 - system.extraDependencies = [ nodes.bad_machine.system.build.toplevel ]; 550 - }; 551 - 552 - bad_machine = { pkgs, lib, ... }: { 553 - imports = [ baseConfig ]; 554 - 555 - systemd.services."failing" = { 556 - script = "exit 1"; 557 - requiredBy = [ "boot-complete.target" ]; 558 - before = [ "boot-complete.target" ]; 559 - serviceConfig.Type = "oneshot"; 560 - }; 561 - }; 562 - }; 563 - testScript = { nodes, ... }: 564 - let 565 - orig = nodes.machine.system.build.toplevel; 566 - bad = nodes.bad_machine.system.build.toplevel; 567 - in 568 - '' 569 - orig = "${orig}" 570 - bad = "${bad}" 571 - 572 - def check_current_system(system_path): 573 - machine.succeed(f'test $(readlink -f /run/current-system) = "{system_path}"') 574 - 575 - # Ensure we booted using an entry with counters enabled 576 - machine.succeed( 577 - "test -e /sys/firmware/efi/efivars/LoaderBootCountPath-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f" 578 - ) 579 - 580 - # systemd-bless-boot should have already removed the "+2" suffix from the boot entry 581 - machine.wait_for_unit("systemd-bless-boot.service") 582 - machine.succeed("test -e /boot/loader/entries/nixos-generation-1.conf") 583 - check_current_system(orig) 584 - 585 - # Switch to bad configuration 586 - machine.succeed("nix-env -p /nix/var/nix/profiles/system --set ${bad}") 587 - machine.succeed(f"{bad}/bin/switch-to-configuration boot") 588 - 589 - # Ensure new bootloader entry has initialized counter 590 - machine.succeed("test -e /boot/loader/entries/nixos-generation-1.conf") 591 - machine.succeed("test -e /boot/loader/entries/nixos-generation-2+2.conf") 592 - machine.shutdown() 593 - 594 - machine.start() 595 - machine.wait_for_unit("multi-user.target") 596 - check_current_system(bad) 597 - machine.succeed("test -e /boot/loader/entries/nixos-generation-1.conf") 598 - machine.succeed("test -e /boot/loader/entries/nixos-generation-2+1-1.conf") 599 - machine.shutdown() 600 - 601 - machine.start() 602 - machine.wait_for_unit("multi-user.target") 603 - check_current_system(bad) 604 - machine.succeed("test -e /boot/loader/entries/nixos-generation-1.conf") 605 - machine.succeed("test -e /boot/loader/entries/nixos-generation-2+0-2.conf") 606 - machine.shutdown() 607 - 608 - # Should boot back into original configuration 609 - machine.start() 610 - check_current_system(orig) 611 - machine.wait_for_unit("multi-user.target") 612 - machine.succeed("test -e /boot/loader/entries/nixos-generation-1.conf") 613 - machine.succeed("test -e /boot/loader/entries/nixos-generation-2+0-2.conf") 614 - machine.shutdown() 615 - ''; 616 - }; 617 - defaultEntryWithBootCounting = defaultEntry { withBootCounting = true; }; 618 - garbageCollectEntryWithBootCounting = garbage-collect-entry { withBootCounting = true; }; 619 478 }
+4 -4
pkgs/applications/editors/vim/plugins/vim-clap/Cargo.lock
··· 2843 2843 2844 2844 [[package]] 2845 2845 name = "time" 2846 - version = "0.3.34" 2846 + version = "0.3.36" 2847 2847 source = "registry+https://github.com/rust-lang/crates.io-index" 2848 - checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 2848 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2849 2849 dependencies = [ 2850 2850 "deranged", 2851 2851 "itoa", ··· 2864 2864 2865 2865 [[package]] 2866 2866 name = "time-macros" 2867 - version = "0.2.17" 2867 + version = "0.2.18" 2868 2868 source = "registry+https://github.com/rust-lang/crates.io-index" 2869 - checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 2869 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2870 2870 dependencies = [ 2871 2871 "num-conv", 2872 2872 "time-core",
+3 -3
pkgs/applications/editors/vim/plugins/vim-clap/default.nix
··· 11 11 }: 12 12 13 13 let 14 - version = "0.54"; 14 + version = "0.54-unstable-2024-08-11"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "liuchengxu"; 18 18 repo = "vim-clap"; 19 - rev = "v${version}"; 20 - hash = "sha256-rhCum59GCIAwdi5QgSaPfrALelAIMncNetu81i53Q8c="; 19 + rev = "3e8d001f5c9be10e4bb680a1d409326902c96c10"; 20 + hash = "sha256-7bgbKYjJX2Tfprb69/imyvhsCsurrmPWBXVVLX+ZMnM="; 21 21 }; 22 22 23 23 meta = with lib; {
+46 -15
pkgs/applications/graphics/paraview/default.nix
··· 1 - { lib, stdenv, fetchFromGitLab, fetchurl 2 - , boost, cmake, ffmpeg, wrapQtAppsHook, qtbase, qtx11extras 3 - , qttools, qtxmlpatterns, qtsvg, gdal, gfortran, libXt, makeWrapper 4 - , ninja, mpi, python3, tbb, libGLU, libGL 5 - , withDocs ? true 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitLab, 5 + fetchurl, 6 + boost, 7 + cmake, 8 + ffmpeg, 9 + wrapQtAppsHook, 10 + qtbase, 11 + qtx11extras, 12 + qttools, 13 + qtxmlpatterns, 14 + qtsvg, 15 + gdal, 16 + gfortran, 17 + libXt, 18 + makeWrapper, 19 + ninja, 20 + mpi, 21 + python3, 22 + tbb, 23 + libGLU, 24 + libGL, 25 + withDocs ? true, 6 26 }: 7 27 8 28 let 9 - version = "5.12.0"; 29 + version = "5.12.1"; 10 30 11 31 docFiles = [ 12 32 (fetchurl { ··· 26 46 }) 27 47 ]; 28 48 29 - in stdenv.mkDerivation rec { 49 + in 50 + stdenv.mkDerivation rec { 30 51 pname = "paraview"; 31 52 inherit version; 32 53 ··· 35 56 owner = "paraview"; 36 57 repo = "paraview"; 37 58 rev = "v${version}"; 38 - hash = "sha256-PAD48IlOU39TosjfTiDz7IjEeYEP/7F75M+8dYBIUxI="; 59 + hash = "sha256-jbqMqj3D7LTwQ+hHIPscCHw4TfY/BR2HuVmMYom2+dA="; 39 60 fetchSubmodules = true; 40 61 }; 41 62 ··· 86 107 qtsvg 87 108 ]; 88 109 89 - postInstall = let docDir = "$out/share/paraview-${lib.versions.majorMinor version}/doc"; in 110 + postInstall = 111 + let 112 + docDir = "$out/share/paraview-${lib.versions.majorMinor version}/doc"; 113 + in 90 114 lib.optionalString withDocs '' 91 115 mkdir -p ${docDir}; 92 116 for docFile in ${lib.concatStringsSep " " docFiles}; do ··· 95 119 ''; 96 120 97 121 propagatedBuildInputs = [ 98 - (python3.withPackages (ps: with ps; [ numpy matplotlib mpi4py ])) 122 + (python3.withPackages ( 123 + ps: with ps; [ 124 + numpy 125 + matplotlib 126 + mpi4py 127 + ] 128 + )) 99 129 ]; 100 130 101 - meta = with lib; { 102 - homepage = "https://www.paraview.org/"; 131 + meta = { 132 + homepage = "https://www.paraview.org"; 103 133 description = "3D Data analysis and visualization application"; 104 - license = licenses.bsd3; 105 - maintainers = with maintainers; [ guibert ]; 106 - platforms = platforms.linux; 134 + license = lib.licenses.bsd3; 135 + maintainers = with lib.maintainers; [ guibert ]; 136 + changelog = "https://www.kitware.com/paraview-${lib.concatStringsSep "-" (lib.versions.splitVersion version)}-release-notes"; 137 + platforms = lib.platforms.linux; 107 138 }; 108 139 }
+3 -4
pkgs/applications/science/chemistry/pymol/default.nix
··· 2 2 , lib 3 3 , fetchFromGitHub 4 4 , makeDesktopItem 5 - , python3 6 5 , python3Packages 7 6 , netcdf 8 7 , glew ··· 50 49 51 50 postPatch = '' 52 51 substituteInPlace setup.py \ 53 - --replace-fail "self.install_libbase" '"${placeholder "out"}/${python3.sitePackages}"' 52 + --replace-fail "self.install_libbase" '"${placeholder "out"}/${python3Packages.python.sitePackages}"' 54 53 ''; 55 54 56 55 build-system = [ ··· 63 62 64 63 postInstall = with python3Packages; '' 65 64 wrapProgram $out/bin/pymol \ 66 - --prefix PYTHONPATH : ${lib.makeSearchPathOutput "lib" python3.sitePackages [ pyqt5 pyqt5.pyqt5-sip ]} 65 + --prefix PYTHONPATH : ${lib.makeSearchPathOutput "lib" python3Packages.python.sitePackages [ pyqt5 pyqt5.pyqt5-sip ]} 67 66 68 67 mkdir -p "$out/share/icons/" 69 - ln -s $out/${python3.sitePackages}/pymol/pymol_path/data/pymol/icons/icon2.svg "$out/share/icons/pymol.svg" 68 + ln -s $out/${python3Packages.python.sitePackages}/pymol/pymol_path/data/pymol/icons/icon2.svg "$out/share/icons/pymol.svg" 70 69 '' + lib.optionalString stdenv.hostPlatform.isLinux '' 71 70 cp -r "${desktopItem}/share/applications/" "$out/share/" 72 71 '';
+4 -2
pkgs/applications/terminal-emulators/foot/default.nix
··· 26 26 }: 27 27 28 28 let 29 - version = "1.17.2"; 29 + version = "1.18.1"; 30 30 31 31 # build stimuli file for PGO build and the script to generate it 32 32 # independently of the foot's build, so we can cache the result ··· 98 98 owner = "dnkl"; 99 99 repo = "foot"; 100 100 rev = version; 101 - hash = "sha256-p+qaWHBrUn6YpNyAmQf6XoQyO3degHP5oMN53/9gIr4="; 101 + hash = "sha256:15s7fbkibvq53flf5yy9ad37y53pl83rcnjwlnfh96a4s5mj6v5d"; 102 102 }; 103 103 104 104 separateDebugInfo = true; ··· 156 156 "-Dcustom-terminfo-install-location=${terminfoDir}" 157 157 # Install systemd user units for foot-server 158 158 "-Dsystemd-units-dir=${placeholder "out"}/lib/systemd/user" 159 + # Especially -Wunused-command-line-argument is a problem with clang 160 + "-Dwerror=false" 159 161 ]; 160 162 161 163 # build and run binary generating PGO profiles,
+9 -6
pkgs/applications/version-management/josh/default.nix
··· 13 13 let 14 14 # josh-ui requires javascript dependencies, haven't tried to figure it out yet 15 15 cargoFlags = [ "--workspace" "--exclude" "josh-ui" ]; 16 + version = "24.08.14"; 16 17 in 17 18 18 - rustPlatform.buildRustPackage rec { 19 + rustPlatform.buildRustPackage { 19 20 pname = "josh"; 20 - version = "23.12.04"; 21 - JOSH_VERSION = "r${version}"; 21 + inherit version; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "esrlabs"; 25 25 repo = "josh"; 26 - rev = JOSH_VERSION; 27 - sha256 = "10fspcafqnv6if5c1h8z9pf9140jvvlrch88w62wsg4w2vhaii0v"; 26 + rev = "v${version}"; 27 + hash = "sha256-6U1nhERpPQAVgQm6xwRlHIhslYBLd65DomuGn5yRiSs="; 28 28 }; 29 29 30 - cargoHash = "sha256-g4/Z3QUFBeWlqhnZ2VhmdAjya4A+vwXQa7QYZ+CgG8g="; 30 + cargoHash = "sha256-s6+Bd4ucwUinrcbjNvlDsf9LhWc/U9SAvBRW7JAmxVA="; 31 31 32 32 nativeBuildInputs = [ 33 33 pkg-config ··· 43 43 44 44 cargoBuildFlags = cargoFlags; 45 45 cargoTestFlags = cargoFlags; 46 + 47 + # used to teach josh itself about its version number 48 + env.JOSH_VERSION = "r${version}"; 46 49 47 50 postInstall = '' 48 51 wrapProgram "$out/bin/josh-proxy" --prefix PATH : "${git}/bin"
+11 -1
pkgs/applications/virtualization/cloud-hypervisor/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, dtc, openssl }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch 2 + , rustPlatform, pkg-config, dtc, openssl 3 + }: 2 4 3 5 rustPlatform.buildRustPackage rec { 4 6 pname = "cloud-hypervisor"; ··· 10 12 rev = "v${version}"; 11 13 hash = "sha256-zrMJGdbOukNbzmcTuIcHlwAbJvTzhz53dc4TO/Fplb4="; 12 14 }; 15 + 16 + patches = [ 17 + (fetchpatch { 18 + name = "ub.patch"; 19 + url = "https://github.com/cloud-hypervisor/cloud-hypervisor/commit/02f146fef81c4aa4a7ef3555c176d3b533158d7a.patch"; 20 + hash = "sha256-g9WcGJy8Q+Bc0egDfoQVSVfKqyXa8vkIZk+aYQyFuy8="; 21 + }) 22 + ]; 13 23 14 24 cargoLock = { 15 25 lockFile = ./Cargo.lock;
+5 -73
pkgs/by-name/bu/bugstalker/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "bugstalker"; 10 - version = "0.1.4"; 10 + version = "0.2.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "godzie44"; 14 14 repo = "BugStalker"; 15 15 rev = "v${version}"; 16 - hash = "sha256-16bmvz6/t8H8Sx/32l+fp3QqP5lwi0o1Q9KqDHqF22U="; 16 + hash = "sha256-JacRt+zNwL7hdpdh5h9Mxztqi47f5eUbcZyx6ct/5Bc="; 17 17 }; 18 18 19 - cargoHash = "sha256-kp0GZ0cM57BMpH/8lhxevnBuJhUSH0rtxP4B/9fXYiU="; 19 + cargoHash = "sha256-ljT7Dl9553sfZBqTe6gT3iYPH+D1Jp9ZsyGVQGOekxw="; 20 20 21 21 buildInputs = [ libunwind ]; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24 25 - # Tests which require access to example source code fail in the sandbox. I 26 - # haven't managed to figure out how to fix this. 27 - checkFlags = [ 28 - "--skip=breakpoints::test_breakpoint_at_fn_with_monomorphization" 29 - "--skip=breakpoints::test_breakpoint_at_line_with_monomorphization" 30 - "--skip=breakpoints::test_brkpt_on_function" 31 - "--skip=breakpoints::test_brkpt_on_function_name_collision" 32 - "--skip=breakpoints::test_brkpt_on_line" 33 - "--skip=breakpoints::test_brkpt_on_line2" 34 - "--skip=breakpoints::test_brkpt_on_line_collision" 35 - "--skip=breakpoints::test_debugee_run" 36 - "--skip=breakpoints::test_deferred_breakpoint" 37 - "--skip=breakpoints::test_multiple_brkpt_on_addr" 38 - "--skip=breakpoints::test_set_breakpoint_idempotence" 39 - "--skip=io::test_backtrace" 40 - "--skip=io::test_read_register_write" 41 - "--skip=io::test_read_value_u64" 42 - "--skip=multithreaded::test_multithreaded_app_running" 43 - "--skip=multithreaded::test_multithreaded_backtrace" 44 - "--skip=multithreaded::test_multithreaded_breakpoints" 45 - "--skip=multithreaded::test_multithreaded_trace" 46 - "--skip=signal::test_signal_stop_multi_thread" 47 - "--skip=signal::test_signal_stop_multi_thread_multiple_signal" 48 - "--skip=signal::test_signal_stop_single_thread" 49 - "--skip=signal::test_transparent_signals" 50 - "--skip=steps::test_step_into" 51 - "--skip=steps::test_step_into_recursion" 52 - "--skip=steps::test_step_out" 53 - "--skip=steps::test_step_over" 54 - "--skip=steps::test_step_over_inline_code" 55 - "--skip=steps::test_step_over_on_fn_decl" 56 - "--skip=symbol::test_symbol" 57 - "--skip=test_debugger_disassembler" 58 - "--skip=test_debugger_graceful_shutdown" 59 - "--skip=test_debugger_graceful_shutdown_multithread" 60 - "--skip=test_frame_cfa" 61 - "--skip=test_registers" 62 - "--skip=variables::test_arguments" 63 - "--skip=variables::test_btree_map" 64 - "--skip=variables::test_cast_pointers" 65 - "--skip=variables::test_cell" 66 - "--skip=variables::test_circular_ref_types" 67 - "--skip=variables::test_lexical_blocks" 68 - "--skip=variables::test_read_array" 69 - "--skip=variables::test_read_atomic" 70 - "--skip=variables::test_read_btree_set" 71 - "--skip=variables::test_read_closures" 72 - "--skip=variables::test_read_enum" 73 - "--skip=variables::test_read_hashmap" 74 - "--skip=variables::test_read_hashset" 75 - "--skip=variables::test_read_only_local_variables" 76 - "--skip=variables::test_read_pointers" 77 - "--skip=variables::test_read_scalar_variables" 78 - "--skip=variables::test_read_scalar_variables_at_place" 79 - "--skip=variables::test_read_static_in_fn_variable" 80 - "--skip=variables::test_read_static_variables" 81 - "--skip=variables::test_read_static_variables_different_modules" 82 - "--skip=variables::test_read_strings" 83 - "--skip=variables::test_read_struct" 84 - "--skip=variables::test_read_tls_variables" 85 - "--skip=variables::test_read_type_alias" 86 - "--skip=variables::test_read_union" 87 - "--skip=variables::test_read_uuid" 88 - "--skip=variables::test_read_vec_and_slice" 89 - "--skip=variables::test_read_vec_deque" 90 - "--skip=variables::test_shared_ptr" 91 - "--skip=variables::test_slice_operator" 92 - "--skip=variables::test_type_parameters" 93 - "--skip=variables::test_zst_types" 94 - ]; 25 + # Tests require rustup. 26 + doCheck = false; 95 27 96 28 meta = { 97 29 description = "Rust debugger for Linux x86-64";
+19 -8
pkgs/by-name/ca/casadi/package.nix
··· 30 30 #sundials, 31 31 superscs, 32 32 spral, 33 - swig, 33 + swig4, 34 34 tinyxml-2, 35 35 withUnfree ? false, 36 36 }: ··· 96 96 substituteInPlace swig/python/CMakeLists.txt --replace-fail \ 97 97 "if (SWIG_IMPORT)" \ 98 98 "if (NOT SWIG_IMPORT)" 99 + '' 100 + + lib.optionalString stdenv.isDarwin '' 101 + # this is only printing stuff, and is not defined on all CPU 102 + substituteInPlace casadi/interfaces/hpipm/hpipm_runtime.hpp --replace-fail \ 103 + "d_print_exp_tran_mat" \ 104 + "//d_print_exp_tran_mat" 105 + 106 + # fix missing symbols 107 + substituteInPlace cmake/FindCLANG.cmake --replace-fail \ 108 + "clangBasic)" \ 109 + "clangBasic clangASTMatchers clangSupport)" 99 110 ''; 100 111 101 112 nativeBuildInputs = [ ··· 128 139 #sundials 129 140 superscs 130 141 spral 131 - swig 142 + swig4 132 143 tinyxml-2 133 144 ] 134 145 ++ lib.optionals withUnfree [ ··· 138 149 ++ lib.optionals pythonSupport [ 139 150 python3Packages.numpy 140 151 python3Packages.python 141 - ]; 152 + ] 153 + ++ lib.optionals stdenv.isDarwin [ llvmPackages_17.openmp ]; 142 154 143 155 cmakeFlags = [ 144 156 (lib.cmakeBool "WITH_PYTHON" pythonSupport) 145 157 (lib.cmakeBool "WITH_PYTHON3" pythonSupport) 158 + # We don't mind always setting this cmake variable, it will be read only if 159 + # pythonSupport is enabled. 160 + "-DPYTHON_PREFIX=${placeholder "out"}/${python3Packages.python.sitePackages}" 146 161 (lib.cmakeBool "WITH_JSON" false) 147 162 (lib.cmakeBool "WITH_INSTALL_INTERNAL_HEADERS" true) 148 163 (lib.cmakeBool "INSTALL_INTERNAL_HEADERS" true) ··· 189 204 #(lib.cmakeBool "WITH_ALPAQA" true) # this requires casadi... 190 205 ]; 191 206 192 - # I don't know how to pass absolute $out path from cmakeFlags 193 - postConfigure = lib.optionalString pythonSupport '' 194 - cmake -DPYTHON_PREFIX=$out/${python3Packages.python.sitePackages} .. 195 - ''; 196 - 197 207 doCheck = true; 198 208 199 209 meta = { ··· 201 211 homepage = "https://github.com/casadi/casadi"; 202 212 license = lib.licenses.lgpl3Only; 203 213 maintainers = with lib.maintainers; [ nim65s ]; 214 + platforms = lib.platforms.all; 204 215 }; 205 216 })
+2 -2
pkgs/by-name/ch/charmcraft/package.nix
··· 31 31 in 32 32 python.pkgs.buildPythonApplication rec { 33 33 pname = "charmcraft"; 34 - version = "3.1.1"; 34 + version = "3.1.2"; 35 35 36 36 pyproject = true; 37 37 ··· 39 39 owner = "canonical"; 40 40 repo = "charmcraft"; 41 41 rev = "refs/tags/${version}"; 42 - hash = "sha256-oxNbAIf7ltdDYkGJj29zvNDNXT6vt1jWaIqHJoMr7gU="; 42 + hash = "sha256-Qi2ZtAYgQlKj77QPovcT3RrPwAlEwaFyoJ0MAq4EETE="; 43 43 }; 44 44 45 45 postPatch = ''
+2 -2
pkgs/by-name/do/dopamine/package.nix
··· 6 6 }: 7 7 appimageTools.wrapType2 rec { 8 8 pname = "dopamine"; 9 - version = "3.0.0-preview.29"; 9 + version = "3.0.0-preview.31"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/digimezzo/dopamine/releases/download/v${version}/Dopamine-${version}.AppImage"; 13 - hash = "sha256-VBqnqDMLDC5XJIXygENWagXllq1P090EtumADDd2I8w="; 13 + hash = "sha256-NWDk4OOaven1FgSkvKCNY078xkwR+Tp4kUASh/rIbzo="; 14 14 }; 15 15 16 16 extraInstallCommands =
+4 -8
pkgs/by-name/fe/fedimint/package.nix
··· 24 24 in 25 25 buildRustPackage rec { 26 26 pname = "fedimint"; 27 - version = "0.3.3"; 27 + version = "0.4.1"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "fedimint"; 31 31 repo = "fedimint"; 32 32 rev = "v${version}"; 33 - hash = "sha256-0SsIuMCdsZdYSRA1yT1axMe6+p+tIpXyN71V+1B7jYc="; 33 + hash = "sha256-udQxFfLkAysDtD6P3TsW0xEcENA77l+GaDUSnkIBGXo="; 34 34 }; 35 35 36 - cargoHash = "sha256-nQvEcgNOT04H5OgMHfN1713A4nbEaKK2KDx9E3qxcbM="; 36 + cargoHash = "sha256-w1yQOEoumyam4JsDarAQffTs8Ype4VUyGJ0vgJfuHaU="; 37 37 38 38 nativeBuildInputs = [ 39 39 protobuf ··· 62 62 keepPattern=''${keepPattern:1} 63 63 find "$out/bin" -maxdepth 1 -type f | grep -Ev "(''${keepPattern})" | xargs rm -f 64 64 65 - # fix the upstream name 66 - mv $out/bin/recoverytool $out/bin/fedimint-recoverytool 67 - 68 - 69 65 cp -a $releaseDir/fedimint-cli $fedimintCli/bin/ 70 66 cp -a $releaseDir/fedimint-dbtool $fedimintCli/bin/ 71 - cp -a $releaseDir/recoverytool $fedimintCli/bin/fedimint-recoverytool 67 + cp -a $releaseDir/fedimint-recoverytool $fedimintCli/bin/ 72 68 73 69 cp -a $releaseDir/fedimintd $fedimint/bin/ 74 70
+2 -2
pkgs/by-name/fi/filterpath/package.nix
··· 5 5 }: 6 6 stdenv.mkDerivation (finalAttrs: { 7 7 name = "filterpath"; 8 - version = "1.0.1"; 8 + version = "1.0.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "Sigmanificient"; 12 12 repo = "filterpath"; 13 13 rev = finalAttrs.version; 14 - hash = "sha256-vagIImWQQRigMYW12lw+Eg37JJ2yO/V5jq4wD3q4yy8="; 14 + hash = "sha256-9rHooXgpvfNNeWxS8UF6hmb8vCz+xKABrJNd+AgKFJs="; 15 15 }; 16 16 17 17 makeFlags = [
+2 -2
pkgs/by-name/fr/frankenphp/package.nix
··· 28 28 pieBuild = stdenv.hostPlatform.isMusl; 29 29 in buildGoModule rec { 30 30 pname = "frankenphp"; 31 - version = "1.2.3"; 31 + version = "1.2.4"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "dunglas"; 35 35 repo = "frankenphp"; 36 36 rev = "v${version}"; 37 - hash = "sha256-P4yBguD3DXYUe70/mKmvzFnsBXQOH4APaAZZle8lFeg="; 37 + hash = "sha256-ZM8/1u4wIBHUgq2x8zyDJhf+qFQz4u5fhLNLaqAv/54="; 38 38 }; 39 39 40 40 sourceRoot = "${src.name}/caddy";
+1858 -964
pkgs/by-name/go/gossip/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "ab_glyph" 7 - version = "0.2.23" 7 + version = "0.2.25" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "80179d7dd5d7e8c285d67c4a1e652972a92de7475beddfb92028c76463b13225" 9 + checksum = "6f90148830dac590fac7ccfe78ec4a8ea404c60f75a24e16407a71f0f40de775" 10 10 dependencies = [ 11 11 "ab_glyph_rasterizer", 12 12 "owned_ttf_parser", ··· 20 20 21 21 [[package]] 22 22 name = "accesskit" 23 - version = "0.11.2" 23 + version = "0.12.3" 24 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "76eb1adf08c5bcaa8490b9851fd53cca27fa9880076f178ea9d29f05196728a8" 25 + checksum = "74a4b14f3d99c1255dcba8f45621ab1a2e7540a0009652d33989005a4d0bfc6b" 26 26 dependencies = [ 27 27 "enumn", 28 28 "serde", ··· 30 30 31 31 [[package]] 32 32 name = "accesskit_consumer" 33 - version = "0.15.2" 33 + version = "0.16.1" 34 34 source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "04bb4d9e4772fe0d47df57d0d5dbe5d85dd05e2f37ae1ddb6b105e76be58fb00" 35 + checksum = "8c17cca53c09fbd7288667b22a201274b9becaa27f0b91bf52a526db95de45e6" 36 36 dependencies = [ 37 37 "accesskit", 38 38 ] 39 39 40 40 [[package]] 41 41 name = "accesskit_macos" 42 - version = "0.9.0" 42 + version = "0.10.1" 43 43 source = "registry+https://github.com/rust-lang/crates.io-index" 44 - checksum = "134d0acf6acb667c89d3332999b1a5df4edbc8d6113910f392ebb73f2b03bb56" 44 + checksum = "cd3b6ae1eabbfbced10e840fd3fce8a93ae84f174b3e4ba892ab7bcb42e477a7" 45 45 dependencies = [ 46 46 "accesskit", 47 47 "accesskit_consumer", 48 - "objc2", 48 + "objc2 0.3.0-beta.3.patch-leaks.3", 49 49 "once_cell", 50 50 ] 51 51 52 52 [[package]] 53 53 name = "accesskit_unix" 54 - version = "0.5.2" 54 + version = "0.6.2" 55 55 source = "registry+https://github.com/rust-lang/crates.io-index" 56 - checksum = "e084cb5168790c0c112626175412dc5ad127083441a8248ae49ddf6725519e83" 56 + checksum = "09f46c18d99ba61ad7123dd13eeb0c104436ab6af1df6a1cd8c11054ed394a08" 57 57 dependencies = [ 58 58 "accesskit", 59 59 "accesskit_consumer", 60 - "async-channel 1.9.0", 60 + "async-channel", 61 + "async-once-cell", 61 62 "atspi", 62 63 "futures-lite 1.13.0", 64 + "once_cell", 63 65 "serde", 64 66 "zbus", 65 67 ] 66 68 67 69 [[package]] 68 70 name = "accesskit_windows" 69 - version = "0.14.3" 71 + version = "0.15.1" 70 72 source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "9eac0a7f2d7cd7a93b938af401d3d8e8b7094217989a7c25c55a953023436e31" 73 + checksum = "afcae27ec0974fc7c3b0b318783be89fd1b2e66dd702179fe600166a38ff4a0b" 72 74 dependencies = [ 73 75 "accesskit", 74 76 "accesskit_consumer", 75 - "arrayvec", 76 77 "once_cell", 77 78 "paste", 78 - "windows", 79 + "static_assertions", 80 + "windows 0.48.0", 79 81 ] 80 82 81 83 [[package]] 82 84 name = "accesskit_winit" 83 - version = "0.14.4" 85 + version = "0.16.1" 84 86 source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "825d23acee1bd6d25cbaa3ca6ed6e73faf24122a774ec33d52c5c86c6ab423c0" 87 + checksum = "5284218aca17d9e150164428a0ebc7b955f70e3a9a78b4c20894513aabf98a67" 86 88 dependencies = [ 87 89 "accesskit", 88 90 "accesskit_macos", ··· 118 120 119 121 [[package]] 120 122 name = "aes" 121 - version = "0.8.3" 123 + version = "0.8.4" 122 124 source = "registry+https://github.com/rust-lang/crates.io-index" 123 - checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 125 + checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 124 126 dependencies = [ 125 127 "cfg-if", 126 128 "cipher", ··· 129 131 130 132 [[package]] 131 133 name = "ahash" 132 - version = "0.7.7" 134 + version = "0.7.8" 133 135 source = "registry+https://github.com/rust-lang/crates.io-index" 134 - checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 136 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 135 137 dependencies = [ 136 - "getrandom", 138 + "getrandom 0.2.14", 137 139 "once_cell", 138 140 "version_check", 139 141 ] 140 142 141 143 [[package]] 142 144 name = "ahash" 143 - version = "0.8.6" 145 + version = "0.8.11" 144 146 source = "registry+https://github.com/rust-lang/crates.io-index" 145 - checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 147 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 146 148 dependencies = [ 147 149 "cfg-if", 148 150 "const-random", 149 - "getrandom", 151 + "getrandom 0.2.14", 150 152 "once_cell", 151 153 "serde", 152 154 "version_check", ··· 155 157 156 158 [[package]] 157 159 name = "aho-corasick" 158 - version = "1.1.2" 160 + version = "1.1.3" 159 161 source = "registry+https://github.com/rust-lang/crates.io-index" 160 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 162 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 161 163 dependencies = [ 162 164 "memchr", 163 165 ] ··· 178 180 ] 179 181 180 182 [[package]] 183 + name = "allocator-api2" 184 + version = "0.2.18" 185 + source = "registry+https://github.com/rust-lang/crates.io-index" 186 + checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 187 + 188 + [[package]] 181 189 name = "android-activity" 182 - version = "0.4.3" 190 + version = "0.5.2" 183 191 source = "registry+https://github.com/rust-lang/crates.io-index" 184 - checksum = "64529721f27c2314ced0890ce45e469574a73e5e6fdd6e9da1860eb29285f5e0" 192 + checksum = "ee91c0c2905bae44f84bfa4e044536541df26b7703fd0888deeb9060fcc44289" 185 193 dependencies = [ 186 194 "android-properties", 187 - "bitflags 1.3.2", 195 + "bitflags 2.5.0", 188 196 "cc", 197 + "cesu8", 198 + "jni", 189 199 "jni-sys", 190 200 "libc", 191 201 "log", 192 202 "ndk", 193 203 "ndk-context", 194 204 "ndk-sys", 195 - "num_enum 0.6.1", 205 + "num_enum", 206 + "thiserror", 196 207 ] 197 208 198 209 [[package]] ··· 218 229 219 230 [[package]] 220 231 name = "anyhow" 221 - version = "1.0.75" 232 + version = "1.0.82" 222 233 source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 234 + checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" 224 235 225 236 [[package]] 226 237 name = "arboard" 227 - version = "3.3.0" 238 + version = "3.3.2" 228 239 source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "aafb29b107435aa276664c1db8954ac27a6e105cdad3c88287a199eb0e313c08" 240 + checksum = "a2041f1943049c7978768d84e6d0fd95de98b76d6c4727b09e78ec253d29fa58" 230 241 dependencies = [ 231 242 "clipboard-win", 232 243 "log", ··· 235 246 "objc_id", 236 247 "parking_lot", 237 248 "thiserror", 238 - "winapi", 239 249 "x11rb", 240 250 ] 241 251 ··· 252 262 checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 253 263 254 264 [[package]] 255 - name = "async-broadcast" 256 - version = "0.5.1" 265 + name = "as-raw-xcb-connection" 266 + version = "1.0.1" 267 + source = "registry+https://github.com/rust-lang/crates.io-index" 268 + checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" 269 + 270 + [[package]] 271 + name = "ash" 272 + version = "0.37.3+1.3.251" 257 273 source = "registry+https://github.com/rust-lang/crates.io-index" 258 - checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 274 + checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a" 259 275 dependencies = [ 260 - "event-listener 2.5.3", 261 - "futures-core", 276 + "libloading 0.7.4", 262 277 ] 263 278 264 279 [[package]] 265 - name = "async-channel" 266 - version = "1.9.0" 280 + name = "async-broadcast" 281 + version = "0.5.1" 267 282 source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 283 + checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 269 284 dependencies = [ 270 - "concurrent-queue", 271 285 "event-listener 2.5.3", 272 286 "futures-core", 273 287 ] 274 288 275 289 [[package]] 276 290 name = "async-channel" 277 - version = "2.1.1" 291 + version = "2.2.1" 278 292 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 293 + checksum = "136d4d23bcc79e27423727b36823d86233aad06dfea531837b038394d11e9928" 280 294 dependencies = [ 281 295 "concurrent-queue", 282 - "event-listener 4.0.0", 283 - "event-listener-strategy", 296 + "event-listener 5.3.0", 297 + "event-listener-strategy 0.5.1", 284 298 "futures-core", 285 299 "pin-project-lite", 286 300 ] 287 301 288 302 [[package]] 289 303 name = "async-compression" 290 - version = "0.4.5" 304 + version = "0.4.8" 291 305 source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 306 + checksum = "07dbbf24db18d609b1462965249abdf49129ccad073ec257da372adc83259c60" 293 307 dependencies = [ 294 308 "brotli", 295 309 "flate2", ··· 301 315 302 316 [[package]] 303 317 name = "async-executor" 304 - version = "1.8.0" 318 + version = "1.11.0" 305 319 source = "registry+https://github.com/rust-lang/crates.io-index" 306 - checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 320 + checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a" 307 321 dependencies = [ 308 - "async-lock 3.2.0", 309 322 "async-task", 310 323 "concurrent-queue", 311 - "fastrand 2.0.1", 312 - "futures-lite 2.1.0", 324 + "fastrand 2.0.2", 325 + "futures-lite 2.3.0", 313 326 "slab", 314 327 ] 315 328 ··· 347 360 348 361 [[package]] 349 362 name = "async-io" 350 - version = "2.2.2" 363 + version = "2.3.2" 351 364 source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7" 365 + checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" 353 366 dependencies = [ 354 - "async-lock 3.2.0", 367 + "async-lock 3.3.0", 355 368 "cfg-if", 356 369 "concurrent-queue", 357 370 "futures-io", 358 - "futures-lite 2.1.0", 371 + "futures-lite 2.3.0", 359 372 "parking", 360 - "polling 3.3.1", 361 - "rustix 0.38.28", 373 + "polling 3.7.0", 374 + "rustix 0.38.34", 362 375 "slab", 363 376 "tracing", 364 377 "windows-sys 0.52.0", ··· 375 388 376 389 [[package]] 377 390 name = "async-lock" 378 - version = "3.2.0" 391 + version = "3.3.0" 379 392 source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" 393 + checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 381 394 dependencies = [ 382 - "event-listener 4.0.0", 383 - "event-listener-strategy", 395 + "event-listener 4.0.3", 396 + "event-listener-strategy 0.4.0", 384 397 "pin-project-lite", 385 398 ] 399 + 400 + [[package]] 401 + name = "async-once-cell" 402 + version = "0.5.3" 403 + source = "registry+https://github.com/rust-lang/crates.io-index" 404 + checksum = "9338790e78aa95a416786ec8389546c4b6a1dfc3dc36071ed9518a9413a542eb" 386 405 387 406 [[package]] 388 407 name = "async-process" ··· 397 416 "cfg-if", 398 417 "event-listener 3.1.0", 399 418 "futures-lite 1.13.0", 400 - "rustix 0.38.28", 419 + "rustix 0.38.34", 401 420 "windows-sys 0.48.0", 402 421 ] 403 422 404 423 [[package]] 405 424 name = "async-recursion" 406 - version = "1.0.5" 425 + version = "1.1.1" 407 426 source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 427 + checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 409 428 dependencies = [ 410 429 "proc-macro2", 411 430 "quote", 412 - "syn 2.0.41", 431 + "syn 2.0.60", 413 432 ] 414 433 415 434 [[package]] 416 435 name = "async-signal" 417 - version = "0.2.5" 436 + version = "0.2.6" 418 437 source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 438 + checksum = "afe66191c335039c7bb78f99dc7520b0cbb166b3a1cb33a03f53d8a1c6f2afda" 420 439 dependencies = [ 421 - "async-io 2.2.2", 422 - "async-lock 2.8.0", 440 + "async-io 2.3.2", 441 + "async-lock 3.3.0", 423 442 "atomic-waker", 424 443 "cfg-if", 425 444 "futures-core", 426 445 "futures-io", 427 - "rustix 0.38.28", 446 + "rustix 0.38.34", 428 447 "signal-hook-registry", 429 448 "slab", 430 - "windows-sys 0.48.0", 449 + "windows-sys 0.52.0", 431 450 ] 432 451 433 452 [[package]] 434 453 name = "async-task" 435 - version = "4.5.0" 454 + version = "4.7.0" 436 455 source = "registry+https://github.com/rust-lang/crates.io-index" 437 - checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" 456 + checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 438 457 439 458 [[package]] 440 459 name = "async-trait" 441 - version = "0.1.74" 460 + version = "0.1.80" 442 461 source = "registry+https://github.com/rust-lang/crates.io-index" 443 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 462 + checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 444 463 dependencies = [ 445 464 "proc-macro2", 446 465 "quote", 447 - "syn 2.0.41", 466 + "syn 2.0.60", 448 467 ] 449 468 450 469 [[package]] ··· 455 474 456 475 [[package]] 457 476 name = "atspi" 458 - version = "0.10.1" 477 + version = "0.19.0" 459 478 source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "674e7a3376837b2e7d12d34d58ac47073c491dc3bf6f71a7adaf687d4d817faa" 479 + checksum = "6059f350ab6f593ea00727b334265c4dfc7fd442ee32d264794bd9bdc68e87ca" 461 480 dependencies = [ 462 - "async-recursion", 463 - "async-trait", 464 - "atspi-macros", 481 + "atspi-common", 482 + "atspi-connection", 483 + "atspi-proxies", 484 + ] 485 + 486 + [[package]] 487 + name = "atspi-common" 488 + version = "0.3.0" 489 + source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "92af95f966d2431f962bc632c2e68eda7777330158bf640c4af4249349b2cdf5" 491 + dependencies = [ 465 492 "enumflags2", 466 - "futures-lite 1.13.0", 467 493 "serde", 468 - "tracing", 494 + "static_assertions", 469 495 "zbus", 470 496 "zbus_names", 497 + "zvariant", 471 498 ] 472 499 473 500 [[package]] 474 - name = "atspi-macros" 475 - version = "0.2.0" 501 + name = "atspi-connection" 502 + version = "0.3.0" 476 503 source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "97fb4870a32c0eaa17e35bca0e6b16020635157121fb7d45593d242c295bc768" 504 + checksum = "a0c65e7d70f86d4c0e3b2d585d9bf3f979f0b19d635a336725a88d279f76b939" 478 505 dependencies = [ 479 - "quote", 480 - "syn 1.0.109", 506 + "atspi-common", 507 + "atspi-proxies", 508 + "futures-lite 1.13.0", 509 + "zbus", 510 + ] 511 + 512 + [[package]] 513 + name = "atspi-proxies" 514 + version = "0.3.0" 515 + source = "registry+https://github.com/rust-lang/crates.io-index" 516 + checksum = "6495661273703e7a229356dcbe8c8f38223d697aacfaf0e13590a9ac9977bb52" 517 + dependencies = [ 518 + "atspi-common", 519 + "serde", 520 + "zbus", 481 521 ] 482 522 483 523 [[package]] 484 524 name = "autocfg" 485 - version = "1.1.0" 525 + version = "1.2.0" 486 526 source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 527 + checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 488 528 489 529 [[package]] 490 530 name = "backtrace" 491 - version = "0.3.69" 531 + version = "0.3.71" 492 532 source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 533 + checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" 494 534 dependencies = [ 495 535 "addr2line", 496 536 "cc", ··· 503 543 504 544 [[package]] 505 545 name = "base64" 506 - version = "0.21.5" 546 + version = "0.12.3" 507 547 source = "registry+https://github.com/rust-lang/crates.io-index" 508 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 548 + checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 549 + 550 + [[package]] 551 + name = "base64" 552 + version = "0.21.7" 553 + source = "registry+https://github.com/rust-lang/crates.io-index" 554 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 555 + 556 + [[package]] 557 + name = "base64" 558 + version = "0.22.0" 559 + source = "registry+https://github.com/rust-lang/crates.io-index" 560 + checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" 509 561 510 562 [[package]] 511 563 name = "base64ct" ··· 520 572 checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" 521 573 522 574 [[package]] 575 + name = "bech32" 576 + version = "0.11.0" 577 + source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d" 579 + 580 + [[package]] 523 581 name = "bincode" 524 582 version = "1.3.3" 525 583 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 530 588 531 589 [[package]] 532 590 name = "bindgen" 533 - version = "0.64.0" 591 + version = "0.69.4" 534 592 source = "registry+https://github.com/rust-lang/crates.io-index" 535 - checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4" 593 + checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 536 594 dependencies = [ 537 - "bitflags 1.3.2", 595 + "bitflags 2.5.0", 538 596 "cexpr", 539 597 "clang-sys", 598 + "itertools", 540 599 "lazy_static", 541 600 "lazycell", 542 - "peeking_take_while", 543 601 "proc-macro2", 544 602 "quote", 545 603 "regex", 546 604 "rustc-hash", 547 605 "shlex", 548 - "syn 1.0.109", 606 + "syn 2.0.60", 549 607 ] 550 608 551 609 [[package]] 610 + name = "bit-set" 611 + version = "0.5.3" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 614 + dependencies = [ 615 + "bit-vec", 616 + ] 617 + 618 + [[package]] 619 + name = "bit-vec" 620 + version = "0.6.3" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 623 + 624 + [[package]] 552 625 name = "bit_field" 553 626 version = "0.10.2" 554 627 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 556 629 557 630 [[package]] 558 631 name = "bitcoin" 559 - version = "0.29.2" 632 + version = "0.30.2" 560 633 source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "0694ea59225b0c5f3cb405ff3f670e4828358ed26aec49dc352f730f0cb1a8a3" 634 + checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462" 562 635 dependencies = [ 563 - "bech32", 564 - "bitcoin_hashes 0.11.0", 565 - "secp256k1 0.24.3", 636 + "bech32 0.9.1", 637 + "bitcoin-private", 638 + "bitcoin_hashes 0.12.0", 639 + "hex_lit", 640 + "secp256k1 0.27.0", 566 641 ] 567 642 568 643 [[package]] ··· 573 648 574 649 [[package]] 575 650 name = "bitcoin_hashes" 576 - version = "0.11.0" 651 + version = "0.12.0" 577 652 source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4" 653 + checksum = "5d7066118b13d4b20b23645932dfb3a81ce7e29f95726c2036fa33cd7b092501" 654 + dependencies = [ 655 + "bitcoin-private", 656 + ] 579 657 580 658 [[package]] 581 659 name = "bitcoin_hashes" 582 - version = "0.12.0" 660 + version = "0.14.0" 583 661 source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "5d7066118b13d4b20b23645932dfb3a81ce7e29f95726c2036fa33cd7b092501" 662 + checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" 585 663 dependencies = [ 586 - "bitcoin-private", 664 + "hex-conservative 0.2.0", 587 665 ] 588 666 589 667 [[package]] ··· 594 672 595 673 [[package]] 596 674 name = "bitflags" 597 - version = "2.4.1" 675 + version = "2.5.0" 598 676 source = "registry+https://github.com/rust-lang/crates.io-index" 599 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 677 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 600 678 dependencies = [ 601 679 "serde", 602 680 ] ··· 631 709 source = "registry+https://github.com/rust-lang/crates.io-index" 632 710 checksum = "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146" 633 711 dependencies = [ 634 - "objc-sys", 712 + "objc-sys 0.2.0-beta.2", 713 + ] 714 + 715 + [[package]] 716 + name = "block-sys" 717 + version = "0.2.1" 718 + source = "registry+https://github.com/rust-lang/crates.io-index" 719 + checksum = "ae85a0696e7ea3b835a453750bf002770776609115e6d25c6d2ff28a8200f7e7" 720 + dependencies = [ 721 + "objc-sys 0.3.3", 635 722 ] 636 723 637 724 [[package]] ··· 640 727 source = "registry+https://github.com/rust-lang/crates.io-index" 641 728 checksum = "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42" 642 729 dependencies = [ 643 - "block-sys", 644 - "objc2-encode", 730 + "block-sys 0.1.0-beta.1", 731 + "objc2-encode 2.0.0-pre.2", 732 + ] 733 + 734 + [[package]] 735 + name = "block2" 736 + version = "0.3.0" 737 + source = "registry+https://github.com/rust-lang/crates.io-index" 738 + checksum = "15b55663a85f33501257357e6421bb33e769d5c9ffb5ba0921c975a123e35e68" 739 + dependencies = [ 740 + "block-sys 0.2.1", 741 + "objc2 0.4.1", 645 742 ] 646 743 647 744 [[package]] ··· 650 747 source = "registry+https://github.com/rust-lang/crates.io-index" 651 748 checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 652 749 dependencies = [ 653 - "async-channel 2.1.1", 654 - "async-lock 3.2.0", 750 + "async-channel", 751 + "async-lock 3.3.0", 655 752 "async-task", 656 - "fastrand 2.0.1", 753 + "fastrand 2.0.2", 657 754 "futures-io", 658 - "futures-lite 2.1.0", 755 + "futures-lite 2.3.0", 659 756 "piper", 660 757 "tracing", 661 758 ] 662 759 663 760 [[package]] 664 761 name = "brotli" 665 - version = "3.4.0" 762 + version = "4.0.0" 666 763 source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 764 + checksum = "125740193d7fee5cc63ab9e16c2fdc4e07c74ba755cc53b327d6ea029e9fc569" 668 765 dependencies = [ 669 766 "alloc-no-stdlib", 670 767 "alloc-stdlib", ··· 673 770 674 771 [[package]] 675 772 name = "brotli-decompressor" 676 - version = "2.5.1" 773 + version = "3.0.0" 677 774 source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 775 + checksum = "65622a320492e09b5e0ac436b14c54ff68199bac392d0e89a6832c4518eea525" 679 776 dependencies = [ 680 777 "alloc-no-stdlib", 681 778 "alloc-stdlib", ··· 683 780 684 781 [[package]] 685 782 name = "bumpalo" 686 - version = "3.14.0" 783 + version = "3.16.0" 687 784 source = "registry+https://github.com/rust-lang/crates.io-index" 688 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 785 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 689 786 690 787 [[package]] 691 788 name = "bytemuck" 692 - version = "1.14.0" 789 + version = "1.15.0" 693 790 source = "registry+https://github.com/rust-lang/crates.io-index" 694 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 791 + checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" 695 792 dependencies = [ 696 793 "bytemuck_derive", 697 794 ] 698 795 699 796 [[package]] 700 797 name = "bytemuck_derive" 701 - version = "1.5.0" 798 + version = "1.6.0" 702 799 source = "registry+https://github.com/rust-lang/crates.io-index" 703 - checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 800 + checksum = "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60" 704 801 dependencies = [ 705 802 "proc-macro2", 706 803 "quote", 707 - "syn 2.0.41", 804 + "syn 2.0.60", 708 805 ] 709 806 710 807 [[package]] ··· 715 812 716 813 [[package]] 717 814 name = "bytes" 718 - version = "1.5.0" 815 + version = "1.6.0" 719 816 source = "registry+https://github.com/rust-lang/crates.io-index" 720 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 817 + checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 721 818 722 819 [[package]] 723 820 name = "calloop" 724 - version = "0.10.6" 821 + version = "0.12.4" 725 822 source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "52e0d00eb1ea24371a97d2da6201c6747a633dc6dc1988ef503403b4c59504a8" 823 + checksum = "fba7adb4dd5aa98e5553510223000e7148f621165ec5f9acd7113f6ca4995298" 727 824 dependencies = [ 728 - "bitflags 1.3.2", 825 + "bitflags 2.5.0", 729 826 "log", 730 - "nix 0.25.1", 731 - "slotmap", 827 + "polling 3.7.0", 828 + "rustix 0.38.34", 829 + "slab", 732 830 "thiserror", 733 - "vec_map", 831 + ] 832 + 833 + [[package]] 834 + name = "calloop-wayland-source" 835 + version = "0.2.0" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02" 838 + dependencies = [ 839 + "calloop", 840 + "rustix 0.38.34", 841 + "wayland-backend", 842 + "wayland-client", 734 843 ] 735 844 736 845 [[package]] ··· 744 853 745 854 [[package]] 746 855 name = "cc" 747 - version = "1.0.83" 856 + version = "1.0.95" 748 857 source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 858 + checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b" 750 859 dependencies = [ 751 860 "jobserver", 752 861 "libc", 862 + "once_cell", 753 863 ] 754 864 755 865 [[package]] ··· 820 930 821 931 [[package]] 822 932 name = "chrono" 823 - version = "0.4.31" 933 + version = "0.4.38" 824 934 source = "registry+https://github.com/rust-lang/crates.io-index" 825 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 935 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 826 936 dependencies = [ 827 937 "android-tzdata", 828 938 "iana-time-zone", 829 939 "js-sys", 830 940 "num-traits", 831 941 "wasm-bindgen", 832 - "windows-targets 0.48.5", 942 + "windows-targets 0.52.5", 833 943 ] 834 944 835 945 [[package]] ··· 845 955 846 956 [[package]] 847 957 name = "clang-sys" 848 - version = "1.6.1" 958 + version = "1.7.0" 849 959 source = "registry+https://github.com/rust-lang/crates.io-index" 850 - checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 960 + checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 851 961 dependencies = [ 852 962 "glob", 853 963 "libc", 854 - "libloading 0.7.4", 964 + "libloading 0.8.3", 855 965 ] 856 966 857 967 [[package]] 858 968 name = "clipboard-win" 859 - version = "4.5.0" 969 + version = "5.3.1" 860 970 source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" 971 + checksum = "79f4473f5144e20d9aceaf2972478f06ddf687831eafeeb434fbaf0acc4144ad" 862 972 dependencies = [ 863 973 "error-code", 864 - "str-buf", 865 - "winapi", 866 974 ] 867 975 868 976 [[package]] ··· 876 984 877 985 [[package]] 878 986 name = "cocoa" 879 - version = "0.24.1" 987 + version = "0.25.0" 880 988 source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 989 + checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 882 990 dependencies = [ 883 991 "bitflags 1.3.2", 884 992 "block", 885 993 "cocoa-foundation", 886 994 "core-foundation", 887 995 "core-graphics", 888 - "foreign-types", 996 + "foreign-types 0.5.0", 889 997 "libc", 890 998 "objc", 891 999 ] ··· 905 1013 ] 906 1014 907 1015 [[package]] 1016 + name = "codespan-reporting" 1017 + version = "0.11.1" 1018 + source = "registry+https://github.com/rust-lang/crates.io-index" 1019 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1020 + dependencies = [ 1021 + "termcolor", 1022 + "unicode-width", 1023 + ] 1024 + 1025 + [[package]] 908 1026 name = "color_quant" 909 1027 version = "1.1.0" 910 1028 source = "registry+https://github.com/rust-lang/crates.io-index" 911 1029 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 912 1030 913 1031 [[package]] 1032 + name = "com" 1033 + version = "0.6.0" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6" 1036 + dependencies = [ 1037 + "com_macros", 1038 + ] 1039 + 1040 + [[package]] 1041 + name = "com_macros" 1042 + version = "0.6.0" 1043 + source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5" 1045 + dependencies = [ 1046 + "com_macros_support", 1047 + "proc-macro2", 1048 + "syn 1.0.109", 1049 + ] 1050 + 1051 + [[package]] 1052 + name = "com_macros_support" 1053 + version = "0.6.0" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c" 1056 + dependencies = [ 1057 + "proc-macro2", 1058 + "quote", 1059 + "syn 1.0.109", 1060 + ] 1061 + 1062 + [[package]] 914 1063 name = "combine" 915 - version = "4.6.6" 1064 + version = "4.6.7" 916 1065 source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 1066 + checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 918 1067 dependencies = [ 919 1068 "bytes", 920 1069 "memchr", ··· 931 1080 932 1081 [[package]] 933 1082 name = "const-random" 934 - version = "0.1.17" 1083 + version = "0.1.18" 935 1084 source = "registry+https://github.com/rust-lang/crates.io-index" 936 - checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" 1085 + checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 937 1086 dependencies = [ 938 1087 "const-random-macro", 939 1088 ] ··· 944 1093 source = "registry+https://github.com/rust-lang/crates.io-index" 945 1094 checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 946 1095 dependencies = [ 947 - "getrandom", 1096 + "getrandom 0.2.14", 948 1097 "once_cell", 949 1098 "tiny-keccak", 950 1099 ] 951 1100 952 1101 [[package]] 1102 + name = "constant_time_eq" 1103 + version = "0.3.0" 1104 + source = "registry+https://github.com/rust-lang/crates.io-index" 1105 + checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 1106 + 1107 + [[package]] 953 1108 name = "convert_case" 954 1109 version = "0.4.0" 955 1110 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 973 1128 974 1129 [[package]] 975 1130 name = "core-graphics" 976 - version = "0.22.3" 1131 + version = "0.23.2" 977 1132 source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 1133 + checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 979 1134 dependencies = [ 980 1135 "bitflags 1.3.2", 981 1136 "core-foundation", 982 1137 "core-graphics-types", 983 - "foreign-types", 1138 + "foreign-types 0.5.0", 984 1139 "libc", 985 1140 ] 986 1141 ··· 1003 1158 1004 1159 [[package]] 1005 1160 name = "cpufeatures" 1006 - version = "0.2.11" 1161 + version = "0.2.12" 1007 1162 source = "registry+https://github.com/rust-lang/crates.io-index" 1008 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1163 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1009 1164 dependencies = [ 1010 1165 "libc", 1011 1166 ] 1012 1167 1013 1168 [[package]] 1014 1169 name = "crc32fast" 1015 - version = "1.3.2" 1170 + version = "1.4.0" 1016 1171 source = "registry+https://github.com/rust-lang/crates.io-index" 1017 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1172 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 1018 1173 dependencies = [ 1019 1174 "cfg-if", 1020 1175 ] 1021 1176 1022 1177 [[package]] 1023 1178 name = "crossbeam-deque" 1024 - version = "0.8.4" 1179 + version = "0.8.5" 1025 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" 1181 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1027 1182 dependencies = [ 1028 - "cfg-if", 1029 1183 "crossbeam-epoch", 1030 1184 "crossbeam-utils", 1031 1185 ] 1032 1186 1033 1187 [[package]] 1034 1188 name = "crossbeam-epoch" 1035 - version = "0.9.16" 1189 + version = "0.9.18" 1036 1190 source = "registry+https://github.com/rust-lang/crates.io-index" 1037 - checksum = "2d2fe95351b870527a5d09bf563ed3c97c0cffb87cf1c78a591bf48bb218d9aa" 1191 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1038 1192 dependencies = [ 1039 - "autocfg", 1040 - "cfg-if", 1041 1193 "crossbeam-utils", 1042 - "memoffset 0.9.0", 1043 1194 ] 1044 1195 1045 1196 [[package]] 1046 1197 name = "crossbeam-queue" 1047 - version = "0.3.9" 1198 + version = "0.3.11" 1048 1199 source = "registry+https://github.com/rust-lang/crates.io-index" 1049 - checksum = "b9bcf5bdbfdd6030fb4a1c497b5d5fc5921aa2f60d359a17e249c0e6df3de153" 1200 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1050 1201 dependencies = [ 1051 - "cfg-if", 1052 1202 "crossbeam-utils", 1053 1203 ] 1054 1204 1055 1205 [[package]] 1056 1206 name = "crossbeam-utils" 1057 - version = "0.8.17" 1207 + version = "0.8.19" 1058 1208 source = "registry+https://github.com/rust-lang/crates.io-index" 1059 - checksum = "c06d96137f14f244c37f989d9fff8f95e6c18b918e71f36638f8c49112e4c78f" 1060 - dependencies = [ 1061 - "cfg-if", 1062 - ] 1209 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 1063 1210 1064 1211 [[package]] 1065 1212 name = "crunchy" ··· 1074 1221 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1075 1222 dependencies = [ 1076 1223 "generic-array", 1077 - "rand_core", 1224 + "rand_core 0.6.4", 1078 1225 "typenum", 1079 1226 ] 1227 + 1228 + [[package]] 1229 + name = "cursor-icon" 1230 + version = "1.1.0" 1231 + source = "registry+https://github.com/rust-lang/crates.io-index" 1232 + checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 1080 1233 1081 1234 [[package]] 1082 1235 name = "dashmap" ··· 1105 1258 1106 1259 [[package]] 1107 1260 name = "deranged" 1108 - version = "0.3.10" 1261 + version = "0.3.11" 1109 1262 source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 1263 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1111 1264 dependencies = [ 1112 1265 "powerfmt", 1113 1266 ] ··· 1201 1354 source = "registry+https://github.com/rust-lang/crates.io-index" 1202 1355 checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 1203 1356 dependencies = [ 1204 - "libloading 0.8.1", 1357 + "libloading 0.7.4", 1358 + ] 1359 + 1360 + [[package]] 1361 + name = "document-features" 1362 + version = "0.2.8" 1363 + source = "registry+https://github.com/rust-lang/crates.io-index" 1364 + checksum = "ef5282ad69563b5fc40319526ba27e0e7363d552a896f0297d54f767717f9b95" 1365 + dependencies = [ 1366 + "litrs", 1205 1367 ] 1206 1368 1207 1369 [[package]] 1208 1370 name = "downcast-rs" 1209 - version = "1.2.0" 1371 + version = "1.2.1" 1210 1372 source = "registry+https://github.com/rust-lang/crates.io-index" 1211 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 1373 + checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 1212 1374 1213 1375 [[package]] 1214 1376 name = "doxygen-rs" ··· 1221 1383 1222 1384 [[package]] 1223 1385 name = "ecolor" 1224 - version = "0.23.0" 1225 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1386 + version = "0.26.2" 1387 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1226 1388 dependencies = [ 1227 1389 "bytemuck", 1228 1390 "serde", ··· 1230 1392 1231 1393 [[package]] 1232 1394 name = "eframe" 1233 - version = "0.23.0" 1234 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1395 + version = "0.26.2" 1396 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1235 1397 dependencies = [ 1236 1398 "bytemuck", 1237 1399 "cocoa", 1238 1400 "directories-next", 1401 + "document-features", 1239 1402 "egui", 1403 + "egui-wgpu", 1240 1404 "egui-winit", 1241 1405 "egui_glow", 1242 1406 "glow", ··· 1248 1412 "objc", 1249 1413 "parking_lot", 1250 1414 "percent-encoding", 1251 - "raw-window-handle", 1415 + "pollster", 1416 + "raw-window-handle 0.5.2", 1417 + "raw-window-handle 0.6.1", 1252 1418 "ron", 1253 1419 "serde", 1254 1420 "static_assertions", ··· 1256 1422 "wasm-bindgen", 1257 1423 "wasm-bindgen-futures", 1258 1424 "web-sys", 1425 + "web-time", 1426 + "wgpu", 1259 1427 "winapi", 1260 1428 "winit", 1261 1429 ] 1262 1430 1263 1431 [[package]] 1264 1432 name = "egui" 1265 - version = "0.23.0" 1266 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1433 + version = "0.26.2" 1434 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1267 1435 dependencies = [ 1268 1436 "accesskit", 1269 - "ahash 0.8.6", 1437 + "ahash 0.8.11", 1270 1438 "epaint", 1271 1439 "log", 1272 1440 "nohash-hasher", ··· 1277 1445 [[package]] 1278 1446 name = "egui-video" 1279 1447 version = "0.1.0" 1280 - source = "git+https://github.com/mikedilger/egui-video?rev=d12a4859d383524f978a0dd29d61e1ebd281e735#d12a4859d383524f978a0dd29d61e1ebd281e735" 1448 + source = "git+https://github.com/mikedilger/egui-video?rev=97f58f88dfe912697393567830d0751676492a89#97f58f88dfe912697393567830d0751676492a89" 1281 1449 dependencies = [ 1282 1450 "anyhow", 1283 1451 "chrono", ··· 1292 1460 ] 1293 1461 1294 1462 [[package]] 1463 + name = "egui-wgpu" 1464 + version = "0.26.2" 1465 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1466 + dependencies = [ 1467 + "bytemuck", 1468 + "document-features", 1469 + "egui", 1470 + "epaint", 1471 + "log", 1472 + "thiserror", 1473 + "type-map", 1474 + "web-time", 1475 + "wgpu", 1476 + "winit", 1477 + ] 1478 + 1479 + [[package]] 1295 1480 name = "egui-winit" 1296 - version = "0.23.0" 1297 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1481 + version = "0.26.2" 1482 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1298 1483 dependencies = [ 1299 1484 "accesskit_winit", 1300 1485 "arboard", 1301 1486 "egui", 1302 1487 "log", 1303 - "raw-window-handle", 1488 + "raw-window-handle 0.6.1", 1304 1489 "serde", 1305 1490 "smithay-clipboard", 1306 1491 "web-time", ··· 1309 1494 ] 1310 1495 1311 1496 [[package]] 1497 + name = "egui_extras" 1498 + version = "0.26.2" 1499 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1500 + dependencies = [ 1501 + "egui", 1502 + "enum-map", 1503 + "log", 1504 + "mime_guess2", 1505 + "serde", 1506 + "syntect", 1507 + ] 1508 + 1509 + [[package]] 1312 1510 name = "egui_glow" 1313 - version = "0.23.0" 1314 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1511 + version = "0.26.2" 1512 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1315 1513 dependencies = [ 1316 1514 "bytemuck", 1317 1515 "egui", 1318 1516 "glow", 1319 1517 "log", 1320 - "memoffset 0.6.5", 1518 + "memoffset 0.9.1", 1321 1519 "wasm-bindgen", 1322 1520 "web-sys", 1521 + "winit", 1323 1522 ] 1324 1523 1325 1524 [[package]] 1326 1525 name = "either" 1327 - version = "1.9.0" 1526 + version = "1.11.0" 1328 1527 source = "registry+https://github.com/rust-lang/crates.io-index" 1329 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1528 + checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" 1330 1529 1331 1530 [[package]] 1332 1531 name = "emath" 1333 - version = "0.23.0" 1334 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1532 + version = "0.26.2" 1533 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1335 1534 dependencies = [ 1336 1535 "bytemuck", 1337 1536 "serde", ··· 1339 1538 1340 1539 [[package]] 1341 1540 name = "encoding_rs" 1342 - version = "0.8.33" 1541 + version = "0.8.34" 1343 1542 source = "registry+https://github.com/rust-lang/crates.io-index" 1344 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1543 + checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 1345 1544 dependencies = [ 1346 1545 "cfg-if", 1347 1546 ] 1348 1547 1349 1548 [[package]] 1549 + name = "enum-map" 1550 + version = "2.7.3" 1551 + source = "registry+https://github.com/rust-lang/crates.io-index" 1552 + checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9" 1553 + dependencies = [ 1554 + "enum-map-derive", 1555 + "serde", 1556 + ] 1557 + 1558 + [[package]] 1559 + name = "enum-map-derive" 1560 + version = "0.17.0" 1561 + source = "registry+https://github.com/rust-lang/crates.io-index" 1562 + checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" 1563 + dependencies = [ 1564 + "proc-macro2", 1565 + "quote", 1566 + "syn 2.0.60", 1567 + ] 1568 + 1569 + [[package]] 1350 1570 name = "enumflags2" 1351 - version = "0.7.8" 1571 + version = "0.7.9" 1352 1572 source = "registry+https://github.com/rust-lang/crates.io-index" 1353 - checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1573 + checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" 1354 1574 dependencies = [ 1355 1575 "enumflags2_derive", 1356 1576 "serde", ··· 1358 1578 1359 1579 [[package]] 1360 1580 name = "enumflags2_derive" 1361 - version = "0.7.8" 1581 + version = "0.7.9" 1362 1582 source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1583 + checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" 1364 1584 dependencies = [ 1365 1585 "proc-macro2", 1366 1586 "quote", 1367 - "syn 2.0.41", 1587 + "syn 2.0.60", 1368 1588 ] 1369 1589 1370 1590 [[package]] 1371 1591 name = "enumn" 1372 - version = "0.1.12" 1592 + version = "0.1.13" 1373 1593 source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "c2ad8cef1d801a4686bfd8919f0b30eac4c8e48968c437a6405ded4fb5272d2b" 1594 + checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" 1375 1595 dependencies = [ 1376 1596 "proc-macro2", 1377 1597 "quote", 1378 - "syn 2.0.41", 1598 + "syn 2.0.60", 1379 1599 ] 1380 1600 1381 1601 [[package]] 1382 1602 name = "epaint" 1383 - version = "0.23.0" 1384 - source = "git+https://github.com/mikedilger/egui?rev=50393e4f34ac6246b8c2424e42fbe5b95e4b4452#50393e4f34ac6246b8c2424e42fbe5b95e4b4452" 1603 + version = "0.26.2" 1604 + source = "git+https://github.com/bu5hm4nn/egui?rev=63dde4c9b311da0cae0cb9f9465bf7273227be6c#63dde4c9b311da0cae0cb9f9465bf7273227be6c" 1385 1605 dependencies = [ 1386 1606 "ab_glyph", 1387 - "ahash 0.8.6", 1607 + "ahash 0.8.11", 1388 1608 "bytemuck", 1389 1609 "ecolor", 1390 1610 "emath", ··· 1412 1632 1413 1633 [[package]] 1414 1634 name = "error-code" 1415 - version = "2.3.1" 1635 + version = "3.2.0" 1416 1636 source = "registry+https://github.com/rust-lang/crates.io-index" 1417 - checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 1418 - dependencies = [ 1419 - "libc", 1420 - "str-buf", 1421 - ] 1637 + checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b" 1422 1638 1423 1639 [[package]] 1424 1640 name = "event-listener" ··· 1439 1655 1440 1656 [[package]] 1441 1657 name = "event-listener" 1442 - version = "4.0.0" 1658 + version = "4.0.3" 1443 1659 source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae" 1660 + checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 1661 + dependencies = [ 1662 + "concurrent-queue", 1663 + "parking", 1664 + "pin-project-lite", 1665 + ] 1666 + 1667 + [[package]] 1668 + name = "event-listener" 1669 + version = "5.3.0" 1670 + source = "registry+https://github.com/rust-lang/crates.io-index" 1671 + checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" 1445 1672 dependencies = [ 1446 1673 "concurrent-queue", 1447 1674 "parking", ··· 1454 1681 source = "registry+https://github.com/rust-lang/crates.io-index" 1455 1682 checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1456 1683 dependencies = [ 1457 - "event-listener 4.0.0", 1684 + "event-listener 4.0.3", 1685 + "pin-project-lite", 1686 + ] 1687 + 1688 + [[package]] 1689 + name = "event-listener-strategy" 1690 + version = "0.5.1" 1691 + source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + checksum = "332f51cb23d20b0de8458b86580878211da09bcd4503cb579c225b3d124cabb3" 1693 + dependencies = [ 1694 + "event-listener 5.3.0", 1458 1695 "pin-project-lite", 1459 1696 ] 1460 1697 1461 1698 [[package]] 1462 1699 name = "exr" 1463 - version = "1.71.0" 1700 + version = "1.72.0" 1464 1701 source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" 1702 + checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 1466 1703 dependencies = [ 1467 1704 "bit_field", 1468 1705 "flume", ··· 1481 1718 checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1482 1719 1483 1720 [[package]] 1721 + name = "fancy-regex" 1722 + version = "0.11.0" 1723 + source = "registry+https://github.com/rust-lang/crates.io-index" 1724 + checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 1725 + dependencies = [ 1726 + "bit-set", 1727 + "regex", 1728 + ] 1729 + 1730 + [[package]] 1484 1731 name = "fastrand" 1485 1732 version = "1.9.0" 1486 1733 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1491 1738 1492 1739 [[package]] 1493 1740 name = "fastrand" 1494 - version = "2.0.1" 1741 + version = "2.0.2" 1495 1742 source = "registry+https://github.com/rust-lang/crates.io-index" 1496 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1743 + checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" 1497 1744 1498 1745 [[package]] 1499 1746 name = "fdeflate" 1500 - version = "0.3.1" 1747 + version = "0.3.4" 1501 1748 source = "registry+https://github.com/rust-lang/crates.io-index" 1502 - checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1749 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1503 1750 dependencies = [ 1504 1751 "simd-adler32", 1505 1752 ] 1506 1753 1507 1754 [[package]] 1508 1755 name = "ffmpeg-next" 1509 - version = "6.0.0" 1510 - source = "git+https://github.com/mikedilger/rust-ffmpeg.git?rev=89b1802417291baa64b3e41688bb1f7c8664b799#89b1802417291baa64b3e41688bb1f7c8664b799" 1756 + version = "7.0.2" 1757 + source = "git+https://github.com/mikedilger/rust-ffmpeg.git?rev=6c51d6d6cdf7ca13a5600ba7eb9c6f4876b84344#6c51d6d6cdf7ca13a5600ba7eb9c6f4876b84344" 1511 1758 dependencies = [ 1512 - "bitflags 1.3.2", 1759 + "bitflags 2.5.0", 1513 1760 "ffmpeg-sys-next", 1514 1761 "libc", 1515 1762 ] 1516 1763 1517 1764 [[package]] 1518 1765 name = "ffmpeg-sys-next" 1519 - version = "6.0.1" 1520 - source = "git+https://github.com/mikedilger/rust-ffmpeg-sys?rev=889658aba6be6ab5e9cba2406acf43164142eab3#889658aba6be6ab5e9cba2406acf43164142eab3" 1766 + version = "7.0.0" 1767 + source = "registry+https://github.com/rust-lang/crates.io-index" 1768 + checksum = "972a460dd8e901b737ce0482bf71a837e1751e3dd7c8f8b0a4ead808e7f174a5" 1521 1769 dependencies = [ 1522 1770 "bindgen", 1523 1771 "cc", ··· 1561 1809 source = "registry+https://github.com/rust-lang/crates.io-index" 1562 1810 checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1563 1811 dependencies = [ 1564 - "spin 0.9.8", 1812 + "spin", 1565 1813 ] 1566 1814 1567 1815 [[package]] ··· 1572 1820 1573 1821 [[package]] 1574 1822 name = "fontconfig-parser" 1575 - version = "0.5.3" 1823 + version = "0.5.6" 1576 1824 source = "registry+https://github.com/rust-lang/crates.io-index" 1577 - checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4" 1825 + checksum = "6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d" 1578 1826 dependencies = [ 1579 - "roxmltree", 1827 + "roxmltree 0.19.0", 1580 1828 ] 1581 1829 1582 1830 [[package]] ··· 1599 1847 source = "registry+https://github.com/rust-lang/crates.io-index" 1600 1848 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1601 1849 dependencies = [ 1602 - "foreign-types-shared", 1850 + "foreign-types-shared 0.1.1", 1851 + ] 1852 + 1853 + [[package]] 1854 + name = "foreign-types" 1855 + version = "0.5.0" 1856 + source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1858 + dependencies = [ 1859 + "foreign-types-macros", 1860 + "foreign-types-shared 0.3.1", 1861 + ] 1862 + 1863 + [[package]] 1864 + name = "foreign-types-macros" 1865 + version = "0.2.3" 1866 + source = "registry+https://github.com/rust-lang/crates.io-index" 1867 + checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1868 + dependencies = [ 1869 + "proc-macro2", 1870 + "quote", 1871 + "syn 2.0.60", 1603 1872 ] 1604 1873 1605 1874 [[package]] ··· 1607 1876 version = "0.1.1" 1608 1877 source = "registry+https://github.com/rust-lang/crates.io-index" 1609 1878 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1879 + 1880 + [[package]] 1881 + name = "foreign-types-shared" 1882 + version = "0.3.1" 1883 + source = "registry+https://github.com/rust-lang/crates.io-index" 1884 + checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1610 1885 1611 1886 [[package]] 1612 1887 name = "form_urlencoded" ··· 1619 1894 1620 1895 [[package]] 1621 1896 name = "futures" 1622 - version = "0.3.29" 1897 + version = "0.3.30" 1623 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1899 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1625 1900 dependencies = [ 1626 1901 "futures-channel", 1627 1902 "futures-core", ··· 1634 1909 1635 1910 [[package]] 1636 1911 name = "futures-channel" 1637 - version = "0.3.29" 1912 + version = "0.3.30" 1638 1913 source = "registry+https://github.com/rust-lang/crates.io-index" 1639 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1914 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1640 1915 dependencies = [ 1641 1916 "futures-core", 1642 1917 "futures-sink", ··· 1644 1919 1645 1920 [[package]] 1646 1921 name = "futures-core" 1647 - version = "0.3.29" 1922 + version = "0.3.30" 1648 1923 source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1924 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1650 1925 1651 1926 [[package]] 1652 1927 name = "futures-executor" 1653 - version = "0.3.29" 1928 + version = "0.3.30" 1654 1929 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1930 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1656 1931 dependencies = [ 1657 1932 "futures-core", 1658 1933 "futures-task", ··· 1661 1936 1662 1937 [[package]] 1663 1938 name = "futures-io" 1664 - version = "0.3.29" 1939 + version = "0.3.30" 1665 1940 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1941 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1667 1942 1668 1943 [[package]] 1669 1944 name = "futures-lite" ··· 1682 1957 1683 1958 [[package]] 1684 1959 name = "futures-lite" 1685 - version = "2.1.0" 1960 + version = "2.3.0" 1686 1961 source = "registry+https://github.com/rust-lang/crates.io-index" 1687 - checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" 1962 + checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1688 1963 dependencies = [ 1689 - "fastrand 2.0.1", 1964 + "fastrand 2.0.2", 1690 1965 "futures-core", 1691 1966 "futures-io", 1692 1967 "parking", ··· 1695 1970 1696 1971 [[package]] 1697 1972 name = "futures-macro" 1698 - version = "0.3.29" 1973 + version = "0.3.30" 1699 1974 source = "registry+https://github.com/rust-lang/crates.io-index" 1700 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1975 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1701 1976 dependencies = [ 1702 1977 "proc-macro2", 1703 1978 "quote", 1704 - "syn 2.0.41", 1979 + "syn 2.0.60", 1705 1980 ] 1706 1981 1707 1982 [[package]] 1708 1983 name = "futures-sink" 1709 - version = "0.3.29" 1984 + version = "0.3.30" 1710 1985 source = "registry+https://github.com/rust-lang/crates.io-index" 1711 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1986 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1712 1987 1713 1988 [[package]] 1714 1989 name = "futures-task" 1715 - version = "0.3.29" 1990 + version = "0.3.30" 1716 1991 source = "registry+https://github.com/rust-lang/crates.io-index" 1717 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1992 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1718 1993 1719 1994 [[package]] 1720 1995 name = "futures-util" 1721 - version = "0.3.29" 1996 + version = "0.3.30" 1722 1997 source = "registry+https://github.com/rust-lang/crates.io-index" 1723 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1998 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1724 1999 dependencies = [ 1725 2000 "futures-channel", 1726 2001 "futures-core", ··· 1746 2021 1747 2022 [[package]] 1748 2023 name = "gethostname" 1749 - version = "0.3.0" 2024 + version = "0.4.3" 1750 2025 source = "registry+https://github.com/rust-lang/crates.io-index" 1751 - checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177" 2026 + checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1752 2027 dependencies = [ 1753 2028 "libc", 1754 - "winapi", 2029 + "windows-targets 0.48.5", 1755 2030 ] 1756 2031 1757 2032 [[package]] 1758 2033 name = "getrandom" 1759 - version = "0.2.11" 2034 + version = "0.1.16" 1760 2035 source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2036 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1762 2037 dependencies = [ 1763 2038 "cfg-if", 1764 2039 "libc", 1765 - "wasi", 2040 + "wasi 0.9.0+wasi-snapshot-preview1", 2041 + ] 2042 + 2043 + [[package]] 2044 + name = "getrandom" 2045 + version = "0.2.14" 2046 + source = "registry+https://github.com/rust-lang/crates.io-index" 2047 + checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 2048 + dependencies = [ 2049 + "cfg-if", 2050 + "libc", 2051 + "wasi 0.11.0+wasi-snapshot-preview1", 1766 2052 ] 1767 2053 1768 2054 [[package]] ··· 1770 2056 version = "0.12.0" 1771 2057 source = "registry+https://github.com/rust-lang/crates.io-index" 1772 2058 checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 2059 + dependencies = [ 2060 + "color_quant", 2061 + "weezl", 2062 + ] 2063 + 2064 + [[package]] 2065 + name = "gif" 2066 + version = "0.13.1" 2067 + source = "registry+https://github.com/rust-lang/crates.io-index" 2068 + checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 1773 2069 dependencies = [ 1774 2070 "color_quant", 1775 2071 "weezl", ··· 1800 2096 1801 2097 [[package]] 1802 2098 name = "glow" 1803 - version = "0.12.3" 2099 + version = "0.13.1" 1804 2100 source = "registry+https://github.com/rust-lang/crates.io-index" 1805 - checksum = "ca0fe580e4b60a8ab24a868bc08e2f03cbcb20d3d676601fa909386713333728" 2101 + checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1" 1806 2102 dependencies = [ 1807 2103 "js-sys", 1808 2104 "slotmap", ··· 1812 2108 1813 2109 [[package]] 1814 2110 name = "glutin" 1815 - version = "0.30.10" 2111 + version = "0.31.3" 1816 2112 source = "registry+https://github.com/rust-lang/crates.io-index" 1817 - checksum = "8fc93b03242719b8ad39fb26ed2b01737144ce7bd4bfc7adadcef806596760fe" 2113 + checksum = "18fcd4ae4e86d991ad1300b8f57166e5be0c95ef1f63f3f5b827f8a164548746" 1818 2114 dependencies = [ 1819 - "bitflags 1.3.2", 2115 + "bitflags 2.5.0", 1820 2116 "cfg_aliases", 1821 2117 "cgl", 1822 2118 "core-foundation", ··· 1824 2120 "glutin_egl_sys", 1825 2121 "glutin_glx_sys", 1826 2122 "glutin_wgl_sys", 1827 - "libloading 0.7.4", 1828 - "objc2", 2123 + "icrate", 2124 + "libloading 0.8.3", 2125 + "objc2 0.4.1", 1829 2126 "once_cell", 1830 - "raw-window-handle", 1831 - "wayland-sys 0.30.1", 1832 - "windows-sys 0.45.0", 2127 + "raw-window-handle 0.5.2", 2128 + "wayland-sys", 2129 + "windows-sys 0.48.0", 1833 2130 "x11-dl", 1834 2131 ] 1835 2132 1836 2133 [[package]] 1837 2134 name = "glutin-winit" 1838 - version = "0.3.0" 2135 + version = "0.4.2" 1839 2136 source = "registry+https://github.com/rust-lang/crates.io-index" 1840 - checksum = "629a873fc04062830bfe8f97c03773bcd7b371e23bcc465d0a61448cd1588fa4" 2137 + checksum = "1ebcdfba24f73b8412c5181e56f092b5eff16671c514ce896b258a0a64bd7735" 1841 2138 dependencies = [ 1842 2139 "cfg_aliases", 1843 2140 "glutin", 1844 - "raw-window-handle", 2141 + "raw-window-handle 0.5.2", 1845 2142 "winit", 1846 2143 ] 1847 2144 1848 2145 [[package]] 1849 2146 name = "glutin_egl_sys" 1850 - version = "0.5.1" 2147 + version = "0.6.0" 1851 2148 source = "registry+https://github.com/rust-lang/crates.io-index" 1852 - checksum = "af784eb26c5a68ec85391268e074f0aa618c096eadb5d6330b0911cf34fe57c5" 2149 + checksum = "77cc5623f5309ef433c3dd4ca1223195347fe62c413da8e2fdd0eb76db2d9bcd" 1853 2150 dependencies = [ 1854 2151 "gl_generator", 1855 - "windows-sys 0.45.0", 2152 + "windows-sys 0.48.0", 1856 2153 ] 1857 2154 1858 2155 [[package]] 1859 2156 name = "glutin_glx_sys" 1860 - version = "0.4.0" 2157 + version = "0.5.0" 1861 2158 source = "registry+https://github.com/rust-lang/crates.io-index" 1862 - checksum = "1b53cb5fe568964aa066a3ba91eac5ecbac869fb0842cd0dc9e412434f1a1494" 2159 + checksum = "a165fd686c10dcc2d45380b35796e577eacfd43d4660ee741ec8ebe2201b3b4f" 1863 2160 dependencies = [ 1864 2161 "gl_generator", 1865 2162 "x11-dl", ··· 1867 2164 1868 2165 [[package]] 1869 2166 name = "glutin_wgl_sys" 1870 - version = "0.4.0" 2167 + version = "0.5.0" 1871 2168 source = "registry+https://github.com/rust-lang/crates.io-index" 1872 - checksum = "ef89398e90033fc6bc65e9bd42fd29bbbfd483bda5b56dc5562f455550618165" 2169 + checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead" 1873 2170 dependencies = [ 1874 2171 "gl_generator", 1875 2172 ] 1876 2173 1877 2174 [[package]] 1878 2175 name = "gossip" 1879 - version = "0.9.1-unstable" 2176 + version = "0.11.3" 1880 2177 dependencies = [ 1881 - "bech32", 2178 + "bech32 0.11.0", 2179 + "chrono", 1882 2180 "eframe", 1883 2181 "egui-video", 1884 2182 "egui-winit", 2183 + "egui_extras", 1885 2184 "gossip-lib", 1886 2185 "gossip-relay-picker", 1887 2186 "humansize", ··· 1889 2188 "lazy_static", 1890 2189 "memoize", 1891 2190 "nostr-types", 2191 + "paste", 1892 2192 "qrcode", 1893 2193 "resvg", 1894 2194 "rpassword", ··· 1907 2207 1908 2208 [[package]] 1909 2209 name = "gossip-lib" 1910 - version = "0.9.1-unstable" 2210 + version = "0.11.3" 1911 2211 dependencies = [ 1912 2212 "async-recursion", 1913 2213 "async-trait", 1914 - "base64", 1915 - "bech32", 2214 + "base64 0.22.0", 2215 + "bech32 0.11.0", 1916 2216 "dashmap", 1917 2217 "dirs", 1918 2218 "encoding_rs", ··· 1923 2223 "gossip-relay-picker", 1924 2224 "heed", 1925 2225 "hex", 1926 - "http", 2226 + "http 1.1.0", 1927 2227 "image", 1928 2228 "kamadak-exif", 1929 2229 "lazy_static", ··· 1933 2233 "nostr-types", 1934 2234 "parking_lot", 1935 2235 "paste", 1936 - "rand", 2236 + "rand 0.8.5", 1937 2237 "regex", 1938 2238 "reqwest", 1939 2239 "resvg", ··· 1943 2243 "serde_json", 1944 2244 "sha2", 1945 2245 "speedy", 2246 + "textnonce", 1946 2247 "tiny-skia 0.10.0", 1947 2248 "tokio", 1948 2249 "tokio-tungstenite", ··· 1956 2257 [[package]] 1957 2258 name = "gossip-relay-picker" 1958 2259 version = "0.2.0-unstable" 1959 - source = "git+https://github.com/mikedilger/gossip-relay-picker?rev=360aadc068496dd5dbc956e1e861f1c693de136e#360aadc068496dd5dbc956e1e861f1c693de136e" 2260 + source = "git+https://github.com/mikedilger/gossip-relay-picker?rev=425eff2cc99d2f816b641306a28d3ae7f3756535#425eff2cc99d2f816b641306a28d3ae7f3756535" 1960 2261 dependencies = [ 1961 2262 "async-trait", 1962 2263 "dashmap", ··· 1967 2268 ] 1968 2269 1969 2270 [[package]] 2271 + name = "gpu-alloc" 2272 + version = "0.6.0" 2273 + source = "registry+https://github.com/rust-lang/crates.io-index" 2274 + checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171" 2275 + dependencies = [ 2276 + "bitflags 2.5.0", 2277 + "gpu-alloc-types", 2278 + ] 2279 + 2280 + [[package]] 2281 + name = "gpu-alloc-types" 2282 + version = "0.3.0" 2283 + source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4" 2285 + dependencies = [ 2286 + "bitflags 2.5.0", 2287 + ] 2288 + 2289 + [[package]] 2290 + name = "gpu-allocator" 2291 + version = "0.25.0" 2292 + source = "registry+https://github.com/rust-lang/crates.io-index" 2293 + checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884" 2294 + dependencies = [ 2295 + "log", 2296 + "presser", 2297 + "thiserror", 2298 + "winapi", 2299 + "windows 0.52.0", 2300 + ] 2301 + 2302 + [[package]] 2303 + name = "gpu-descriptor" 2304 + version = "0.2.4" 2305 + source = "registry+https://github.com/rust-lang/crates.io-index" 2306 + checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c" 2307 + dependencies = [ 2308 + "bitflags 2.5.0", 2309 + "gpu-descriptor-types", 2310 + "hashbrown 0.14.3", 2311 + ] 2312 + 2313 + [[package]] 2314 + name = "gpu-descriptor-types" 2315 + version = "0.1.2" 2316 + source = "registry+https://github.com/rust-lang/crates.io-index" 2317 + checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c" 2318 + dependencies = [ 2319 + "bitflags 2.5.0", 2320 + ] 2321 + 2322 + [[package]] 1970 2323 name = "h2" 1971 - version = "0.3.22" 2324 + version = "0.3.26" 1972 2325 source = "registry+https://github.com/rust-lang/crates.io-index" 1973 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 2326 + checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 1974 2327 dependencies = [ 1975 2328 "bytes", 1976 2329 "fnv", 1977 2330 "futures-core", 1978 2331 "futures-sink", 1979 2332 "futures-util", 1980 - "http", 2333 + "http 0.2.12", 1981 2334 "indexmap", 1982 2335 "slab", 1983 2336 "tokio", ··· 1987 2340 1988 2341 [[package]] 1989 2342 name = "half" 1990 - version = "2.2.1" 2343 + version = "2.4.1" 1991 2344 source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" 2345 + checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 1993 2346 dependencies = [ 2347 + "cfg-if", 1994 2348 "crunchy", 1995 2349 ] 1996 2350 ··· 2000 2354 source = "registry+https://github.com/rust-lang/crates.io-index" 2001 2355 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2002 2356 dependencies = [ 2003 - "ahash 0.7.7", 2357 + "ahash 0.7.8", 2004 2358 ] 2005 2359 2006 2360 [[package]] ··· 2008 2362 version = "0.14.3" 2009 2363 source = "registry+https://github.com/rust-lang/crates.io-index" 2010 2364 checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2365 + dependencies = [ 2366 + "ahash 0.8.11", 2367 + "allocator-api2", 2368 + ] 2369 + 2370 + [[package]] 2371 + name = "hassle-rs" 2372 + version = "0.11.0" 2373 + source = "registry+https://github.com/rust-lang/crates.io-index" 2374 + checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890" 2375 + dependencies = [ 2376 + "bitflags 2.5.0", 2377 + "com", 2378 + "libc", 2379 + "libloading 0.7.4", 2380 + "thiserror", 2381 + "widestring", 2382 + "winapi", 2383 + ] 2011 2384 2012 2385 [[package]] 2013 2386 name = "heed" 2014 - version = "0.20.0-alpha.6" 2015 - source = "git+https://github.com/meilisearch/heed?rev=8bfdf3beeda292fe166dc6b2f468cdb23af7181b#8bfdf3beeda292fe166dc6b2f468cdb23af7181b" 2387 + version = "0.20.0" 2388 + source = "registry+https://github.com/rust-lang/crates.io-index" 2389 + checksum = "e7a300b0deeb2957162d7752b0f063b3be1c88333af5bb4e7a57d8fb3716f50b" 2016 2390 dependencies = [ 2017 - "bitflags 2.4.1", 2018 - "bytemuck", 2391 + "bitflags 2.5.0", 2019 2392 "byteorder", 2020 2393 "heed-traits", 2021 2394 "heed-types", ··· 2030 2403 2031 2404 [[package]] 2032 2405 name = "heed-traits" 2033 - version = "0.20.0-alpha.6" 2034 - source = "git+https://github.com/meilisearch/heed?rev=8bfdf3beeda292fe166dc6b2f468cdb23af7181b#8bfdf3beeda292fe166dc6b2f468cdb23af7181b" 2406 + version = "0.20.0" 2407 + source = "registry+https://github.com/rust-lang/crates.io-index" 2408 + checksum = "eb3130048d404c57ce5a1ac61a903696e8fcde7e8c2991e9fcfc1f27c3ef74ff" 2035 2409 2036 2410 [[package]] 2037 2411 name = "heed-types" 2038 - version = "0.20.0-alpha.6" 2039 - source = "git+https://github.com/meilisearch/heed?rev=8bfdf3beeda292fe166dc6b2f468cdb23af7181b#8bfdf3beeda292fe166dc6b2f468cdb23af7181b" 2412 + version = "0.20.0" 2413 + source = "registry+https://github.com/rust-lang/crates.io-index" 2414 + checksum = "3cb0d6ba3700c9a57e83c013693e3eddb68a6d9b6781cacafc62a0d992e8ddb3" 2040 2415 dependencies = [ 2041 2416 "bincode", 2042 - "bytemuck", 2043 2417 "byteorder", 2044 2418 "heed-traits", 2045 2419 "serde", ··· 2048 2422 2049 2423 [[package]] 2050 2424 name = "hermit-abi" 2051 - version = "0.3.3" 2425 + version = "0.3.9" 2052 2426 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 2427 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2054 2428 2055 2429 [[package]] 2056 2430 name = "hex" ··· 2059 2433 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2060 2434 2061 2435 [[package]] 2436 + name = "hex-conservative" 2437 + version = "0.1.1" 2438 + source = "registry+https://github.com/rust-lang/crates.io-index" 2439 + checksum = "30ed443af458ccb6d81c1e7e661545f94d3176752fb1df2f543b902a1e0f51e2" 2440 + 2441 + [[package]] 2442 + name = "hex-conservative" 2443 + version = "0.2.0" 2444 + source = "registry+https://github.com/rust-lang/crates.io-index" 2445 + checksum = "e1aa273bf451e37ed35ced41c71a5e2a4e29064afb104158f2514bcd71c2c986" 2446 + dependencies = [ 2447 + "arrayvec", 2448 + ] 2449 + 2450 + [[package]] 2451 + name = "hex_lit" 2452 + version = "0.1.1" 2453 + source = "registry+https://github.com/rust-lang/crates.io-index" 2454 + checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd" 2455 + 2456 + [[package]] 2457 + name = "hexf-parse" 2458 + version = "0.2.1" 2459 + source = "registry+https://github.com/rust-lang/crates.io-index" 2460 + checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 2461 + 2462 + [[package]] 2062 2463 name = "hkdf" 2063 2464 version = "0.12.4" 2064 2465 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2078 2479 2079 2480 [[package]] 2080 2481 name = "home" 2081 - version = "0.5.5" 2482 + version = "0.5.9" 2082 2483 source = "registry+https://github.com/rust-lang/crates.io-index" 2083 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2484 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2084 2485 dependencies = [ 2085 - "windows-sys 0.48.0", 2486 + "windows-sys 0.52.0", 2487 + ] 2488 + 2489 + [[package]] 2490 + name = "http" 2491 + version = "0.2.12" 2492 + source = "registry+https://github.com/rust-lang/crates.io-index" 2493 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2494 + dependencies = [ 2495 + "bytes", 2496 + "fnv", 2497 + "itoa", 2086 2498 ] 2087 2499 2088 2500 [[package]] 2089 2501 name = "http" 2090 - version = "0.2.11" 2502 + version = "1.1.0" 2091 2503 source = "registry+https://github.com/rust-lang/crates.io-index" 2092 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2504 + checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 2093 2505 dependencies = [ 2094 2506 "bytes", 2095 2507 "fnv", ··· 2103 2515 checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2104 2516 dependencies = [ 2105 2517 "bytes", 2106 - "http", 2518 + "http 0.2.12", 2107 2519 "pin-project-lite", 2108 2520 ] 2109 2521 ··· 2130 2542 2131 2543 [[package]] 2132 2544 name = "hyper" 2133 - version = "0.14.27" 2545 + version = "0.14.28" 2134 2546 source = "registry+https://github.com/rust-lang/crates.io-index" 2135 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 2547 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 2136 2548 dependencies = [ 2137 2549 "bytes", 2138 2550 "futures-channel", 2139 2551 "futures-core", 2140 2552 "futures-util", 2141 2553 "h2", 2142 - "http", 2554 + "http 0.2.12", 2143 2555 "http-body", 2144 2556 "httparse", 2145 2557 "httpdate", 2146 2558 "itoa", 2147 2559 "pin-project-lite", 2148 - "socket2 0.4.10", 2560 + "socket2 0.5.6", 2149 2561 "tokio", 2150 2562 "tower-service", 2151 2563 "tracing", ··· 2159 2571 checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2160 2572 dependencies = [ 2161 2573 "futures-util", 2162 - "http", 2574 + "http 0.2.12", 2163 2575 "hyper", 2164 - "rustls", 2576 + "rustls 0.21.11", 2165 2577 "tokio", 2166 - "tokio-rustls", 2578 + "tokio-rustls 0.24.1", 2167 2579 ] 2168 2580 2169 2581 [[package]] ··· 2181 2593 2182 2594 [[package]] 2183 2595 name = "iana-time-zone" 2184 - version = "0.1.58" 2596 + version = "0.1.60" 2185 2597 source = "registry+https://github.com/rust-lang/crates.io-index" 2186 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 2598 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2187 2599 dependencies = [ 2188 2600 "android_system_properties", 2189 2601 "core-foundation-sys", ··· 2203 2615 ] 2204 2616 2205 2617 [[package]] 2618 + name = "icrate" 2619 + version = "0.0.4" 2620 + source = "registry+https://github.com/rust-lang/crates.io-index" 2621 + checksum = "99d3aaff8a54577104bafdf686ff18565c3b6903ca5782a2026ef06e2c7aa319" 2622 + dependencies = [ 2623 + "block2 0.3.0", 2624 + "dispatch", 2625 + "objc2 0.4.1", 2626 + ] 2627 + 2628 + [[package]] 2206 2629 name = "idna" 2207 2630 version = "0.5.0" 2208 2631 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2214 2637 2215 2638 [[package]] 2216 2639 name = "image" 2217 - version = "0.24.7" 2640 + version = "0.24.9" 2218 2641 source = "registry+https://github.com/rust-lang/crates.io-index" 2219 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2642 + checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 2220 2643 dependencies = [ 2221 2644 "bytemuck", 2222 2645 "byteorder", 2223 2646 "color_quant", 2224 2647 "exr", 2225 - "gif", 2648 + "gif 0.13.1", 2226 2649 "jpeg-decoder", 2227 - "num-rational", 2228 2650 "num-traits", 2229 2651 "png", 2230 2652 "qoi", ··· 2239 2661 2240 2662 [[package]] 2241 2663 name = "indexmap" 2242 - version = "2.1.0" 2664 + version = "2.2.6" 2243 2665 source = "registry+https://github.com/rust-lang/crates.io-index" 2244 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2666 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 2245 2667 dependencies = [ 2246 2668 "equivalent", 2247 2669 "hashbrown 0.14.3", ··· 2264 2686 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2265 2687 dependencies = [ 2266 2688 "cfg-if", 2267 - "js-sys", 2268 - "wasm-bindgen", 2269 - "web-sys", 2270 2689 ] 2271 2690 2272 2691 [[package]] ··· 2297 2716 2298 2717 [[package]] 2299 2718 name = "itoa" 2300 - version = "1.0.10" 2719 + version = "1.0.11" 2301 2720 source = "registry+https://github.com/rust-lang/crates.io-index" 2302 - checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 2721 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 2303 2722 2304 2723 [[package]] 2305 2724 name = "jni" ··· 2325 2744 2326 2745 [[package]] 2327 2746 name = "jobserver" 2328 - version = "0.1.27" 2747 + version = "0.1.31" 2329 2748 source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 2749 + checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2331 2750 dependencies = [ 2332 2751 "libc", 2333 2752 ] 2334 2753 2335 2754 [[package]] 2336 2755 name = "jpeg-decoder" 2337 - version = "0.3.0" 2756 + version = "0.3.1" 2338 2757 source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2758 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 2340 2759 dependencies = [ 2341 2760 "rayon", 2342 2761 ] 2343 2762 2344 2763 [[package]] 2345 2764 name = "js-sys" 2346 - version = "0.3.66" 2765 + version = "0.3.69" 2347 2766 source = "registry+https://github.com/rust-lang/crates.io-index" 2348 - checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 2767 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2349 2768 dependencies = [ 2350 2769 "wasm-bindgen", 2351 2770 ] ··· 2360 2779 ] 2361 2780 2362 2781 [[package]] 2782 + name = "khronos-egl" 2783 + version = "6.0.0" 2784 + source = "registry+https://github.com/rust-lang/crates.io-index" 2785 + checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" 2786 + dependencies = [ 2787 + "libc", 2788 + "libloading 0.8.3", 2789 + "pkg-config", 2790 + ] 2791 + 2792 + [[package]] 2363 2793 name = "khronos_api" 2364 2794 version = "3.1.0" 2365 2795 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2394 2824 2395 2825 [[package]] 2396 2826 name = "libc" 2397 - version = "0.2.151" 2827 + version = "0.2.153" 2398 2828 source = "registry+https://github.com/rust-lang/crates.io-index" 2399 - checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" 2829 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 2400 2830 2401 2831 [[package]] 2402 2832 name = "libloading" ··· 2410 2840 2411 2841 [[package]] 2412 2842 name = "libloading" 2413 - version = "0.8.1" 2843 + version = "0.8.3" 2414 2844 source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2845 + checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 2416 2846 dependencies = [ 2417 2847 "cfg-if", 2418 - "windows-sys 0.48.0", 2848 + "windows-targets 0.52.5", 2419 2849 ] 2420 2850 2421 2851 [[package]] ··· 2426 2856 2427 2857 [[package]] 2428 2858 name = "libredox" 2429 - version = "0.0.1" 2859 + version = "0.0.2" 2430 2860 source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2861 + checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 2432 2862 dependencies = [ 2433 - "bitflags 2.4.1", 2863 + "bitflags 2.5.0", 2434 2864 "libc", 2435 2865 "redox_syscall 0.4.1", 2436 2866 ] 2437 2867 2438 2868 [[package]] 2439 2869 name = "libredox" 2440 - version = "0.0.2" 2870 + version = "0.1.3" 2441 2871 source = "registry+https://github.com/rust-lang/crates.io-index" 2442 - checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 2872 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2443 2873 dependencies = [ 2444 - "bitflags 2.4.1", 2874 + "bitflags 2.5.0", 2445 2875 "libc", 2446 - "redox_syscall 0.4.1", 2447 2876 ] 2448 2877 2449 2878 [[package]] 2450 2879 name = "lightning" 2451 - version = "0.0.115" 2452 - source = "registry+https://github.com/rust-lang/crates.io-index" 2453 - checksum = "e009e1c0c21f66378b491bb40f548682138c63e09db6f3a05af59f8804bb9f4a" 2880 + version = "0.0.123-beta" 2881 + source = "git+https://github.com/mikedilger/rust-lightning?rev=7a62cb4106d449bc4d1724920b73918d501bb3a9#7a62cb4106d449bc4d1724920b73918d501bb3a9" 2454 2882 dependencies = [ 2455 2883 "bitcoin", 2884 + "hex-conservative 0.1.1", 2885 + "musig2", 2456 2886 ] 2457 2887 2458 2888 [[package]] 2459 2889 name = "lightning-invoice" 2460 - version = "0.23.0" 2461 - source = "registry+https://github.com/rust-lang/crates.io-index" 2462 - checksum = "c4e44b0e2822c8811470137d2339fdfe67a699b3248bb1606d1d02eb6a1e9f0a" 2890 + version = "0.31.0-beta" 2891 + source = "git+https://github.com/mikedilger/rust-lightning?rev=7a62cb4106d449bc4d1724920b73918d501bb3a9#7a62cb4106d449bc4d1724920b73918d501bb3a9" 2463 2892 dependencies = [ 2464 - "bech32", 2893 + "bech32 0.9.1", 2465 2894 "bitcoin", 2466 - "bitcoin_hashes 0.11.0", 2467 2895 "lightning", 2468 - "num-traits", 2469 - "secp256k1 0.24.3", 2896 + "secp256k1 0.27.0", 2470 2897 ] 2898 + 2899 + [[package]] 2900 + name = "line-wrap" 2901 + version = "0.2.0" 2902 + source = "registry+https://github.com/rust-lang/crates.io-index" 2903 + checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e" 2904 + 2905 + [[package]] 2906 + name = "linked-hash-map" 2907 + version = "0.5.6" 2908 + source = "registry+https://github.com/rust-lang/crates.io-index" 2909 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2471 2910 2472 2911 [[package]] 2473 2912 name = "linkify" 2474 - version = "0.9.0" 2913 + version = "0.10.0" 2475 2914 source = "registry+https://github.com/rust-lang/crates.io-index" 2476 - checksum = "96dd5884008358112bc66093362197c7248ece00d46624e2cf71e50029f8cff5" 2915 + checksum = "f1dfa36d52c581e9ec783a7ce2a5e0143da6237be5811a0b3153fedfdbe9f780" 2477 2916 dependencies = [ 2478 2917 "memchr", 2479 2918 ] ··· 2486 2925 2487 2926 [[package]] 2488 2927 name = "linux-raw-sys" 2489 - version = "0.4.12" 2928 + version = "0.4.13" 2490 2929 source = "registry+https://github.com/rust-lang/crates.io-index" 2491 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 2930 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 2931 + 2932 + [[package]] 2933 + name = "litrs" 2934 + version = "0.4.1" 2935 + source = "registry+https://github.com/rust-lang/crates.io-index" 2936 + checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" 2492 2937 2493 2938 [[package]] 2494 2939 name = "lmdb-master-sys" 2495 - version = "0.1.0" 2496 - source = "git+https://github.com/meilisearch/heed?rev=8bfdf3beeda292fe166dc6b2f468cdb23af7181b#8bfdf3beeda292fe166dc6b2f468cdb23af7181b" 2940 + version = "0.2.0" 2941 + source = "registry+https://github.com/rust-lang/crates.io-index" 2942 + checksum = "dc9048db3a58c0732d7236abc4909058f9d2708cfb6d7d047eb895fddec6419a" 2497 2943 dependencies = [ 2498 2944 "cc", 2499 2945 "doxygen-rs", ··· 2502 2948 2503 2949 [[package]] 2504 2950 name = "lock_api" 2505 - version = "0.4.11" 2951 + version = "0.4.12" 2506 2952 source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2953 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2508 2954 dependencies = [ 2509 2955 "autocfg", 2510 2956 "scopeguard", ··· 2512 2958 2513 2959 [[package]] 2514 2960 name = "log" 2515 - version = "0.4.20" 2961 + version = "0.4.21" 2516 2962 source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2963 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 2518 2964 2519 2965 [[package]] 2520 2966 name = "lru" ··· 2545 2991 2546 2992 [[package]] 2547 2993 name = "memchr" 2548 - version = "2.6.4" 2549 - source = "registry+https://github.com/rust-lang/crates.io-index" 2550 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2551 - 2552 - [[package]] 2553 - name = "memmap2" 2554 - version = "0.5.10" 2994 + version = "2.7.2" 2555 2995 source = "registry+https://github.com/rust-lang/crates.io-index" 2556 - checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 2557 - dependencies = [ 2558 - "libc", 2559 - ] 2996 + checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 2560 2997 2561 2998 [[package]] 2562 2999 name = "memmap2" ··· 2568 3005 ] 2569 3006 2570 3007 [[package]] 2571 - name = "memoffset" 2572 - version = "0.6.5" 3008 + name = "memmap2" 3009 + version = "0.9.4" 2573 3010 source = "registry+https://github.com/rust-lang/crates.io-index" 2574 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 3011 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 2575 3012 dependencies = [ 2576 - "autocfg", 3013 + "libc", 2577 3014 ] 2578 3015 2579 3016 [[package]] ··· 2587 3024 2588 3025 [[package]] 2589 3026 name = "memoffset" 2590 - version = "0.8.0" 2591 - source = "registry+https://github.com/rust-lang/crates.io-index" 2592 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2593 - dependencies = [ 2594 - "autocfg", 2595 - ] 2596 - 2597 - [[package]] 2598 - name = "memoffset" 2599 - version = "0.9.0" 3027 + version = "0.9.1" 2600 3028 source = "registry+https://github.com/rust-lang/crates.io-index" 2601 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 3029 + checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 2602 3030 dependencies = [ 2603 3031 "autocfg", 2604 3032 ] 2605 3033 2606 3034 [[package]] 2607 3035 name = "memoize" 2608 - version = "0.4.1" 3036 + version = "0.4.2" 2609 3037 source = "registry+https://github.com/rust-lang/crates.io-index" 2610 - checksum = "7500eb334b820fcb9d8bfb9061d75fe910ed6302f690b24f3abaa133a581479c" 3038 + checksum = "5df4051db13d0816cf23196d3baa216385ae099339f5d0645a8d9ff2305e82b8" 2611 3039 dependencies = [ 2612 3040 "lazy_static", 2613 3041 "lru", ··· 2616 3044 2617 3045 [[package]] 2618 3046 name = "memoize-inner" 2619 - version = "0.4.0" 3047 + version = "0.4.3" 2620 3048 source = "registry+https://github.com/rust-lang/crates.io-index" 2621 - checksum = "8bfde264c318ec8c2de5c39e0ba3910fac8d1065e3b947b183ebd884b799719b" 3049 + checksum = "27bdece7e91f0d1e33df7b46ec187a93ea0d4e642113a1039ac8bfdd4a3273ac" 2622 3050 dependencies = [ 2623 3051 "lazy_static", 2624 3052 "proc-macro2", ··· 2627 3055 ] 2628 3056 2629 3057 [[package]] 3058 + name = "metal" 3059 + version = "0.27.0" 3060 + source = "registry+https://github.com/rust-lang/crates.io-index" 3061 + checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25" 3062 + dependencies = [ 3063 + "bitflags 2.5.0", 3064 + "block", 3065 + "core-graphics-types", 3066 + "foreign-types 0.5.0", 3067 + "log", 3068 + "objc", 3069 + "paste", 3070 + ] 3071 + 3072 + [[package]] 2630 3073 name = "mime" 2631 3074 version = "0.3.17" 2632 3075 source = "registry+https://github.com/rust-lang/crates.io-index" 2633 3076 checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2634 3077 2635 3078 [[package]] 3079 + name = "mime_guess2" 3080 + version = "2.0.5" 3081 + source = "registry+https://github.com/rust-lang/crates.io-index" 3082 + checksum = "25a3333bb1609500601edc766a39b4c1772874a4ce26022f4d866854dc020c41" 3083 + dependencies = [ 3084 + "mime", 3085 + "unicase", 3086 + ] 3087 + 3088 + [[package]] 2636 3089 name = "minimal-lexical" 2637 3090 version = "0.2.1" 2638 3091 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2640 3093 2641 3094 [[package]] 2642 3095 name = "miniz_oxide" 2643 - version = "0.7.1" 3096 + version = "0.7.2" 2644 3097 source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3098 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 2646 3099 dependencies = [ 2647 3100 "adler", 2648 3101 "simd-adler32", ··· 2650 3103 2651 3104 [[package]] 2652 3105 name = "mio" 2653 - version = "0.8.10" 3106 + version = "0.8.11" 2654 3107 source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 3108 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2656 3109 dependencies = [ 2657 3110 "libc", 2658 - "log", 2659 - "wasi", 3111 + "wasi 0.11.0+wasi-snapshot-preview1", 2660 3112 "windows-sys 0.48.0", 2661 3113 ] 2662 3114 2663 3115 [[package]] 3116 + name = "musig2" 3117 + version = "0.1.0" 3118 + source = "git+https://github.com/arik-so/rust-musig2?rev=cff11e3#cff11e3b1af1691f721a120dc6acb921afa31f89" 3119 + dependencies = [ 3120 + "bitcoin", 3121 + ] 3122 + 3123 + [[package]] 2664 3124 name = "mutate_once" 2665 3125 version = "0.1.1" 2666 3126 source = "registry+https://github.com/rust-lang/crates.io-index" 2667 3127 checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b" 2668 3128 2669 3129 [[package]] 3130 + name = "naga" 3131 + version = "0.19.2" 3132 + source = "registry+https://github.com/rust-lang/crates.io-index" 3133 + checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843" 3134 + dependencies = [ 3135 + "bit-set", 3136 + "bitflags 2.5.0", 3137 + "codespan-reporting", 3138 + "hexf-parse", 3139 + "indexmap", 3140 + "log", 3141 + "num-traits", 3142 + "rustc-hash", 3143 + "spirv", 3144 + "termcolor", 3145 + "thiserror", 3146 + "unicode-xid", 3147 + ] 3148 + 3149 + [[package]] 2670 3150 name = "native-tls" 2671 3151 version = "0.2.11" 2672 3152 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2686 3166 2687 3167 [[package]] 2688 3168 name = "ndk" 2689 - version = "0.7.0" 3169 + version = "0.8.0" 2690 3170 source = "registry+https://github.com/rust-lang/crates.io-index" 2691 - checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 3171 + checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 2692 3172 dependencies = [ 2693 - "bitflags 1.3.2", 3173 + "bitflags 2.5.0", 2694 3174 "jni-sys", 3175 + "log", 2695 3176 "ndk-sys", 2696 - "num_enum 0.5.11", 2697 - "raw-window-handle", 3177 + "num_enum", 3178 + "raw-window-handle 0.5.2", 3179 + "raw-window-handle 0.6.1", 2698 3180 "thiserror", 2699 3181 ] 2700 3182 ··· 2706 3188 2707 3189 [[package]] 2708 3190 name = "ndk-sys" 2709 - version = "0.4.1+23.1.7779620" 3191 + version = "0.5.0+25.2.9519653" 2710 3192 source = "registry+https://github.com/rust-lang/crates.io-index" 2711 - checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 3193 + checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 2712 3194 dependencies = [ 2713 3195 "jni-sys", 2714 3196 ] ··· 2716 3198 [[package]] 2717 3199 name = "nip44" 2718 3200 version = "0.1.0" 2719 - source = "git+https://github.com/mikedilger/nip44?rev=e38717f86ccccb91c25ebf07881a77d66411161c#e38717f86ccccb91c25ebf07881a77d66411161c" 3201 + source = "git+https://github.com/mikedilger/nip44?rev=a55cd3850634d7e462c107a37a068f829670d6a2#a55cd3850634d7e462c107a37a068f829670d6a2" 2720 3202 dependencies = [ 2721 - "base64", 3203 + "base64 0.22.0", 2722 3204 "chacha20", 3205 + "constant_time_eq", 2723 3206 "hkdf", 2724 3207 "hmac", 2725 - "rand_core", 2726 - "secp256k1 0.27.0", 3208 + "rand_core 0.6.4", 3209 + "secp256k1 0.29.0", 2727 3210 "sha2", 2728 3211 "thiserror", 2729 3212 ] 2730 3213 2731 3214 [[package]] 2732 3215 name = "nix" 2733 - version = "0.24.3" 2734 - source = "registry+https://github.com/rust-lang/crates.io-index" 2735 - checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 2736 - dependencies = [ 2737 - "bitflags 1.3.2", 2738 - "cfg-if", 2739 - "libc", 2740 - "memoffset 0.6.5", 2741 - ] 2742 - 2743 - [[package]] 2744 - name = "nix" 2745 - version = "0.25.1" 2746 - source = "registry+https://github.com/rust-lang/crates.io-index" 2747 - checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 2748 - dependencies = [ 2749 - "autocfg", 2750 - "bitflags 1.3.2", 2751 - "cfg-if", 2752 - "libc", 2753 - "memoffset 0.6.5", 2754 - ] 2755 - 2756 - [[package]] 2757 - name = "nix" 2758 3216 version = "0.26.4" 2759 3217 source = "registry+https://github.com/rust-lang/crates.io-index" 2760 3218 checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" ··· 2783 3241 2784 3242 [[package]] 2785 3243 name = "normpath" 2786 - version = "1.1.1" 3244 + version = "1.2.0" 2787 3245 source = "registry+https://github.com/rust-lang/crates.io-index" 2788 - checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" 3246 + checksum = "5831952a9476f2fed74b77d74182fa5ddc4d21c72ec45a333b250e3ed0272804" 2789 3247 dependencies = [ 2790 - "windows-sys 0.48.0", 3248 + "windows-sys 0.52.0", 2791 3249 ] 2792 3250 2793 3251 [[package]] 2794 3252 name = "nostr-types" 2795 - version = "0.7.0-unstable" 2796 - source = "git+https://github.com/mikedilger/nostr-types?rev=661273cfaf8ab164d8ad09959d4194e3ace05fff#661273cfaf8ab164d8ad09959d4194e3ace05fff" 3253 + version = "0.8.0-unstable" 3254 + source = "git+https://github.com/mikedilger/nostr-types?rev=d580f42cb978f44388b85638230e0becfe212e7a#d580f42cb978f44388b85638230e0becfe212e7a" 2797 3255 dependencies = [ 2798 3256 "aes", 2799 - "base64", 2800 - "bech32", 3257 + "base64 0.22.0", 3258 + "bech32 0.11.0", 2801 3259 "cbc", 2802 3260 "chacha20", 2803 3261 "chacha20poly1305", ··· 2805 3263 "derive_more", 2806 3264 "hex", 2807 3265 "hmac", 2808 - "http", 2809 - "inout", 2810 3266 "lazy_static", 2811 3267 "lightning-invoice", 2812 3268 "linkify", 2813 3269 "nip44", 2814 3270 "num_cpus", 2815 3271 "pbkdf2", 2816 - "rand", 2817 - "rand_core", 3272 + "rand 0.8.5", 3273 + "rand_core 0.6.4", 2818 3274 "regex", 2819 3275 "scrypt", 2820 - "secp256k1 0.27.0", 3276 + "secp256k1 0.29.0", 2821 3277 "serde", 2822 3278 "serde_json", 2823 3279 "sha2", 2824 3280 "speedy", 2825 3281 "thiserror", 2826 3282 "thread-priority", 3283 + "unicode-normalization", 2827 3284 "url", 2828 3285 "zeroize", 2829 3286 ] ··· 2839 3296 ] 2840 3297 2841 3298 [[package]] 2842 - name = "num-integer" 2843 - version = "0.1.45" 2844 - source = "registry+https://github.com/rust-lang/crates.io-index" 2845 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2846 - dependencies = [ 2847 - "autocfg", 2848 - "num-traits", 2849 - ] 2850 - 2851 - [[package]] 2852 - name = "num-rational" 2853 - version = "0.4.1" 3299 + name = "num-conv" 3300 + version = "0.1.0" 2854 3301 source = "registry+https://github.com/rust-lang/crates.io-index" 2855 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 2856 - dependencies = [ 2857 - "autocfg", 2858 - "num-integer", 2859 - "num-traits", 2860 - ] 3302 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2861 3303 2862 3304 [[package]] 2863 3305 name = "num-traits" 2864 - version = "0.2.17" 3306 + version = "0.2.18" 2865 3307 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3308 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 2867 3309 dependencies = [ 2868 3310 "autocfg", 2869 3311 ] ··· 2880 3322 2881 3323 [[package]] 2882 3324 name = "num_enum" 2883 - version = "0.5.11" 3325 + version = "0.7.2" 2884 3326 source = "registry+https://github.com/rust-lang/crates.io-index" 2885 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 3327 + checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 2886 3328 dependencies = [ 2887 - "num_enum_derive 0.5.11", 2888 - ] 2889 - 2890 - [[package]] 2891 - name = "num_enum" 2892 - version = "0.6.1" 2893 - source = "registry+https://github.com/rust-lang/crates.io-index" 2894 - checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" 2895 - dependencies = [ 2896 - "num_enum_derive 0.6.1", 3329 + "num_enum_derive", 2897 3330 ] 2898 3331 2899 3332 [[package]] 2900 3333 name = "num_enum_derive" 2901 - version = "0.5.11" 3334 + version = "0.7.2" 2902 3335 source = "registry+https://github.com/rust-lang/crates.io-index" 2903 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 3336 + checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 2904 3337 dependencies = [ 2905 - "proc-macro-crate", 3338 + "proc-macro-crate 3.1.0", 2906 3339 "proc-macro2", 2907 3340 "quote", 2908 - "syn 1.0.109", 2909 - ] 2910 - 2911 - [[package]] 2912 - name = "num_enum_derive" 2913 - version = "0.6.1" 2914 - source = "registry+https://github.com/rust-lang/crates.io-index" 2915 - checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" 2916 - dependencies = [ 2917 - "proc-macro-crate", 2918 - "proc-macro2", 2919 - "quote", 2920 - "syn 2.0.41", 3341 + "syn 2.0.60", 2921 3342 ] 2922 3343 2923 3344 [[package]] ··· 2927 3348 checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2928 3349 dependencies = [ 2929 3350 "malloc_buf", 3351 + "objc_exception", 2930 3352 ] 2931 3353 2932 3354 [[package]] ··· 2947 3369 checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7" 2948 3370 2949 3371 [[package]] 3372 + name = "objc-sys" 3373 + version = "0.3.3" 3374 + source = "registry+https://github.com/rust-lang/crates.io-index" 3375 + checksum = "da284c198fb9b7b0603f8635185e85fbd5b64ee154b1ed406d489077de2d6d60" 3376 + 3377 + [[package]] 2950 3378 name = "objc2" 2951 3379 version = "0.3.0-beta.3.patch-leaks.3" 2952 3380 source = "registry+https://github.com/rust-lang/crates.io-index" 2953 3381 checksum = "7e01640f9f2cb1220bbe80325e179e532cb3379ebcd1bf2279d703c19fe3a468" 2954 3382 dependencies = [ 2955 - "block2", 2956 - "objc-sys", 2957 - "objc2-encode", 3383 + "block2 0.2.0-alpha.6", 3384 + "objc-sys 0.2.0-beta.2", 3385 + "objc2-encode 2.0.0-pre.2", 3386 + ] 3387 + 3388 + [[package]] 3389 + name = "objc2" 3390 + version = "0.4.1" 3391 + source = "registry+https://github.com/rust-lang/crates.io-index" 3392 + checksum = "559c5a40fdd30eb5e344fbceacf7595a81e242529fb4e21cf5f43fb4f11ff98d" 3393 + dependencies = [ 3394 + "objc-sys 0.3.3", 3395 + "objc2-encode 3.0.0", 2958 3396 ] 2959 3397 2960 3398 [[package]] ··· 2963 3401 source = "registry+https://github.com/rust-lang/crates.io-index" 2964 3402 checksum = "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512" 2965 3403 dependencies = [ 2966 - "objc-sys", 3404 + "objc-sys 0.2.0-beta.2", 3405 + ] 3406 + 3407 + [[package]] 3408 + name = "objc2-encode" 3409 + version = "3.0.0" 3410 + source = "registry+https://github.com/rust-lang/crates.io-index" 3411 + checksum = "d079845b37af429bfe5dfa76e6d087d788031045b25cfc6fd898486fd9847666" 3412 + 3413 + [[package]] 3414 + name = "objc_exception" 3415 + version = "0.1.2" 3416 + source = "registry+https://github.com/rust-lang/crates.io-index" 3417 + checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 3418 + dependencies = [ 3419 + "cc", 2967 3420 ] 2968 3421 2969 3422 [[package]] ··· 2977 3430 2978 3431 [[package]] 2979 3432 name = "object" 2980 - version = "0.32.1" 3433 + version = "0.32.2" 2981 3434 source = "registry+https://github.com/rust-lang/crates.io-index" 2982 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3435 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2983 3436 dependencies = [ 2984 3437 "memchr", 2985 3438 ] ··· 2992 3445 2993 3446 [[package]] 2994 3447 name = "opaque-debug" 2995 - version = "0.3.0" 3448 + version = "0.3.1" 2996 3449 source = "registry+https://github.com/rust-lang/crates.io-index" 2997 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 3450 + checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 2998 3451 2999 3452 [[package]] 3000 3453 name = "openssl" 3001 - version = "0.10.61" 3454 + version = "0.10.64" 3002 3455 source = "registry+https://github.com/rust-lang/crates.io-index" 3003 - checksum = "6b8419dc8cc6d866deb801274bba2e6f8f6108c1bb7fcc10ee5ab864931dbb45" 3456 + checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 3004 3457 dependencies = [ 3005 - "bitflags 2.4.1", 3458 + "bitflags 2.5.0", 3006 3459 "cfg-if", 3007 - "foreign-types", 3460 + "foreign-types 0.3.2", 3008 3461 "libc", 3009 3462 "once_cell", 3010 3463 "openssl-macros", ··· 3019 3472 dependencies = [ 3020 3473 "proc-macro2", 3021 3474 "quote", 3022 - "syn 2.0.41", 3475 + "syn 2.0.60", 3023 3476 ] 3024 3477 3025 3478 [[package]] ··· 3030 3483 3031 3484 [[package]] 3032 3485 name = "openssl-sys" 3033 - version = "0.9.97" 3486 + version = "0.9.102" 3034 3487 source = "registry+https://github.com/rust-lang/crates.io-index" 3035 - checksum = "c3eaad34cdd97d81de97964fc7f29e2d104f483840d906ef56daa1912338460b" 3488 + checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" 3036 3489 dependencies = [ 3037 3490 "cc", 3038 3491 "libc", ··· 3082 3535 3083 3536 [[package]] 3084 3537 name = "page_size" 3085 - version = "0.5.0" 3538 + version = "0.6.0" 3086 3539 source = "registry+https://github.com/rust-lang/crates.io-index" 3087 - checksum = "1b7663cbd190cfd818d08efa8497f6cd383076688c49a391ef7c0d03cd12b561" 3540 + checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" 3088 3541 dependencies = [ 3089 3542 "libc", 3090 3543 "winapi", ··· 3098 3551 3099 3552 [[package]] 3100 3553 name = "parking_lot" 3101 - version = "0.12.1" 3554 + version = "0.12.2" 3102 3555 source = "registry+https://github.com/rust-lang/crates.io-index" 3103 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3556 + checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" 3104 3557 dependencies = [ 3105 3558 "lock_api", 3106 3559 "parking_lot_core", ··· 3108 3561 3109 3562 [[package]] 3110 3563 name = "parking_lot_core" 3111 - version = "0.9.9" 3564 + version = "0.9.10" 3112 3565 source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3566 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 3114 3567 dependencies = [ 3115 3568 "cfg-if", 3116 3569 "libc", 3117 - "redox_syscall 0.4.1", 3570 + "redox_syscall 0.5.1", 3118 3571 "smallvec", 3119 - "windows-targets 0.48.5", 3572 + "windows-targets 0.52.5", 3120 3573 ] 3121 3574 3122 3575 [[package]] ··· 3126 3579 checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 3127 3580 dependencies = [ 3128 3581 "base64ct", 3129 - "rand_core", 3582 + "rand_core 0.6.4", 3130 3583 "subtle", 3131 3584 ] 3132 3585 ··· 3149 3602 ] 3150 3603 3151 3604 [[package]] 3152 - name = "peeking_take_while" 3153 - version = "0.1.2" 3154 - source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 3156 - 3157 - [[package]] 3158 3605 name = "percent-encoding" 3159 3606 version = "2.3.1" 3160 3607 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3177 3624 checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 3178 3625 dependencies = [ 3179 3626 "phf_shared", 3180 - "rand", 3627 + "rand 0.8.5", 3181 3628 ] 3182 3629 3183 3630 [[package]] ··· 3190 3637 "phf_shared", 3191 3638 "proc-macro2", 3192 3639 "quote", 3193 - "syn 2.0.41", 3640 + "syn 2.0.60", 3194 3641 ] 3195 3642 3196 3643 [[package]] ··· 3210 3657 3211 3658 [[package]] 3212 3659 name = "pin-project-lite" 3213 - version = "0.2.13" 3660 + version = "0.2.14" 3214 3661 source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 3662 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 3216 3663 3217 3664 [[package]] 3218 3665 name = "pin-utils" ··· 3227 3674 checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 3228 3675 dependencies = [ 3229 3676 "atomic-waker", 3230 - "fastrand 2.0.1", 3677 + "fastrand 2.0.2", 3231 3678 "futures-io", 3232 3679 ] 3233 3680 3234 3681 [[package]] 3235 3682 name = "pkg-config" 3236 - version = "0.3.27" 3683 + version = "0.3.30" 3237 3684 source = "registry+https://github.com/rust-lang/crates.io-index" 3238 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3685 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 3686 + 3687 + [[package]] 3688 + name = "plist" 3689 + version = "1.6.1" 3690 + source = "registry+https://github.com/rust-lang/crates.io-index" 3691 + checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9" 3692 + dependencies = [ 3693 + "base64 0.21.7", 3694 + "indexmap", 3695 + "line-wrap", 3696 + "quick-xml", 3697 + "serde", 3698 + "time", 3699 + ] 3239 3700 3240 3701 [[package]] 3241 3702 name = "png" 3242 - version = "0.17.10" 3703 + version = "0.17.13" 3243 3704 source = "registry+https://github.com/rust-lang/crates.io-index" 3244 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3705 + checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 3245 3706 dependencies = [ 3246 3707 "bitflags 1.3.2", 3247 3708 "crc32fast", ··· 3268 3729 3269 3730 [[package]] 3270 3731 name = "polling" 3271 - version = "3.3.1" 3732 + version = "3.7.0" 3272 3733 source = "registry+https://github.com/rust-lang/crates.io-index" 3273 - checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" 3734 + checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3" 3274 3735 dependencies = [ 3275 3736 "cfg-if", 3276 3737 "concurrent-queue", 3738 + "hermit-abi", 3277 3739 "pin-project-lite", 3278 - "rustix 0.38.28", 3740 + "rustix 0.38.34", 3279 3741 "tracing", 3280 3742 "windows-sys 0.52.0", 3281 3743 ] 3744 + 3745 + [[package]] 3746 + name = "pollster" 3747 + version = "0.3.0" 3748 + source = "registry+https://github.com/rust-lang/crates.io-index" 3749 + checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" 3282 3750 3283 3751 [[package]] 3284 3752 name = "poly1305" ··· 3304 3772 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3305 3773 3306 3774 [[package]] 3775 + name = "presser" 3776 + version = "0.3.1" 3777 + source = "registry+https://github.com/rust-lang/crates.io-index" 3778 + checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" 3779 + 3780 + [[package]] 3307 3781 name = "proc-macro-crate" 3308 3782 version = "1.3.1" 3309 3783 source = "registry+https://github.com/rust-lang/crates.io-index" 3310 3784 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3311 3785 dependencies = [ 3312 3786 "once_cell", 3313 - "toml_edit", 3787 + "toml_edit 0.19.15", 3788 + ] 3789 + 3790 + [[package]] 3791 + name = "proc-macro-crate" 3792 + version = "3.1.0" 3793 + source = "registry+https://github.com/rust-lang/crates.io-index" 3794 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 3795 + dependencies = [ 3796 + "toml_edit 0.21.1", 3314 3797 ] 3315 3798 3316 3799 [[package]] 3317 3800 name = "proc-macro2" 3318 - version = "1.0.70" 3801 + version = "1.0.81" 3319 3802 source = "registry+https://github.com/rust-lang/crates.io-index" 3320 - checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 3803 + checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" 3321 3804 dependencies = [ 3322 3805 "unicode-ident", 3323 3806 ] 3324 3807 3325 3808 [[package]] 3809 + name = "profiling" 3810 + version = "1.0.15" 3811 + source = "registry+https://github.com/rust-lang/crates.io-index" 3812 + checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58" 3813 + 3814 + [[package]] 3326 3815 name = "qoi" 3327 3816 version = "0.4.1" 3328 3817 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3341 3830 ] 3342 3831 3343 3832 [[package]] 3833 + name = "quick-xml" 3834 + version = "0.31.0" 3835 + source = "registry+https://github.com/rust-lang/crates.io-index" 3836 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 3837 + dependencies = [ 3838 + "memchr", 3839 + ] 3840 + 3841 + [[package]] 3344 3842 name = "quote" 3345 - version = "1.0.33" 3843 + version = "1.0.36" 3346 3844 source = "registry+https://github.com/rust-lang/crates.io-index" 3347 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3845 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 3348 3846 dependencies = [ 3349 3847 "proc-macro2", 3350 3848 ] 3351 3849 3352 3850 [[package]] 3353 3851 name = "rand" 3852 + version = "0.7.3" 3853 + source = "registry+https://github.com/rust-lang/crates.io-index" 3854 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3855 + dependencies = [ 3856 + "getrandom 0.1.16", 3857 + "libc", 3858 + "rand_chacha 0.2.2", 3859 + "rand_core 0.5.1", 3860 + "rand_hc", 3861 + ] 3862 + 3863 + [[package]] 3864 + name = "rand" 3354 3865 version = "0.8.5" 3355 3866 source = "registry+https://github.com/rust-lang/crates.io-index" 3356 3867 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3357 3868 dependencies = [ 3358 3869 "libc", 3359 - "rand_chacha", 3360 - "rand_core", 3870 + "rand_chacha 0.3.1", 3871 + "rand_core 0.6.4", 3872 + ] 3873 + 3874 + [[package]] 3875 + name = "rand_chacha" 3876 + version = "0.2.2" 3877 + source = "registry+https://github.com/rust-lang/crates.io-index" 3878 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3879 + dependencies = [ 3880 + "ppv-lite86", 3881 + "rand_core 0.5.1", 3361 3882 ] 3362 3883 3363 3884 [[package]] ··· 3367 3888 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3368 3889 dependencies = [ 3369 3890 "ppv-lite86", 3370 - "rand_core", 3891 + "rand_core 0.6.4", 3892 + ] 3893 + 3894 + [[package]] 3895 + name = "rand_core" 3896 + version = "0.5.1" 3897 + source = "registry+https://github.com/rust-lang/crates.io-index" 3898 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3899 + dependencies = [ 3900 + "getrandom 0.1.16", 3371 3901 ] 3372 3902 3373 3903 [[package]] ··· 3376 3906 source = "registry+https://github.com/rust-lang/crates.io-index" 3377 3907 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3378 3908 dependencies = [ 3379 - "getrandom", 3909 + "getrandom 0.2.14", 3910 + ] 3911 + 3912 + [[package]] 3913 + name = "rand_hc" 3914 + version = "0.2.0" 3915 + source = "registry+https://github.com/rust-lang/crates.io-index" 3916 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3917 + dependencies = [ 3918 + "rand_core 0.5.1", 3380 3919 ] 3381 3920 3382 3921 [[package]] ··· 3386 3925 checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 3387 3926 3388 3927 [[package]] 3928 + name = "raw-window-handle" 3929 + version = "0.6.1" 3930 + source = "registry+https://github.com/rust-lang/crates.io-index" 3931 + checksum = "8cc3bcbdb1ddfc11e700e62968e6b4cc9c75bb466464ad28fb61c5b2c964418b" 3932 + 3933 + [[package]] 3389 3934 name = "rayon" 3390 - version = "1.8.0" 3935 + version = "1.10.0" 3391 3936 source = "registry+https://github.com/rust-lang/crates.io-index" 3392 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3937 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 3393 3938 dependencies = [ 3394 3939 "either", 3395 3940 "rayon-core", ··· 3397 3942 3398 3943 [[package]] 3399 3944 name = "rayon-core" 3400 - version = "1.12.0" 3945 + version = "1.12.1" 3401 3946 source = "registry+https://github.com/rust-lang/crates.io-index" 3402 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3947 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3403 3948 dependencies = [ 3404 3949 "crossbeam-deque", 3405 3950 "crossbeam-utils", ··· 3430 3975 ] 3431 3976 3432 3977 [[package]] 3978 + name = "redox_syscall" 3979 + version = "0.5.1" 3980 + source = "registry+https://github.com/rust-lang/crates.io-index" 3981 + checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 3982 + dependencies = [ 3983 + "bitflags 2.5.0", 3984 + ] 3985 + 3986 + [[package]] 3433 3987 name = "redox_users" 3434 - version = "0.4.4" 3988 + version = "0.4.5" 3435 3989 source = "registry+https://github.com/rust-lang/crates.io-index" 3436 - checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3990 + checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 3437 3991 dependencies = [ 3438 - "getrandom", 3439 - "libredox 0.0.1", 3992 + "getrandom 0.2.14", 3993 + "libredox 0.1.3", 3440 3994 "thiserror", 3441 3995 ] 3442 3996 3443 3997 [[package]] 3444 3998 name = "regex" 3445 - version = "1.10.2" 3999 + version = "1.10.4" 3446 4000 source = "registry+https://github.com/rust-lang/crates.io-index" 3447 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 4001 + checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 3448 4002 dependencies = [ 3449 4003 "aho-corasick", 3450 4004 "memchr", 3451 - "regex-automata 0.4.3", 3452 - "regex-syntax 0.8.2", 4005 + "regex-automata 0.4.6", 4006 + "regex-syntax 0.8.3", 3453 4007 ] 3454 4008 3455 4009 [[package]] ··· 3463 4017 3464 4018 [[package]] 3465 4019 name = "regex-automata" 3466 - version = "0.4.3" 4020 + version = "0.4.6" 3467 4021 source = "registry+https://github.com/rust-lang/crates.io-index" 3468 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 4022 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 3469 4023 dependencies = [ 3470 4024 "aho-corasick", 3471 4025 "memchr", 3472 - "regex-syntax 0.8.2", 4026 + "regex-syntax 0.8.3", 3473 4027 ] 3474 4028 3475 4029 [[package]] ··· 3480 4034 3481 4035 [[package]] 3482 4036 name = "regex-syntax" 3483 - version = "0.8.2" 4037 + version = "0.8.3" 3484 4038 source = "registry+https://github.com/rust-lang/crates.io-index" 3485 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 4039 + checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 4040 + 4041 + [[package]] 4042 + name = "renderdoc-sys" 4043 + version = "1.1.0" 4044 + source = "registry+https://github.com/rust-lang/crates.io-index" 4045 + checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" 3486 4046 3487 4047 [[package]] 3488 4048 name = "reqwest" 3489 - version = "0.11.22" 4049 + version = "0.11.27" 3490 4050 source = "registry+https://github.com/rust-lang/crates.io-index" 3491 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 4051 + checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 3492 4052 dependencies = [ 3493 4053 "async-compression", 3494 - "base64", 4054 + "base64 0.21.7", 3495 4055 "bytes", 3496 4056 "encoding_rs", 3497 4057 "futures-core", 3498 4058 "futures-util", 3499 4059 "h2", 3500 - "http", 4060 + "http 0.2.12", 3501 4061 "http-body", 3502 4062 "hyper", 3503 4063 "hyper-rustls", ··· 3510 4070 "once_cell", 3511 4071 "percent-encoding", 3512 4072 "pin-project-lite", 3513 - "rustls", 3514 - "rustls-native-certs", 3515 - "rustls-pemfile", 4073 + "rustls 0.21.11", 4074 + "rustls-native-certs 0.6.3", 4075 + "rustls-pemfile 1.0.4", 3516 4076 "serde", 3517 4077 "serde_json", 3518 4078 "serde_urlencoded", 4079 + "sync_wrapper", 3519 4080 "system-configuration", 3520 4081 "tokio", 3521 4082 "tokio-native-tls", 3522 - "tokio-rustls", 4083 + "tokio-rustls 0.24.1", 3523 4084 "tokio-util", 3524 4085 "tower-service", 3525 4086 "url", 3526 4087 "wasm-bindgen", 3527 4088 "wasm-bindgen-futures", 3528 4089 "web-sys", 3529 - "webpki-roots 0.25.3", 4090 + "webpki-roots 0.25.4", 3530 4091 "winreg", 3531 4092 ] 3532 4093 ··· 3536 4097 source = "registry+https://github.com/rust-lang/crates.io-index" 3537 4098 checksum = "b6554f47c38eca56827eea7f285c2a3018b4e12e0e195cc105833c008be338f1" 3538 4099 dependencies = [ 3539 - "gif", 4100 + "gif 0.12.0", 3540 4101 "jpeg-decoder", 3541 4102 "log", 3542 4103 "pico-args", ··· 3558 4119 3559 4120 [[package]] 3560 4121 name = "rhai" 3561 - version = "1.16.3" 4122 + version = "1.18.0" 3562 4123 source = "registry+https://github.com/rust-lang/crates.io-index" 3563 - checksum = "e3625f343d89990133d013e39c46e350915178cf94f1bec9f49b0cbef98a3e3c" 4124 + checksum = "7a7d88770120601ba1e548bb6bc2a05019e54ff01b51479e38e64ec3b59d4759" 3564 4125 dependencies = [ 3565 - "ahash 0.8.6", 3566 - "bitflags 2.4.1", 4126 + "ahash 0.8.11", 4127 + "bitflags 2.5.0", 3567 4128 "instant", 3568 4129 "num-traits", 3569 4130 "once_cell", 3570 4131 "rhai_codegen", 3571 4132 "smallvec", 3572 4133 "smartstring", 4134 + "thin-vec", 3573 4135 ] 3574 4136 3575 4137 [[package]] 3576 4138 name = "rhai_codegen" 3577 - version = "1.6.0" 4139 + version = "2.1.0" 3578 4140 source = "registry+https://github.com/rust-lang/crates.io-index" 3579 - checksum = "853977598f084a492323fe2f7896b4100a86284ee8473612de60021ea341310f" 4141 + checksum = "59aecf17969c04b9c0c5d21f6bc9da9fec9dd4980e64d1871443a476589d8c86" 3580 4142 dependencies = [ 3581 4143 "proc-macro2", 3582 4144 "quote", 3583 - "syn 2.0.41", 4145 + "syn 2.0.60", 3584 4146 ] 3585 4147 3586 4148 [[package]] 3587 4149 name = "ring" 3588 - version = "0.16.20" 4150 + version = "0.17.8" 3589 4151 source = "registry+https://github.com/rust-lang/crates.io-index" 3590 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 4152 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 3591 4153 dependencies = [ 3592 4154 "cc", 4155 + "cfg-if", 4156 + "getrandom 0.2.14", 3593 4157 "libc", 3594 - "once_cell", 3595 - "spin 0.5.2", 3596 - "untrusted 0.7.1", 3597 - "web-sys", 3598 - "winapi", 3599 - ] 3600 - 3601 - [[package]] 3602 - name = "ring" 3603 - version = "0.17.7" 3604 - source = "registry+https://github.com/rust-lang/crates.io-index" 3605 - checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 3606 - dependencies = [ 3607 - "cc", 3608 - "getrandom", 3609 - "libc", 3610 - "spin 0.9.8", 3611 - "untrusted 0.9.0", 3612 - "windows-sys 0.48.0", 4158 + "spin", 4159 + "untrusted", 4160 + "windows-sys 0.52.0", 3613 4161 ] 3614 4162 3615 4163 [[package]] ··· 3627 4175 source = "registry+https://github.com/rust-lang/crates.io-index" 3628 4176 checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 3629 4177 dependencies = [ 3630 - "base64", 3631 - "bitflags 2.4.1", 4178 + "base64 0.21.7", 4179 + "bitflags 2.5.0", 3632 4180 "serde", 3633 4181 "serde_derive", 3634 4182 ] ··· 3641 4189 dependencies = [ 3642 4190 "xmlparser", 3643 4191 ] 4192 + 4193 + [[package]] 4194 + name = "roxmltree" 4195 + version = "0.19.0" 4196 + source = "registry+https://github.com/rust-lang/crates.io-index" 4197 + checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" 3644 4198 3645 4199 [[package]] 3646 4200 name = "rpassword" ··· 3700 4254 3701 4255 [[package]] 3702 4256 name = "rustix" 3703 - version = "0.38.28" 4257 + version = "0.38.34" 3704 4258 source = "registry+https://github.com/rust-lang/crates.io-index" 3705 - checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" 4259 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3706 4260 dependencies = [ 3707 - "bitflags 2.4.1", 4261 + "bitflags 2.5.0", 3708 4262 "errno", 3709 4263 "libc", 3710 - "linux-raw-sys 0.4.12", 4264 + "linux-raw-sys 0.4.13", 3711 4265 "windows-sys 0.52.0", 3712 4266 ] 3713 4267 3714 4268 [[package]] 3715 4269 name = "rustls" 3716 - version = "0.21.10" 4270 + version = "0.21.11" 3717 4271 source = "registry+https://github.com/rust-lang/crates.io-index" 3718 - checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 4272 + checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4" 3719 4273 dependencies = [ 3720 4274 "log", 3721 - "ring 0.17.7", 4275 + "ring", 3722 4276 "rustls-webpki 0.101.7", 3723 4277 "sct", 3724 4278 ] 3725 4279 3726 4280 [[package]] 4281 + name = "rustls" 4282 + version = "0.22.4" 4283 + source = "registry+https://github.com/rust-lang/crates.io-index" 4284 + checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 4285 + dependencies = [ 4286 + "log", 4287 + "ring", 4288 + "rustls-pki-types", 4289 + "rustls-webpki 0.102.3", 4290 + "subtle", 4291 + "zeroize", 4292 + ] 4293 + 4294 + [[package]] 3727 4295 name = "rustls-native-certs" 3728 4296 version = "0.6.3" 3729 4297 source = "registry+https://github.com/rust-lang/crates.io-index" 3730 4298 checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 3731 4299 dependencies = [ 3732 4300 "openssl-probe", 3733 - "rustls-pemfile", 4301 + "rustls-pemfile 1.0.4", 4302 + "schannel", 4303 + "security-framework", 4304 + ] 4305 + 4306 + [[package]] 4307 + name = "rustls-native-certs" 4308 + version = "0.7.0" 4309 + source = "registry+https://github.com/rust-lang/crates.io-index" 4310 + checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" 4311 + dependencies = [ 4312 + "openssl-probe", 4313 + "rustls-pemfile 2.1.2", 4314 + "rustls-pki-types", 3734 4315 "schannel", 3735 4316 "security-framework", 3736 4317 ] ··· 3741 4322 source = "registry+https://github.com/rust-lang/crates.io-index" 3742 4323 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3743 4324 dependencies = [ 3744 - "base64", 4325 + "base64 0.21.7", 3745 4326 ] 3746 4327 3747 4328 [[package]] 3748 - name = "rustls-webpki" 3749 - version = "0.100.3" 4329 + name = "rustls-pemfile" 4330 + version = "2.1.2" 3750 4331 source = "registry+https://github.com/rust-lang/crates.io-index" 3751 - checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3" 4332 + checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 3752 4333 dependencies = [ 3753 - "ring 0.16.20", 3754 - "untrusted 0.7.1", 4334 + "base64 0.22.0", 4335 + "rustls-pki-types", 3755 4336 ] 3756 4337 3757 4338 [[package]] 4339 + name = "rustls-pki-types" 4340 + version = "1.5.0" 4341 + source = "registry+https://github.com/rust-lang/crates.io-index" 4342 + checksum = "beb461507cee2c2ff151784c52762cf4d9ff6a61f3e80968600ed24fa837fa54" 4343 + 4344 + [[package]] 3758 4345 name = "rustls-webpki" 3759 4346 version = "0.101.7" 3760 4347 source = "registry+https://github.com/rust-lang/crates.io-index" 3761 4348 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3762 4349 dependencies = [ 3763 - "ring 0.17.7", 3764 - "untrusted 0.9.0", 4350 + "ring", 4351 + "untrusted", 4352 + ] 4353 + 4354 + [[package]] 4355 + name = "rustls-webpki" 4356 + version = "0.102.3" 4357 + source = "registry+https://github.com/rust-lang/crates.io-index" 4358 + checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf" 4359 + dependencies = [ 4360 + "ring", 4361 + "rustls-pki-types", 4362 + "untrusted", 3765 4363 ] 3766 4364 3767 4365 [[package]] 3768 4366 name = "rustversion" 3769 - version = "1.0.14" 4367 + version = "1.0.15" 3770 4368 source = "registry+https://github.com/rust-lang/crates.io-index" 3771 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 4369 + checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47" 3772 4370 3773 4371 [[package]] 3774 4372 name = "rustybuzz" ··· 3788 4386 3789 4387 [[package]] 3790 4388 name = "ryu" 3791 - version = "1.0.16" 4389 + version = "1.0.17" 3792 4390 source = "registry+https://github.com/rust-lang/crates.io-index" 3793 - checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 4391 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 3794 4392 3795 4393 [[package]] 3796 4394 name = "salsa20" ··· 3812 4410 3813 4411 [[package]] 3814 4412 name = "schannel" 3815 - version = "0.1.22" 4413 + version = "0.1.23" 3816 4414 source = "registry+https://github.com/rust-lang/crates.io-index" 3817 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 4415 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 3818 4416 dependencies = [ 3819 - "windows-sys 0.48.0", 4417 + "windows-sys 0.52.0", 3820 4418 ] 3821 4419 3822 4420 [[package]] ··· 3849 4447 source = "registry+https://github.com/rust-lang/crates.io-index" 3850 4448 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3851 4449 dependencies = [ 3852 - "ring 0.17.7", 3853 - "untrusted 0.9.0", 4450 + "ring", 4451 + "untrusted", 3854 4452 ] 3855 4453 3856 4454 [[package]] 3857 4455 name = "sctk-adwaita" 3858 - version = "0.5.4" 4456 + version = "0.8.1" 3859 4457 source = "registry+https://github.com/rust-lang/crates.io-index" 3860 - checksum = "cda4e97be1fd174ccc2aae81c8b694e803fa99b34e8fd0f057a9d70698e3ed09" 4458 + checksum = "82b2eaf3a5b264a521b988b2e73042e742df700c4f962cde845d1541adb46550" 3861 4459 dependencies = [ 3862 4460 "ab_glyph", 3863 4461 "log", 3864 - "memmap2 0.5.10", 4462 + "memmap2 0.9.4", 3865 4463 "smithay-client-toolkit", 3866 - "tiny-skia 0.8.4", 4464 + "tiny-skia 0.11.4", 3867 4465 ] 3868 4466 3869 4467 [[package]] 3870 4468 name = "sdl2" 3871 - version = "0.35.2" 3872 - source = "git+https://github.com/Rust-SDL2/rust-sdl2?rev=27cd1fd67c811e06b9d997a77bb6089a1b65070d#27cd1fd67c811e06b9d997a77bb6089a1b65070d" 4469 + version = "0.36.0" 4470 + source = "git+https://github.com/Rust-SDL2/rust-sdl2?rev=f2f1e29a416bcc22f2faf411866db2c8d9536308#f2f1e29a416bcc22f2faf411866db2c8d9536308" 3873 4471 dependencies = [ 3874 4472 "bitflags 1.3.2", 3875 4473 "lazy_static", ··· 3879 4477 3880 4478 [[package]] 3881 4479 name = "sdl2-sys" 3882 - version = "0.35.2" 3883 - source = "git+https://github.com/Rust-SDL2/rust-sdl2?rev=27cd1fd67c811e06b9d997a77bb6089a1b65070d#27cd1fd67c811e06b9d997a77bb6089a1b65070d" 4480 + version = "0.36.0" 4481 + source = "git+https://github.com/Rust-SDL2/rust-sdl2?rev=f2f1e29a416bcc22f2faf411866db2c8d9536308#f2f1e29a416bcc22f2faf411866db2c8d9536308" 3884 4482 dependencies = [ 3885 4483 "cfg-if", 3886 4484 "cmake", ··· 3890 4488 3891 4489 [[package]] 3892 4490 name = "secp256k1" 3893 - version = "0.24.3" 4491 + version = "0.27.0" 3894 4492 source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62" 4493 + checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" 3896 4494 dependencies = [ 3897 - "bitcoin_hashes 0.11.0", 3898 - "secp256k1-sys 0.6.1", 4495 + "bitcoin_hashes 0.12.0", 4496 + "secp256k1-sys 0.8.1", 3899 4497 ] 3900 4498 3901 4499 [[package]] 3902 4500 name = "secp256k1" 3903 - version = "0.27.0" 4501 + version = "0.29.0" 3904 4502 source = "registry+https://github.com/rust-lang/crates.io-index" 3905 - checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" 4503 + checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" 3906 4504 dependencies = [ 3907 - "bitcoin_hashes 0.12.0", 3908 - "rand", 3909 - "secp256k1-sys 0.8.1", 4505 + "bitcoin_hashes 0.14.0", 4506 + "rand 0.8.5", 4507 + "secp256k1-sys 0.10.0", 3910 4508 "serde", 3911 4509 ] 3912 4510 3913 4511 [[package]] 3914 4512 name = "secp256k1-sys" 3915 - version = "0.6.1" 4513 + version = "0.8.1" 3916 4514 source = "registry+https://github.com/rust-lang/crates.io-index" 3917 - checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b" 4515 + checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e" 3918 4516 dependencies = [ 3919 4517 "cc", 3920 4518 ] 3921 4519 3922 4520 [[package]] 3923 4521 name = "secp256k1-sys" 3924 - version = "0.8.1" 4522 + version = "0.10.0" 3925 4523 source = "registry+https://github.com/rust-lang/crates.io-index" 3926 - checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e" 4524 + checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" 3927 4525 dependencies = [ 3928 4526 "cc", 3929 4527 ] 3930 4528 3931 4529 [[package]] 3932 4530 name = "security-framework" 3933 - version = "2.9.2" 4531 + version = "2.10.0" 3934 4532 source = "registry+https://github.com/rust-lang/crates.io-index" 3935 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 4533 + checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" 3936 4534 dependencies = [ 3937 4535 "bitflags 1.3.2", 3938 4536 "core-foundation", ··· 3943 4541 3944 4542 [[package]] 3945 4543 name = "security-framework-sys" 3946 - version = "2.9.1" 4544 + version = "2.10.0" 3947 4545 source = "registry+https://github.com/rust-lang/crates.io-index" 3948 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 4546 + checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" 3949 4547 dependencies = [ 3950 4548 "core-foundation-sys", 3951 4549 "libc", ··· 3953 4551 3954 4552 [[package]] 3955 4553 name = "semver" 3956 - version = "1.0.20" 4554 + version = "1.0.22" 3957 4555 source = "registry+https://github.com/rust-lang/crates.io-index" 3958 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 4556 + checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 3959 4557 3960 4558 [[package]] 3961 4559 name = "serde" 3962 - version = "1.0.193" 4560 + version = "1.0.198" 3963 4561 source = "registry+https://github.com/rust-lang/crates.io-index" 3964 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 4562 + checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc" 3965 4563 dependencies = [ 3966 4564 "serde_derive", 3967 4565 ] 3968 4566 3969 4567 [[package]] 3970 4568 name = "serde_derive" 3971 - version = "1.0.193" 4569 + version = "1.0.198" 3972 4570 source = "registry+https://github.com/rust-lang/crates.io-index" 3973 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 4571 + checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9" 3974 4572 dependencies = [ 3975 4573 "proc-macro2", 3976 4574 "quote", 3977 - "syn 2.0.41", 4575 + "syn 2.0.60", 3978 4576 ] 3979 4577 3980 4578 [[package]] 3981 4579 name = "serde_json" 3982 - version = "1.0.108" 4580 + version = "1.0.116" 3983 4581 source = "registry+https://github.com/rust-lang/crates.io-index" 3984 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 4582 + checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 3985 4583 dependencies = [ 3986 4584 "itoa", 3987 4585 "ryu", ··· 3990 4588 3991 4589 [[package]] 3992 4590 name = "serde_repr" 3993 - version = "0.1.17" 4591 + version = "0.1.19" 3994 4592 source = "registry+https://github.com/rust-lang/crates.io-index" 3995 - checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 4593 + checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 3996 4594 dependencies = [ 3997 4595 "proc-macro2", 3998 4596 "quote", 3999 - "syn 2.0.41", 4597 + "syn 2.0.60", 4000 4598 ] 4001 4599 4002 4600 [[package]] ··· 4044 4642 4045 4643 [[package]] 4046 4644 name = "shlex" 4047 - version = "1.2.0" 4645 + version = "1.3.0" 4048 4646 source = "registry+https://github.com/rust-lang/crates.io-index" 4049 - checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 4647 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4050 4648 4051 4649 [[package]] 4052 4650 name = "signal-hook-registry" 4053 - version = "1.4.1" 4651 + version = "1.4.2" 4054 4652 source = "registry+https://github.com/rust-lang/crates.io-index" 4055 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4653 + checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 4056 4654 dependencies = [ 4057 4655 "libc", 4058 4656 ] ··· 4098 4696 4099 4697 [[package]] 4100 4698 name = "smallvec" 4101 - version = "1.11.2" 4699 + version = "1.13.2" 4102 4700 source = "registry+https://github.com/rust-lang/crates.io-index" 4103 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4701 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 4104 4702 4105 4703 [[package]] 4106 4704 name = "smartstring" ··· 4115 4713 4116 4714 [[package]] 4117 4715 name = "smithay-client-toolkit" 4118 - version = "0.16.1" 4716 + version = "0.18.1" 4119 4717 source = "registry+https://github.com/rust-lang/crates.io-index" 4120 - checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9" 4718 + checksum = "922fd3eeab3bd820d76537ce8f582b1cf951eceb5475c28500c7457d9d17f53a" 4121 4719 dependencies = [ 4122 - "bitflags 1.3.2", 4720 + "bitflags 2.5.0", 4123 4721 "calloop", 4124 - "dlib", 4125 - "lazy_static", 4722 + "calloop-wayland-source", 4723 + "cursor-icon", 4724 + "libc", 4126 4725 "log", 4127 - "memmap2 0.5.10", 4128 - "nix 0.24.3", 4129 - "pkg-config", 4726 + "memmap2 0.9.4", 4727 + "rustix 0.38.34", 4728 + "thiserror", 4729 + "wayland-backend", 4130 4730 "wayland-client", 4731 + "wayland-csd-frame", 4131 4732 "wayland-cursor", 4132 4733 "wayland-protocols", 4734 + "wayland-protocols-wlr", 4735 + "wayland-scanner", 4736 + "xkeysym", 4133 4737 ] 4134 4738 4135 4739 [[package]] 4136 4740 name = "smithay-clipboard" 4137 - version = "0.6.6" 4741 + version = "0.7.1" 4138 4742 source = "registry+https://github.com/rust-lang/crates.io-index" 4139 - checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8" 4743 + checksum = "c091e7354ea8059d6ad99eace06dd13ddeedbb0ac72d40a9a6e7ff790525882d" 4140 4744 dependencies = [ 4745 + "libc", 4141 4746 "smithay-client-toolkit", 4142 - "wayland-client", 4747 + "wayland-backend", 4748 + ] 4749 + 4750 + [[package]] 4751 + name = "smol_str" 4752 + version = "0.2.1" 4753 + source = "registry+https://github.com/rust-lang/crates.io-index" 4754 + checksum = "e6845563ada680337a52d43bb0b29f396f2d911616f6573012645b9e3d048a49" 4755 + dependencies = [ 4756 + "serde", 4143 4757 ] 4144 4758 4145 4759 [[package]] ··· 4154 4768 4155 4769 [[package]] 4156 4770 name = "socket2" 4157 - version = "0.5.5" 4771 + version = "0.5.6" 4158 4772 source = "registry+https://github.com/rust-lang/crates.io-index" 4159 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 4773 + checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 4160 4774 dependencies = [ 4161 4775 "libc", 4162 - "windows-sys 0.48.0", 4776 + "windows-sys 0.52.0", 4163 4777 ] 4164 4778 4165 4779 [[package]] 4166 4780 name = "speedy" 4167 - version = "0.8.6" 4168 - source = "git+https://github.com/mikedilger/speedy?rev=b8b713a7006958616dd3ef3ba63217740b4b09c2#b8b713a7006958616dd3ef3ba63217740b4b09c2" 4781 + version = "0.8.7" 4782 + source = "registry+https://github.com/rust-lang/crates.io-index" 4783 + checksum = "da1992073f0e55aab599f4483c460598219b4f9ff0affa124b33580ab511e25a" 4169 4784 dependencies = [ 4170 - "memoffset 0.8.0", 4785 + "memoffset 0.9.1", 4171 4786 "speedy-derive", 4172 4787 ] 4173 4788 4174 4789 [[package]] 4175 4790 name = "speedy-derive" 4176 - version = "0.8.6" 4177 - source = "git+https://github.com/mikedilger/speedy?rev=b8b713a7006958616dd3ef3ba63217740b4b09c2#b8b713a7006958616dd3ef3ba63217740b4b09c2" 4791 + version = "0.8.7" 4792 + source = "registry+https://github.com/rust-lang/crates.io-index" 4793 + checksum = "658f2ca5276b92c3dfd65fa88316b4e032ace68f88d7570b43967784c0bac5ac" 4178 4794 dependencies = [ 4179 4795 "proc-macro2", 4180 4796 "quote", 4181 - "syn 2.0.41", 4797 + "syn 2.0.60", 4182 4798 ] 4183 4799 4184 4800 [[package]] 4185 4801 name = "spin" 4186 - version = "0.5.2" 4187 - source = "registry+https://github.com/rust-lang/crates.io-index" 4188 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4189 - 4190 - [[package]] 4191 - name = "spin" 4192 4802 version = "0.9.8" 4193 4803 source = "registry+https://github.com/rust-lang/crates.io-index" 4194 4804 checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" ··· 4197 4807 ] 4198 4808 4199 4809 [[package]] 4200 - name = "static_assertions" 4201 - version = "1.1.0" 4810 + name = "spirv" 4811 + version = "0.3.0+sdk-1.3.268.0" 4202 4812 source = "registry+https://github.com/rust-lang/crates.io-index" 4203 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4813 + checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844" 4814 + dependencies = [ 4815 + "bitflags 2.5.0", 4816 + ] 4204 4817 4205 4818 [[package]] 4206 - name = "str-buf" 4207 - version = "1.0.6" 4819 + name = "static_assertions" 4820 + version = "1.1.0" 4208 4821 source = "registry+https://github.com/rust-lang/crates.io-index" 4209 - checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 4822 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4210 4823 4211 4824 [[package]] 4212 4825 name = "strict-num" ··· 4246 4859 4247 4860 [[package]] 4248 4861 name = "syn" 4249 - version = "2.0.41" 4862 + version = "2.0.60" 4250 4863 source = "registry+https://github.com/rust-lang/crates.io-index" 4251 - checksum = "44c8b28c477cc3bf0e7966561e3460130e1255f7a1cf71931075f1c5e7a7e269" 4864 + checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" 4252 4865 dependencies = [ 4253 4866 "proc-macro2", 4254 4867 "quote", ··· 4256 4869 ] 4257 4870 4258 4871 [[package]] 4872 + name = "sync_wrapper" 4873 + version = "0.1.2" 4874 + source = "registry+https://github.com/rust-lang/crates.io-index" 4875 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4876 + 4877 + [[package]] 4259 4878 name = "synchronoise" 4260 4879 version = "1.0.1" 4261 4880 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4265 4884 ] 4266 4885 4267 4886 [[package]] 4887 + name = "syntect" 4888 + version = "5.2.0" 4889 + source = "registry+https://github.com/rust-lang/crates.io-index" 4890 + checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1" 4891 + dependencies = [ 4892 + "bincode", 4893 + "bitflags 1.3.2", 4894 + "fancy-regex", 4895 + "flate2", 4896 + "fnv", 4897 + "once_cell", 4898 + "plist", 4899 + "regex-syntax 0.8.3", 4900 + "serde", 4901 + "serde_derive", 4902 + "serde_json", 4903 + "thiserror", 4904 + "walkdir", 4905 + "yaml-rust", 4906 + ] 4907 + 4908 + [[package]] 4268 4909 name = "system-configuration" 4269 4910 version = "0.5.1" 4270 4911 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4287 4928 4288 4929 [[package]] 4289 4930 name = "tempfile" 4290 - version = "3.8.1" 4931 + version = "3.10.1" 4291 4932 source = "registry+https://github.com/rust-lang/crates.io-index" 4292 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 4933 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 4293 4934 dependencies = [ 4294 4935 "cfg-if", 4295 - "fastrand 2.0.1", 4296 - "redox_syscall 0.4.1", 4297 - "rustix 0.38.28", 4298 - "windows-sys 0.48.0", 4936 + "fastrand 2.0.2", 4937 + "rustix 0.38.34", 4938 + "windows-sys 0.52.0", 4939 + ] 4940 + 4941 + [[package]] 4942 + name = "termcolor" 4943 + version = "1.4.1" 4944 + source = "registry+https://github.com/rust-lang/crates.io-index" 4945 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4946 + dependencies = [ 4947 + "winapi-util", 4948 + ] 4949 + 4950 + [[package]] 4951 + name = "textnonce" 4952 + version = "1.0.0" 4953 + source = "registry+https://github.com/rust-lang/crates.io-index" 4954 + checksum = "7743f8d70cd784ed1dc33106a18998d77758d281dc40dc3e6d050cf0f5286683" 4955 + dependencies = [ 4956 + "base64 0.12.3", 4957 + "rand 0.7.3", 4299 4958 ] 4300 4959 4301 4960 [[package]] 4961 + name = "thin-vec" 4962 + version = "0.2.13" 4963 + source = "registry+https://github.com/rust-lang/crates.io-index" 4964 + checksum = "a38c90d48152c236a3ab59271da4f4ae63d678c5d7ad6b7714d7cb9760be5e4b" 4965 + 4966 + [[package]] 4302 4967 name = "thiserror" 4303 - version = "1.0.50" 4968 + version = "1.0.59" 4304 4969 source = "registry+https://github.com/rust-lang/crates.io-index" 4305 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 4970 + checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" 4306 4971 dependencies = [ 4307 4972 "thiserror-impl", 4308 4973 ] 4309 4974 4310 4975 [[package]] 4311 4976 name = "thiserror-impl" 4312 - version = "1.0.50" 4977 + version = "1.0.59" 4313 4978 source = "registry+https://github.com/rust-lang/crates.io-index" 4314 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 4979 + checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" 4315 4980 dependencies = [ 4316 4981 "proc-macro2", 4317 4982 "quote", 4318 - "syn 2.0.41", 4983 + "syn 2.0.60", 4319 4984 ] 4320 4985 4321 4986 [[package]] 4322 4987 name = "thread-priority" 4323 - version = "0.13.1" 4988 + version = "1.0.0" 4324 4989 source = "registry+https://github.com/rust-lang/crates.io-index" 4325 - checksum = "0c56ce92f1285eaaa11fc1a3201e25de97898c50e87caa4c2aee836fe05288de" 4990 + checksum = "599e8e829c2314b750ecade9309ecc6cf9a48c2e62fe25680b6c1d2172463ca3" 4326 4991 dependencies = [ 4327 - "bitflags 1.3.2", 4992 + "bitflags 2.5.0", 4328 4993 "cfg-if", 4329 4994 "libc", 4330 4995 "log", ··· 4334 4999 4335 5000 [[package]] 4336 5001 name = "thread_local" 4337 - version = "1.1.7" 5002 + version = "1.1.8" 4338 5003 source = "registry+https://github.com/rust-lang/crates.io-index" 4339 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 5004 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 4340 5005 dependencies = [ 4341 5006 "cfg-if", 4342 5007 "once_cell", ··· 4344 5009 4345 5010 [[package]] 4346 5011 name = "tiff" 4347 - version = "0.9.0" 5012 + version = "0.9.1" 4348 5013 source = "registry+https://github.com/rust-lang/crates.io-index" 4349 - checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 5014 + checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 4350 5015 dependencies = [ 4351 5016 "flate2", 4352 5017 "jpeg-decoder", ··· 4355 5020 4356 5021 [[package]] 4357 5022 name = "time" 4358 - version = "0.3.30" 5023 + version = "0.3.36" 4359 5024 source = "registry+https://github.com/rust-lang/crates.io-index" 4360 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 5025 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 4361 5026 dependencies = [ 4362 5027 "deranged", 4363 5028 "itoa", 5029 + "num-conv", 4364 5030 "powerfmt", 4365 5031 "serde", 4366 5032 "time-core", ··· 4375 5041 4376 5042 [[package]] 4377 5043 name = "time-macros" 4378 - version = "0.2.15" 5044 + version = "0.2.18" 4379 5045 source = "registry+https://github.com/rust-lang/crates.io-index" 4380 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 5046 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 4381 5047 dependencies = [ 5048 + "num-conv", 4382 5049 "time-core", 4383 5050 ] 4384 5051 ··· 4402 5069 4403 5070 [[package]] 4404 5071 name = "tiny-skia" 4405 - version = "0.8.4" 5072 + version = "0.10.0" 4406 5073 source = "registry+https://github.com/rust-lang/crates.io-index" 4407 - checksum = "df8493a203431061e901613751931f047d1971337153f96d0e5e363d6dbf6a67" 5074 + checksum = "7db11798945fa5c3e5490c794ccca7c6de86d3afdd54b4eb324109939c6f37bc" 4408 5075 dependencies = [ 4409 5076 "arrayref", 4410 5077 "arrayvec", 4411 5078 "bytemuck", 4412 5079 "cfg-if", 5080 + "log", 4413 5081 "png", 4414 - "tiny-skia-path 0.8.4", 5082 + "tiny-skia-path 0.10.0", 4415 5083 ] 4416 5084 4417 5085 [[package]] 4418 5086 name = "tiny-skia" 4419 - version = "0.10.0" 5087 + version = "0.11.4" 4420 5088 source = "registry+https://github.com/rust-lang/crates.io-index" 4421 - checksum = "7db11798945fa5c3e5490c794ccca7c6de86d3afdd54b4eb324109939c6f37bc" 5089 + checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 4422 5090 dependencies = [ 4423 5091 "arrayref", 4424 5092 "arrayvec", 4425 5093 "bytemuck", 4426 5094 "cfg-if", 4427 5095 "log", 4428 - "png", 4429 - "tiny-skia-path 0.10.0", 5096 + "tiny-skia-path 0.11.4", 4430 5097 ] 4431 5098 4432 5099 [[package]] 4433 5100 name = "tiny-skia-path" 4434 - version = "0.8.4" 5101 + version = "0.10.0" 4435 5102 source = "registry+https://github.com/rust-lang/crates.io-index" 4436 - checksum = "adbfb5d3f3dd57a0e11d12f4f13d4ebbbc1b5c15b7ab0a156d030b21da5f677c" 5103 + checksum = "2f60aa35c89ac2687ace1a2556eaaea68e8c0d47408a2e3e7f5c98a489e7281c" 4437 5104 dependencies = [ 4438 5105 "arrayref", 4439 5106 "bytemuck", ··· 4442 5109 4443 5110 [[package]] 4444 5111 name = "tiny-skia-path" 4445 - version = "0.10.0" 5112 + version = "0.11.4" 4446 5113 source = "registry+https://github.com/rust-lang/crates.io-index" 4447 - checksum = "2f60aa35c89ac2687ace1a2556eaaea68e8c0d47408a2e3e7f5c98a489e7281c" 5114 + checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 4448 5115 dependencies = [ 4449 5116 "arrayref", 4450 5117 "bytemuck", ··· 4468 5135 4469 5136 [[package]] 4470 5137 name = "tokio" 4471 - version = "1.35.0" 5138 + version = "1.37.0" 4472 5139 source = "registry+https://github.com/rust-lang/crates.io-index" 4473 - checksum = "841d45b238a16291a4e1584e61820b8ae57d696cc5015c459c229ccc6990cc1c" 5140 + checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" 4474 5141 dependencies = [ 4475 5142 "backtrace", 4476 5143 "bytes", ··· 4480 5147 "parking_lot", 4481 5148 "pin-project-lite", 4482 5149 "signal-hook-registry", 4483 - "socket2 0.5.5", 5150 + "socket2 0.5.6", 4484 5151 "tokio-macros", 4485 5152 "windows-sys 0.48.0", 4486 5153 ] ··· 4493 5160 dependencies = [ 4494 5161 "proc-macro2", 4495 5162 "quote", 4496 - "syn 2.0.41", 5163 + "syn 2.0.60", 4497 5164 ] 4498 5165 4499 5166 [[package]] ··· 4512 5179 source = "registry+https://github.com/rust-lang/crates.io-index" 4513 5180 checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 4514 5181 dependencies = [ 4515 - "rustls", 5182 + "rustls 0.21.11", 5183 + "tokio", 5184 + ] 5185 + 5186 + [[package]] 5187 + name = "tokio-rustls" 5188 + version = "0.25.0" 5189 + source = "registry+https://github.com/rust-lang/crates.io-index" 5190 + checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 5191 + dependencies = [ 5192 + "rustls 0.22.4", 5193 + "rustls-pki-types", 4516 5194 "tokio", 4517 5195 ] 4518 5196 4519 5197 [[package]] 4520 5198 name = "tokio-tungstenite" 4521 - version = "0.19.0" 5199 + version = "0.21.0" 4522 5200 source = "registry+https://github.com/rust-lang/crates.io-index" 4523 - checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" 5201 + checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" 4524 5202 dependencies = [ 4525 5203 "futures-util", 4526 5204 "log", 4527 5205 "native-tls", 4528 - "rustls", 4529 - "rustls-native-certs", 5206 + "rustls 0.22.4", 5207 + "rustls-native-certs 0.7.0", 5208 + "rustls-pki-types", 4530 5209 "tokio", 4531 5210 "tokio-native-tls", 4532 - "tokio-rustls", 5211 + "tokio-rustls 0.25.0", 4533 5212 "tungstenite", 4534 - "webpki-roots 0.23.1", 5213 + "webpki-roots 0.26.1", 4535 5214 ] 4536 5215 4537 5216 [[package]] ··· 4566 5245 ] 4567 5246 4568 5247 [[package]] 5248 + name = "toml_edit" 5249 + version = "0.21.1" 5250 + source = "registry+https://github.com/rust-lang/crates.io-index" 5251 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 5252 + dependencies = [ 5253 + "indexmap", 5254 + "toml_datetime", 5255 + "winnow", 5256 + ] 5257 + 5258 + [[package]] 4569 5259 name = "tower-service" 4570 5260 version = "0.3.2" 4571 5261 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4590 5280 dependencies = [ 4591 5281 "proc-macro2", 4592 5282 "quote", 4593 - "syn 2.0.41", 5283 + "syn 2.0.60", 4594 5284 ] 4595 5285 4596 5286 [[package]] ··· 4658 5348 4659 5349 [[package]] 4660 5350 name = "tungstenite" 4661 - version = "0.19.0" 5351 + version = "0.21.0" 4662 5352 source = "registry+https://github.com/rust-lang/crates.io-index" 4663 - checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" 5353 + checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" 4664 5354 dependencies = [ 4665 5355 "byteorder", 4666 5356 "bytes", 4667 5357 "data-encoding", 4668 - "http", 5358 + "http 1.1.0", 4669 5359 "httparse", 4670 5360 "log", 4671 5361 "native-tls", 4672 - "rand", 4673 - "rustls", 4674 - "rustls-native-certs", 5362 + "rand 0.8.5", 5363 + "rustls 0.22.4", 5364 + "rustls-native-certs 0.7.0", 5365 + "rustls-pki-types", 4675 5366 "sha1", 4676 5367 "thiserror", 4677 5368 "url", 4678 5369 "utf-8", 4679 - "webpki", 4680 - "webpki-roots 0.23.1", 5370 + "webpki-roots 0.26.1", 5371 + ] 5372 + 5373 + [[package]] 5374 + name = "type-map" 5375 + version = "0.5.0" 5376 + source = "registry+https://github.com/rust-lang/crates.io-index" 5377 + checksum = "deb68604048ff8fa93347f02441e4487594adc20bb8a084f9e564d2b827a0a9f" 5378 + dependencies = [ 5379 + "rustc-hash", 4681 5380 ] 4682 5381 4683 5382 [[package]] ··· 4688 5387 4689 5388 [[package]] 4690 5389 name = "uds_windows" 4691 - version = "1.0.2" 5390 + version = "1.1.0" 4692 5391 source = "registry+https://github.com/rust-lang/crates.io-index" 4693 - checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 5392 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 4694 5393 dependencies = [ 5394 + "memoffset 0.9.1", 4695 5395 "tempfile", 4696 5396 "winapi", 4697 5397 ] 4698 5398 4699 5399 [[package]] 5400 + name = "unicase" 5401 + version = "2.7.0" 5402 + source = "registry+https://github.com/rust-lang/crates.io-index" 5403 + checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 5404 + dependencies = [ 5405 + "version_check", 5406 + ] 5407 + 5408 + [[package]] 4700 5409 name = "unicode-bidi" 4701 - version = "0.3.14" 5410 + version = "0.3.15" 4702 5411 source = "registry+https://github.com/rust-lang/crates.io-index" 4703 - checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 5412 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 4704 5413 4705 5414 [[package]] 4706 5415 name = "unicode-bidi-mirroring" ··· 4728 5437 4729 5438 [[package]] 4730 5439 name = "unicode-normalization" 4731 - version = "0.1.22" 5440 + version = "0.1.23" 4732 5441 source = "registry+https://github.com/rust-lang/crates.io-index" 4733 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5442 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 4734 5443 dependencies = [ 4735 5444 "tinyvec", 4736 5445 ] 4737 5446 4738 5447 [[package]] 4739 5448 name = "unicode-script" 4740 - version = "0.5.5" 5449 + version = "0.5.6" 5450 + source = "registry+https://github.com/rust-lang/crates.io-index" 5451 + checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd" 5452 + 5453 + [[package]] 5454 + name = "unicode-segmentation" 5455 + version = "1.11.0" 4741 5456 source = "registry+https://github.com/rust-lang/crates.io-index" 4742 - checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc" 5457 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 4743 5458 4744 5459 [[package]] 4745 5460 name = "unicode-vo" ··· 4748 5463 checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" 4749 5464 4750 5465 [[package]] 5466 + name = "unicode-width" 5467 + version = "0.1.11" 5468 + source = "registry+https://github.com/rust-lang/crates.io-index" 5469 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 5470 + 5471 + [[package]] 5472 + name = "unicode-xid" 5473 + version = "0.2.4" 5474 + source = "registry+https://github.com/rust-lang/crates.io-index" 5475 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5476 + 5477 + [[package]] 4751 5478 name = "universal-hash" 4752 5479 version = "0.5.1" 4753 5480 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4759 5486 4760 5487 [[package]] 4761 5488 name = "untrusted" 4762 - version = "0.7.1" 4763 - source = "registry+https://github.com/rust-lang/crates.io-index" 4764 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4765 - 4766 - [[package]] 4767 - name = "untrusted" 4768 5489 version = "0.9.0" 4769 5490 source = "registry+https://github.com/rust-lang/crates.io-index" 4770 5491 checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" ··· 4786 5507 source = "registry+https://github.com/rust-lang/crates.io-index" 4787 5508 checksum = "14d09ddfb0d93bf84824c09336d32e42f80961a9d1680832eb24fdf249ce11e6" 4788 5509 dependencies = [ 4789 - "base64", 5510 + "base64 0.21.7", 4790 5511 "log", 4791 5512 "pico-args", 4792 5513 "usvg-parser", ··· 4806 5527 "imagesize", 4807 5528 "kurbo", 4808 5529 "log", 4809 - "roxmltree", 5530 + "roxmltree 0.18.1", 4810 5531 "simplecss", 4811 5532 "siphasher", 4812 5533 "svgtypes", ··· 4860 5581 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4861 5582 4862 5583 [[package]] 4863 - name = "vec_map" 4864 - version = "0.8.2" 4865 - source = "registry+https://github.com/rust-lang/crates.io-index" 4866 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 4867 - 4868 - [[package]] 4869 5584 name = "version-compare" 4870 5585 version = "0.1.1" 4871 5586 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4885 5600 4886 5601 [[package]] 4887 5602 name = "walkdir" 4888 - version = "2.4.0" 5603 + version = "2.5.0" 4889 5604 source = "registry+https://github.com/rust-lang/crates.io-index" 4890 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 5605 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4891 5606 dependencies = [ 4892 5607 "same-file", 4893 5608 "winapi-util", ··· 4904 5619 4905 5620 [[package]] 4906 5621 name = "wasi" 5622 + version = "0.9.0+wasi-snapshot-preview1" 5623 + source = "registry+https://github.com/rust-lang/crates.io-index" 5624 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 5625 + 5626 + [[package]] 5627 + name = "wasi" 4907 5628 version = "0.11.0+wasi-snapshot-preview1" 4908 5629 source = "registry+https://github.com/rust-lang/crates.io-index" 4909 5630 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4910 5631 4911 5632 [[package]] 4912 5633 name = "wasm-bindgen" 4913 - version = "0.2.89" 5634 + version = "0.2.92" 4914 5635 source = "registry+https://github.com/rust-lang/crates.io-index" 4915 - checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 5636 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 4916 5637 dependencies = [ 4917 5638 "cfg-if", 4918 5639 "wasm-bindgen-macro", ··· 4920 5641 4921 5642 [[package]] 4922 5643 name = "wasm-bindgen-backend" 4923 - version = "0.2.89" 5644 + version = "0.2.92" 4924 5645 source = "registry+https://github.com/rust-lang/crates.io-index" 4925 - checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 5646 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 4926 5647 dependencies = [ 4927 5648 "bumpalo", 4928 5649 "log", 4929 5650 "once_cell", 4930 5651 "proc-macro2", 4931 5652 "quote", 4932 - "syn 2.0.41", 5653 + "syn 2.0.60", 4933 5654 "wasm-bindgen-shared", 4934 5655 ] 4935 5656 4936 5657 [[package]] 4937 5658 name = "wasm-bindgen-futures" 4938 - version = "0.4.39" 5659 + version = "0.4.42" 4939 5660 source = "registry+https://github.com/rust-lang/crates.io-index" 4940 - checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 5661 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 4941 5662 dependencies = [ 4942 5663 "cfg-if", 4943 5664 "js-sys", ··· 4947 5668 4948 5669 [[package]] 4949 5670 name = "wasm-bindgen-macro" 4950 - version = "0.2.89" 5671 + version = "0.2.92" 4951 5672 source = "registry+https://github.com/rust-lang/crates.io-index" 4952 - checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 5673 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 4953 5674 dependencies = [ 4954 5675 "quote", 4955 5676 "wasm-bindgen-macro-support", ··· 4957 5678 4958 5679 [[package]] 4959 5680 name = "wasm-bindgen-macro-support" 4960 - version = "0.2.89" 5681 + version = "0.2.92" 4961 5682 source = "registry+https://github.com/rust-lang/crates.io-index" 4962 - checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 5683 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 4963 5684 dependencies = [ 4964 5685 "proc-macro2", 4965 5686 "quote", 4966 - "syn 2.0.41", 5687 + "syn 2.0.60", 4967 5688 "wasm-bindgen-backend", 4968 5689 "wasm-bindgen-shared", 4969 5690 ] 4970 5691 4971 5692 [[package]] 4972 5693 name = "wasm-bindgen-shared" 4973 - version = "0.2.89" 5694 + version = "0.2.92" 4974 5695 source = "registry+https://github.com/rust-lang/crates.io-index" 4975 - checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 5696 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 4976 5697 4977 5698 [[package]] 4978 - name = "wayland-client" 4979 - version = "0.29.5" 5699 + name = "wayland-backend" 5700 + version = "0.3.3" 4980 5701 source = "registry+https://github.com/rust-lang/crates.io-index" 4981 - checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" 5702 + checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40" 4982 5703 dependencies = [ 4983 - "bitflags 1.3.2", 5704 + "cc", 4984 5705 "downcast-rs", 4985 - "libc", 4986 - "nix 0.24.3", 5706 + "rustix 0.38.34", 4987 5707 "scoped-tls", 4988 - "wayland-commons", 5708 + "smallvec", 5709 + "wayland-sys", 5710 + ] 5711 + 5712 + [[package]] 5713 + name = "wayland-client" 5714 + version = "0.31.2" 5715 + source = "registry+https://github.com/rust-lang/crates.io-index" 5716 + checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f" 5717 + dependencies = [ 5718 + "bitflags 2.5.0", 5719 + "rustix 0.38.34", 5720 + "wayland-backend", 4989 5721 "wayland-scanner", 4990 - "wayland-sys 0.29.5", 4991 5722 ] 4992 5723 4993 5724 [[package]] 4994 - name = "wayland-commons" 4995 - version = "0.29.5" 5725 + name = "wayland-csd-frame" 5726 + version = "0.3.0" 4996 5727 source = "registry+https://github.com/rust-lang/crates.io-index" 4997 - checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902" 5728 + checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 4998 5729 dependencies = [ 4999 - "nix 0.24.3", 5000 - "once_cell", 5001 - "smallvec", 5002 - "wayland-sys 0.29.5", 5730 + "bitflags 2.5.0", 5731 + "cursor-icon", 5732 + "wayland-backend", 5003 5733 ] 5004 5734 5005 5735 [[package]] 5006 5736 name = "wayland-cursor" 5007 - version = "0.29.5" 5737 + version = "0.31.1" 5008 5738 source = "registry+https://github.com/rust-lang/crates.io-index" 5009 - checksum = "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661" 5739 + checksum = "71ce5fa868dd13d11a0d04c5e2e65726d0897be8de247c0c5a65886e283231ba" 5010 5740 dependencies = [ 5011 - "nix 0.24.3", 5741 + "rustix 0.38.34", 5012 5742 "wayland-client", 5013 5743 "xcursor", 5014 5744 ] 5015 5745 5016 5746 [[package]] 5017 5747 name = "wayland-protocols" 5018 - version = "0.29.5" 5748 + version = "0.31.2" 5019 5749 source = "registry+https://github.com/rust-lang/crates.io-index" 5020 - checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" 5750 + checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4" 5021 5751 dependencies = [ 5022 - "bitflags 1.3.2", 5752 + "bitflags 2.5.0", 5753 + "wayland-backend", 5023 5754 "wayland-client", 5024 - "wayland-commons", 5025 5755 "wayland-scanner", 5026 5756 ] 5027 5757 5028 5758 [[package]] 5029 - name = "wayland-scanner" 5030 - version = "0.29.5" 5759 + name = "wayland-protocols-plasma" 5760 + version = "0.2.0" 5031 5761 source = "registry+https://github.com/rust-lang/crates.io-index" 5032 - checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" 5762 + checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479" 5033 5763 dependencies = [ 5034 - "proc-macro2", 5035 - "quote", 5036 - "xml-rs", 5764 + "bitflags 2.5.0", 5765 + "wayland-backend", 5766 + "wayland-client", 5767 + "wayland-protocols", 5768 + "wayland-scanner", 5037 5769 ] 5038 5770 5039 5771 [[package]] 5040 - name = "wayland-sys" 5041 - version = "0.29.5" 5772 + name = "wayland-protocols-wlr" 5773 + version = "0.2.0" 5042 5774 source = "registry+https://github.com/rust-lang/crates.io-index" 5043 - checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4" 5775 + checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6" 5044 5776 dependencies = [ 5045 - "dlib", 5046 - "lazy_static", 5047 - "pkg-config", 5777 + "bitflags 2.5.0", 5778 + "wayland-backend", 5779 + "wayland-client", 5780 + "wayland-protocols", 5781 + "wayland-scanner", 5782 + ] 5783 + 5784 + [[package]] 5785 + name = "wayland-scanner" 5786 + version = "0.31.1" 5787 + source = "registry+https://github.com/rust-lang/crates.io-index" 5788 + checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283" 5789 + dependencies = [ 5790 + "proc-macro2", 5791 + "quick-xml", 5792 + "quote", 5048 5793 ] 5049 5794 5050 5795 [[package]] 5051 5796 name = "wayland-sys" 5052 - version = "0.30.1" 5797 + version = "0.31.1" 5053 5798 source = "registry+https://github.com/rust-lang/crates.io-index" 5054 - checksum = "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06" 5799 + checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af" 5055 5800 dependencies = [ 5056 5801 "dlib", 5057 - "lazy_static", 5058 5802 "log", 5803 + "once_cell", 5059 5804 "pkg-config", 5060 5805 ] 5061 5806 5062 5807 [[package]] 5063 5808 name = "web-sys" 5064 - version = "0.3.66" 5809 + version = "0.3.69" 5065 5810 source = "registry+https://github.com/rust-lang/crates.io-index" 5066 - checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 5811 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 5067 5812 dependencies = [ 5068 5813 "js-sys", 5069 5814 "wasm-bindgen", ··· 5071 5816 5072 5817 [[package]] 5073 5818 name = "web-time" 5074 - version = "0.2.3" 5819 + version = "0.2.4" 5075 5820 source = "registry+https://github.com/rust-lang/crates.io-index" 5076 - checksum = "57099a701fb3a8043f993e8228dc24229c7b942e2b009a1b962e54489ba1d3bf" 5821 + checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0" 5077 5822 dependencies = [ 5078 5823 "js-sys", 5079 5824 "wasm-bindgen", ··· 5081 5826 5082 5827 [[package]] 5083 5828 name = "webbrowser" 5084 - version = "0.8.12" 5829 + version = "0.8.15" 5085 5830 source = "registry+https://github.com/rust-lang/crates.io-index" 5086 - checksum = "82b2391658b02c27719fc5a0a73d6e696285138e8b12fba9d4baa70451023c71" 5831 + checksum = "db67ae75a9405634f5882791678772c94ff5f16a66535aae186e26aa0841fc8b" 5087 5832 dependencies = [ 5088 5833 "core-foundation", 5089 5834 "home", ··· 5091 5836 "log", 5092 5837 "ndk-context", 5093 5838 "objc", 5094 - "raw-window-handle", 5839 + "raw-window-handle 0.5.2", 5095 5840 "url", 5096 5841 "web-sys", 5097 5842 ] 5098 5843 5099 5844 [[package]] 5100 - name = "webpki" 5101 - version = "0.22.4" 5845 + name = "webpki-roots" 5846 + version = "0.25.4" 5102 5847 source = "registry+https://github.com/rust-lang/crates.io-index" 5103 - checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 5848 + checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 5849 + 5850 + [[package]] 5851 + name = "webpki-roots" 5852 + version = "0.26.1" 5853 + source = "registry+https://github.com/rust-lang/crates.io-index" 5854 + checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 5104 5855 dependencies = [ 5105 - "ring 0.17.7", 5106 - "untrusted 0.9.0", 5856 + "rustls-pki-types", 5107 5857 ] 5108 5858 5109 5859 [[package]] 5110 - name = "webpki-roots" 5111 - version = "0.23.1" 5860 + name = "weezl" 5861 + version = "0.1.8" 5112 5862 source = "registry+https://github.com/rust-lang/crates.io-index" 5113 - checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" 5863 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 5864 + 5865 + [[package]] 5866 + name = "wgpu" 5867 + version = "0.19.4" 5868 + source = "registry+https://github.com/rust-lang/crates.io-index" 5869 + checksum = "cbd7311dbd2abcfebaabf1841a2824ed7c8be443a0f29166e5d3c6a53a762c01" 5114 5870 dependencies = [ 5115 - "rustls-webpki 0.100.3", 5871 + "arrayvec", 5872 + "cfg-if", 5873 + "cfg_aliases", 5874 + "js-sys", 5875 + "log", 5876 + "naga", 5877 + "parking_lot", 5878 + "profiling", 5879 + "raw-window-handle 0.6.1", 5880 + "smallvec", 5881 + "static_assertions", 5882 + "wasm-bindgen", 5883 + "wasm-bindgen-futures", 5884 + "web-sys", 5885 + "wgpu-core", 5886 + "wgpu-hal", 5887 + "wgpu-types", 5116 5888 ] 5117 5889 5118 5890 [[package]] 5119 - name = "webpki-roots" 5120 - version = "0.25.3" 5891 + name = "wgpu-core" 5892 + version = "0.19.4" 5121 5893 source = "registry+https://github.com/rust-lang/crates.io-index" 5122 - checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 5894 + checksum = "28b94525fc99ba9e5c9a9e24764f2bc29bad0911a7446c12f446a8277369bf3a" 5895 + dependencies = [ 5896 + "arrayvec", 5897 + "bit-vec", 5898 + "bitflags 2.5.0", 5899 + "cfg_aliases", 5900 + "codespan-reporting", 5901 + "indexmap", 5902 + "log", 5903 + "naga", 5904 + "once_cell", 5905 + "parking_lot", 5906 + "profiling", 5907 + "raw-window-handle 0.6.1", 5908 + "rustc-hash", 5909 + "smallvec", 5910 + "thiserror", 5911 + "web-sys", 5912 + "wgpu-hal", 5913 + "wgpu-types", 5914 + ] 5123 5915 5124 5916 [[package]] 5125 - name = "weezl" 5126 - version = "0.1.7" 5917 + name = "wgpu-hal" 5918 + version = "0.19.4" 5127 5919 source = "registry+https://github.com/rust-lang/crates.io-index" 5128 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 5920 + checksum = "fc1a4924366df7ab41a5d8546d6534f1f33231aa5b3f72b9930e300f254e39c3" 5921 + dependencies = [ 5922 + "android_system_properties", 5923 + "arrayvec", 5924 + "ash", 5925 + "bitflags 2.5.0", 5926 + "block", 5927 + "cfg_aliases", 5928 + "core-graphics-types", 5929 + "glow", 5930 + "glutin_wgl_sys", 5931 + "gpu-alloc", 5932 + "gpu-allocator", 5933 + "gpu-descriptor", 5934 + "hassle-rs", 5935 + "js-sys", 5936 + "khronos-egl", 5937 + "libc", 5938 + "libloading 0.7.4", 5939 + "log", 5940 + "metal", 5941 + "naga", 5942 + "ndk-sys", 5943 + "objc", 5944 + "once_cell", 5945 + "parking_lot", 5946 + "profiling", 5947 + "raw-window-handle 0.6.1", 5948 + "renderdoc-sys", 5949 + "rustc-hash", 5950 + "smallvec", 5951 + "thiserror", 5952 + "wasm-bindgen", 5953 + "web-sys", 5954 + "wgpu-types", 5955 + "winapi", 5956 + ] 5957 + 5958 + [[package]] 5959 + name = "wgpu-types" 5960 + version = "0.19.2" 5961 + source = "registry+https://github.com/rust-lang/crates.io-index" 5962 + checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805" 5963 + dependencies = [ 5964 + "bitflags 2.5.0", 5965 + "js-sys", 5966 + "web-sys", 5967 + ] 5968 + 5969 + [[package]] 5970 + name = "widestring" 5971 + version = "1.1.0" 5972 + source = "registry+https://github.com/rust-lang/crates.io-index" 5973 + checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 5129 5974 5130 5975 [[package]] 5131 5976 name = "winapi" ··· 5145 5990 5146 5991 [[package]] 5147 5992 name = "winapi-util" 5148 - version = "0.1.6" 5149 - source = "registry+https://github.com/rust-lang/crates.io-index" 5150 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 5151 - dependencies = [ 5152 - "winapi", 5153 - ] 5154 - 5155 - [[package]] 5156 - name = "winapi-wsapoll" 5157 - version = "0.1.1" 5993 + version = "0.1.8" 5158 5994 source = "registry+https://github.com/rust-lang/crates.io-index" 5159 - checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e" 5995 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 5160 5996 dependencies = [ 5161 - "winapi", 5997 + "windows-sys 0.52.0", 5162 5998 ] 5163 5999 5164 6000 [[package]] ··· 5179 6015 ] 5180 6016 5181 6017 [[package]] 6018 + name = "windows" 6019 + version = "0.52.0" 6020 + source = "registry+https://github.com/rust-lang/crates.io-index" 6021 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 6022 + dependencies = [ 6023 + "windows-core", 6024 + "windows-targets 0.52.5", 6025 + ] 6026 + 6027 + [[package]] 5182 6028 name = "windows-core" 5183 - version = "0.51.1" 6029 + version = "0.52.0" 5184 6030 source = "registry+https://github.com/rust-lang/crates.io-index" 5185 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 6031 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 5186 6032 dependencies = [ 5187 - "windows-targets 0.48.5", 6033 + "windows-targets 0.52.5", 5188 6034 ] 5189 6035 5190 6036 [[package]] ··· 5233 6079 source = "registry+https://github.com/rust-lang/crates.io-index" 5234 6080 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5235 6081 dependencies = [ 5236 - "windows-targets 0.52.0", 6082 + "windows-targets 0.52.5", 5237 6083 ] 5238 6084 5239 6085 [[package]] ··· 5268 6114 5269 6115 [[package]] 5270 6116 name = "windows-targets" 5271 - version = "0.52.0" 6117 + version = "0.52.5" 5272 6118 source = "registry+https://github.com/rust-lang/crates.io-index" 5273 - checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 6119 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 5274 6120 dependencies = [ 5275 - "windows_aarch64_gnullvm 0.52.0", 5276 - "windows_aarch64_msvc 0.52.0", 5277 - "windows_i686_gnu 0.52.0", 5278 - "windows_i686_msvc 0.52.0", 5279 - "windows_x86_64_gnu 0.52.0", 5280 - "windows_x86_64_gnullvm 0.52.0", 5281 - "windows_x86_64_msvc 0.52.0", 6121 + "windows_aarch64_gnullvm 0.52.5", 6122 + "windows_aarch64_msvc 0.52.5", 6123 + "windows_i686_gnu 0.52.5", 6124 + "windows_i686_gnullvm", 6125 + "windows_i686_msvc 0.52.5", 6126 + "windows_x86_64_gnu 0.52.5", 6127 + "windows_x86_64_gnullvm 0.52.5", 6128 + "windows_x86_64_msvc 0.52.5", 5282 6129 ] 5283 6130 5284 6131 [[package]] ··· 5295 6142 5296 6143 [[package]] 5297 6144 name = "windows_aarch64_gnullvm" 5298 - version = "0.52.0" 6145 + version = "0.52.5" 5299 6146 source = "registry+https://github.com/rust-lang/crates.io-index" 5300 - checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 6147 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 5301 6148 5302 6149 [[package]] 5303 6150 name = "windows_aarch64_msvc" ··· 5313 6160 5314 6161 [[package]] 5315 6162 name = "windows_aarch64_msvc" 5316 - version = "0.52.0" 6163 + version = "0.52.5" 5317 6164 source = "registry+https://github.com/rust-lang/crates.io-index" 5318 - checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 6165 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 5319 6166 5320 6167 [[package]] 5321 6168 name = "windows_i686_gnu" ··· 5331 6178 5332 6179 [[package]] 5333 6180 name = "windows_i686_gnu" 5334 - version = "0.52.0" 6181 + version = "0.52.5" 5335 6182 source = "registry+https://github.com/rust-lang/crates.io-index" 5336 - checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 6183 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 6184 + 6185 + [[package]] 6186 + name = "windows_i686_gnullvm" 6187 + version = "0.52.5" 6188 + source = "registry+https://github.com/rust-lang/crates.io-index" 6189 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 5337 6190 5338 6191 [[package]] 5339 6192 name = "windows_i686_msvc" ··· 5349 6202 5350 6203 [[package]] 5351 6204 name = "windows_i686_msvc" 5352 - version = "0.52.0" 6205 + version = "0.52.5" 5353 6206 source = "registry+https://github.com/rust-lang/crates.io-index" 5354 - checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 6207 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 5355 6208 5356 6209 [[package]] 5357 6210 name = "windows_x86_64_gnu" ··· 5367 6220 5368 6221 [[package]] 5369 6222 name = "windows_x86_64_gnu" 5370 - version = "0.52.0" 6223 + version = "0.52.5" 5371 6224 source = "registry+https://github.com/rust-lang/crates.io-index" 5372 - checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 6225 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 5373 6226 5374 6227 [[package]] 5375 6228 name = "windows_x86_64_gnullvm" ··· 5385 6238 5386 6239 [[package]] 5387 6240 name = "windows_x86_64_gnullvm" 5388 - version = "0.52.0" 6241 + version = "0.52.5" 5389 6242 source = "registry+https://github.com/rust-lang/crates.io-index" 5390 - checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 6243 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 5391 6244 5392 6245 [[package]] 5393 6246 name = "windows_x86_64_msvc" ··· 5403 6256 5404 6257 [[package]] 5405 6258 name = "windows_x86_64_msvc" 5406 - version = "0.52.0" 6259 + version = "0.52.5" 5407 6260 source = "registry+https://github.com/rust-lang/crates.io-index" 5408 - checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 6261 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 5409 6262 5410 6263 [[package]] 5411 6264 name = "winit" 5412 - version = "0.28.7" 6265 + version = "0.29.15" 5413 6266 source = "registry+https://github.com/rust-lang/crates.io-index" 5414 - checksum = "9596d90b45384f5281384ab204224876e8e8bf7d58366d9b795ad99aa9894b94" 6267 + checksum = "0d59ad965a635657faf09c8f062badd885748428933dad8e8bdd64064d92e5ca" 5415 6268 dependencies = [ 6269 + "ahash 0.8.11", 5416 6270 "android-activity", 5417 - "bitflags 1.3.2", 6271 + "atomic-waker", 6272 + "bitflags 2.5.0", 6273 + "bytemuck", 6274 + "calloop", 5418 6275 "cfg_aliases", 5419 6276 "core-foundation", 5420 6277 "core-graphics", 5421 - "dispatch", 5422 - "instant", 6278 + "cursor-icon", 6279 + "icrate", 6280 + "js-sys", 5423 6281 "libc", 5424 6282 "log", 5425 - "mio", 6283 + "memmap2 0.9.4", 5426 6284 "ndk", 5427 - "objc2", 6285 + "ndk-sys", 6286 + "objc2 0.4.1", 5428 6287 "once_cell", 5429 6288 "orbclient", 5430 6289 "percent-encoding", 5431 - "raw-window-handle", 6290 + "raw-window-handle 0.5.2", 6291 + "raw-window-handle 0.6.1", 5432 6292 "redox_syscall 0.3.5", 6293 + "rustix 0.38.34", 5433 6294 "sctk-adwaita", 5434 6295 "smithay-client-toolkit", 6296 + "smol_str", 6297 + "unicode-segmentation", 5435 6298 "wasm-bindgen", 6299 + "wasm-bindgen-futures", 6300 + "wayland-backend", 5436 6301 "wayland-client", 5437 - "wayland-commons", 5438 6302 "wayland-protocols", 5439 - "wayland-scanner", 6303 + "wayland-protocols-plasma", 5440 6304 "web-sys", 5441 - "windows-sys 0.45.0", 6305 + "web-time", 6306 + "windows-sys 0.48.0", 5442 6307 "x11-dl", 6308 + "x11rb", 6309 + "xkbcommon-dl", 5443 6310 ] 5444 6311 5445 6312 [[package]] 5446 6313 name = "winnow" 5447 - version = "0.5.28" 6314 + version = "0.5.40" 5448 6315 source = "registry+https://github.com/rust-lang/crates.io-index" 5449 - checksum = "6c830786f7720c2fd27a1a0e27a709dbd3c4d009b56d098fc742d4f4eab91fe2" 6316 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5450 6317 dependencies = [ 5451 6318 "memchr", 5452 6319 ] ··· 5474 6341 5475 6342 [[package]] 5476 6343 name = "x11rb" 5477 - version = "0.12.0" 6344 + version = "0.13.0" 5478 6345 source = "registry+https://github.com/rust-lang/crates.io-index" 5479 - checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a" 6346 + checksum = "f8f25ead8c7e4cba123243a6367da5d3990e0d3affa708ea19dce96356bd9f1a" 5480 6347 dependencies = [ 6348 + "as-raw-xcb-connection", 5481 6349 "gethostname", 5482 - "nix 0.26.4", 5483 - "winapi", 5484 - "winapi-wsapoll", 6350 + "libc", 6351 + "libloading 0.8.3", 6352 + "once_cell", 6353 + "rustix 0.38.34", 5485 6354 "x11rb-protocol", 5486 6355 ] 5487 6356 5488 6357 [[package]] 5489 6358 name = "x11rb-protocol" 5490 - version = "0.12.0" 6359 + version = "0.13.0" 5491 6360 source = "registry+https://github.com/rust-lang/crates.io-index" 5492 - checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc" 5493 - dependencies = [ 5494 - "nix 0.26.4", 5495 - ] 6361 + checksum = "e63e71c4b8bd9ffec2c963173a4dc4cbde9ee96961d4fcb4429db9929b606c34" 5496 6362 5497 6363 [[package]] 5498 6364 name = "xcursor" ··· 5502 6368 5503 6369 [[package]] 5504 6370 name = "xdg-home" 5505 - version = "1.0.0" 6371 + version = "1.1.0" 5506 6372 source = "registry+https://github.com/rust-lang/crates.io-index" 5507 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 6373 + checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" 5508 6374 dependencies = [ 5509 - "nix 0.26.4", 6375 + "libc", 5510 6376 "winapi", 5511 6377 ] 5512 6378 5513 6379 [[package]] 6380 + name = "xkbcommon-dl" 6381 + version = "0.4.2" 6382 + source = "registry+https://github.com/rust-lang/crates.io-index" 6383 + checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5" 6384 + dependencies = [ 6385 + "bitflags 2.5.0", 6386 + "dlib", 6387 + "log", 6388 + "once_cell", 6389 + "xkeysym", 6390 + ] 6391 + 6392 + [[package]] 6393 + name = "xkeysym" 6394 + version = "0.2.0" 6395 + source = "registry+https://github.com/rust-lang/crates.io-index" 6396 + checksum = "054a8e68b76250b253f671d1268cb7f1ae089ec35e195b2efb2a4e9a836d0621" 6397 + 6398 + [[package]] 5514 6399 name = "xml-rs" 5515 - version = "0.8.19" 6400 + version = "0.8.20" 5516 6401 source = "registry+https://github.com/rust-lang/crates.io-index" 5517 - checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 6402 + checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" 5518 6403 5519 6404 [[package]] 5520 6405 name = "xmlparser" ··· 5529 6414 checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" 5530 6415 5531 6416 [[package]] 6417 + name = "yaml-rust" 6418 + version = "0.4.5" 6419 + source = "registry+https://github.com/rust-lang/crates.io-index" 6420 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 6421 + dependencies = [ 6422 + "linked-hash-map", 6423 + ] 6424 + 6425 + [[package]] 5532 6426 name = "zbus" 5533 - version = "3.14.1" 6427 + version = "3.15.2" 5534 6428 source = "registry+https://github.com/rust-lang/crates.io-index" 5535 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 6429 + checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6" 5536 6430 dependencies = [ 5537 6431 "async-broadcast", 5538 6432 "async-executor", ··· 5552 6446 "futures-sink", 5553 6447 "futures-util", 5554 6448 "hex", 5555 - "nix 0.26.4", 6449 + "nix", 5556 6450 "once_cell", 5557 6451 "ordered-stream", 5558 - "rand", 6452 + "rand 0.8.5", 5559 6453 "serde", 5560 6454 "serde_repr", 5561 6455 "sha1", ··· 5571 6465 5572 6466 [[package]] 5573 6467 name = "zbus_macros" 5574 - version = "3.14.1" 6468 + version = "3.15.2" 5575 6469 source = "registry+https://github.com/rust-lang/crates.io-index" 5576 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 6470 + checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5" 5577 6471 dependencies = [ 5578 - "proc-macro-crate", 6472 + "proc-macro-crate 1.3.1", 5579 6473 "proc-macro2", 5580 6474 "quote", 5581 6475 "regex", ··· 5585 6479 5586 6480 [[package]] 5587 6481 name = "zbus_names" 5588 - version = "2.6.0" 6482 + version = "2.6.1" 5589 6483 source = "registry+https://github.com/rust-lang/crates.io-index" 5590 - checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 6484 + checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d" 5591 6485 dependencies = [ 5592 6486 "serde", 5593 6487 "static_assertions", ··· 5596 6490 5597 6491 [[package]] 5598 6492 name = "zerocopy" 5599 - version = "0.7.30" 6493 + version = "0.7.32" 5600 6494 source = "registry+https://github.com/rust-lang/crates.io-index" 5601 - checksum = "306dca4455518f1f31635ec308b6b3e4eb1b11758cefafc782827d0aa7acb5c7" 6495 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 5602 6496 dependencies = [ 5603 6497 "zerocopy-derive", 5604 6498 ] 5605 6499 5606 6500 [[package]] 5607 6501 name = "zerocopy-derive" 5608 - version = "0.7.30" 6502 + version = "0.7.32" 5609 6503 source = "registry+https://github.com/rust-lang/crates.io-index" 5610 - checksum = "be912bf68235a88fbefd1b73415cb218405958d1655b2ece9035a19920bdf6ba" 6504 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 5611 6505 dependencies = [ 5612 6506 "proc-macro2", 5613 6507 "quote", 5614 - "syn 2.0.41", 6508 + "syn 2.0.60", 5615 6509 ] 5616 6510 5617 6511 [[package]] ··· 5631 6525 5632 6526 [[package]] 5633 6527 name = "zvariant" 5634 - version = "3.15.0" 6528 + version = "3.15.2" 5635 6529 source = "registry+https://github.com/rust-lang/crates.io-index" 5636 - checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 6530 + checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db" 5637 6531 dependencies = [ 5638 6532 "byteorder", 5639 6533 "enumflags2", ··· 5645 6539 5646 6540 [[package]] 5647 6541 name = "zvariant_derive" 5648 - version = "3.15.0" 6542 + version = "3.15.2" 5649 6543 source = "registry+https://github.com/rust-lang/crates.io-index" 5650 - checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 6544 + checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9" 5651 6545 dependencies = [ 5652 - "proc-macro-crate", 6546 + "proc-macro-crate 1.3.1", 5653 6547 "proc-macro2", 5654 6548 "quote", 5655 6549 "syn 1.0.109",
+12 -13
pkgs/by-name/go/gossip/package.nix
··· 18 18 19 19 rustPlatform.buildRustPackage rec { 20 20 pname = "gossip"; 21 - version = "0.9"; 21 + version = "0.11.3"; 22 22 23 23 src = fetchFromGitHub { 24 - hash = "sha256-m0bIpalH12GK7ORcIk+UXwmBORMKXN5AUtdEogtkTRM="; 25 24 owner = "mikedilger"; 26 25 repo = "gossip"; 27 - rev = version; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-ZDpPoGLcI6ModRq0JEcibHerOrPOA3je1uE5yXsLeeg="; 28 28 }; 29 29 30 30 cargoLock = { 31 31 lockFile = ./Cargo.lock; 32 32 outputHashes = { 33 - "ecolor-0.23.0" = "sha256-Jg1oqxt6YNRbkoKqJoQ4uMhO9ncLUK18BGG0fa+7Bow="; 34 - "egui-video-0.1.0" = "sha256-3483FErslfafCDVYx5qD6+amSkfVenMGMlEpPDnTT1M="; 35 - "ffmpeg-next-6.0.0" = "sha256-EkzwR5alMjAubskPDGMP95YqB0CaC/HsKiGVRpKqUOE="; 36 - "ffmpeg-sys-next-6.0.1" = "sha256-UiVKhrgVkROc25VSawxQymaJ0bAZ/dL0xMQErsP4KUU="; 37 - "gossip-relay-picker-0.2.0-unstable" = "sha256-3rbjtpxNN168Al/5TM0caRLRd5mxLZun/qVhsGwS7wY="; 38 - "heed-0.20.0-alpha.6" = "sha256-TFUC6SXNzNXfX18/RHFx7fq7O2le+wKcQl69Uv+CQkY="; 39 - "nip44-0.1.0" = "sha256-of1bG7JuSdR19nXVTggHRUnyVDMlUrkqioyN237o3Oo="; 40 - "nostr-types-0.7.0-unstable" = "sha256-B+hOZ4TRDSWgzyAc/yPiTWeU0fFCBPJG1XOHyoXfuQc="; 33 + "ecolor-0.26.2" = "sha256-Ih1JbiuUZwK6rYWRSQcP1AJA8NesJJp+EeBtG0azlw0="; 34 + "egui-video-0.1.0" = "sha256-X75gtYMfD/Ogepe0uEulzxAOY1YpkBW6OPhgovv/uCQ="; 35 + "ffmpeg-next-7.0.2" = "sha256-LVdaCbPHHEolcrXk9tPxUJiPNCma7qRl53TPKFijhFA="; 36 + "gossip-relay-picker-0.2.0-unstable" = "sha256-FUhB6ql+H+E6UffWmpwRFzP8N6x+dOX4vdtYdKItjz4="; 37 + "lightning-0.0.123-beta" = "sha256-gngH0mOC9USzwUGP4bjb1foZAvg6QHuzODv7LG49MsA="; 38 + "musig2-0.1.0" = "sha256-++1x7uHHR7KEhl8LF3VywooULiTzKeDu3e+0/c/8p9Y="; 39 + "nip44-0.1.0" = "sha256-u2ALoHQrPVNoX0wjJmQ+BYRzIKsi0G5xPbYjgsNZZ7A="; 40 + "nostr-types-0.8.0-unstable" = "sha256-HGXPJrI6+HT/oyAV3bELA0LPu4O0DmmJVr0mDtDVfr4="; 41 41 "qrcode-0.12.0" = "sha256-onnoQuMf7faDa9wTGWo688xWbmujgE9RraBialyhyPw="; 42 - "sdl2-0.35.2" = "sha256-qPId64Y6UkVkZJ+8xK645at5fv3mFcYaiInb0rGUfL4="; 43 - "speedy-0.8.6" = "sha256-ltJQud1kEYkw7L2sZgPnD/teeXl2+FKgyX9kk2IC2Xg="; 42 + "sdl2-0.36.0" = "sha256-dfXrD9LLBGeYyOLE3PruuGGBZ3WaPBfWlwBqP2pp+NY="; 44 43 }; 45 44 }; 46 45
+2 -1
pkgs/by-name/hp/hpipm/package.nix
··· 26 26 ]; 27 27 28 28 cmakeFlags = [ 29 - "-DBLASFEO_PATH=${blasfeo}" 29 + "-DHPIPM_FIND_BLASFEO=ON" 30 + "-DBUILD_SHARED_LIBS=ON" 30 31 ] ++ lib.optionals (!stdenv.isx86_64) [ "-DTARGET=GENERIC" ]; 31 32 32 33 meta = {
+4 -4
pkgs/by-name/jo/joshuto/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "joshuto"; 11 - version = "0.9.8"; 11 + version = "0.9.8-unstable-2024-07-20"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "kamiyaa"; 15 15 repo = "joshuto"; 16 - rev = "v${version}"; 17 - hash = "sha256-8OvaL6HqsJjBAbksR4EpC/ZgvdBSKlB37PP77p3T3PY="; 16 + rev = "d10ca32f8a2fea1afb6a5466b7dd29513066c996"; 17 + hash = "sha256-T5NfPPl8bAp3pcY1A7Dm37wC3+xrtYdoGEe4QOYgwUw="; 18 18 }; 19 19 20 - cargoHash = "sha256-zGqOmebD7kZAsWunWSB2NFOSg0cu8aM1dyhEIQz1j4I="; 20 + cargoHash = "sha256-YNdO4b4MegG3JVRFBt71RDXmPXYyksDtI0P740zxLso="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
+60 -6
pkgs/by-name/mu/mumps/package.nix
··· 26 26 }) 27 27 ]; 28 28 29 - postPatch = '' 30 - # Compatibility with coin-or-mumps version 31 - # https://github.com/coin-or-tools/ThirdParty-Mumps/blob/stable/3.0/get.Mumps#L66 32 - cp libseq/mpi.h libseq/mumps_mpi.h 33 - ''; 29 + postPatch = 30 + '' 31 + # Compatibility with coin-or-mumps version 32 + # https://github.com/coin-or-tools/ThirdParty-Mumps/blob/stable/3.0/get.Mumps#L66 33 + cp libseq/mpi.h libseq/mumps_mpi.h 34 + '' 35 + + lib.optionalString stdenv.isDarwin '' 36 + substituteInPlace src/Makefile --replace-fail \ 37 + "-Wl,\''$(SONAME),libmumps_common" \ 38 + "-Wl,-install_name,$out/lib/libmumps_common" 39 + ''; 34 40 35 41 configurePhase = '' 36 42 cp Make.inc/Makefile.debian.SEQ ./Makefile.inc ··· 67 73 scotch 68 74 ]; 69 75 76 + preFixup = lib.optionalString stdenv.isDarwin '' 77 + install_name_tool \ 78 + -change libmpiseq.dylib \ 79 + $out/lib/libmpiseq.dylib \ 80 + -change libpord.dylib \ 81 + $out/lib/libpord.dylib \ 82 + $out/lib/libmumps_common.dylib 83 + install_name_tool \ 84 + -change libmpiseq.dylib \ 85 + $out/lib/libmpiseq.dylib \ 86 + -change libpord.dylib \ 87 + $out/lib/libpord.dylib \ 88 + -id \ 89 + $out/lib/libcmumps.dylib \ 90 + $out/lib/libcmumps.dylib 91 + install_name_tool \ 92 + -change libmpiseq.dylib \ 93 + $out/lib/libmpiseq.dylib \ 94 + -change libpord.dylib \ 95 + $out/lib/libpord.dylib \ 96 + -id \ 97 + $out/lib/libdmumps.dylib \ 98 + $out/lib/libdmumps.dylib 99 + install_name_tool \ 100 + -change libmpiseq.dylib \ 101 + $out/lib/libmpiseq.dylib \ 102 + -change libpord.dylib \ 103 + $out/lib/libpord.dylib \ 104 + -id \ 105 + $out/lib/libsmumps.dylib \ 106 + $out/lib/libsmumps.dylib 107 + install_name_tool \ 108 + -change libmpiseq.dylib \ 109 + $out/lib/libmpiseq.dylib \ 110 + -change libpord.dylib \ 111 + $out/lib/libpord.dylib \ 112 + -id \ 113 + $out/lib/libzmumps.dylib \ 114 + $out/lib/libzmumps.dylib 115 + install_name_tool \ 116 + -id \ 117 + $out/lib/libmpiseq.dylib \ 118 + $out/lib/libmpiseq.dylib 119 + install_name_tool \ 120 + -id \ 121 + $out/lib/libpord.dylib \ 122 + $out/lib/libpord.dylib 123 + ''; 124 + 70 125 meta = { 71 126 description = "MUltifrontal Massively Parallel sparse direct Solver"; 72 127 homepage = "http://mumps-solver.org/"; 73 128 license = lib.licenses.cecill-c; 74 129 maintainers = with lib.maintainers; [ nim65s ]; 75 - broken = stdenv.isDarwin; 76 130 }; 77 131 })
+9 -5
pkgs/by-name/pr/proxsuite/package.nix
··· 61 61 "out" 62 62 ]; 63 63 64 - cmakeFlags = [ 65 - (lib.cmakeBool "BUILD_DOCUMENTATION" true) 66 - (lib.cmakeBool "INSTALL_DOCUMENTATION" true) 67 - (lib.cmakeBool "BUILD_PYTHON_INTERFACE" pythonSupport) 68 - ]; 64 + cmakeFlags = 65 + [ 66 + (lib.cmakeBool "BUILD_DOCUMENTATION" true) 67 + (lib.cmakeBool "INSTALL_DOCUMENTATION" true) 68 + (lib.cmakeBool "BUILD_PYTHON_INTERFACE" pythonSupport) 69 + ] 70 + ++ lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [ 71 + "-DCMAKE_CTEST_ARGUMENTS=--exclude-regex;ProxQP::dense: test primal infeasibility solving" 72 + ]; 69 73 70 74 strictDeps = true; 71 75
+2 -2
pkgs/by-name/sp/sploitscan/package.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sploitscan"; 8 - version = "0.10.4"; 8 + version = "0.10.5"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "xaitax"; 13 13 repo = "SploitScan"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-6bC8mGzM6P0otzIG0+h0Koe9c+QI97HkEZh0HwfVviY="; 15 + hash = "sha256-41NR31x/pJttBxv66t5g3s2PwlSBgsk0ybiH7xFs18k="; 16 16 }; 17 17 18 18 pythonRelaxDeps = [
+4 -4
pkgs/by-name/sp/spotifyd/package.nix
··· 24 24 25 25 rustPackages.rustPlatform.buildRustPackage rec { 26 26 pname = "spotifyd"; 27 - version = "0.3.5-unstable-2024-07-10"; 27 + version = "0.3.5-unstable-2024-08-13"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "Spotifyd"; 31 31 repo = "spotifyd"; 32 - rev = "8fb0b9a5cce46d2e99e127881a04fb1986e58008"; 33 - hash = "sha256-wEPdf5ylnmu/SqoaWHxAzIEUpdRhhZfdQ623zYzcU+s="; 32 + rev = "e342328550779423382f35cd10a18b1c76b81f40"; 33 + hash = "sha256-eP783ZNdzePQuhQE8SWYHwqK8J4+fperDYXAHWM0hz8="; 34 34 }; 35 35 36 - cargoHash = "sha256-+xTmkp+hGzmz4XrfKqPCtlpsX8zLA8XgJWM1SPunjq4="; 36 + cargoHash = "sha256-jmsfB96uWX4CzEsS2Grr2FCptMIebj2DSA5z6zG9AJg="; 37 37 38 38 nativeBuildInputs = [ pkg-config ]; 39 39
+1969 -1207
pkgs/by-name/sy/symbolicator/Cargo.lock
··· 14 14 15 15 [[package]] 16 16 name = "addr2line" 17 - version = "0.21.0" 17 + version = "0.22.0" 18 18 source = "registry+https://github.com/rust-lang/crates.io-index" 19 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 19 + checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 20 20 dependencies = [ 21 - "gimli", 21 + "gimli 0.29.0", 22 22 ] 23 23 24 24 [[package]] ··· 28 28 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 29 29 30 30 [[package]] 31 + name = "ahash" 32 + version = "0.8.11" 33 + source = "registry+https://github.com/rust-lang/crates.io-index" 34 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 35 + dependencies = [ 36 + "cfg-if", 37 + "once_cell", 38 + "version_check", 39 + "zerocopy", 40 + ] 41 + 42 + [[package]] 31 43 name = "aho-corasick" 32 - version = "1.1.2" 44 + version = "1.1.3" 33 45 source = "registry+https://github.com/rust-lang/crates.io-index" 34 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 46 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 35 47 dependencies = [ 36 48 "memchr", 37 49 ] ··· 52 64 ] 53 65 54 66 [[package]] 67 + name = "allocator-api2" 68 + version = "0.2.18" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 71 + 72 + [[package]] 55 73 name = "android-tzdata" 56 74 version = "0.1.1" 57 75 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 68 86 69 87 [[package]] 70 88 name = "anstream" 71 - version = "0.6.4" 89 + version = "0.6.14" 72 90 source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 91 + checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 74 92 dependencies = [ 75 93 "anstyle", 76 94 "anstyle-parse", 77 95 "anstyle-query", 78 96 "anstyle-wincon", 79 97 "colorchoice", 98 + "is_terminal_polyfill", 80 99 "utf8parse", 81 100 ] 82 101 83 102 [[package]] 84 103 name = "anstyle" 85 - version = "1.0.4" 104 + version = "1.0.7" 86 105 source = "registry+https://github.com/rust-lang/crates.io-index" 87 - checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 106 + checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 88 107 89 108 [[package]] 90 109 name = "anstyle-parse" 91 - version = "0.2.2" 110 + version = "0.2.4" 92 111 source = "registry+https://github.com/rust-lang/crates.io-index" 93 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 112 + checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 94 113 dependencies = [ 95 114 "utf8parse", 96 115 ] 97 116 98 117 [[package]] 99 118 name = "anstyle-query" 100 - version = "1.0.0" 119 + version = "1.1.0" 101 120 source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 121 + checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 103 122 dependencies = [ 104 - "windows-sys 0.48.0", 123 + "windows-sys 0.52.0", 105 124 ] 106 125 107 126 [[package]] 108 127 name = "anstyle-wincon" 109 - version = "3.0.1" 128 + version = "3.0.3" 110 129 source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 130 + checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 112 131 dependencies = [ 113 132 "anstyle", 114 - "windows-sys 0.48.0", 133 + "windows-sys 0.52.0", 115 134 ] 116 135 117 136 [[package]] 118 137 name = "anyhow" 119 - version = "1.0.75" 138 + version = "1.0.86" 120 139 source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 140 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 122 141 dependencies = [ 123 142 "backtrace", 124 143 ] ··· 136 155 ] 137 156 138 157 [[package]] 158 + name = "arbitrary" 159 + version = "1.3.2" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 162 + dependencies = [ 163 + "derive_arbitrary", 164 + ] 165 + 166 + [[package]] 139 167 name = "arc-swap" 140 - version = "1.6.0" 168 + version = "1.7.1" 141 169 source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 170 + checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 143 171 144 172 [[package]] 145 173 name = "arrayvec" ··· 149 177 150 178 [[package]] 151 179 name = "ast_node" 152 - version = "0.9.5" 180 + version = "0.9.8" 153 181 source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24" 182 + checksum = "2ab31376d309dd3bfc9cfb3c11c93ce0e0741bbe0354b20e7f8c60b044730b79" 155 183 dependencies = [ 156 - "pmutil", 157 184 "proc-macro2", 158 185 "quote", 159 186 "swc_macros_common", 160 - "syn 2.0.39", 187 + "syn", 161 188 ] 162 189 163 190 [[package]] 164 191 name = "async-compression" 165 - version = "0.4.5" 192 + version = "0.4.11" 166 193 source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 194 + checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5" 168 195 dependencies = [ 169 196 "brotli", 170 197 "flate2", ··· 176 203 177 204 [[package]] 178 205 name = "async-lock" 179 - version = "2.8.0" 206 + version = "3.4.0" 180 207 source = "registry+https://github.com/rust-lang/crates.io-index" 181 - checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 208 + checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 182 209 dependencies = [ 183 210 "event-listener", 211 + "event-listener-strategy", 212 + "pin-project-lite", 184 213 ] 185 214 186 215 [[package]] 187 216 name = "async-trait" 188 - version = "0.1.74" 217 + version = "0.1.81" 189 218 source = "registry+https://github.com/rust-lang/crates.io-index" 190 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 219 + checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 191 220 dependencies = [ 192 221 "proc-macro2", 193 222 "quote", 194 - "syn 2.0.39", 223 + "syn", 195 224 ] 196 225 197 226 [[package]] 227 + name = "atomic-waker" 228 + version = "1.1.2" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 231 + 232 + [[package]] 198 233 name = "autocfg" 199 - version = "1.1.0" 234 + version = "1.3.0" 200 235 source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 236 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 202 237 203 238 [[package]] 204 239 name = "aws-config" 205 - version = "0.56.1" 240 + version = "1.5.4" 206 241 source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "fc6b3804dca60326e07205179847f17a4fce45af3a1106939177ad41ac08a6de" 242 + checksum = "caf6cfe2881cb1fcbba9ae946fb9a6480d3b7a714ca84c74925014a89ef3387a" 208 243 dependencies = [ 209 244 "aws-credential-types", 210 - "aws-http", 245 + "aws-runtime", 211 246 "aws-sdk-sso", 247 + "aws-sdk-ssooidc", 212 248 "aws-sdk-sts", 213 249 "aws-smithy-async", 214 - "aws-smithy-client", 215 250 "aws-smithy-http", 216 - "aws-smithy-http-tower", 217 251 "aws-smithy-json", 252 + "aws-smithy-runtime", 253 + "aws-smithy-runtime-api", 218 254 "aws-smithy-types", 219 255 "aws-types", 220 256 "bytes", 221 257 "fastrand", 222 258 "hex", 223 - "http", 224 - "hyper", 225 - "ring 0.16.20", 259 + "http 0.2.12", 260 + "hyper 0.14.30", 261 + "ring", 226 262 "time", 227 263 "tokio", 228 - "tower", 229 264 "tracing", 265 + "url", 230 266 "zeroize", 231 267 ] 232 268 233 269 [[package]] 234 270 name = "aws-credential-types" 235 - version = "0.56.1" 271 + version = "1.2.0" 236 272 source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "70a66ac8ef5fa9cf01c2d999f39d16812e90ec1467bd382cbbb74ba23ea86201" 273 + checksum = "e16838e6c9e12125face1c1eff1343c75e3ff540de98ff7ebd61874a89bcfeb9" 238 274 dependencies = [ 239 275 "aws-smithy-async", 276 + "aws-smithy-runtime-api", 240 277 "aws-smithy-types", 241 - "fastrand", 242 - "tokio", 243 - "tracing", 244 278 "zeroize", 245 279 ] 246 280 247 281 [[package]] 248 - name = "aws-http" 249 - version = "0.56.1" 282 + name = "aws-runtime" 283 + version = "1.3.1" 250 284 source = "registry+https://github.com/rust-lang/crates.io-index" 251 - checksum = "3e626370f9ba806ae4c439e49675fd871f5767b093075cdf4fef16cac42ba900" 285 + checksum = "87c5f920ffd1e0526ec9e70e50bf444db50b204395a0fa7016bbf9e31ea1698f" 252 286 dependencies = [ 253 287 "aws-credential-types", 288 + "aws-sigv4", 289 + "aws-smithy-async", 290 + "aws-smithy-eventstream", 254 291 "aws-smithy-http", 292 + "aws-smithy-runtime-api", 255 293 "aws-smithy-types", 256 294 "aws-types", 257 295 "bytes", 258 - "http", 259 - "http-body", 260 - "lazy_static", 296 + "fastrand", 297 + "http 0.2.12", 298 + "http-body 0.4.6", 261 299 "percent-encoding", 262 300 "pin-project-lite", 263 301 "tracing", 302 + "uuid", 264 303 ] 265 304 266 305 [[package]] 267 - name = "aws-runtime" 268 - version = "0.56.1" 306 + name = "aws-sdk-s3" 307 + version = "1.40.0" 269 308 source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "07ac5cf0ff19c1bca0cea7932e11b239d1025a45696a4f44f72ea86e2b8bdd07" 309 + checksum = "8367c403fdf27690684b926a46ed9524099a69dd5dfcef62028bf4096b5b809f" 271 310 dependencies = [ 311 + "ahash", 272 312 "aws-credential-types", 273 - "aws-http", 313 + "aws-runtime", 274 314 "aws-sigv4", 275 315 "aws-smithy-async", 316 + "aws-smithy-checksums", 276 317 "aws-smithy-eventstream", 277 318 "aws-smithy-http", 319 + "aws-smithy-json", 320 + "aws-smithy-runtime", 278 321 "aws-smithy-runtime-api", 279 322 "aws-smithy-types", 323 + "aws-smithy-xml", 280 324 "aws-types", 325 + "bytes", 281 326 "fastrand", 282 - "http", 327 + "hex", 328 + "hmac", 329 + "http 0.2.12", 330 + "http-body 0.4.6", 331 + "lru", 332 + "once_cell", 283 333 "percent-encoding", 334 + "regex-lite", 335 + "sha2", 284 336 "tracing", 285 - "uuid", 337 + "url", 286 338 ] 287 339 288 340 [[package]] 289 - name = "aws-sdk-s3" 290 - version = "0.33.0" 341 + name = "aws-sdk-sso" 342 + version = "1.34.0" 291 343 source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "73018483d9cb78e1a0d4dcbc94327b01d532e7cb28f26c5bceff97f8f0e4c6eb" 344 + checksum = "cdcfae7bf8b8f14cade7579ffa8956fcee91dc23633671096b4b5de7d16f682a" 293 345 dependencies = [ 294 346 "aws-credential-types", 295 - "aws-http", 296 347 "aws-runtime", 297 - "aws-sigv4", 298 348 "aws-smithy-async", 299 - "aws-smithy-checksums", 300 - "aws-smithy-client", 301 - "aws-smithy-eventstream", 302 349 "aws-smithy-http", 303 350 "aws-smithy-json", 304 351 "aws-smithy-runtime", 305 352 "aws-smithy-runtime-api", 306 353 "aws-smithy-types", 307 - "aws-smithy-xml", 308 354 "aws-types", 309 355 "bytes", 310 - "http", 311 - "http-body", 356 + "http 0.2.12", 312 357 "once_cell", 313 - "percent-encoding", 314 - "regex", 315 - "tokio-stream", 358 + "regex-lite", 316 359 "tracing", 317 - "url", 318 360 ] 319 361 320 362 [[package]] 321 - name = "aws-sdk-sso" 322 - version = "0.30.0" 363 + name = "aws-sdk-ssooidc" 364 + version = "1.35.0" 323 365 source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "903f888ff190e64f6f5c83fb0f8d54f9c20481f1dc26359bb8896f5d99908949" 366 + checksum = "33b30def8f02ba81276d5dbc22e7bf3bed20d62d1b175eef82680d6bdc7a6f4c" 325 367 dependencies = [ 326 368 "aws-credential-types", 327 - "aws-http", 328 369 "aws-runtime", 329 370 "aws-smithy-async", 330 - "aws-smithy-client", 331 371 "aws-smithy-http", 332 372 "aws-smithy-json", 333 373 "aws-smithy-runtime", ··· 335 375 "aws-smithy-types", 336 376 "aws-types", 337 377 "bytes", 338 - "http", 339 - "regex", 340 - "tokio-stream", 378 + "http 0.2.12", 379 + "once_cell", 380 + "regex-lite", 341 381 "tracing", 342 382 ] 343 383 344 384 [[package]] 345 385 name = "aws-sdk-sts" 346 - version = "0.30.0" 386 + version = "1.34.0" 347 387 source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "a47ad6bf01afc00423d781d464220bf69fb6a674ad6629cbbcb06d88cdc2be82" 388 + checksum = "0804f840ad31537d5d1a4ec48d59de5e674ad05f1db7d3def2c9acadaf1f7e60" 349 389 dependencies = [ 350 390 "aws-credential-types", 351 - "aws-http", 352 391 "aws-runtime", 353 392 "aws-smithy-async", 354 - "aws-smithy-client", 355 393 "aws-smithy-http", 356 394 "aws-smithy-json", 357 395 "aws-smithy-query", ··· 360 398 "aws-smithy-types", 361 399 "aws-smithy-xml", 362 400 "aws-types", 363 - "http", 364 - "regex", 401 + "http 0.2.12", 402 + "once_cell", 403 + "regex-lite", 365 404 "tracing", 366 405 ] 367 406 368 407 [[package]] 369 408 name = "aws-sigv4" 370 - version = "0.56.1" 409 + version = "1.2.3" 371 410 source = "registry+https://github.com/rust-lang/crates.io-index" 372 - checksum = "b7b28f4910bb956b7ab320b62e98096402354eca976c587d1eeccd523d9bac03" 411 + checksum = "5df1b0fa6be58efe9d4ccc257df0a53b89cd8909e86591a13ca54817c87517be" 373 412 dependencies = [ 413 + "aws-credential-types", 374 414 "aws-smithy-eventstream", 375 415 "aws-smithy-http", 416 + "aws-smithy-runtime-api", 417 + "aws-smithy-types", 376 418 "bytes", 419 + "crypto-bigint 0.5.5", 377 420 "form_urlencoded", 378 421 "hex", 379 422 "hmac", 380 - "http", 423 + "http 0.2.12", 424 + "http 1.1.0", 381 425 "once_cell", 426 + "p256", 382 427 "percent-encoding", 383 - "regex", 428 + "ring", 384 429 "sha2", 430 + "subtle", 385 431 "time", 386 432 "tracing", 433 + "zeroize", 387 434 ] 388 435 389 436 [[package]] 390 437 name = "aws-smithy-async" 391 - version = "0.56.1" 438 + version = "1.2.1" 392 439 source = "registry+https://github.com/rust-lang/crates.io-index" 393 - checksum = "2cdb73f85528b9d19c23a496034ac53703955a59323d581c06aa27b4e4e247af" 440 + checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c" 394 441 dependencies = [ 395 442 "futures-util", 396 443 "pin-project-lite", 397 444 "tokio", 398 - "tokio-stream", 399 445 ] 400 446 401 447 [[package]] 402 448 name = "aws-smithy-checksums" 403 - version = "0.56.1" 449 + version = "0.60.11" 404 450 source = "registry+https://github.com/rust-lang/crates.io-index" 405 - checksum = "afb15946af1b8d3beeff53ad991d9bff68ac22426b6d40372b958a75fa61eaed" 451 + checksum = "48c4134cf3adaeacff34d588dbe814200357b0c466d730cf1c0d8054384a2de4" 406 452 dependencies = [ 407 453 "aws-smithy-http", 408 454 "aws-smithy-types", ··· 410 456 "crc32c", 411 457 "crc32fast", 412 458 "hex", 413 - "http", 414 - "http-body", 459 + "http 0.2.12", 460 + "http-body 0.4.6", 415 461 "md-5", 416 462 "pin-project-lite", 417 463 "sha1", ··· 420 466 ] 421 467 422 468 [[package]] 423 - name = "aws-smithy-client" 424 - version = "0.56.1" 425 - source = "registry+https://github.com/rust-lang/crates.io-index" 426 - checksum = "c27b2756264c82f830a91cb4d2d485b2d19ad5bea476d9a966e03d27f27ba59a" 427 - dependencies = [ 428 - "aws-smithy-async", 429 - "aws-smithy-http", 430 - "aws-smithy-http-tower", 431 - "aws-smithy-types", 432 - "bytes", 433 - "fastrand", 434 - "http", 435 - "http-body", 436 - "hyper", 437 - "hyper-rustls", 438 - "lazy_static", 439 - "pin-project-lite", 440 - "rustls", 441 - "tokio", 442 - "tower", 443 - "tracing", 444 - ] 445 - 446 - [[package]] 447 469 name = "aws-smithy-eventstream" 448 - version = "0.56.1" 470 + version = "0.60.4" 449 471 source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "850233feab37b591b7377fd52063aa37af615687f5896807abe7f49bd4e1d25b" 472 + checksum = "e6363078f927f612b970edf9d1903ef5cef9a64d1e8423525ebb1f0a1633c858" 451 473 dependencies = [ 452 474 "aws-smithy-types", 453 475 "bytes", ··· 456 478 457 479 [[package]] 458 480 name = "aws-smithy-http" 459 - version = "0.56.1" 481 + version = "0.60.9" 460 482 source = "registry+https://github.com/rust-lang/crates.io-index" 461 - checksum = "54cdcf365d8eee60686885f750a34c190e513677db58bbc466c44c588abf4199" 483 + checksum = "d9cd0ae3d97daa0a2bf377a4d8e8e1362cae590c4a1aad0d40058ebca18eb91e" 462 484 dependencies = [ 463 485 "aws-smithy-eventstream", 486 + "aws-smithy-runtime-api", 464 487 "aws-smithy-types", 465 488 "bytes", 466 489 "bytes-utils", 467 490 "futures-core", 468 - "http", 469 - "http-body", 470 - "hyper", 491 + "http 0.2.12", 492 + "http-body 0.4.6", 471 493 "once_cell", 472 494 "percent-encoding", 473 495 "pin-project-lite", 474 496 "pin-utils", 475 - "tokio", 476 - "tokio-util", 477 - "tracing", 478 - ] 479 - 480 - [[package]] 481 - name = "aws-smithy-http-tower" 482 - version = "0.56.1" 483 - source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "822de399d0ce62829a69dfa8c5cd08efdbe61a7426b953e2268f8b8b52a607bd" 485 - dependencies = [ 486 - "aws-smithy-http", 487 - "aws-smithy-types", 488 - "bytes", 489 - "http", 490 - "http-body", 491 - "pin-project-lite", 492 - "tower", 493 497 "tracing", 494 498 ] 495 499 496 500 [[package]] 497 501 name = "aws-smithy-json" 498 - version = "0.56.1" 502 + version = "0.60.7" 499 503 source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "4fb1e7ab8fa7ad10c193af7ae56d2420989e9f4758bf03601a342573333ea34f" 504 + checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6" 501 505 dependencies = [ 502 506 "aws-smithy-types", 503 507 ] 504 508 505 509 [[package]] 506 510 name = "aws-smithy-query" 507 - version = "0.56.1" 511 + version = "0.60.7" 508 512 source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "28556a3902091c1f768a34f6c998028921bdab8d47d92586f363f14a4a32d047" 513 + checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb" 510 514 dependencies = [ 511 515 "aws-smithy-types", 512 516 "urlencoding", ··· 514 518 515 519 [[package]] 516 520 name = "aws-smithy-runtime" 517 - version = "0.56.1" 521 + version = "1.6.2" 518 522 source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "745e096b3553e7e0f40622aa04971ce52765af82bebdeeac53aa6fc82fe801e6" 523 + checksum = "ce87155eba55e11768b8c1afa607f3e864ae82f03caf63258b37455b0ad02537" 520 524 dependencies = [ 521 525 "aws-smithy-async", 522 - "aws-smithy-client", 523 526 "aws-smithy-http", 524 527 "aws-smithy-runtime-api", 525 528 "aws-smithy-types", 526 529 "bytes", 527 530 "fastrand", 528 - "http", 529 - "http-body", 531 + "h2 0.3.26", 532 + "http 0.2.12", 533 + "http-body 0.4.6", 534 + "http-body 1.0.0", 535 + "httparse", 536 + "hyper 0.14.30", 537 + "hyper-rustls 0.24.2", 530 538 "once_cell", 531 539 "pin-project-lite", 532 540 "pin-utils", 541 + "rustls 0.21.12", 533 542 "tokio", 534 543 "tracing", 535 544 ] 536 545 537 546 [[package]] 538 547 name = "aws-smithy-runtime-api" 539 - version = "0.56.1" 548 + version = "1.7.1" 540 549 source = "registry+https://github.com/rust-lang/crates.io-index" 541 - checksum = "93d0ae0c9cfd57944e9711ea610b48a963fb174a53aabacc08c5794a594b1d02" 550 + checksum = "30819352ed0a04ecf6a2f3477e344d2d1ba33d43e0f09ad9047c12e0d923616f" 542 551 dependencies = [ 543 552 "aws-smithy-async", 544 - "aws-smithy-http", 545 553 "aws-smithy-types", 546 554 "bytes", 547 - "http", 555 + "http 0.2.12", 556 + "http 1.1.0", 557 + "pin-project-lite", 548 558 "tokio", 549 559 "tracing", 560 + "zeroize", 550 561 ] 551 562 552 563 [[package]] 553 564 name = "aws-smithy-types" 554 - version = "0.56.1" 565 + version = "1.2.0" 555 566 source = "registry+https://github.com/rust-lang/crates.io-index" 556 - checksum = "d90dbc8da2f6be461fa3c1906b20af8f79d14968fe47f2b7d29d086f62a51728" 567 + checksum = "cfe321a6b21f5d8eabd0ade9c55d3d0335f3c3157fc2b3e87f05f34b539e4df5" 557 568 dependencies = [ 558 - "base64-simd", 569 + "base64-simd 0.8.0", 570 + "bytes", 571 + "bytes-utils", 572 + "futures-core", 573 + "http 0.2.12", 574 + "http 1.1.0", 575 + "http-body 0.4.6", 576 + "http-body 1.0.0", 577 + "http-body-util", 559 578 "itoa", 560 579 "num-integer", 580 + "pin-project-lite", 581 + "pin-utils", 561 582 "ryu", 562 583 "serde", 563 584 "time", 585 + "tokio", 586 + "tokio-util", 564 587 ] 565 588 566 589 [[package]] 567 590 name = "aws-smithy-xml" 568 - version = "0.56.1" 591 + version = "0.60.8" 569 592 source = "registry+https://github.com/rust-lang/crates.io-index" 570 - checksum = "e01d2dedcdd8023043716cfeeb3c6c59f2d447fce365d8e194838891794b23b6" 593 + checksum = "d123fbc2a4adc3c301652ba8e149bf4bc1d1725affb9784eb20c953ace06bf55" 571 594 dependencies = [ 572 595 "xmlparser", 573 596 ] 574 597 575 598 [[package]] 576 599 name = "aws-types" 577 - version = "0.56.1" 600 + version = "1.3.3" 578 601 source = "registry+https://github.com/rust-lang/crates.io-index" 579 - checksum = "85aa0451bf8af1bf22a4f028d5d28054507a14be43cb8ac0597a8471fba9edfe" 602 + checksum = "5221b91b3e441e6675310829fd8984801b772cb1546ef6c0e54dec9f1ac13fef" 580 603 dependencies = [ 581 604 "aws-credential-types", 582 605 "aws-smithy-async", 583 - "aws-smithy-client", 584 - "aws-smithy-http", 606 + "aws-smithy-runtime-api", 585 607 "aws-smithy-types", 586 - "http", 587 608 "rustc_version 0.4.0", 588 609 "tracing", 589 610 ] 590 611 591 612 [[package]] 592 613 name = "axum" 593 - version = "0.6.20" 614 + version = "0.7.5" 594 615 source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 616 + checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 596 617 dependencies = [ 597 618 "async-trait", 598 619 "axum-core", 599 - "bitflags 1.3.2", 600 620 "bytes", 601 621 "futures-util", 602 - "http", 603 - "http-body", 604 - "hyper", 622 + "http 1.1.0", 623 + "http-body 1.0.0", 624 + "http-body-util", 625 + "hyper 1.4.1", 626 + "hyper-util", 605 627 "itoa", 606 628 "matchit", 607 629 "memchr", ··· 614 636 "serde_json", 615 637 "serde_path_to_error", 616 638 "serde_urlencoded", 617 - "sync_wrapper", 639 + "sync_wrapper 1.0.1", 618 640 "tokio", 619 641 "tower", 620 642 "tower-layer", 621 643 "tower-service", 644 + "tracing", 622 645 ] 623 646 624 647 [[package]] 625 648 name = "axum-core" 626 - version = "0.3.4" 649 + version = "0.4.3" 627 650 source = "registry+https://github.com/rust-lang/crates.io-index" 628 - checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 651 + checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 629 652 dependencies = [ 630 653 "async-trait", 631 654 "bytes", 632 655 "futures-util", 633 - "http", 634 - "http-body", 656 + "http 1.1.0", 657 + "http-body 1.0.0", 658 + "http-body-util", 635 659 "mime", 660 + "pin-project-lite", 636 661 "rustversion", 662 + "sync_wrapper 0.1.2", 637 663 "tower-layer", 638 664 "tower-service", 665 + "tracing", 639 666 ] 640 667 641 668 [[package]] 642 669 name = "axum-server" 643 - version = "0.5.1" 670 + version = "0.6.0" 644 671 source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "447f28c85900215cc1bea282f32d4a2f22d55c5a300afdfbc661c8d6a632e063" 672 + checksum = "c1ad46c3ec4e12f4a4b6835e173ba21c25e484c9d02b49770bf006ce5367c036" 646 673 dependencies = [ 647 674 "arc-swap", 648 675 "bytes", 649 676 "futures-util", 650 - "http", 651 - "http-body", 652 - "hyper", 677 + "http 1.1.0", 678 + "http-body 1.0.0", 679 + "http-body-util", 680 + "hyper 1.4.1", 681 + "hyper-util", 653 682 "pin-project-lite", 654 - "rustls", 655 - "rustls-pemfile", 683 + "rustls 0.21.12", 684 + "rustls-pemfile 2.1.2", 656 685 "tokio", 657 - "tokio-rustls", 686 + "tokio-rustls 0.24.1", 687 + "tower", 658 688 "tower-service", 659 689 ] 660 690 661 691 [[package]] 662 692 name = "backtrace" 663 - version = "0.3.69" 693 + version = "0.3.73" 664 694 source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 695 + checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 666 696 dependencies = [ 667 697 "addr2line", 668 698 "cc", ··· 672 702 "object", 673 703 "rustc-demangle", 674 704 ] 705 + 706 + [[package]] 707 + name = "base16ct" 708 + version = "0.1.1" 709 + source = "registry+https://github.com/rust-lang/crates.io-index" 710 + checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 675 711 676 712 [[package]] 677 713 name = "base64" 678 - version = "0.21.5" 714 + version = "0.21.7" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 717 + 718 + [[package]] 719 + name = "base64" 720 + version = "0.22.1" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 723 + 724 + [[package]] 725 + name = "base64-simd" 726 + version = "0.7.0" 679 727 source = "registry+https://github.com/rust-lang/crates.io-index" 680 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 728 + checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5" 729 + dependencies = [ 730 + "simd-abstraction", 731 + ] 681 732 682 733 [[package]] 683 734 name = "base64-simd" ··· 685 736 source = "registry+https://github.com/rust-lang/crates.io-index" 686 737 checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 687 738 dependencies = [ 688 - "outref", 739 + "outref 0.5.1", 689 740 "vsimd", 690 741 ] 691 742 692 743 [[package]] 744 + name = "base64ct" 745 + version = "1.6.0" 746 + source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 748 + 749 + [[package]] 693 750 name = "better_scoped_tls" 694 751 version = "0.1.1" 695 752 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 706 763 707 764 [[package]] 708 765 name = "bindgen" 709 - version = "0.68.1" 766 + version = "0.69.4" 710 767 source = "registry+https://github.com/rust-lang/crates.io-index" 711 - checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 768 + checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 712 769 dependencies = [ 713 - "bitflags 2.4.1", 770 + "bitflags 2.6.0", 714 771 "cexpr", 715 772 "clang-sys", 773 + "itertools 0.12.1", 716 774 "lazy_static", 717 775 "lazycell", 718 776 "log", 719 - "peeking_take_while", 720 777 "prettyplease", 721 778 "proc-macro2", 722 779 "quote", 723 780 "regex", 724 - "rustc-hash", 781 + "rustc-hash 1.1.0", 725 782 "shlex", 726 - "syn 2.0.39", 783 + "syn", 727 784 "which", 728 785 ] 729 786 ··· 735 792 736 793 [[package]] 737 794 name = "bitflags" 738 - version = "2.4.1" 795 + version = "2.6.0" 739 796 source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 797 + checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 798 + 799 + [[package]] 800 + name = "bitvec" 801 + version = "1.0.1" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 804 + dependencies = [ 805 + "funty", 806 + "radium", 807 + "tap", 808 + "wyz", 809 + ] 741 810 742 811 [[package]] 743 812 name = "block-buffer" ··· 750 819 751 820 [[package]] 752 821 name = "breakpad-symbols" 753 - version = "0.18.0" 822 + version = "0.22.0" 754 823 source = "registry+https://github.com/rust-lang/crates.io-index" 755 - checksum = "d74d84f4b64599b9ce996914673a5b4d60181c3895c7eb26369459ccc41fb37d" 824 + checksum = "7e1ad3f5e2e5c8a42fccedd6792cc05968b39b69c3fe7b5544072ac052f3fe85" 756 825 dependencies = [ 757 826 "async-trait", 758 827 "cachemap2", ··· 768 837 769 838 [[package]] 770 839 name = "brotli" 771 - version = "3.4.0" 840 + version = "6.0.0" 772 841 source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 842 + checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 774 843 dependencies = [ 775 844 "alloc-no-stdlib", 776 845 "alloc-stdlib", ··· 779 848 780 849 [[package]] 781 850 name = "brotli-decompressor" 782 - version = "2.5.1" 851 + version = "4.0.1" 783 852 source = "registry+https://github.com/rust-lang/crates.io-index" 784 - checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 853 + checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 785 854 dependencies = [ 786 855 "alloc-no-stdlib", 787 856 "alloc-stdlib", ··· 798 867 799 868 [[package]] 800 869 name = "bumpalo" 801 - version = "3.14.0" 870 + version = "3.16.0" 802 871 source = "registry+https://github.com/rust-lang/crates.io-index" 803 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 804 - 805 - [[package]] 806 - name = "bytecount" 807 - version = "0.6.7" 808 - source = "registry+https://github.com/rust-lang/crates.io-index" 809 - checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" 872 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 810 873 811 874 [[package]] 812 875 name = "byteorder" ··· 816 879 817 880 [[package]] 818 881 name = "bytes" 819 - version = "1.5.0" 882 + version = "1.6.0" 820 883 source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 884 + checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 822 885 823 886 [[package]] 824 887 name = "bytes-utils" ··· 853 916 854 917 [[package]] 855 918 name = "cachemap2" 856 - version = "0.2.0" 919 + version = "0.3.0" 857 920 source = "registry+https://github.com/rust-lang/crates.io-index" 858 - checksum = "d7bba2f68a9fefca870fed897de7c655f9d5c1eaf1cd9517db96c9a3861f648b" 921 + checksum = "68ccbd3153aa153b2f5eff557537ffce81e4dd6c50ae0eddc41dc8d0c388436f" 859 922 860 923 [[package]] 861 924 name = "cadence" 862 - version = "0.29.1" 925 + version = "1.4.0" 863 926 source = "registry+https://github.com/rust-lang/crates.io-index" 864 - checksum = "f39286bc075b023101dccdb79456a1334221c768b8faede0c2aff7ed29a9482d" 927 + checksum = "2f338b979d9ebfff4bb9801ae8f3af0dc3615f7f1ca963f2e4782bcf9acb3753" 865 928 dependencies = [ 866 929 "crossbeam-channel", 867 930 ] 868 931 869 932 [[package]] 870 - name = "camino" 871 - version = "1.1.6" 872 - source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 874 - dependencies = [ 875 - "serde", 876 - ] 877 - 878 - [[package]] 879 - name = "cargo-platform" 880 - version = "0.1.5" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "e34637b3140142bdf929fb439e8aa4ebad7651ebf7b1080b3930aa16ac1459ff" 883 - dependencies = [ 884 - "serde", 885 - ] 886 - 887 - [[package]] 888 - name = "cargo_metadata" 889 - version = "0.14.2" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 892 - dependencies = [ 893 - "camino", 894 - "cargo-platform", 895 - "semver 1.0.20", 896 - "serde", 897 - "serde_json", 898 - ] 899 - 900 - [[package]] 901 933 name = "cc" 902 - version = "1.0.83" 934 + version = "1.1.0" 903 935 source = "registry+https://github.com/rust-lang/crates.io-index" 904 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 936 + checksum = "eaff6f8ce506b9773fa786672d63fc7a191ffea1be33f72bbd4aeacefca9ffc8" 905 937 dependencies = [ 906 938 "jobserver", 907 939 "libc", 940 + "once_cell", 908 941 ] 909 942 910 943 [[package]] ··· 924 957 925 958 [[package]] 926 959 name = "chrono" 927 - version = "0.4.31" 960 + version = "0.4.38" 928 961 source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 962 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 930 963 dependencies = [ 931 964 "android-tzdata", 932 965 "iana-time-zone", ··· 934 967 "num-traits", 935 968 "serde", 936 969 "wasm-bindgen", 937 - "windows-targets 0.48.5", 970 + "windows-targets 0.52.6", 938 971 ] 939 972 940 973 [[package]] ··· 945 978 946 979 [[package]] 947 980 name = "clang-sys" 948 - version = "1.6.1" 981 + version = "1.8.1" 949 982 source = "registry+https://github.com/rust-lang/crates.io-index" 950 - checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 983 + checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 951 984 dependencies = [ 952 985 "glob", 953 986 "libc", ··· 956 989 957 990 [[package]] 958 991 name = "clap" 959 - version = "4.4.8" 992 + version = "4.5.9" 960 993 source = "registry+https://github.com/rust-lang/crates.io-index" 961 - checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" 994 + checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462" 962 995 dependencies = [ 963 996 "clap_builder", 964 997 "clap_derive", ··· 966 999 967 1000 [[package]] 968 1001 name = "clap_builder" 969 - version = "4.4.8" 1002 + version = "4.5.9" 970 1003 source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" 1004 + checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942" 972 1005 dependencies = [ 973 1006 "anstream", 974 1007 "anstyle", ··· 978 1011 979 1012 [[package]] 980 1013 name = "clap_derive" 981 - version = "4.4.7" 1014 + version = "4.5.8" 982 1015 source = "registry+https://github.com/rust-lang/crates.io-index" 983 - checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 1016 + checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085" 984 1017 dependencies = [ 985 - "heck", 1018 + "heck 0.5.0", 986 1019 "proc-macro2", 987 1020 "quote", 988 - "syn 2.0.39", 1021 + "syn", 989 1022 ] 990 1023 991 1024 [[package]] 992 1025 name = "clap_lex" 993 - version = "0.6.0" 1026 + version = "0.7.1" 994 1027 source = "registry+https://github.com/rust-lang/crates.io-index" 995 - checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 1028 + checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 996 1029 997 1030 [[package]] 998 1031 name = "cmake" ··· 1005 1038 1006 1039 [[package]] 1007 1040 name = "colorchoice" 1008 - version = "1.0.0" 1041 + version = "1.0.1" 1009 1042 source = "registry+https://github.com/rust-lang/crates.io-index" 1010 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 1043 + checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 1044 + 1045 + [[package]] 1046 + name = "concurrent-queue" 1047 + version = "2.5.0" 1048 + source = "registry+https://github.com/rust-lang/crates.io-index" 1049 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1050 + dependencies = [ 1051 + "crossbeam-utils", 1052 + ] 1011 1053 1012 1054 [[package]] 1013 1055 name = "console" 1014 - version = "0.15.7" 1056 + version = "0.15.8" 1015 1057 source = "registry+https://github.com/rust-lang/crates.io-index" 1016 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 1058 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 1017 1059 dependencies = [ 1018 1060 "encode_unicode 0.3.6", 1019 1061 "lazy_static", 1020 1062 "libc", 1021 1063 "unicode-width", 1022 - "windows-sys 0.45.0", 1064 + "windows-sys 0.52.0", 1023 1065 ] 1024 1066 1025 1067 [[package]] 1068 + name = "const-oid" 1069 + version = "0.9.6" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1072 + 1073 + [[package]] 1026 1074 name = "core-foundation" 1027 - version = "0.9.3" 1075 + version = "0.9.4" 1028 1076 source = "registry+https://github.com/rust-lang/crates.io-index" 1029 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1077 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1030 1078 dependencies = [ 1031 1079 "core-foundation-sys", 1032 1080 "libc", ··· 1034 1082 1035 1083 [[package]] 1036 1084 name = "core-foundation-sys" 1037 - version = "0.8.4" 1085 + version = "0.8.6" 1038 1086 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1087 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1040 1088 1041 1089 [[package]] 1042 1090 name = "cpp_demangle" ··· 1048 1096 1049 1097 [[package]] 1050 1098 name = "cpufeatures" 1051 - version = "0.2.11" 1099 + version = "0.2.12" 1052 1100 source = "registry+https://github.com/rust-lang/crates.io-index" 1053 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1101 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1054 1102 dependencies = [ 1055 1103 "libc", 1056 1104 ] 1057 1105 1058 1106 [[package]] 1059 1107 name = "crc32c" 1060 - version = "0.6.4" 1108 + version = "0.6.8" 1061 1109 source = "registry+https://github.com/rust-lang/crates.io-index" 1062 - checksum = "d8f48d60e5b4d2c53d5c2b1d8a58c849a70ae5e5509b08a48d047e3b65714a74" 1110 + checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" 1063 1111 dependencies = [ 1064 1112 "rustc_version 0.4.0", 1065 1113 ] 1066 1114 1067 1115 [[package]] 1068 1116 name = "crc32fast" 1069 - version = "1.3.2" 1117 + version = "1.4.2" 1070 1118 source = "registry+https://github.com/rust-lang/crates.io-index" 1071 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1119 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 1072 1120 dependencies = [ 1073 1121 "cfg-if", 1074 1122 ] 1075 1123 1076 1124 [[package]] 1077 1125 name = "crossbeam-channel" 1078 - version = "0.5.8" 1126 + version = "0.5.13" 1079 1127 source = "registry+https://github.com/rust-lang/crates.io-index" 1080 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1128 + checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 1081 1129 dependencies = [ 1082 - "cfg-if", 1083 1130 "crossbeam-utils", 1084 1131 ] 1085 1132 1086 1133 [[package]] 1087 1134 name = "crossbeam-deque" 1088 - version = "0.8.3" 1135 + version = "0.8.5" 1089 1136 source = "registry+https://github.com/rust-lang/crates.io-index" 1090 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1137 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1091 1138 dependencies = [ 1092 - "cfg-if", 1093 1139 "crossbeam-epoch", 1094 1140 "crossbeam-utils", 1095 1141 ] 1096 1142 1097 1143 [[package]] 1098 1144 name = "crossbeam-epoch" 1099 - version = "0.9.15" 1145 + version = "0.9.18" 1100 1146 source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 1147 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1102 1148 dependencies = [ 1103 - "autocfg", 1104 - "cfg-if", 1105 1149 "crossbeam-utils", 1106 - "memoffset", 1107 - "scopeguard", 1108 1150 ] 1109 1151 1110 1152 [[package]] 1111 1153 name = "crossbeam-utils" 1112 - version = "0.8.16" 1154 + version = "0.8.20" 1113 1155 source = "registry+https://github.com/rust-lang/crates.io-index" 1114 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 1115 - dependencies = [ 1116 - "cfg-if", 1117 - ] 1156 + checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 1118 1157 1119 1158 [[package]] 1120 1159 name = "crossterm" 1121 - version = "0.19.0" 1160 + version = "0.27.0" 1122 1161 source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "7c36c10130df424b2f3552fcc2ddcd9b28a27b1e54b358b45874f88d1ca6888c" 1162 + checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" 1124 1163 dependencies = [ 1125 - "bitflags 1.3.2", 1164 + "bitflags 2.6.0", 1126 1165 "crossterm_winapi", 1127 - "lazy_static", 1128 1166 "libc", 1129 - "mio 0.7.14", 1130 - "parking_lot 0.11.2", 1167 + "mio", 1168 + "parking_lot", 1131 1169 "signal-hook", 1170 + "signal-hook-mio", 1132 1171 "winapi", 1133 1172 ] 1134 1173 1135 1174 [[package]] 1136 1175 name = "crossterm_winapi" 1137 - version = "0.7.0" 1176 + version = "0.9.1" 1138 1177 source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "0da8964ace4d3e4a044fd027919b2237000b24315a37c916f61809f1ff2140b9" 1178 + checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 1140 1179 dependencies = [ 1141 1180 "winapi", 1142 1181 ] 1143 1182 1144 1183 [[package]] 1184 + name = "crypto-bigint" 1185 + version = "0.4.9" 1186 + source = "registry+https://github.com/rust-lang/crates.io-index" 1187 + checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 1188 + dependencies = [ 1189 + "generic-array", 1190 + "rand_core", 1191 + "subtle", 1192 + "zeroize", 1193 + ] 1194 + 1195 + [[package]] 1196 + name = "crypto-bigint" 1197 + version = "0.5.5" 1198 + source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1200 + dependencies = [ 1201 + "rand_core", 1202 + "subtle", 1203 + ] 1204 + 1205 + [[package]] 1145 1206 name = "crypto-common" 1146 1207 version = "0.1.6" 1147 1208 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1174 1235 1175 1236 [[package]] 1176 1237 name = "custom_debug" 1177 - version = "0.5.1" 1238 + version = "0.6.1" 1178 1239 source = "registry+https://github.com/rust-lang/crates.io-index" 1179 - checksum = "e89e0ae2c2a42be29595d05c50e3ce6096c0698a97e021c3289790f0750cc8e2" 1240 + checksum = "14e715bf0e503e909c7076c052e39dd215202e8edeb32f1c194fd630c314d256" 1180 1241 dependencies = [ 1181 1242 "custom_debug_derive", 1182 1243 ] 1183 1244 1184 1245 [[package]] 1185 1246 name = "custom_debug_derive" 1186 - version = "0.5.1" 1247 + version = "0.6.1" 1187 1248 source = "registry+https://github.com/rust-lang/crates.io-index" 1188 - checksum = "08a9f3941234c9f62ceaa2782974827749de9b0a8a6487275a278da068e1baf7" 1249 + checksum = "f731440b39c73910e253cb465ec1fac97732b3c7af215639881ec0c2a38f4f69" 1189 1250 dependencies = [ 1251 + "darling", 1252 + "itertools 0.12.1", 1190 1253 "proc-macro2", 1191 - "syn 1.0.109", 1254 + "quote", 1255 + "syn", 1192 1256 "synstructure", 1193 1257 ] 1194 1258 1195 1259 [[package]] 1260 + name = "darling" 1261 + version = "0.20.10" 1262 + source = "registry+https://github.com/rust-lang/crates.io-index" 1263 + checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 1264 + dependencies = [ 1265 + "darling_core", 1266 + "darling_macro", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "darling_core" 1271 + version = "0.20.10" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 1274 + dependencies = [ 1275 + "fnv", 1276 + "ident_case", 1277 + "proc-macro2", 1278 + "quote", 1279 + "strsim", 1280 + "syn", 1281 + ] 1282 + 1283 + [[package]] 1284 + name = "darling_macro" 1285 + version = "0.20.10" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 1288 + dependencies = [ 1289 + "darling_core", 1290 + "quote", 1291 + "syn", 1292 + ] 1293 + 1294 + [[package]] 1196 1295 name = "data-encoding" 1197 - version = "2.5.0" 1296 + version = "2.6.0" 1198 1297 source = "registry+https://github.com/rust-lang/crates.io-index" 1199 - checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 1298 + checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 1200 1299 1201 1300 [[package]] 1202 1301 name = "data-url" ··· 1215 1314 ] 1216 1315 1217 1316 [[package]] 1317 + name = "der" 1318 + version = "0.6.1" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 1321 + dependencies = [ 1322 + "const-oid", 1323 + "zeroize", 1324 + ] 1325 + 1326 + [[package]] 1218 1327 name = "deranged" 1219 - version = "0.3.9" 1328 + version = "0.3.11" 1220 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1330 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1222 1331 dependencies = [ 1223 1332 "powerfmt", 1224 - "serde", 1333 + ] 1334 + 1335 + [[package]] 1336 + name = "derive_arbitrary" 1337 + version = "1.3.2" 1338 + source = "registry+https://github.com/rust-lang/crates.io-index" 1339 + checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 1340 + dependencies = [ 1341 + "proc-macro2", 1342 + "quote", 1343 + "syn", 1225 1344 ] 1226 1345 1227 1346 [[package]] ··· 1278 1397 ] 1279 1398 1280 1399 [[package]] 1400 + name = "displaydoc" 1401 + version = "0.2.5" 1402 + source = "registry+https://github.com/rust-lang/crates.io-index" 1403 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1404 + dependencies = [ 1405 + "proc-macro2", 1406 + "quote", 1407 + "syn", 1408 + ] 1409 + 1410 + [[package]] 1281 1411 name = "dmsort" 1282 1412 version = "1.0.2" 1283 1413 source = "registry+https://github.com/rust-lang/crates.io-index" 1284 1414 checksum = "f0bc8fbe9441c17c9f46f75dfe27fa1ddb6c68a461ccaed0481419219d4f10d3" 1285 1415 1286 1416 [[package]] 1417 + name = "ecdsa" 1418 + version = "0.14.8" 1419 + source = "registry+https://github.com/rust-lang/crates.io-index" 1420 + checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 1421 + dependencies = [ 1422 + "der", 1423 + "elliptic-curve", 1424 + "rfc6979", 1425 + "signature", 1426 + ] 1427 + 1428 + [[package]] 1287 1429 name = "either" 1288 - version = "1.9.0" 1430 + version = "1.13.0" 1289 1431 source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1432 + checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1291 1433 1292 1434 [[package]] 1293 1435 name = "elementtree" ··· 1299 1441 ] 1300 1442 1301 1443 [[package]] 1444 + name = "elliptic-curve" 1445 + version = "0.12.3" 1446 + source = "registry+https://github.com/rust-lang/crates.io-index" 1447 + checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 1448 + dependencies = [ 1449 + "base16ct", 1450 + "crypto-bigint 0.4.9", 1451 + "der", 1452 + "digest", 1453 + "ff", 1454 + "generic-array", 1455 + "group", 1456 + "pkcs8", 1457 + "rand_core", 1458 + "sec1", 1459 + "subtle", 1460 + "zeroize", 1461 + ] 1462 + 1463 + [[package]] 1302 1464 name = "elsa" 1303 - version = "1.9.0" 1465 + version = "1.10.0" 1304 1466 source = "registry+https://github.com/rust-lang/crates.io-index" 1305 - checksum = "714f766f3556b44e7e4776ad133fcc3445a489517c25c704ace411bb14790194" 1467 + checksum = "d98e71ae4df57d214182a2e5cb90230c0192c6ddfcaa05c36453d46a54713e10" 1306 1468 dependencies = [ 1307 1469 "stable_deref_trait", 1308 1470 ] ··· 1321 1483 1322 1484 [[package]] 1323 1485 name = "encoding_rs" 1324 - version = "0.8.33" 1486 + version = "0.8.34" 1325 1487 source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1488 + checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 1327 1489 dependencies = [ 1328 1490 "cfg-if", 1329 1491 ] ··· 1334 1496 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 1497 checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 1336 1498 dependencies = [ 1337 - "heck", 1499 + "heck 0.4.1", 1338 1500 "proc-macro2", 1339 1501 "quote", 1340 - "syn 2.0.39", 1502 + "syn", 1341 1503 ] 1342 1504 1343 1505 [[package]] ··· 1348 1510 1349 1511 [[package]] 1350 1512 name = "errno" 1351 - version = "0.3.7" 1513 + version = "0.3.9" 1352 1514 source = "registry+https://github.com/rust-lang/crates.io-index" 1353 - checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8" 1515 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1354 1516 dependencies = [ 1355 1517 "libc", 1356 - "windows-sys 0.48.0", 1518 + "windows-sys 0.52.0", 1357 1519 ] 1358 1520 1359 1521 [[package]] 1360 - name = "error-chain" 1361 - version = "0.12.4" 1522 + name = "event-listener" 1523 + version = "5.3.1" 1362 1524 source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 1525 + checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1364 1526 dependencies = [ 1365 - "version_check", 1527 + "concurrent-queue", 1528 + "parking", 1529 + "pin-project-lite", 1366 1530 ] 1367 1531 1368 1532 [[package]] 1369 - name = "event-listener" 1370 - version = "2.5.3" 1533 + name = "event-listener-strategy" 1534 + version = "0.5.2" 1371 1535 source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1536 + checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1537 + dependencies = [ 1538 + "event-listener", 1539 + "pin-project-lite", 1540 + ] 1373 1541 1374 1542 [[package]] 1375 1543 name = "fallible-iterator" ··· 1385 1553 1386 1554 [[package]] 1387 1555 name = "fastrand" 1388 - version = "2.0.1" 1556 + version = "2.1.0" 1557 + source = "registry+https://github.com/rust-lang/crates.io-index" 1558 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1559 + 1560 + [[package]] 1561 + name = "ff" 1562 + version = "0.12.1" 1389 1563 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1564 + checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 1565 + dependencies = [ 1566 + "rand_core", 1567 + "subtle", 1568 + ] 1391 1569 1392 1570 [[package]] 1393 1571 name = "filetime" 1394 - version = "0.2.22" 1572 + version = "0.2.23" 1395 1573 source = "registry+https://github.com/rust-lang/crates.io-index" 1396 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1574 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1397 1575 dependencies = [ 1398 1576 "cfg-if", 1399 1577 "libc", 1400 - "redox_syscall 0.3.5", 1401 - "windows-sys 0.48.0", 1578 + "redox_syscall 0.4.1", 1579 + "windows-sys 0.52.0", 1402 1580 ] 1403 1581 1404 1582 [[package]] ··· 1415 1593 1416 1594 [[package]] 1417 1595 name = "flate2" 1418 - version = "1.0.28" 1596 + version = "1.0.30" 1419 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1420 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1598 + checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 1421 1599 dependencies = [ 1422 1600 "crc32fast", 1423 1601 "miniz_oxide", ··· 1455 1633 1456 1634 [[package]] 1457 1635 name = "from_variant" 1458 - version = "0.1.6" 1636 + version = "0.1.8" 1459 1637 source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f" 1638 + checksum = "fdc9cc75639b041067353b9bce2450d6847e547276c6fbe4487d7407980e07db" 1461 1639 dependencies = [ 1462 - "pmutil", 1463 1640 "proc-macro2", 1464 1641 "swc_macros_common", 1465 - "syn 2.0.39", 1642 + "syn", 1466 1643 ] 1467 1644 1468 1645 [[package]] 1646 + name = "funty" 1647 + version = "2.0.0" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1650 + 1651 + [[package]] 1469 1652 name = "futures" 1470 - version = "0.3.29" 1653 + version = "0.3.30" 1471 1654 source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1655 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1473 1656 dependencies = [ 1474 1657 "futures-channel", 1475 1658 "futures-core", ··· 1482 1665 1483 1666 [[package]] 1484 1667 name = "futures-channel" 1485 - version = "0.3.29" 1668 + version = "0.3.30" 1486 1669 source = "registry+https://github.com/rust-lang/crates.io-index" 1487 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1670 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1488 1671 dependencies = [ 1489 1672 "futures-core", 1490 1673 "futures-sink", ··· 1492 1675 1493 1676 [[package]] 1494 1677 name = "futures-core" 1495 - version = "0.3.29" 1678 + version = "0.3.30" 1496 1679 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1680 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1498 1681 1499 1682 [[package]] 1500 1683 name = "futures-executor" 1501 - version = "0.3.29" 1684 + version = "0.3.30" 1502 1685 source = "registry+https://github.com/rust-lang/crates.io-index" 1503 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1686 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1504 1687 dependencies = [ 1505 1688 "futures-core", 1506 1689 "futures-task", ··· 1509 1692 1510 1693 [[package]] 1511 1694 name = "futures-io" 1512 - version = "0.3.29" 1695 + version = "0.3.30" 1513 1696 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1697 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1515 1698 1516 1699 [[package]] 1517 1700 name = "futures-macro" 1518 - version = "0.3.29" 1701 + version = "0.3.30" 1519 1702 source = "registry+https://github.com/rust-lang/crates.io-index" 1520 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1703 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1521 1704 dependencies = [ 1522 1705 "proc-macro2", 1523 1706 "quote", 1524 - "syn 2.0.39", 1707 + "syn", 1525 1708 ] 1526 1709 1527 1710 [[package]] 1528 1711 name = "futures-sink" 1529 - version = "0.3.29" 1712 + version = "0.3.30" 1530 1713 source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1714 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1532 1715 1533 1716 [[package]] 1534 1717 name = "futures-task" 1535 - version = "0.3.29" 1718 + version = "0.3.30" 1536 1719 source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1720 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1538 1721 1539 1722 [[package]] 1540 1723 name = "futures-util" 1541 - version = "0.3.29" 1724 + version = "0.3.30" 1542 1725 source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1726 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1544 1727 dependencies = [ 1545 1728 "futures-channel", 1546 1729 "futures-core", ··· 1556 1739 1557 1740 [[package]] 1558 1741 name = "gcp_auth" 1559 - version = "0.9.0" 1742 + version = "0.12.2" 1560 1743 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "7d3b20d3058763d26d88e6e7a49998841e5296735b00dbfb064ff7cb142933dd" 1744 + checksum = "536c79e79dde296a800738474691e97031769bed9b54e6dd0401b169d35d693d" 1562 1745 dependencies = [ 1563 1746 "async-trait", 1564 - "base64", 1565 - "dirs-next", 1566 - "hyper", 1567 - "hyper-rustls", 1568 - "ring 0.16.20", 1569 - "rustls", 1570 - "rustls-pemfile", 1747 + "base64 0.22.1", 1748 + "bytes", 1749 + "chrono", 1750 + "home", 1751 + "http 1.1.0", 1752 + "http-body-util", 1753 + "hyper 1.4.1", 1754 + "hyper-rustls 0.27.2", 1755 + "hyper-util", 1756 + "ring", 1757 + "rustls-pemfile 2.1.2", 1571 1758 "serde", 1572 1759 "serde_json", 1573 1760 "thiserror", 1574 - "time", 1575 1761 "tokio", 1576 1762 "tracing", 1577 1763 "tracing-futures", 1578 1764 "url", 1579 - "which", 1580 1765 ] 1581 1766 1582 1767 [[package]] ··· 1591 1776 1592 1777 [[package]] 1593 1778 name = "getrandom" 1594 - version = "0.2.11" 1779 + version = "0.2.15" 1595 1780 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1781 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1597 1782 dependencies = [ 1598 1783 "cfg-if", 1784 + "js-sys", 1599 1785 "libc", 1600 1786 "wasi", 1787 + "wasm-bindgen", 1601 1788 ] 1602 1789 1603 1790 [[package]] 1604 1791 name = "gimli" 1605 - version = "0.28.1" 1792 + version = "0.29.0" 1793 + source = "registry+https://github.com/rust-lang/crates.io-index" 1794 + checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 1795 + 1796 + [[package]] 1797 + name = "gimli" 1798 + version = "0.30.0" 1606 1799 source = "registry+https://github.com/rust-lang/crates.io-index" 1607 - checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1800 + checksum = "e2e1d97fbe9722ba9bbd0c97051c2956e726562b61f86a25a4360398a40edfc9" 1608 1801 dependencies = [ 1609 1802 "fallible-iterator 0.3.0", 1610 1803 "stable_deref_trait", ··· 1618 1811 1619 1812 [[package]] 1620 1813 name = "goblin" 1621 - version = "0.7.1" 1814 + version = "0.8.2" 1622 1815 source = "registry+https://github.com/rust-lang/crates.io-index" 1623 - checksum = "f27c1b4369c2cd341b5de549380158b105a04c331be5db9110eef7b6d2742134" 1816 + checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47" 1624 1817 dependencies = [ 1625 1818 "log", 1626 1819 "plain", 1627 - "scroll", 1820 + "scroll 0.12.0", 1821 + ] 1822 + 1823 + [[package]] 1824 + name = "group" 1825 + version = "0.12.1" 1826 + source = "registry+https://github.com/rust-lang/crates.io-index" 1827 + checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 1828 + dependencies = [ 1829 + "ff", 1830 + "rand_core", 1831 + "subtle", 1628 1832 ] 1629 1833 1630 1834 [[package]] 1631 1835 name = "h2" 1632 - version = "0.3.22" 1836 + version = "0.3.26" 1633 1837 source = "registry+https://github.com/rust-lang/crates.io-index" 1634 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 1838 + checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 1635 1839 dependencies = [ 1636 1840 "bytes", 1637 1841 "fnv", 1638 1842 "futures-core", 1639 1843 "futures-sink", 1640 1844 "futures-util", 1641 - "http", 1845 + "http 0.2.12", 1846 + "indexmap", 1847 + "slab", 1848 + "tokio", 1849 + "tokio-util", 1850 + "tracing", 1851 + ] 1852 + 1853 + [[package]] 1854 + name = "h2" 1855 + version = "0.4.5" 1856 + source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" 1858 + dependencies = [ 1859 + "atomic-waker", 1860 + "bytes", 1861 + "fnv", 1862 + "futures-core", 1863 + "futures-sink", 1864 + "http 1.1.0", 1642 1865 "indexmap", 1643 1866 "slab", 1644 1867 "tokio", ··· 1648 1871 1649 1872 [[package]] 1650 1873 name = "hashbrown" 1651 - version = "0.14.3" 1874 + version = "0.14.5" 1652 1875 source = "registry+https://github.com/rust-lang/crates.io-index" 1653 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1876 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1877 + dependencies = [ 1878 + "ahash", 1879 + "allocator-api2", 1880 + "serde", 1881 + ] 1654 1882 1655 1883 [[package]] 1656 1884 name = "heck" ··· 1659 1887 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1660 1888 1661 1889 [[package]] 1890 + name = "heck" 1891 + version = "0.5.0" 1892 + source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1894 + 1895 + [[package]] 1662 1896 name = "hermit-abi" 1663 - version = "0.3.3" 1897 + version = "0.3.9" 1664 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1665 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1899 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1666 1900 1667 1901 [[package]] 1668 1902 name = "hex" ··· 1671 1905 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1672 1906 1673 1907 [[package]] 1908 + name = "hickory-proto" 1909 + version = "0.24.1" 1910 + source = "registry+https://github.com/rust-lang/crates.io-index" 1911 + checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" 1912 + dependencies = [ 1913 + "async-trait", 1914 + "cfg-if", 1915 + "data-encoding", 1916 + "enum-as-inner", 1917 + "futures-channel", 1918 + "futures-io", 1919 + "futures-util", 1920 + "idna 0.4.0", 1921 + "ipnet", 1922 + "once_cell", 1923 + "rand", 1924 + "thiserror", 1925 + "tinyvec", 1926 + "tokio", 1927 + "tracing", 1928 + "url", 1929 + ] 1930 + 1931 + [[package]] 1932 + name = "hickory-resolver" 1933 + version = "0.24.1" 1934 + source = "registry+https://github.com/rust-lang/crates.io-index" 1935 + checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" 1936 + dependencies = [ 1937 + "cfg-if", 1938 + "futures-util", 1939 + "hickory-proto", 1940 + "ipconfig", 1941 + "lru-cache", 1942 + "once_cell", 1943 + "parking_lot", 1944 + "rand", 1945 + "resolv-conf", 1946 + "smallvec", 1947 + "thiserror", 1948 + "tokio", 1949 + "tracing", 1950 + ] 1951 + 1952 + [[package]] 1674 1953 name = "hmac" 1675 1954 version = "0.12.1" 1676 1955 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1681 1960 1682 1961 [[package]] 1683 1962 name = "home" 1684 - version = "0.5.5" 1963 + version = "0.5.9" 1685 1964 source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1965 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1687 1966 dependencies = [ 1688 - "windows-sys 0.48.0", 1967 + "windows-sys 0.52.0", 1689 1968 ] 1690 1969 1691 1970 [[package]] ··· 1700 1979 ] 1701 1980 1702 1981 [[package]] 1982 + name = "hostname" 1983 + version = "0.4.0" 1984 + source = "registry+https://github.com/rust-lang/crates.io-index" 1985 + checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba" 1986 + dependencies = [ 1987 + "cfg-if", 1988 + "libc", 1989 + "windows", 1990 + ] 1991 + 1992 + [[package]] 1993 + name = "hstr" 1994 + version = "0.2.10" 1995 + source = "registry+https://github.com/rust-lang/crates.io-index" 1996 + checksum = "96274be293b8877e61974a607105d09c84caebe9620b47774aa8a6b942042dd4" 1997 + dependencies = [ 1998 + "hashbrown", 1999 + "new_debug_unreachable", 2000 + "once_cell", 2001 + "phf", 2002 + "rustc-hash 1.1.0", 2003 + "triomphe", 2004 + ] 2005 + 2006 + [[package]] 1703 2007 name = "http" 1704 - version = "0.2.11" 2008 + version = "0.2.12" 2009 + source = "registry+https://github.com/rust-lang/crates.io-index" 2010 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2011 + dependencies = [ 2012 + "bytes", 2013 + "fnv", 2014 + "itoa", 2015 + ] 2016 + 2017 + [[package]] 2018 + name = "http" 2019 + version = "1.1.0" 1705 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 1706 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2021 + checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 1707 2022 dependencies = [ 1708 2023 "bytes", 1709 2024 "fnv", ··· 1712 2027 1713 2028 [[package]] 1714 2029 name = "http-body" 1715 - version = "0.4.5" 2030 + version = "0.4.6" 2031 + source = "registry+https://github.com/rust-lang/crates.io-index" 2032 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2033 + dependencies = [ 2034 + "bytes", 2035 + "http 0.2.12", 2036 + "pin-project-lite", 2037 + ] 2038 + 2039 + [[package]] 2040 + name = "http-body" 2041 + version = "1.0.0" 2042 + source = "registry+https://github.com/rust-lang/crates.io-index" 2043 + checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2044 + dependencies = [ 2045 + "bytes", 2046 + "http 1.1.0", 2047 + ] 2048 + 2049 + [[package]] 2050 + name = "http-body-util" 2051 + version = "0.1.2" 1716 2052 source = "registry+https://github.com/rust-lang/crates.io-index" 1717 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2053 + checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 1718 2054 dependencies = [ 1719 2055 "bytes", 1720 - "http", 2056 + "futures-util", 2057 + "http 1.1.0", 2058 + "http-body 1.0.0", 1721 2059 "pin-project-lite", 1722 2060 ] 1723 2061 1724 2062 [[package]] 1725 2063 name = "http-range-header" 1726 - version = "0.3.1" 2064 + version = "0.4.1" 1727 2065 source = "registry+https://github.com/rust-lang/crates.io-index" 1728 - checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" 2066 + checksum = "08a397c49fec283e3d6211adbe480be95aae5f304cfb923e9970e08956d5168a" 1729 2067 1730 2068 [[package]] 1731 2069 name = "httparse" 1732 - version = "1.8.0" 2070 + version = "1.9.4" 1733 2071 source = "registry+https://github.com/rust-lang/crates.io-index" 1734 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2072 + checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 1735 2073 1736 2074 [[package]] 1737 2075 name = "httpdate" ··· 1757 2095 1758 2096 [[package]] 1759 2097 name = "hyper" 1760 - version = "0.14.27" 2098 + version = "0.14.30" 1761 2099 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 2100 + checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" 1763 2101 dependencies = [ 1764 2102 "bytes", 1765 2103 "futures-channel", 1766 2104 "futures-core", 1767 2105 "futures-util", 1768 - "h2", 1769 - "http", 1770 - "http-body", 2106 + "h2 0.3.26", 2107 + "http 0.2.12", 2108 + "http-body 0.4.6", 1771 2109 "httparse", 1772 2110 "httpdate", 1773 2111 "itoa", 1774 2112 "pin-project-lite", 1775 - "socket2 0.4.10", 2113 + "socket2", 1776 2114 "tokio", 1777 2115 "tower-service", 1778 2116 "tracing", ··· 1780 2118 ] 1781 2119 1782 2120 [[package]] 2121 + name = "hyper" 2122 + version = "1.4.1" 2123 + source = "registry+https://github.com/rust-lang/crates.io-index" 2124 + checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 2125 + dependencies = [ 2126 + "bytes", 2127 + "futures-channel", 2128 + "futures-util", 2129 + "h2 0.4.5", 2130 + "http 1.1.0", 2131 + "http-body 1.0.0", 2132 + "httparse", 2133 + "httpdate", 2134 + "itoa", 2135 + "pin-project-lite", 2136 + "smallvec", 2137 + "tokio", 2138 + "want", 2139 + ] 2140 + 2141 + [[package]] 1783 2142 name = "hyper-rustls" 1784 2143 version = "0.24.2" 1785 2144 source = "registry+https://github.com/rust-lang/crates.io-index" 1786 2145 checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1787 2146 dependencies = [ 1788 2147 "futures-util", 1789 - "http", 1790 - "hyper", 2148 + "http 0.2.12", 2149 + "hyper 0.14.30", 1791 2150 "log", 1792 - "rustls", 1793 - "rustls-native-certs", 2151 + "rustls 0.21.12", 2152 + "rustls-native-certs 0.6.3", 2153 + "tokio", 2154 + "tokio-rustls 0.24.1", 2155 + ] 2156 + 2157 + [[package]] 2158 + name = "hyper-rustls" 2159 + version = "0.27.2" 2160 + source = "registry+https://github.com/rust-lang/crates.io-index" 2161 + checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" 2162 + dependencies = [ 2163 + "futures-util", 2164 + "http 1.1.0", 2165 + "hyper 1.4.1", 2166 + "hyper-util", 2167 + "rustls 0.23.11", 2168 + "rustls-native-certs 0.7.1", 2169 + "rustls-pki-types", 1794 2170 "tokio", 1795 - "tokio-rustls", 2171 + "tokio-rustls 0.26.0", 2172 + "tower-service", 1796 2173 ] 1797 2174 1798 2175 [[package]] 1799 2176 name = "hyper-tls" 1800 - version = "0.5.0" 2177 + version = "0.6.0" 1801 2178 source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2179 + checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1803 2180 dependencies = [ 1804 2181 "bytes", 1805 - "hyper", 2182 + "http-body-util", 2183 + "hyper 1.4.1", 2184 + "hyper-util", 1806 2185 "native-tls", 1807 2186 "tokio", 1808 2187 "tokio-native-tls", 2188 + "tower-service", 2189 + ] 2190 + 2191 + [[package]] 2192 + name = "hyper-util" 2193 + version = "0.1.6" 2194 + source = "registry+https://github.com/rust-lang/crates.io-index" 2195 + checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" 2196 + dependencies = [ 2197 + "bytes", 2198 + "futures-channel", 2199 + "futures-util", 2200 + "http 1.1.0", 2201 + "http-body 1.0.0", 2202 + "hyper 1.4.1", 2203 + "pin-project-lite", 2204 + "socket2", 2205 + "tokio", 2206 + "tower", 2207 + "tower-service", 2208 + "tracing", 1809 2209 ] 1810 2210 1811 2211 [[package]] 1812 2212 name = "iana-time-zone" 1813 - version = "0.1.58" 2213 + version = "0.1.60" 1814 2214 source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 2215 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1816 2216 dependencies = [ 1817 2217 "android_system_properties", 1818 2218 "core-foundation-sys", ··· 1832 2232 ] 1833 2233 1834 2234 [[package]] 2235 + name = "icu_collections" 2236 + version = "1.5.0" 2237 + source = "registry+https://github.com/rust-lang/crates.io-index" 2238 + checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 2239 + dependencies = [ 2240 + "displaydoc", 2241 + "yoke", 2242 + "zerofrom", 2243 + "zerovec", 2244 + ] 2245 + 2246 + [[package]] 2247 + name = "icu_locid" 2248 + version = "1.5.0" 2249 + source = "registry+https://github.com/rust-lang/crates.io-index" 2250 + checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 2251 + dependencies = [ 2252 + "displaydoc", 2253 + "litemap", 2254 + "tinystr", 2255 + "writeable", 2256 + "zerovec", 2257 + ] 2258 + 2259 + [[package]] 2260 + name = "icu_locid_transform" 2261 + version = "1.5.0" 2262 + source = "registry+https://github.com/rust-lang/crates.io-index" 2263 + checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 2264 + dependencies = [ 2265 + "displaydoc", 2266 + "icu_locid", 2267 + "icu_locid_transform_data", 2268 + "icu_provider", 2269 + "tinystr", 2270 + "zerovec", 2271 + ] 2272 + 2273 + [[package]] 2274 + name = "icu_locid_transform_data" 2275 + version = "1.5.0" 2276 + source = "registry+https://github.com/rust-lang/crates.io-index" 2277 + checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 2278 + 2279 + [[package]] 2280 + name = "icu_normalizer" 2281 + version = "1.5.0" 2282 + source = "registry+https://github.com/rust-lang/crates.io-index" 2283 + checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 2284 + dependencies = [ 2285 + "displaydoc", 2286 + "icu_collections", 2287 + "icu_normalizer_data", 2288 + "icu_properties", 2289 + "icu_provider", 2290 + "smallvec", 2291 + "utf16_iter", 2292 + "utf8_iter", 2293 + "write16", 2294 + "zerovec", 2295 + ] 2296 + 2297 + [[package]] 2298 + name = "icu_normalizer_data" 2299 + version = "1.5.0" 2300 + source = "registry+https://github.com/rust-lang/crates.io-index" 2301 + checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 2302 + 2303 + [[package]] 2304 + name = "icu_properties" 2305 + version = "1.5.1" 2306 + source = "registry+https://github.com/rust-lang/crates.io-index" 2307 + checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 2308 + dependencies = [ 2309 + "displaydoc", 2310 + "icu_collections", 2311 + "icu_locid_transform", 2312 + "icu_properties_data", 2313 + "icu_provider", 2314 + "tinystr", 2315 + "zerovec", 2316 + ] 2317 + 2318 + [[package]] 2319 + name = "icu_properties_data" 2320 + version = "1.5.0" 2321 + source = "registry+https://github.com/rust-lang/crates.io-index" 2322 + checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 2323 + 2324 + [[package]] 2325 + name = "icu_provider" 2326 + version = "1.5.0" 2327 + source = "registry+https://github.com/rust-lang/crates.io-index" 2328 + checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 2329 + dependencies = [ 2330 + "displaydoc", 2331 + "icu_locid", 2332 + "icu_provider_macros", 2333 + "stable_deref_trait", 2334 + "tinystr", 2335 + "writeable", 2336 + "yoke", 2337 + "zerofrom", 2338 + "zerovec", 2339 + ] 2340 + 2341 + [[package]] 2342 + name = "icu_provider_macros" 2343 + version = "1.5.0" 2344 + source = "registry+https://github.com/rust-lang/crates.io-index" 2345 + checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 2346 + dependencies = [ 2347 + "proc-macro2", 2348 + "quote", 2349 + "syn", 2350 + ] 2351 + 2352 + [[package]] 2353 + name = "ident_case" 2354 + version = "1.0.1" 2355 + source = "registry+https://github.com/rust-lang/crates.io-index" 2356 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2357 + 2358 + [[package]] 1835 2359 name = "idna" 1836 2360 version = "0.4.0" 1837 2361 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1852 2376 ] 1853 2377 1854 2378 [[package]] 2379 + name = "idna" 2380 + version = "1.0.2" 2381 + source = "registry+https://github.com/rust-lang/crates.io-index" 2382 + checksum = "bd69211b9b519e98303c015e21a007e293db403b6c85b9b124e133d25e242cdd" 2383 + dependencies = [ 2384 + "icu_normalizer", 2385 + "icu_properties", 2386 + "smallvec", 2387 + "utf8_iter", 2388 + ] 2389 + 2390 + [[package]] 1855 2391 name = "if_chain" 1856 2392 version = "1.0.2" 1857 2393 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1865 2401 1866 2402 [[package]] 1867 2403 name = "indexmap" 1868 - version = "2.1.0" 2404 + version = "2.2.6" 1869 2405 source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2406 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 1871 2407 dependencies = [ 1872 2408 "equivalent", 1873 2409 "hashbrown", 2410 + "serde", 1874 2411 ] 1875 2412 1876 2413 [[package]] ··· 1884 2421 1885 2422 [[package]] 1886 2423 name = "insta" 1887 - version = "1.34.0" 2424 + version = "1.39.0" 1888 2425 source = "registry+https://github.com/rust-lang/crates.io-index" 1889 - checksum = "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" 2426 + checksum = "810ae6042d48e2c9e9215043563a58a80b877bc863228a74cf10c49d4620a6f5" 1890 2427 dependencies = [ 1891 2428 "console", 1892 2429 "lazy_static", ··· 1895 2432 "pest_derive", 1896 2433 "serde", 1897 2434 "similar", 1898 - "yaml-rust", 1899 - ] 1900 - 1901 - [[package]] 1902 - name = "instant" 1903 - version = "0.1.12" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1906 - dependencies = [ 1907 - "cfg-if", 1908 2435 ] 1909 2436 1910 2437 [[package]] ··· 1913 2440 source = "registry+https://github.com/rust-lang/crates.io-index" 1914 2441 checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1915 2442 dependencies = [ 1916 - "socket2 0.5.5", 2443 + "socket2", 1917 2444 "widestring", 1918 2445 "windows-sys 0.48.0", 1919 - "winreg", 2446 + "winreg 0.50.0", 1920 2447 ] 1921 2448 1922 2449 [[package]] ··· 1936 2463 1937 2464 [[package]] 1938 2465 name = "is-macro" 1939 - version = "0.3.0" 2466 + version = "0.3.5" 1940 2467 source = "registry+https://github.com/rust-lang/crates.io-index" 1941 - checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e" 2468 + checksum = "59a85abdc13717906baccb5a1e435556ce0df215f242892f721dff62bf25288f" 1942 2469 dependencies = [ 1943 2470 "Inflector", 1944 - "pmutil", 1945 2471 "proc-macro2", 1946 2472 "quote", 1947 - "syn 2.0.39", 2473 + "syn", 1948 2474 ] 1949 2475 1950 2476 [[package]] 1951 2477 name = "is-terminal" 1952 - version = "0.4.9" 2478 + version = "0.4.12" 1953 2479 source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2480 + checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 1955 2481 dependencies = [ 1956 2482 "hermit-abi", 1957 - "rustix", 1958 - "windows-sys 0.48.0", 2483 + "libc", 2484 + "windows-sys 0.52.0", 2485 + ] 2486 + 2487 + [[package]] 2488 + name = "is_terminal_polyfill" 2489 + version = "1.70.0" 2490 + source = "registry+https://github.com/rust-lang/crates.io-index" 2491 + checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 2492 + 2493 + [[package]] 2494 + name = "itertools" 2495 + version = "0.12.1" 2496 + source = "registry+https://github.com/rust-lang/crates.io-index" 2497 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2498 + dependencies = [ 2499 + "either", 1959 2500 ] 1960 2501 1961 2502 [[package]] 1962 2503 name = "itertools" 1963 - version = "0.11.0" 2504 + version = "0.13.0" 1964 2505 source = "registry+https://github.com/rust-lang/crates.io-index" 1965 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2506 + checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1966 2507 dependencies = [ 1967 2508 "either", 1968 2509 ] 1969 2510 1970 2511 [[package]] 1971 2512 name = "itoa" 1972 - version = "1.0.9" 2513 + version = "1.0.11" 1973 2514 source = "registry+https://github.com/rust-lang/crates.io-index" 1974 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 2515 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1975 2516 1976 2517 [[package]] 1977 2518 name = "jemalloc-sys" ··· 1995 2536 1996 2537 [[package]] 1997 2538 name = "jobserver" 1998 - version = "0.1.27" 2539 + version = "0.1.31" 1999 2540 source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 2541 + checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2001 2542 dependencies = [ 2002 2543 "libc", 2003 2544 ] ··· 2010 2551 2011 2552 [[package]] 2012 2553 name = "js-source-scopes" 2013 - version = "0.4.0" 2554 + version = "0.5.0" 2014 2555 source = "registry+https://github.com/rust-lang/crates.io-index" 2015 - checksum = "e117dec2d000e8f702f662dc601e6f075b05b3cf7fc24f1afa09f39581c91a93" 2556 + checksum = "adfdc25288ccb82b33c3aa3f14587fd920b825690f3c4f8c5385b1d8998e9a40" 2016 2557 dependencies = [ 2017 2558 "indexmap", 2018 2559 "sourcemap", ··· 2025 2566 2026 2567 [[package]] 2027 2568 name = "js-sys" 2028 - version = "0.3.65" 2569 + version = "0.3.69" 2029 2570 source = "registry+https://github.com/rust-lang/crates.io-index" 2030 - checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 2571 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2031 2572 dependencies = [ 2032 2573 "wasm-bindgen", 2033 2574 ] 2034 2575 2035 2576 [[package]] 2036 2577 name = "jsonwebtoken" 2037 - version = "9.1.0" 2578 + version = "9.3.0" 2038 2579 source = "registry+https://github.com/rust-lang/crates.io-index" 2039 - checksum = "155c4d7e39ad04c172c5e3a99c434ea3b4a7ba7960b38ecd562b270b097cce09" 2580 + checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 2040 2581 dependencies = [ 2041 - "base64", 2582 + "base64 0.21.7", 2583 + "js-sys", 2042 2584 "pem", 2043 - "ring 0.17.5", 2585 + "ring", 2044 2586 "serde", 2045 2587 "serde_json", 2046 2588 "simple_asn1", ··· 2048 2590 2049 2591 [[package]] 2050 2592 name = "lazy_static" 2051 - version = "1.4.0" 2593 + version = "1.5.0" 2052 2594 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2595 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2054 2596 2055 2597 [[package]] 2056 2598 name = "lazycell" ··· 2066 2608 2067 2609 [[package]] 2068 2610 name = "libc" 2069 - version = "0.2.150" 2611 + version = "0.2.155" 2070 2612 source = "registry+https://github.com/rust-lang/crates.io-index" 2071 - checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 2613 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2072 2614 2073 2615 [[package]] 2074 2616 name = "libloading" 2075 - version = "0.7.4" 2617 + version = "0.8.4" 2076 2618 source = "registry+https://github.com/rust-lang/crates.io-index" 2077 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2619 + checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" 2078 2620 dependencies = [ 2079 2621 "cfg-if", 2080 - "winapi", 2622 + "windows-targets 0.52.6", 2081 2623 ] 2082 2624 2083 2625 [[package]] 2084 2626 name = "libredox" 2085 - version = "0.0.1" 2627 + version = "0.1.3" 2086 2628 source = "registry+https://github.com/rust-lang/crates.io-index" 2087 - checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2629 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2088 2630 dependencies = [ 2089 - "bitflags 2.4.1", 2631 + "bitflags 2.6.0", 2090 2632 "libc", 2091 - "redox_syscall 0.4.1", 2092 2633 ] 2093 2634 2094 2635 [[package]] ··· 2099 2640 2100 2641 [[package]] 2101 2642 name = "linux-raw-sys" 2102 - version = "0.4.11" 2643 + version = "0.4.14" 2103 2644 source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 2645 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2646 + 2647 + [[package]] 2648 + name = "litemap" 2649 + version = "0.7.3" 2650 + source = "registry+https://github.com/rust-lang/crates.io-index" 2651 + checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" 2105 2652 2106 2653 [[package]] 2107 2654 name = "lock_api" 2108 - version = "0.4.11" 2655 + version = "0.4.12" 2109 2656 source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2657 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2111 2658 dependencies = [ 2112 2659 "autocfg", 2113 2660 "scopeguard", 2114 2661 ] 2115 2662 2116 2663 [[package]] 2664 + name = "lockfree-object-pool" 2665 + version = "0.1.6" 2666 + source = "registry+https://github.com/rust-lang/crates.io-index" 2667 + checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 2668 + 2669 + [[package]] 2117 2670 name = "log" 2118 - version = "0.4.20" 2671 + version = "0.4.22" 2119 2672 source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2673 + checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 2121 2674 2122 2675 [[package]] 2123 - name = "lru-cache" 2124 - version = "0.1.2" 2676 + name = "lru" 2677 + version = "0.12.3" 2125 2678 source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2679 + checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 2127 2680 dependencies = [ 2128 - "linked-hash-map", 2681 + "hashbrown", 2129 2682 ] 2130 2683 2131 2684 [[package]] 2132 - name = "mach2" 2133 - version = "0.4.1" 2685 + name = "lru-cache" 2686 + version = "0.1.2" 2134 2687 source = "registry+https://github.com/rust-lang/crates.io-index" 2135 - checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 2688 + checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2136 2689 dependencies = [ 2137 - "libc", 2690 + "linked-hash-map", 2138 2691 ] 2139 2692 2140 2693 [[package]] ··· 2176 2729 2177 2730 [[package]] 2178 2731 name = "memchr" 2179 - version = "2.6.4" 2732 + version = "2.7.4" 2180 2733 source = "registry+https://github.com/rust-lang/crates.io-index" 2181 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2734 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 2182 2735 2183 2736 [[package]] 2184 2737 name = "memmap2" 2185 - version = "0.5.10" 2738 + version = "0.9.4" 2186 2739 source = "registry+https://github.com/rust-lang/crates.io-index" 2187 - checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 2740 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 2188 2741 dependencies = [ 2189 2742 "libc", 2190 2743 ] 2191 2744 2192 2745 [[package]] 2193 - name = "memmap2" 2194 - version = "0.8.0" 2195 - source = "registry+https://github.com/rust-lang/crates.io-index" 2196 - checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 2197 - dependencies = [ 2198 - "libc", 2199 - ] 2200 - 2201 - [[package]] 2202 - name = "memoffset" 2203 - version = "0.9.0" 2204 - source = "registry+https://github.com/rust-lang/crates.io-index" 2205 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 2206 - dependencies = [ 2207 - "autocfg", 2208 - ] 2209 - 2210 - [[package]] 2211 2746 name = "mime" 2212 2747 version = "0.3.17" 2213 2748 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2215 2750 2216 2751 [[package]] 2217 2752 name = "mime_guess" 2218 - version = "2.0.4" 2753 + version = "2.0.5" 2219 2754 source = "registry+https://github.com/rust-lang/crates.io-index" 2220 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 2755 + checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 2221 2756 dependencies = [ 2222 2757 "mime", 2223 2758 "unicase", ··· 2225 2760 2226 2761 [[package]] 2227 2762 name = "minidump" 2228 - version = "0.18.0" 2763 + version = "0.22.0" 2229 2764 source = "registry+https://github.com/rust-lang/crates.io-index" 2230 - checksum = "e20da5c0aab8b6d683d8a15ca70db468d3f6ddfe38269837c22c7bab7ba2627c" 2765 + checksum = "aefb80650628de087057ed167e3e1ef5bed65dc4b1bd28d47cd707c3848adce2" 2231 2766 dependencies = [ 2232 2767 "debugid", 2233 2768 "encoding_rs", 2234 - "memmap2 0.5.10", 2769 + "memmap2", 2235 2770 "minidump-common", 2236 2771 "num-traits", 2772 + "procfs-core", 2237 2773 "range-map", 2238 - "scroll", 2774 + "scroll 0.12.0", 2239 2775 "thiserror", 2240 2776 "time", 2241 2777 "tracing", ··· 2244 2780 2245 2781 [[package]] 2246 2782 name = "minidump-common" 2247 - version = "0.18.0" 2783 + version = "0.22.0" 2248 2784 source = "registry+https://github.com/rust-lang/crates.io-index" 2249 - checksum = "6b23ab3a13de24f89fa3060579288f142ac4d138d37eec8a398ba59b0ca4d577" 2785 + checksum = "95a2b640f80e5514f49509ff1f97fb24693f95ef5be5ed810d70df4283a68acc" 2250 2786 dependencies = [ 2251 - "bitflags 2.4.1", 2787 + "bitflags 2.6.0", 2252 2788 "debugid", 2253 2789 "num-derive", 2254 2790 "num-traits", 2255 2791 "range-map", 2256 - "scroll", 2792 + "scroll 0.12.0", 2257 2793 "smart-default", 2258 2794 ] 2259 2795 2260 2796 [[package]] 2261 2797 name = "minidump-processor" 2262 - version = "0.18.0" 2798 + version = "0.22.0" 2263 2799 source = "registry+https://github.com/rust-lang/crates.io-index" 2264 - checksum = "e402963e1997711e1cc491a35fc2c4a4822d4eb95d939e0401c72cb9faacb19f" 2800 + checksum = "4d330a92d90c5699e8edd32f8036a1b5afadd6df000eb201fac258d149f8ca78" 2265 2801 dependencies = [ 2266 2802 "async-trait", 2267 2803 "breakpad-symbols", 2268 2804 "debugid", 2269 2805 "futures-util", 2270 - "memmap2 0.5.10", 2271 2806 "minidump", 2272 2807 "minidump-common", 2273 2808 "minidump-unwind", 2274 - "scroll", 2809 + "scroll 0.12.0", 2275 2810 "serde", 2276 2811 "serde_json", 2277 2812 "thiserror", ··· 2281 2816 2282 2817 [[package]] 2283 2818 name = "minidump-unwind" 2284 - version = "0.18.0" 2819 + version = "0.22.0" 2285 2820 source = "registry+https://github.com/rust-lang/crates.io-index" 2286 - checksum = "8bfe80a00f234a23ae2e42336e0b7e40d6b1c330712777bb7e2c7bebb6c3bf80" 2821 + checksum = "afb5af4cbb631c54fe8c0c058799e9ac95b31c6e282f1afaaaaad10c2c441fcb" 2287 2822 dependencies = [ 2288 2823 "async-trait", 2289 2824 "breakpad-symbols", 2290 2825 "minidump", 2291 2826 "minidump-common", 2292 - "scroll", 2827 + "scroll 0.12.0", 2293 2828 "tracing", 2294 2829 ] 2295 2830 ··· 2301 2836 2302 2837 [[package]] 2303 2838 name = "miniz_oxide" 2304 - version = "0.7.1" 2839 + version = "0.7.4" 2305 2840 source = "registry+https://github.com/rust-lang/crates.io-index" 2306 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2841 + checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 2307 2842 dependencies = [ 2308 2843 "adler", 2309 2844 ] 2310 2845 2311 2846 [[package]] 2312 2847 name = "mio" 2313 - version = "0.7.14" 2848 + version = "0.8.11" 2314 2849 source = "registry+https://github.com/rust-lang/crates.io-index" 2315 - checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 2850 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2316 2851 dependencies = [ 2317 2852 "libc", 2318 2853 "log", 2319 - "miow", 2320 - "ntapi", 2321 - "winapi", 2322 - ] 2323 - 2324 - [[package]] 2325 - name = "mio" 2326 - version = "0.8.9" 2327 - source = "registry+https://github.com/rust-lang/crates.io-index" 2328 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 2329 - dependencies = [ 2330 - "libc", 2331 2854 "wasi", 2332 2855 "windows-sys 0.48.0", 2333 2856 ] 2334 2857 2335 2858 [[package]] 2336 - name = "miow" 2337 - version = "0.3.7" 2338 - source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 2340 - dependencies = [ 2341 - "winapi", 2342 - ] 2343 - 2344 - [[package]] 2345 2859 name = "moka" 2346 - version = "0.12.1" 2860 + version = "0.12.8" 2347 2861 source = "registry+https://github.com/rust-lang/crates.io-index" 2348 - checksum = "d8017ec3548ffe7d4cef7ac0e12b044c01164a74c0f3119420faeaf13490ad8b" 2862 + checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" 2349 2863 dependencies = [ 2350 2864 "async-lock", 2351 2865 "async-trait", 2352 2866 "crossbeam-channel", 2353 2867 "crossbeam-epoch", 2354 2868 "crossbeam-utils", 2869 + "event-listener", 2355 2870 "futures-util", 2356 2871 "once_cell", 2357 - "parking_lot 0.12.1", 2872 + "parking_lot", 2358 2873 "quanta", 2359 2874 "rustc_version 0.4.0", 2360 - "skeptic", 2361 2875 "smallvec", 2362 2876 "tagptr", 2363 2877 "thiserror", ··· 2367 2881 2368 2882 [[package]] 2369 2883 name = "msvc-demangler" 2370 - version = "0.9.0" 2884 + version = "0.10.1" 2371 2885 source = "registry+https://github.com/rust-lang/crates.io-index" 2372 - checksum = "bfb67c6dd0fa9b00619c41c5700b6f92d5f418be49b45ddb9970fbd4569df3c8" 2886 + checksum = "c4c25a3bb7d880e8eceab4822f3141ad0700d20f025991c1f03bd3d00219a5fc" 2373 2887 dependencies = [ 2374 - "bitflags 1.3.2", 2888 + "bitflags 2.6.0", 2375 2889 ] 2376 2890 2377 2891 [[package]] 2378 2892 name = "multer" 2379 - version = "2.1.0" 2893 + version = "3.1.0" 2380 2894 source = "registry+https://github.com/rust-lang/crates.io-index" 2381 - checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2" 2895 + checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" 2382 2896 dependencies = [ 2383 2897 "bytes", 2384 2898 "encoding_rs", 2385 2899 "futures-util", 2386 - "http", 2900 + "http 1.1.0", 2387 2901 "httparse", 2388 - "log", 2389 2902 "memchr", 2390 2903 "mime", 2391 - "spin 0.9.8", 2904 + "spin", 2392 2905 "version_check", 2393 2906 ] 2394 2907 2395 2908 [[package]] 2396 2909 name = "native-tls" 2397 - version = "0.2.11" 2910 + version = "0.2.12" 2398 2911 source = "registry+https://github.com/rust-lang/crates.io-index" 2399 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2912 + checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 2400 2913 dependencies = [ 2401 - "lazy_static", 2402 2914 "libc", 2403 2915 "log", 2404 2916 "openssl", ··· 2412 2924 2413 2925 [[package]] 2414 2926 name = "new_debug_unreachable" 2415 - version = "1.0.4" 2927 + version = "1.0.6" 2416 2928 source = "registry+https://github.com/rust-lang/crates.io-index" 2417 - checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2929 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2418 2930 2419 2931 [[package]] 2420 2932 name = "nom" ··· 2440 2952 ] 2441 2953 2442 2954 [[package]] 2443 - name = "ntapi" 2444 - version = "0.3.7" 2445 - source = "registry+https://github.com/rust-lang/crates.io-index" 2446 - checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" 2447 - dependencies = [ 2448 - "winapi", 2449 - ] 2450 - 2451 - [[package]] 2452 2955 name = "nu-ansi-term" 2453 2956 version = "0.46.0" 2454 2957 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2460 2963 2461 2964 [[package]] 2462 2965 name = "num-bigint" 2463 - version = "0.4.4" 2966 + version = "0.4.6" 2464 2967 source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 2968 + checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 2466 2969 dependencies = [ 2467 - "autocfg", 2468 2970 "num-integer", 2469 2971 "num-traits", 2470 2972 "serde", 2471 2973 ] 2472 2974 2473 2975 [[package]] 2976 + name = "num-conv" 2977 + version = "0.1.0" 2978 + source = "registry+https://github.com/rust-lang/crates.io-index" 2979 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2980 + 2981 + [[package]] 2474 2982 name = "num-derive" 2475 - version = "0.4.1" 2983 + version = "0.4.2" 2476 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2477 - checksum = "cfb77679af88f8b125209d354a202862602672222e7f2313fdd6dc349bad4712" 2985 + checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 2478 2986 dependencies = [ 2479 2987 "proc-macro2", 2480 2988 "quote", 2481 - "syn 2.0.39", 2989 + "syn", 2482 2990 ] 2483 2991 2484 2992 [[package]] 2485 2993 name = "num-integer" 2486 - version = "0.1.45" 2994 + version = "0.1.46" 2487 2995 source = "registry+https://github.com/rust-lang/crates.io-index" 2488 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2996 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2489 2997 dependencies = [ 2490 - "autocfg", 2491 2998 "num-traits", 2492 2999 ] 2493 3000 2494 3001 [[package]] 2495 3002 name = "num-traits" 2496 - version = "0.2.17" 3003 + version = "0.2.19" 2497 3004 source = "registry+https://github.com/rust-lang/crates.io-index" 2498 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3005 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2499 3006 dependencies = [ 2500 3007 "autocfg", 2501 3008 ] ··· 2511 3018 ] 2512 3019 2513 3020 [[package]] 2514 - name = "num_threads" 2515 - version = "0.1.6" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2518 - dependencies = [ 2519 - "libc", 2520 - ] 2521 - 2522 - [[package]] 2523 3021 name = "object" 2524 - version = "0.32.1" 3022 + version = "0.36.1" 2525 3023 source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3024 + checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce" 2527 3025 dependencies = [ 2528 3026 "memchr", 2529 3027 ] 2530 3028 2531 3029 [[package]] 2532 3030 name = "once_cell" 2533 - version = "1.18.0" 3031 + version = "1.19.0" 2534 3032 source = "registry+https://github.com/rust-lang/crates.io-index" 2535 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 3033 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2536 3034 2537 3035 [[package]] 2538 3036 name = "openssl" 2539 - version = "0.10.60" 3037 + version = "0.10.64" 2540 3038 source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" 3039 + checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 2542 3040 dependencies = [ 2543 - "bitflags 2.4.1", 3041 + "bitflags 2.6.0", 2544 3042 "cfg-if", 2545 3043 "foreign-types", 2546 3044 "libc", ··· 2557 3055 dependencies = [ 2558 3056 "proc-macro2", 2559 3057 "quote", 2560 - "syn 2.0.39", 3058 + "syn", 2561 3059 ] 2562 3060 2563 3061 [[package]] ··· 2568 3066 2569 3067 [[package]] 2570 3068 name = "openssl-sys" 2571 - version = "0.9.96" 3069 + version = "0.9.102" 2572 3070 source = "registry+https://github.com/rust-lang/crates.io-index" 2573 - checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" 3071 + checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" 2574 3072 dependencies = [ 2575 3073 "cc", 2576 3074 "libc", ··· 2586 3084 2587 3085 [[package]] 2588 3086 name = "os_info" 2589 - version = "3.7.0" 3087 + version = "3.8.2" 2590 3088 source = "registry+https://github.com/rust-lang/crates.io-index" 2591 - checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" 3089 + checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092" 2592 3090 dependencies = [ 2593 3091 "log", 2594 3092 "serde", 2595 - "winapi", 3093 + "windows-sys 0.52.0", 2596 3094 ] 2597 3095 2598 3096 [[package]] 2599 3097 name = "outref" 3098 + version = "0.1.0" 3099 + source = "registry+https://github.com/rust-lang/crates.io-index" 3100 + checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" 3101 + 3102 + [[package]] 3103 + name = "outref" 2600 3104 version = "0.5.1" 2601 3105 source = "registry+https://github.com/rust-lang/crates.io-index" 2602 3106 checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" ··· 2608 3112 checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2609 3113 2610 3114 [[package]] 2611 - name = "parking_lot" 2612 - version = "0.11.2" 3115 + name = "p256" 3116 + version = "0.11.1" 2613 3117 source = "registry+https://github.com/rust-lang/crates.io-index" 2614 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 3118 + checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 2615 3119 dependencies = [ 2616 - "instant", 2617 - "lock_api", 2618 - "parking_lot_core 0.8.6", 3120 + "ecdsa", 3121 + "elliptic-curve", 3122 + "sha2", 2619 3123 ] 2620 3124 2621 3125 [[package]] 2622 - name = "parking_lot" 2623 - version = "0.12.1" 3126 + name = "parking" 3127 + version = "2.2.0" 2624 3128 source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2626 - dependencies = [ 2627 - "lock_api", 2628 - "parking_lot_core 0.9.9", 2629 - ] 3129 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2630 3130 2631 3131 [[package]] 2632 - name = "parking_lot_core" 2633 - version = "0.8.6" 3132 + name = "parking_lot" 3133 + version = "0.12.3" 2634 3134 source = "registry+https://github.com/rust-lang/crates.io-index" 2635 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 3135 + checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2636 3136 dependencies = [ 2637 - "cfg-if", 2638 - "instant", 2639 - "libc", 2640 - "redox_syscall 0.2.16", 2641 - "smallvec", 2642 - "winapi", 3137 + "lock_api", 3138 + "parking_lot_core", 2643 3139 ] 2644 3140 2645 3141 [[package]] 2646 3142 name = "parking_lot_core" 2647 - version = "0.9.9" 3143 + version = "0.9.10" 2648 3144 source = "registry+https://github.com/rust-lang/crates.io-index" 2649 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3145 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2650 3146 dependencies = [ 2651 3147 "cfg-if", 2652 3148 "libc", 2653 - "redox_syscall 0.4.1", 3149 + "redox_syscall 0.5.2", 2654 3150 "smallvec", 2655 - "windows-targets 0.48.5", 3151 + "windows-targets 0.52.6", 2656 3152 ] 2657 3153 2658 3154 [[package]] ··· 2662 3158 checksum = "82040a392923abe6279c00ab4aff62d5250d1c8555dc780e4b02783a7aa74863" 2663 3159 dependencies = [ 2664 3160 "fallible-iterator 0.2.0", 2665 - "scroll", 3161 + "scroll 0.11.0", 2666 3162 "uuid", 2667 3163 ] 2668 3164 ··· 2681 3177 ] 2682 3178 2683 3179 [[package]] 2684 - name = "peeking_take_while" 2685 - version = "0.1.2" 2686 - source = "registry+https://github.com/rust-lang/crates.io-index" 2687 - checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 2688 - 2689 - [[package]] 2690 3180 name = "pem" 2691 - version = "3.0.2" 3181 + version = "3.0.4" 2692 3182 source = "registry+https://github.com/rust-lang/crates.io-index" 2693 - checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" 3183 + checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 2694 3184 dependencies = [ 2695 - "base64", 3185 + "base64 0.22.1", 2696 3186 "serde", 2697 3187 ] 2698 3188 ··· 2704 3194 2705 3195 [[package]] 2706 3196 name = "pest" 2707 - version = "2.7.5" 3197 + version = "2.7.11" 2708 3198 source = "registry+https://github.com/rust-lang/crates.io-index" 2709 - checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5" 3199 + checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" 2710 3200 dependencies = [ 2711 3201 "memchr", 2712 3202 "thiserror", ··· 2715 3205 2716 3206 [[package]] 2717 3207 name = "pest_derive" 2718 - version = "2.7.5" 3208 + version = "2.7.11" 2719 3209 source = "registry+https://github.com/rust-lang/crates.io-index" 2720 - checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2" 3210 + checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a" 2721 3211 dependencies = [ 2722 3212 "pest", 2723 3213 "pest_generator", ··· 2725 3215 2726 3216 [[package]] 2727 3217 name = "pest_generator" 2728 - version = "2.7.5" 3218 + version = "2.7.11" 2729 3219 source = "registry+https://github.com/rust-lang/crates.io-index" 2730 - checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227" 3220 + checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183" 2731 3221 dependencies = [ 2732 3222 "pest", 2733 3223 "pest_meta", 2734 3224 "proc-macro2", 2735 3225 "quote", 2736 - "syn 2.0.39", 3226 + "syn", 2737 3227 ] 2738 3228 2739 3229 [[package]] 2740 3230 name = "pest_meta" 2741 - version = "2.7.5" 3231 + version = "2.7.11" 2742 3232 source = "registry+https://github.com/rust-lang/crates.io-index" 2743 - checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6" 3233 + checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f" 2744 3234 dependencies = [ 2745 3235 "once_cell", 2746 3236 "pest", ··· 2748 3238 ] 2749 3239 2750 3240 [[package]] 3241 + name = "phf" 3242 + version = "0.11.2" 3243 + source = "registry+https://github.com/rust-lang/crates.io-index" 3244 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 3245 + dependencies = [ 3246 + "phf_macros", 3247 + "phf_shared 0.11.2", 3248 + ] 3249 + 3250 + [[package]] 2751 3251 name = "phf_generator" 2752 - version = "0.10.0" 3252 + version = "0.11.2" 2753 3253 source = "registry+https://github.com/rust-lang/crates.io-index" 2754 - checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 3254 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 2755 3255 dependencies = [ 2756 - "phf_shared", 3256 + "phf_shared 0.11.2", 2757 3257 "rand", 2758 3258 ] 2759 3259 2760 3260 [[package]] 3261 + name = "phf_macros" 3262 + version = "0.11.2" 3263 + source = "registry+https://github.com/rust-lang/crates.io-index" 3264 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 3265 + dependencies = [ 3266 + "phf_generator", 3267 + "phf_shared 0.11.2", 3268 + "proc-macro2", 3269 + "quote", 3270 + "syn", 3271 + ] 3272 + 3273 + [[package]] 2761 3274 name = "phf_shared" 2762 3275 version = "0.10.0" 2763 3276 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2767 3280 ] 2768 3281 2769 3282 [[package]] 3283 + name = "phf_shared" 3284 + version = "0.11.2" 3285 + source = "registry+https://github.com/rust-lang/crates.io-index" 3286 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 3287 + dependencies = [ 3288 + "siphasher", 3289 + ] 3290 + 3291 + [[package]] 2770 3292 name = "pin-project" 2771 - version = "1.1.3" 3293 + version = "1.1.5" 2772 3294 source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 3295 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 2774 3296 dependencies = [ 2775 3297 "pin-project-internal", 2776 3298 ] 2777 3299 2778 3300 [[package]] 2779 3301 name = "pin-project-internal" 2780 - version = "1.1.3" 3302 + version = "1.1.5" 2781 3303 source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 3304 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 2783 3305 dependencies = [ 2784 3306 "proc-macro2", 2785 3307 "quote", 2786 - "syn 2.0.39", 3308 + "syn", 2787 3309 ] 2788 3310 2789 3311 [[package]] 2790 3312 name = "pin-project-lite" 2791 - version = "0.2.13" 3313 + version = "0.2.14" 2792 3314 source = "registry+https://github.com/rust-lang/crates.io-index" 2793 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 3315 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2794 3316 2795 3317 [[package]] 2796 3318 name = "pin-utils" 2797 3319 version = "0.1.0" 2798 3320 source = "registry+https://github.com/rust-lang/crates.io-index" 2799 3321 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3322 + 3323 + [[package]] 3324 + name = "pkcs8" 3325 + version = "0.9.0" 3326 + source = "registry+https://github.com/rust-lang/crates.io-index" 3327 + checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 3328 + dependencies = [ 3329 + "der", 3330 + "spki", 3331 + ] 2800 3332 2801 3333 [[package]] 2802 3334 name = "pkg-config" 2803 - version = "0.3.27" 3335 + version = "0.3.30" 2804 3336 source = "registry+https://github.com/rust-lang/crates.io-index" 2805 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3337 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2806 3338 2807 3339 [[package]] 2808 3340 name = "plain" ··· 2811 3343 checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 2812 3344 2813 3345 [[package]] 2814 - name = "pmutil" 2815 - version = "0.6.1" 2816 - source = "registry+https://github.com/rust-lang/crates.io-index" 2817 - checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" 2818 - dependencies = [ 2819 - "proc-macro2", 2820 - "quote", 2821 - "syn 2.0.39", 2822 - ] 2823 - 2824 - [[package]] 2825 3346 name = "powerfmt" 2826 3347 version = "0.2.0" 2827 3348 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2841 3362 2842 3363 [[package]] 2843 3364 name = "prettyplease" 2844 - version = "0.2.15" 3365 + version = "0.2.20" 2845 3366 source = "registry+https://github.com/rust-lang/crates.io-index" 2846 - checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 3367 + checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" 2847 3368 dependencies = [ 2848 3369 "proc-macro2", 2849 - "syn 2.0.39", 3370 + "syn", 2850 3371 ] 2851 3372 2852 3373 [[package]] ··· 2865 3386 2866 3387 [[package]] 2867 3388 name = "proc-macro2" 2868 - version = "1.0.70" 3389 + version = "1.0.86" 2869 3390 source = "registry+https://github.com/rust-lang/crates.io-index" 2870 - checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 3391 + checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 2871 3392 dependencies = [ 2872 3393 "unicode-ident", 2873 3394 ] 2874 3395 2875 3396 [[package]] 2876 3397 name = "process-event" 2877 - version = "23.11.2" 3398 + version = "24.7.1" 2878 3399 dependencies = [ 2879 3400 "anyhow", 2880 3401 "clap", ··· 2885 3406 ] 2886 3407 2887 3408 [[package]] 2888 - name = "psm" 2889 - version = "0.1.21" 3409 + name = "procfs-core" 3410 + version = "0.16.0" 2890 3411 source = "registry+https://github.com/rust-lang/crates.io-index" 2891 - checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" 3412 + checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" 2892 3413 dependencies = [ 2893 - "cc", 3414 + "bitflags 2.6.0", 3415 + "hex", 2894 3416 ] 2895 3417 2896 3418 [[package]] 2897 - name = "pulldown-cmark" 2898 - version = "0.9.3" 3419 + name = "proguard" 3420 + version = "5.5.0" 2899 3421 source = "registry+https://github.com/rust-lang/crates.io-index" 2900 - checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" 3422 + checksum = "bafe48b490e1b00c4b69f24f9ec2957dd850930460515802f5a7399e015f18ed" 2901 3423 dependencies = [ 2902 - "bitflags 1.3.2", 2903 - "memchr", 2904 - "unicase", 3424 + "thiserror", 3425 + "watto", 3426 + ] 3427 + 3428 + [[package]] 3429 + name = "psm" 3430 + version = "0.1.21" 3431 + source = "registry+https://github.com/rust-lang/crates.io-index" 3432 + checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" 3433 + dependencies = [ 3434 + "cc", 2905 3435 ] 2906 3436 2907 3437 [[package]] 2908 3438 name = "quanta" 2909 - version = "0.11.1" 3439 + version = "0.12.3" 2910 3440 source = "registry+https://github.com/rust-lang/crates.io-index" 2911 - checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" 3441 + checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" 2912 3442 dependencies = [ 2913 3443 "crossbeam-utils", 2914 3444 "libc", 2915 - "mach2", 2916 3445 "once_cell", 2917 3446 "raw-cpuid", 2918 3447 "wasi", ··· 2928 3457 2929 3458 [[package]] 2930 3459 name = "quote" 2931 - version = "1.0.33" 3460 + version = "1.0.36" 2932 3461 source = "registry+https://github.com/rust-lang/crates.io-index" 2933 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3462 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 2934 3463 dependencies = [ 2935 3464 "proc-macro2", 2936 3465 ] 3466 + 3467 + [[package]] 3468 + name = "radium" 3469 + version = "0.7.0" 3470 + source = "registry+https://github.com/rust-lang/crates.io-index" 3471 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2937 3472 2938 3473 [[package]] 2939 3474 name = "rand" ··· 2987 3522 2988 3523 [[package]] 2989 3524 name = "raw-cpuid" 2990 - version = "10.7.0" 3525 + version = "11.0.2" 2991 3526 source = "registry+https://github.com/rust-lang/crates.io-index" 2992 - checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 3527 + checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd" 2993 3528 dependencies = [ 2994 - "bitflags 1.3.2", 3529 + "bitflags 2.6.0", 2995 3530 ] 2996 3531 2997 3532 [[package]] 2998 3533 name = "rayon" 2999 - version = "1.8.0" 3534 + version = "1.10.0" 3000 3535 source = "registry+https://github.com/rust-lang/crates.io-index" 3001 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3536 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 3002 3537 dependencies = [ 3003 3538 "either", 3004 3539 "rayon-core", ··· 3006 3541 3007 3542 [[package]] 3008 3543 name = "rayon-core" 3009 - version = "1.12.0" 3544 + version = "1.12.1" 3010 3545 source = "registry+https://github.com/rust-lang/crates.io-index" 3011 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3546 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3012 3547 dependencies = [ 3013 3548 "crossbeam-deque", 3014 3549 "crossbeam-utils", ··· 3016 3551 3017 3552 [[package]] 3018 3553 name = "redox_syscall" 3019 - version = "0.2.16" 3554 + version = "0.4.1" 3020 3555 source = "registry+https://github.com/rust-lang/crates.io-index" 3021 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3556 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3022 3557 dependencies = [ 3023 3558 "bitflags 1.3.2", 3024 3559 ] 3025 3560 3026 3561 [[package]] 3027 3562 name = "redox_syscall" 3028 - version = "0.3.5" 3563 + version = "0.5.2" 3029 3564 source = "registry+https://github.com/rust-lang/crates.io-index" 3030 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3565 + checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd" 3031 3566 dependencies = [ 3032 - "bitflags 1.3.2", 3033 - ] 3034 - 3035 - [[package]] 3036 - name = "redox_syscall" 3037 - version = "0.4.1" 3038 - source = "registry+https://github.com/rust-lang/crates.io-index" 3039 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3040 - dependencies = [ 3041 - "bitflags 1.3.2", 3567 + "bitflags 2.6.0", 3042 3568 ] 3043 3569 3044 3570 [[package]] 3045 3571 name = "redox_users" 3046 - version = "0.4.4" 3572 + version = "0.4.5" 3047 3573 source = "registry+https://github.com/rust-lang/crates.io-index" 3048 - checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3574 + checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 3049 3575 dependencies = [ 3050 3576 "getrandom", 3051 3577 "libredox", ··· 3054 3580 3055 3581 [[package]] 3056 3582 name = "regex" 3057 - version = "1.10.2" 3583 + version = "1.10.5" 3058 3584 source = "registry+https://github.com/rust-lang/crates.io-index" 3059 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 3585 + checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 3060 3586 dependencies = [ 3061 3587 "aho-corasick", 3062 3588 "memchr", 3063 - "regex-automata 0.4.3", 3064 - "regex-syntax 0.8.2", 3589 + "regex-automata 0.4.7", 3590 + "regex-syntax 0.8.4", 3065 3591 ] 3066 3592 3067 3593 [[package]] ··· 3075 3601 3076 3602 [[package]] 3077 3603 name = "regex-automata" 3078 - version = "0.4.3" 3604 + version = "0.4.7" 3079 3605 source = "registry+https://github.com/rust-lang/crates.io-index" 3080 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 3606 + checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 3081 3607 dependencies = [ 3082 3608 "aho-corasick", 3083 3609 "memchr", 3084 - "regex-syntax 0.8.2", 3610 + "regex-syntax 0.8.4", 3085 3611 ] 3086 3612 3087 3613 [[package]] 3614 + name = "regex-lite" 3615 + version = "0.1.6" 3616 + source = "registry+https://github.com/rust-lang/crates.io-index" 3617 + checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 3618 + 3619 + [[package]] 3088 3620 name = "regex-syntax" 3089 3621 version = "0.6.29" 3090 3622 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3092 3624 3093 3625 [[package]] 3094 3626 name = "regex-syntax" 3095 - version = "0.8.2" 3627 + version = "0.8.4" 3096 3628 source = "registry+https://github.com/rust-lang/crates.io-index" 3097 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3629 + checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 3098 3630 3099 3631 [[package]] 3100 3632 name = "reqwest" 3101 - version = "0.11.22" 3102 - source = "git+https://github.com/getsentry/reqwest?branch=restricted-connector#a780c826d293b500eb2857b21d5eb49d3c0297b6" 3633 + version = "0.12.2" 3634 + source = "git+https://github.com/getsentry/reqwest?branch=restricted-connector#7331a73eb2379c141d65d0cfed4ebcd36927a495" 3103 3635 dependencies = [ 3104 3636 "async-compression", 3105 - "base64", 3637 + "base64 0.22.1", 3106 3638 "bytes", 3107 3639 "encoding_rs", 3640 + "futures-channel", 3108 3641 "futures-core", 3109 3642 "futures-util", 3110 - "h2", 3111 - "http", 3112 - "http-body", 3113 - "hyper", 3643 + "h2 0.4.5", 3644 + "hickory-resolver", 3645 + "http 1.1.0", 3646 + "http-body 1.0.0", 3647 + "http-body-util", 3648 + "hyper 1.4.1", 3114 3649 "hyper-tls", 3650 + "hyper-util", 3115 3651 "ipnet", 3116 3652 "js-sys", 3117 3653 "log", ··· 3121 3657 "once_cell", 3122 3658 "percent-encoding", 3123 3659 "pin-project-lite", 3660 + "rustls-pemfile 2.1.2", 3124 3661 "serde", 3125 3662 "serde_json", 3126 3663 "serde_urlencoded", 3664 + "sync_wrapper 0.1.2", 3127 3665 "system-configuration", 3128 3666 "tokio", 3129 3667 "tokio-native-tls", 3130 3668 "tokio-util", 3131 3669 "tower-service", 3132 - "trust-dns-resolver", 3133 3670 "url", 3134 3671 "wasm-bindgen", 3135 3672 "wasm-bindgen-futures", 3136 3673 "wasm-streams", 3137 3674 "web-sys", 3138 - "winreg", 3675 + "winreg 0.52.0", 3139 3676 ] 3140 3677 3141 3678 [[package]] ··· 3144 3681 source = "registry+https://github.com/rust-lang/crates.io-index" 3145 3682 checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 3146 3683 dependencies = [ 3147 - "hostname", 3684 + "hostname 0.3.1", 3148 3685 "quick-error", 3149 3686 ] 3150 3687 3151 3688 [[package]] 3152 - name = "ring" 3153 - version = "0.16.20" 3689 + name = "rfc6979" 3690 + version = "0.3.1" 3154 3691 source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3692 + checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 3156 3693 dependencies = [ 3157 - "cc", 3158 - "libc", 3159 - "once_cell", 3160 - "spin 0.5.2", 3161 - "untrusted 0.7.1", 3162 - "web-sys", 3163 - "winapi", 3694 + "crypto-bigint 0.4.9", 3695 + "hmac", 3696 + "zeroize", 3164 3697 ] 3165 3698 3166 3699 [[package]] 3167 3700 name = "ring" 3168 - version = "0.17.5" 3701 + version = "0.17.8" 3169 3702 source = "registry+https://github.com/rust-lang/crates.io-index" 3170 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 3703 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 3171 3704 dependencies = [ 3172 3705 "cc", 3706 + "cfg-if", 3173 3707 "getrandom", 3174 3708 "libc", 3175 - "spin 0.9.8", 3176 - "untrusted 0.9.0", 3177 - "windows-sys 0.48.0", 3709 + "spin", 3710 + "untrusted", 3711 + "windows-sys 0.52.0", 3178 3712 ] 3179 3713 3180 3714 [[package]] 3181 3715 name = "rustc-demangle" 3182 - version = "0.1.23" 3716 + version = "0.1.24" 3183 3717 source = "registry+https://github.com/rust-lang/crates.io-index" 3184 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 3718 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3185 3719 3186 3720 [[package]] 3187 3721 name = "rustc-hash" ··· 3190 3724 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3191 3725 3192 3726 [[package]] 3727 + name = "rustc-hash" 3728 + version = "2.0.0" 3729 + source = "registry+https://github.com/rust-lang/crates.io-index" 3730 + checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 3731 + 3732 + [[package]] 3193 3733 name = "rustc_version" 3194 3734 version = "0.2.3" 3195 3735 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3204 3744 source = "registry+https://github.com/rust-lang/crates.io-index" 3205 3745 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3206 3746 dependencies = [ 3207 - "semver 1.0.20", 3747 + "semver 1.0.23", 3208 3748 ] 3209 3749 3210 3750 [[package]] 3211 3751 name = "rustix" 3212 - version = "0.38.25" 3752 + version = "0.38.34" 3213 3753 source = "registry+https://github.com/rust-lang/crates.io-index" 3214 - checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e" 3754 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3215 3755 dependencies = [ 3216 - "bitflags 2.4.1", 3756 + "bitflags 2.6.0", 3217 3757 "errno", 3218 3758 "libc", 3219 3759 "linux-raw-sys", 3220 - "windows-sys 0.48.0", 3760 + "windows-sys 0.52.0", 3221 3761 ] 3222 3762 3223 3763 [[package]] 3224 3764 name = "rustls" 3225 - version = "0.21.9" 3765 + version = "0.21.12" 3226 3766 source = "registry+https://github.com/rust-lang/crates.io-index" 3227 - checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 3767 + checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 3228 3768 dependencies = [ 3229 3769 "log", 3230 - "ring 0.17.5", 3231 - "rustls-webpki", 3770 + "ring", 3771 + "rustls-webpki 0.101.7", 3232 3772 "sct", 3233 3773 ] 3234 3774 3235 3775 [[package]] 3776 + name = "rustls" 3777 + version = "0.23.11" 3778 + source = "registry+https://github.com/rust-lang/crates.io-index" 3779 + checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" 3780 + dependencies = [ 3781 + "once_cell", 3782 + "ring", 3783 + "rustls-pki-types", 3784 + "rustls-webpki 0.102.5", 3785 + "subtle", 3786 + "zeroize", 3787 + ] 3788 + 3789 + [[package]] 3236 3790 name = "rustls-native-certs" 3237 3791 version = "0.6.3" 3238 3792 source = "registry+https://github.com/rust-lang/crates.io-index" 3239 3793 checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 3240 3794 dependencies = [ 3241 3795 "openssl-probe", 3242 - "rustls-pemfile", 3796 + "rustls-pemfile 1.0.4", 3797 + "schannel", 3798 + "security-framework", 3799 + ] 3800 + 3801 + [[package]] 3802 + name = "rustls-native-certs" 3803 + version = "0.7.1" 3804 + source = "registry+https://github.com/rust-lang/crates.io-index" 3805 + checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba" 3806 + dependencies = [ 3807 + "openssl-probe", 3808 + "rustls-pemfile 2.1.2", 3809 + "rustls-pki-types", 3243 3810 "schannel", 3244 3811 "security-framework", 3245 3812 ] ··· 3250 3817 source = "registry+https://github.com/rust-lang/crates.io-index" 3251 3818 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3252 3819 dependencies = [ 3253 - "base64", 3820 + "base64 0.21.7", 3254 3821 ] 3255 3822 3256 3823 [[package]] 3824 + name = "rustls-pemfile" 3825 + version = "2.1.2" 3826 + source = "registry+https://github.com/rust-lang/crates.io-index" 3827 + checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 3828 + dependencies = [ 3829 + "base64 0.22.1", 3830 + "rustls-pki-types", 3831 + ] 3832 + 3833 + [[package]] 3834 + name = "rustls-pki-types" 3835 + version = "1.7.0" 3836 + source = "registry+https://github.com/rust-lang/crates.io-index" 3837 + checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 3838 + 3839 + [[package]] 3257 3840 name = "rustls-webpki" 3258 3841 version = "0.101.7" 3259 3842 source = "registry+https://github.com/rust-lang/crates.io-index" 3260 3843 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3261 3844 dependencies = [ 3262 - "ring 0.17.5", 3263 - "untrusted 0.9.0", 3845 + "ring", 3846 + "untrusted", 3847 + ] 3848 + 3849 + [[package]] 3850 + name = "rustls-webpki" 3851 + version = "0.102.5" 3852 + source = "registry+https://github.com/rust-lang/crates.io-index" 3853 + checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" 3854 + dependencies = [ 3855 + "ring", 3856 + "rustls-pki-types", 3857 + "untrusted", 3264 3858 ] 3265 3859 3266 3860 [[package]] 3267 3861 name = "rustversion" 3268 - version = "1.0.14" 3862 + version = "1.0.17" 3269 3863 source = "registry+https://github.com/rust-lang/crates.io-index" 3270 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 3864 + checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 3271 3865 3272 3866 [[package]] 3273 3867 name = "ryu" 3274 - version = "1.0.15" 3868 + version = "1.0.18" 3275 3869 source = "registry+https://github.com/rust-lang/crates.io-index" 3276 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3870 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 3277 3871 3278 3872 [[package]] 3279 3873 name = "same-file" ··· 3286 3880 3287 3881 [[package]] 3288 3882 name = "schannel" 3289 - version = "0.1.22" 3883 + version = "0.1.23" 3290 3884 source = "registry+https://github.com/rust-lang/crates.io-index" 3291 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3885 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 3292 3886 dependencies = [ 3293 - "windows-sys 0.48.0", 3887 + "windows-sys 0.52.0", 3294 3888 ] 3295 3889 3296 3890 [[package]] ··· 3310 3904 version = "0.11.0" 3311 3905 source = "registry+https://github.com/rust-lang/crates.io-index" 3312 3906 checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da" 3907 + 3908 + [[package]] 3909 + name = "scroll" 3910 + version = "0.12.0" 3911 + source = "registry+https://github.com/rust-lang/crates.io-index" 3912 + checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6" 3313 3913 dependencies = [ 3314 3914 "scroll_derive", 3315 3915 ] 3316 3916 3317 3917 [[package]] 3318 3918 name = "scroll_derive" 3319 - version = "0.11.1" 3919 + version = "0.12.0" 3320 3920 source = "registry+https://github.com/rust-lang/crates.io-index" 3321 - checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" 3921 + checksum = "7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932" 3322 3922 dependencies = [ 3323 3923 "proc-macro2", 3324 3924 "quote", 3325 - "syn 2.0.39", 3925 + "syn", 3326 3926 ] 3327 3927 3328 3928 [[package]] ··· 3331 3931 source = "registry+https://github.com/rust-lang/crates.io-index" 3332 3932 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3333 3933 dependencies = [ 3334 - "ring 0.17.5", 3335 - "untrusted 0.9.0", 3934 + "ring", 3935 + "untrusted", 3936 + ] 3937 + 3938 + [[package]] 3939 + name = "sec1" 3940 + version = "0.3.0" 3941 + source = "registry+https://github.com/rust-lang/crates.io-index" 3942 + checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 3943 + dependencies = [ 3944 + "base16ct", 3945 + "der", 3946 + "generic-array", 3947 + "pkcs8", 3948 + "subtle", 3949 + "zeroize", 3336 3950 ] 3337 3951 3338 3952 [[package]] 3339 3953 name = "security-framework" 3340 - version = "2.9.2" 3954 + version = "2.11.0" 3341 3955 source = "registry+https://github.com/rust-lang/crates.io-index" 3342 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 3956 + checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 3343 3957 dependencies = [ 3344 - "bitflags 1.3.2", 3958 + "bitflags 2.6.0", 3345 3959 "core-foundation", 3346 3960 "core-foundation-sys", 3347 3961 "libc", ··· 3350 3964 3351 3965 [[package]] 3352 3966 name = "security-framework-sys" 3353 - version = "2.9.1" 3967 + version = "2.11.0" 3354 3968 source = "registry+https://github.com/rust-lang/crates.io-index" 3355 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 3969 + checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 3356 3970 dependencies = [ 3357 3971 "core-foundation-sys", 3358 3972 "libc", ··· 3369 3983 3370 3984 [[package]] 3371 3985 name = "semver" 3372 - version = "1.0.20" 3986 + version = "1.0.23" 3373 3987 source = "registry+https://github.com/rust-lang/crates.io-index" 3374 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 3375 - dependencies = [ 3376 - "serde", 3377 - ] 3988 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 3378 3989 3379 3990 [[package]] 3380 3991 name = "semver-parser" ··· 3384 3995 3385 3996 [[package]] 3386 3997 name = "sentry" 3387 - version = "0.31.8" 3998 + version = "0.34.0" 3388 3999 source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "6ce4b57f1b521f674df7a1d200be8ff5d74e3712020ee25b553146657b5377d5" 4000 + checksum = "5484316556650182f03b43d4c746ce0e3e48074a21e2f51244b648b6542e1066" 3390 4001 dependencies = [ 3391 4002 "httpdate", 3392 4003 "native-tls", ··· 3405 4016 3406 4017 [[package]] 3407 4018 name = "sentry-anyhow" 3408 - version = "0.31.8" 4019 + version = "0.34.0" 3409 4020 source = "registry+https://github.com/rust-lang/crates.io-index" 3410 - checksum = "8868ca6e513f7a80b394b7e0f4b6071afeebb69e62b5e4aafe37b45e431fac8b" 4021 + checksum = "d672bfd1ed4e90978435f3c0704edb71a7a9d86403657839d518cd6aa278aff5" 3411 4022 dependencies = [ 3412 4023 "anyhow", 3413 4024 "sentry-backtrace", ··· 3416 4027 3417 4028 [[package]] 3418 4029 name = "sentry-backtrace" 3419 - version = "0.31.8" 4030 + version = "0.34.0" 3420 4031 source = "registry+https://github.com/rust-lang/crates.io-index" 3421 - checksum = "58cc8d4e04a73de8f718dc703943666d03f25d3e9e4d0fb271ca0b8c76dfa00e" 4032 + checksum = "40aa225bb41e2ec9d7c90886834367f560efc1af028f1c5478a6cce6a59c463a" 3422 4033 dependencies = [ 3423 4034 "backtrace", 3424 4035 "once_cell", ··· 3428 4039 3429 4040 [[package]] 3430 4041 name = "sentry-contexts" 3431 - version = "0.31.8" 4042 + version = "0.34.0" 3432 4043 source = "registry+https://github.com/rust-lang/crates.io-index" 3433 - checksum = "6436c1bad22cdeb02179ea8ef116ffc217797c028927def303bc593d9320c0d1" 4044 + checksum = "1a8dd746da3d16cb8c39751619cefd4fcdbd6df9610f3310fd646b55f6e39910" 3434 4045 dependencies = [ 3435 - "hostname", 4046 + "hostname 0.4.0", 3436 4047 "libc", 3437 4048 "os_info", 3438 4049 "rustc_version 0.4.0", ··· 3442 4053 3443 4054 [[package]] 3444 4055 name = "sentry-core" 3445 - version = "0.31.8" 4056 + version = "0.34.0" 3446 4057 source = "registry+https://github.com/rust-lang/crates.io-index" 3447 - checksum = "901f761681f97db3db836ef9e094acdd8756c40215326c194201941947164ef1" 4058 + checksum = "161283cfe8e99c8f6f236a402b9ccf726b201f365988b5bb637ebca0abbd4a30" 3448 4059 dependencies = [ 3449 4060 "once_cell", 3450 4061 "rand", ··· 3455 4066 3456 4067 [[package]] 3457 4068 name = "sentry-debug-images" 3458 - version = "0.31.8" 4069 + version = "0.34.0" 3459 4070 source = "registry+https://github.com/rust-lang/crates.io-index" 3460 - checksum = "afdb263e73d22f39946f6022ed455b7561b22ff5553aca9be3c6a047fa39c328" 4071 + checksum = "8fc6b25e945fcaa5e97c43faee0267eebda9f18d4b09a251775d8fef1086238a" 3461 4072 dependencies = [ 3462 4073 "findshlibs", 3463 4074 "once_cell", ··· 3466 4077 3467 4078 [[package]] 3468 4079 name = "sentry-panic" 3469 - version = "0.31.8" 4080 + version = "0.34.0" 3470 4081 source = "registry+https://github.com/rust-lang/crates.io-index" 3471 - checksum = "74fbf1c163f8b6a9d05912e1b272afa27c652e8b47ea60cb9a57ad5e481eea99" 4082 + checksum = "bc74f229c7186dd971a9491ffcbe7883544aa064d1589bd30b83fb856cd22d63" 3472 4083 dependencies = [ 3473 4084 "sentry-backtrace", 3474 4085 "sentry-core", ··· 3476 4087 3477 4088 [[package]] 3478 4089 name = "sentry-tower" 3479 - version = "0.31.8" 4090 + version = "0.34.0" 3480 4091 source = "registry+https://github.com/rust-lang/crates.io-index" 3481 - checksum = "88e782e369edac4adfc5bf528b27577270bc3e7023c388ebad9db08e1d56b30b" 4092 + checksum = "6c90802b38c899a2c9e557dff25ad186362eddf755d5f5244001b172dd03bead" 3482 4093 dependencies = [ 3483 - "http", 4094 + "http 1.1.0", 3484 4095 "pin-project", 3485 4096 "sentry-core", 3486 4097 "tower-layer", ··· 3490 4101 3491 4102 [[package]] 3492 4103 name = "sentry-tracing" 3493 - version = "0.31.8" 4104 + version = "0.34.0" 3494 4105 source = "registry+https://github.com/rust-lang/crates.io-index" 3495 - checksum = "82eabcab0a047040befd44599a1da73d3adb228ff53b5ed9795ae04535577704" 4106 + checksum = "cd3c5faf2103cd01eeda779ea439b68c4ee15adcdb16600836e97feafab362ec" 3496 4107 dependencies = [ 3497 4108 "sentry-backtrace", 3498 4109 "sentry-core", ··· 3502 4113 3503 4114 [[package]] 3504 4115 name = "sentry-types" 3505 - version = "0.31.8" 4116 + version = "0.34.0" 3506 4117 source = "registry+https://github.com/rust-lang/crates.io-index" 3507 - checksum = "da956cca56e0101998c8688bc65ce1a96f00673a0e58e663664023d4c7911e82" 4118 + checksum = "5d68cdf6bc41b8ff3ae2a9c4671e97426dcdd154cc1d4b6b72813f285d6b163f" 3508 4119 dependencies = [ 3509 4120 "debugid", 3510 4121 "hex", ··· 3519 4130 3520 4131 [[package]] 3521 4132 name = "serde" 3522 - version = "1.0.193" 4133 + version = "1.0.204" 3523 4134 source = "registry+https://github.com/rust-lang/crates.io-index" 3524 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 4135 + checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" 3525 4136 dependencies = [ 3526 4137 "serde_derive", 3527 4138 ] 3528 4139 3529 4140 [[package]] 3530 4141 name = "serde_derive" 3531 - version = "1.0.193" 4142 + version = "1.0.204" 3532 4143 source = "registry+https://github.com/rust-lang/crates.io-index" 3533 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 4144 + checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" 3534 4145 dependencies = [ 3535 4146 "proc-macro2", 3536 4147 "quote", 3537 - "syn 2.0.39", 4148 + "syn", 3538 4149 ] 3539 4150 3540 4151 [[package]] 3541 4152 name = "serde_json" 3542 - version = "1.0.108" 4153 + version = "1.0.120" 3543 4154 source = "registry+https://github.com/rust-lang/crates.io-index" 3544 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 4155 + checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" 3545 4156 dependencies = [ 3546 4157 "itoa", 3547 4158 "ryu", ··· 3550 4161 3551 4162 [[package]] 3552 4163 name = "serde_path_to_error" 3553 - version = "0.1.14" 4164 + version = "0.1.16" 3554 4165 source = "registry+https://github.com/rust-lang/crates.io-index" 3555 - checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" 4166 + checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 3556 4167 dependencies = [ 3557 4168 "itoa", 3558 4169 "serde", ··· 3560 4171 3561 4172 [[package]] 3562 4173 name = "serde_spanned" 3563 - version = "0.6.4" 4174 + version = "0.6.6" 3564 4175 source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 4176 + checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 3566 4177 dependencies = [ 3567 4178 "serde", 3568 4179 ] ··· 3581 4192 3582 4193 [[package]] 3583 4194 name = "serde_yaml" 3584 - version = "0.9.27" 4195 + version = "0.9.34+deprecated" 3585 4196 source = "registry+https://github.com/rust-lang/crates.io-index" 3586 - checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" 4197 + checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 3587 4198 dependencies = [ 3588 4199 "indexmap", 3589 4200 "itoa", ··· 3636 4247 3637 4248 [[package]] 3638 4249 name = "shlex" 3639 - version = "1.2.0" 4250 + version = "1.3.0" 3640 4251 source = "registry+https://github.com/rust-lang/crates.io-index" 3641 - checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 4252 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3642 4253 3643 4254 [[package]] 3644 4255 name = "signal-hook" 3645 - version = "0.1.17" 4256 + version = "0.3.17" 3646 4257 source = "registry+https://github.com/rust-lang/crates.io-index" 3647 - checksum = "7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729" 4258 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 3648 4259 dependencies = [ 3649 4260 "libc", 3650 - "mio 0.7.14", 3651 4261 "signal-hook-registry", 3652 4262 ] 3653 4263 3654 4264 [[package]] 4265 + name = "signal-hook-mio" 4266 + version = "0.2.3" 4267 + source = "registry+https://github.com/rust-lang/crates.io-index" 4268 + checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 4269 + dependencies = [ 4270 + "libc", 4271 + "mio", 4272 + "signal-hook", 4273 + ] 4274 + 4275 + [[package]] 3655 4276 name = "signal-hook-registry" 3656 - version = "1.4.1" 4277 + version = "1.4.2" 3657 4278 source = "registry+https://github.com/rust-lang/crates.io-index" 3658 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4279 + checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3659 4280 dependencies = [ 3660 4281 "libc", 3661 4282 ] 3662 4283 3663 4284 [[package]] 4285 + name = "signature" 4286 + version = "1.6.4" 4287 + source = "registry+https://github.com/rust-lang/crates.io-index" 4288 + checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 4289 + dependencies = [ 4290 + "digest", 4291 + "rand_core", 4292 + ] 4293 + 4294 + [[package]] 4295 + name = "simd-abstraction" 4296 + version = "0.7.1" 4297 + source = "registry+https://github.com/rust-lang/crates.io-index" 4298 + checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987" 4299 + dependencies = [ 4300 + "outref 0.1.0", 4301 + ] 4302 + 4303 + [[package]] 4304 + name = "simd-adler32" 4305 + version = "0.3.7" 4306 + source = "registry+https://github.com/rust-lang/crates.io-index" 4307 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 4308 + 4309 + [[package]] 3664 4310 name = "similar" 3665 - version = "2.3.0" 4311 + version = "2.5.0" 3666 4312 source = "registry+https://github.com/rust-lang/crates.io-index" 3667 - checksum = "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" 4313 + checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" 3668 4314 3669 4315 [[package]] 3670 4316 name = "simple_asn1" ··· 3685 4331 checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3686 4332 3687 4333 [[package]] 3688 - name = "skeptic" 3689 - version = "0.13.7" 4334 + name = "sketches-ddsketch" 4335 + version = "0.3.0" 3690 4336 source = "registry+https://github.com/rust-lang/crates.io-index" 3691 - checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" 3692 - dependencies = [ 3693 - "bytecount", 3694 - "cargo_metadata", 3695 - "error-chain", 3696 - "glob", 3697 - "pulldown-cmark", 3698 - "tempfile", 3699 - "walkdir", 3700 - ] 4337 + checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a" 3701 4338 3702 4339 [[package]] 3703 4340 name = "slab" ··· 3710 4347 3711 4348 [[package]] 3712 4349 name = "smallvec" 3713 - version = "1.11.2" 4350 + version = "1.13.2" 3714 4351 source = "registry+https://github.com/rust-lang/crates.io-index" 3715 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4352 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 3716 4353 3717 4354 [[package]] 3718 4355 name = "smart-default" ··· 3722 4359 dependencies = [ 3723 4360 "proc-macro2", 3724 4361 "quote", 3725 - "syn 2.0.39", 4362 + "syn", 3726 4363 ] 3727 4364 3728 4365 [[package]] ··· 3738 4375 3739 4376 [[package]] 3740 4377 name = "socket2" 3741 - version = "0.4.10" 4378 + version = "0.5.7" 3742 4379 source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 4380 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 3744 4381 dependencies = [ 3745 4382 "libc", 3746 - "winapi", 3747 - ] 3748 - 3749 - [[package]] 3750 - name = "socket2" 3751 - version = "0.5.5" 3752 - source = "registry+https://github.com/rust-lang/crates.io-index" 3753 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 3754 - dependencies = [ 3755 - "libc", 3756 - "windows-sys 0.48.0", 4383 + "windows-sys 0.52.0", 3757 4384 ] 3758 4385 3759 4386 [[package]] 3760 4387 name = "sourcemap" 3761 - version = "7.0.1" 4388 + version = "8.0.1" 3762 4389 source = "registry+https://github.com/rust-lang/crates.io-index" 3763 - checksum = "10da010a590ed2fa9ca8467b00ce7e9c5a8017742c0c09c45450efc172208c4b" 4390 + checksum = "208d40b9e8cad9f93613778ea295ed8f3c2b1824217c6cfc7219d3f6f45b96d4" 3764 4391 dependencies = [ 4392 + "base64-simd 0.7.0", 4393 + "bitvec", 3765 4394 "data-encoding", 3766 4395 "debugid", 3767 4396 "if_chain", 4397 + "rustc-hash 1.1.0", 3768 4398 "rustc_version 0.2.3", 3769 4399 "serde", 3770 4400 "serde_json", 3771 - "unicode-id", 4401 + "unicode-id-start", 3772 4402 "url", 3773 4403 ] 3774 4404 3775 4405 [[package]] 3776 4406 name = "spin" 3777 - version = "0.5.2" 4407 + version = "0.9.8" 3778 4408 source = "registry+https://github.com/rust-lang/crates.io-index" 3779 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4409 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3780 4410 3781 4411 [[package]] 3782 - name = "spin" 3783 - version = "0.9.8" 4412 + name = "spki" 4413 + version = "0.6.0" 3784 4414 source = "registry+https://github.com/rust-lang/crates.io-index" 3785 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4415 + checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 4416 + dependencies = [ 4417 + "base64ct", 4418 + "der", 4419 + ] 3786 4420 3787 4421 [[package]] 3788 4422 name = "stable_deref_trait" ··· 3817 4451 dependencies = [ 3818 4452 "new_debug_unreachable", 3819 4453 "once_cell", 3820 - "parking_lot 0.12.1", 3821 - "phf_shared", 4454 + "parking_lot", 4455 + "phf_shared 0.10.0", 3822 4456 "precomputed-hash", 3823 4457 "serde", 3824 4458 ] 3825 4459 3826 4460 [[package]] 3827 - name = "string_cache_codegen" 3828 - version = "0.5.2" 3829 - source = "registry+https://github.com/rust-lang/crates.io-index" 3830 - checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 3831 - dependencies = [ 3832 - "phf_generator", 3833 - "phf_shared", 3834 - "proc-macro2", 3835 - "quote", 3836 - ] 3837 - 3838 - [[package]] 3839 4461 name = "string_enum" 3840 - version = "0.4.1" 4462 + version = "0.4.4" 3841 4463 source = "registry+https://github.com/rust-lang/crates.io-index" 3842 - checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252" 4464 + checksum = "05e383308aebc257e7d7920224fa055c632478d92744eca77f99be8fa1545b90" 3843 4465 dependencies = [ 3844 - "pmutil", 3845 4466 "proc-macro2", 3846 4467 "quote", 3847 4468 "swc_macros_common", 3848 - "syn 2.0.39", 4469 + "syn", 3849 4470 ] 3850 4471 3851 4472 [[package]] 3852 4473 name = "strsim" 3853 - version = "0.10.0" 4474 + version = "0.11.1" 3854 4475 source = "registry+https://github.com/rust-lang/crates.io-index" 3855 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4476 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3856 4477 3857 4478 [[package]] 3858 4479 name = "subtle" 3859 - version = "2.5.0" 4480 + version = "2.6.1" 3860 4481 source = "registry+https://github.com/rust-lang/crates.io-index" 3861 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 4482 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3862 4483 3863 4484 [[package]] 3864 4485 name = "swc_atoms" 3865 - version = "0.5.9" 4486 + version = "0.6.7" 3866 4487 source = "registry+https://github.com/rust-lang/crates.io-index" 3867 - checksum = "9f54563d7dcba626d4acfe14ed12def7ecc28e004debe3ecd2c3ee07cc47e449" 4488 + checksum = "bb6567e4e67485b3e7662b486f1565bdae54bd5b9d6b16b2ba1a9babb1e42125" 3868 4489 dependencies = [ 4490 + "hstr", 3869 4491 "once_cell", 3870 - "rustc-hash", 4492 + "rustc-hash 1.1.0", 3871 4493 "serde", 3872 - "string_cache", 3873 - "string_cache_codegen", 3874 - "triomphe", 3875 4494 ] 3876 4495 3877 4496 [[package]] 3878 4497 name = "swc_common" 3879 - version = "0.32.2" 4498 + version = "0.33.26" 3880 4499 source = "registry+https://github.com/rust-lang/crates.io-index" 3881 - checksum = "0eef62cc9409135ad6770ca4d52aa443ee8367d5322a5c7cab4c0eb96644a6ee" 4500 + checksum = "a2f9706038906e66f3919028f9f7a37f3ed552f1b85578e93f4468742e2da438" 3882 4501 dependencies = [ 3883 4502 "ast_node", 3884 4503 "better_scoped_tls", ··· 3888 4507 "new_debug_unreachable", 3889 4508 "num-bigint", 3890 4509 "once_cell", 3891 - "rustc-hash", 4510 + "rustc-hash 1.1.0", 3892 4511 "serde", 3893 4512 "siphasher", 3894 - "string_cache", 3895 4513 "swc_atoms", 3896 4514 "swc_eq_ignore_macros", 3897 4515 "swc_visit", ··· 3902 4520 3903 4521 [[package]] 3904 4522 name = "swc_ecma_ast" 3905 - version = "0.109.2" 4523 + version = "0.113.7" 3906 4524 source = "registry+https://github.com/rust-lang/crates.io-index" 3907 - checksum = "1df3fdd0752abca14a106322b4db96f954274adfb1fbef387866691ea4bc6fe4" 4525 + checksum = "98a534a8360a076a030989f6d121ba6044345594bdf0457c4629f432742026b8" 3908 4526 dependencies = [ 3909 - "bitflags 2.4.1", 4527 + "bitflags 2.6.0", 3910 4528 "is-macro", 3911 4529 "num-bigint", 4530 + "phf", 3912 4531 "scoped-tls", 3913 4532 "string_enum", 3914 4533 "swc_atoms", 3915 4534 "swc_common", 3916 - "unicode-id", 4535 + "unicode-id-start", 3917 4536 ] 3918 4537 3919 4538 [[package]] 3920 4539 name = "swc_ecma_parser" 3921 - version = "0.140.1" 4540 + version = "0.144.3" 3922 4541 source = "registry+https://github.com/rust-lang/crates.io-index" 3923 - checksum = "316c11593fc4f52a81446fae0e1f1d32836c00f546eb80405024c04cd5f8bec6" 4542 + checksum = "fc0b4193b9c127db1990a5a08111aafe0122bc8b138646807c63f2a6521b7da4" 3924 4543 dependencies = [ 3925 4544 "either", 4545 + "new_debug_unreachable", 3926 4546 "num-bigint", 3927 4547 "num-traits", 4548 + "phf", 3928 4549 "serde", 3929 4550 "smallvec", 3930 4551 "smartstring", ··· 3938 4559 3939 4560 [[package]] 3940 4561 name = "swc_ecma_visit" 3941 - version = "0.95.2" 4562 + version = "0.99.1" 3942 4563 source = "registry+https://github.com/rust-lang/crates.io-index" 3943 - checksum = "2decba8d98d8ecb241e3a75df568bb3818c657adeef7bc2025335a1efbd92d60" 4564 + checksum = "28a6ce28ad8e591f8d627f1f9cb26b25e5d83052a9bc1b674d95fc28040cfa98" 3944 4565 dependencies = [ 3945 4566 "num-bigint", 3946 4567 "swc_atoms", ··· 3952 4573 3953 4574 [[package]] 3954 4575 name = "swc_eq_ignore_macros" 3955 - version = "0.1.2" 4576 + version = "0.1.3" 3956 4577 source = "registry+https://github.com/rust-lang/crates.io-index" 3957 - checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8" 4578 + checksum = "695a1d8b461033d32429b5befbf0ad4d7a2c4d6ba9cd5ba4e0645c615839e8e4" 3958 4579 dependencies = [ 3959 - "pmutil", 3960 4580 "proc-macro2", 3961 4581 "quote", 3962 - "syn 2.0.39", 4582 + "syn", 3963 4583 ] 3964 4584 3965 4585 [[package]] 3966 4586 name = "swc_macros_common" 3967 - version = "0.3.8" 4587 + version = "0.3.11" 3968 4588 source = "registry+https://github.com/rust-lang/crates.io-index" 3969 - checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832" 4589 + checksum = "91745f3561057493d2da768437c427c0e979dff7396507ae02f16c981c4a8466" 3970 4590 dependencies = [ 3971 - "pmutil", 3972 4591 "proc-macro2", 3973 4592 "quote", 3974 - "syn 2.0.39", 4593 + "syn", 3975 4594 ] 3976 4595 3977 4596 [[package]] 3978 4597 name = "swc_visit" 3979 - version = "0.5.7" 4598 + version = "0.5.14" 3980 4599 source = "registry+https://github.com/rust-lang/crates.io-index" 3981 - checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3" 4600 + checksum = "043d11fe683dcb934583ead49405c0896a5af5face522e4682c16971ef7871b9" 3982 4601 dependencies = [ 3983 4602 "either", 3984 4603 "swc_visit_macros", ··· 3986 4605 3987 4606 [[package]] 3988 4607 name = "swc_visit_macros" 3989 - version = "0.5.8" 4608 + version = "0.5.12" 3990 4609 source = "registry+https://github.com/rust-lang/crates.io-index" 3991 - checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99" 4610 + checksum = "4ae9ef18ff8daffa999f729db056d2821cd2f790f3a11e46422d19f46bb193e7" 3992 4611 dependencies = [ 3993 4612 "Inflector", 3994 - "pmutil", 3995 4613 "proc-macro2", 3996 4614 "quote", 3997 4615 "swc_macros_common", 3998 - "syn 2.0.39", 4616 + "syn", 3999 4617 ] 4000 4618 4001 4619 [[package]] 4002 4620 name = "symbolic" 4003 - version = "12.7.0" 4621 + version = "12.9.2" 4004 4622 source = "registry+https://github.com/rust-lang/crates.io-index" 4005 - checksum = "7c95bb608dafe99d26a0299c52cfd476f1e3862b8e97231b6baebc41cc8194e3" 4623 + checksum = "85aabcf85c883278298596217d678c8d3ca256445d732eac59303ce04863c46f" 4006 4624 dependencies = [ 4007 4625 "symbolic-cfi", 4008 4626 "symbolic-common", ··· 4016 4634 4017 4635 [[package]] 4018 4636 name = "symbolic-cfi" 4019 - version = "12.7.0" 4637 + version = "12.9.2" 4020 4638 source = "registry+https://github.com/rust-lang/crates.io-index" 4021 - checksum = "42cb576274e18007e588230c0bd582cf008d961a6c4ed0c5b1dd057277c62141" 4639 + checksum = "63ed43f6b8769d681296cbbf6f108bed81465f04f3bc3358d0cd76dcc6d8cd27" 4022 4640 dependencies = [ 4023 4641 "symbolic-common", 4024 4642 "symbolic-debuginfo", ··· 4027 4645 4028 4646 [[package]] 4029 4647 name = "symbolic-common" 4030 - version = "12.7.0" 4648 + version = "12.9.2" 4031 4649 source = "registry+https://github.com/rust-lang/crates.io-index" 4032 - checksum = "39eac77836da383d35edbd9ff4585b4fc1109929ff641232f2e9a1aefdfc9e91" 4650 + checksum = "71297dc3e250f7dbdf8adb99e235da783d690f5819fdeb4cce39d9cfb0aca9f1" 4033 4651 dependencies = [ 4034 4652 "debugid", 4035 - "memmap2 0.8.0", 4653 + "memmap2", 4036 4654 "serde", 4037 4655 "stable_deref_trait", 4038 4656 "uuid", ··· 4040 4658 4041 4659 [[package]] 4042 4660 name = "symbolic-debuginfo" 4043 - version = "12.7.0" 4661 + version = "12.9.2" 4044 4662 source = "registry+https://github.com/rust-lang/crates.io-index" 4045 - checksum = "739b8e5adb84c9f7658e9fdd533002c0384af3ff7fc34874634faf670290030a" 4663 + checksum = "abdc791ca87a69a5d09913d87f1e5ac95229be414ec0ff6c0fe2ddff6199f3b6" 4046 4664 dependencies = [ 4047 4665 "debugid", 4048 4666 "dmsort", ··· 4050 4668 "elsa", 4051 4669 "fallible-iterator 0.3.0", 4052 4670 "flate2", 4053 - "gimli", 4671 + "gimli 0.30.0", 4054 4672 "goblin", 4055 4673 "lazy_static", 4056 4674 "nom", 4057 4675 "nom-supreme", 4058 4676 "once_cell", 4059 - "parking_lot 0.12.1", 4677 + "parking_lot", 4060 4678 "pdb-addr2line", 4061 4679 "regex", 4062 - "scroll", 4680 + "scroll 0.12.0", 4063 4681 "serde", 4064 4682 "serde_json", 4065 4683 "smallvec", ··· 4068 4686 "thiserror", 4069 4687 "wasmparser", 4070 4688 "zip", 4689 + "zstd", 4071 4690 ] 4072 4691 4073 4692 [[package]] 4074 4693 name = "symbolic-demangle" 4075 - version = "12.7.0" 4694 + version = "12.9.2" 4076 4695 source = "registry+https://github.com/rust-lang/crates.io-index" 4077 - checksum = "4ee1608a1d13061fb0e307a316de29f6c6e737b05459fe6bbf5dd8d7837c4fb7" 4696 + checksum = "424fa2c9bf2c862891b9cfd354a752751a6730fd838a4691e7f6c2c7957b9daf" 4078 4697 dependencies = [ 4079 4698 "cc", 4080 4699 "cpp_demangle", ··· 4085 4704 4086 4705 [[package]] 4087 4706 name = "symbolic-il2cpp" 4088 - version = "12.7.0" 4707 + version = "12.9.2" 4089 4708 source = "registry+https://github.com/rust-lang/crates.io-index" 4090 - checksum = "d61323ed9e8e03a5894802a0d8b0863669bd29a46c9b0520ff32c7f47d23572d" 4709 + checksum = "88cc2a0a415e3cb2dfb900f6f5b3abf5ccd356c236927b36b3d09046175acbde" 4091 4710 dependencies = [ 4092 4711 "indexmap", 4093 4712 "serde_json", ··· 4097 4716 4098 4717 [[package]] 4099 4718 name = "symbolic-ppdb" 4100 - version = "12.7.0" 4719 + version = "12.9.2" 4101 4720 source = "registry+https://github.com/rust-lang/crates.io-index" 4102 - checksum = "7ac3a6629c83a0249f2561b89eede30014700828336c0b78a209d1f87c78613a" 4721 + checksum = "92ccffa1e6b313c007dddcc3a91166a64055a0a956e1429ee179a808fa3b2c62" 4103 4722 dependencies = [ 4104 4723 "flate2", 4105 4724 "indexmap", ··· 4113 4732 4114 4733 [[package]] 4115 4734 name = "symbolic-sourcemapcache" 4116 - version = "12.7.0" 4735 + version = "12.9.2" 4117 4736 source = "registry+https://github.com/rust-lang/crates.io-index" 4118 - checksum = "ca12d0f101ca883cdcb34e3e3b07d9c9b4a2c82618b7701837da8bbc8d9b414f" 4737 + checksum = "a8fbfcf544adcb5173629d64ae663c8d7789760367a37bf9474051871a7ea7f8" 4119 4738 dependencies = [ 4120 - "itertools", 4739 + "itertools 0.13.0", 4121 4740 "js-source-scopes", 4122 4741 "sourcemap", 4123 4742 "symbolic-common", ··· 4128 4747 4129 4748 [[package]] 4130 4749 name = "symbolic-symcache" 4131 - version = "12.7.0" 4750 + version = "12.9.2" 4132 4751 source = "registry+https://github.com/rust-lang/crates.io-index" 4133 - checksum = "327aac613f25658f9b35b692d084597aaafaa106df4e2030c16fe88fc1b10b10" 4752 + checksum = "1cb772d8bea63f0cc1cbb0690bbd3d955a27746e380954d7e1a30e88d7aaecd5" 4134 4753 dependencies = [ 4135 4754 "indexmap", 4136 4755 "symbolic-common", ··· 4143 4762 4144 4763 [[package]] 4145 4764 name = "symbolicator" 4146 - version = "23.11.2" 4765 + version = "24.7.1" 4147 4766 dependencies = [ 4148 4767 "anyhow", 4149 4768 "axum", ··· 4151 4770 "clap", 4152 4771 "console", 4153 4772 "futures", 4154 - "hostname", 4773 + "hostname 0.4.0", 4155 4774 "insta", 4156 4775 "jemallocator", 4157 4776 "reqwest", ··· 4162 4781 "symbolicator-crash", 4163 4782 "symbolicator-js", 4164 4783 "symbolicator-native", 4784 + "symbolicator-proguard", 4165 4785 "symbolicator-service", 4166 4786 "symbolicator-sources", 4167 4787 "symbolicator-test", ··· 4175 4795 "tower-service", 4176 4796 "tracing", 4177 4797 "tracing-subscriber", 4178 - "url", 4179 4798 "uuid", 4180 4799 ] 4181 4800 4182 4801 [[package]] 4183 4802 name = "symbolicator-crash" 4184 - version = "23.11.2" 4803 + version = "24.7.1" 4185 4804 dependencies = [ 4186 4805 "bindgen", 4187 4806 "cmake", ··· 4189 4808 4190 4809 [[package]] 4191 4810 name = "symbolicator-js" 4192 - version = "23.11.2" 4811 + version = "24.7.1" 4193 4812 dependencies = [ 4194 4813 "data-url", 4195 4814 "futures", ··· 4215 4834 4216 4835 [[package]] 4217 4836 name = "symbolicator-native" 4218 - version = "23.11.2" 4837 + version = "24.7.1" 4219 4838 dependencies = [ 4220 4839 "anyhow", 4221 4840 "apple-crash-report-parser", ··· 4245 4864 ] 4246 4865 4247 4866 [[package]] 4867 + name = "symbolicator-proguard" 4868 + version = "24.7.1" 4869 + dependencies = [ 4870 + "futures", 4871 + "insta", 4872 + "proguard", 4873 + "serde", 4874 + "serde_json", 4875 + "symbolic", 4876 + "symbolicator-service", 4877 + "symbolicator-sources", 4878 + "symbolicator-test", 4879 + "tempfile", 4880 + "tokio", 4881 + "tracing", 4882 + ] 4883 + 4884 + [[package]] 4248 4885 name = "symbolicator-service" 4249 - version = "23.11.2" 4886 + version = "24.7.1" 4250 4887 dependencies = [ 4251 4888 "anyhow", 4252 4889 "aws-config", 4253 4890 "aws-credential-types", 4254 4891 "aws-sdk-s3", 4255 - "aws-types", 4256 4892 "cadence", 4257 4893 "chrono", 4894 + "crossbeam-utils", 4258 4895 "filetime", 4259 4896 "flate2", 4260 4897 "futures", 4261 4898 "gcp_auth", 4262 4899 "humantime", 4263 4900 "humantime-serde", 4264 - "idna 0.4.0", 4901 + "idna 1.0.2", 4265 4902 "ipnetwork", 4266 4903 "jsonwebtoken", 4267 4904 "moka", 4268 4905 "once_cell", 4269 4906 "rand", 4270 4907 "reqwest", 4908 + "rustc-hash 2.0.0", 4271 4909 "sentry", 4272 4910 "serde", 4273 4911 "serde_json", ··· 4279 4917 "symbolicator-test", 4280 4918 "tempfile", 4281 4919 "thiserror", 4920 + "thread_local", 4282 4921 "tokio", 4283 4922 "tokio-util", 4284 4923 "tracing", 4924 + "tracing-subscriber", 4285 4925 "url", 4286 4926 "uuid", 4287 4927 "zip", ··· 4290 4930 4291 4931 [[package]] 4292 4932 name = "symbolicator-sources" 4293 - version = "23.11.2" 4933 + version = "24.7.1" 4294 4934 dependencies = [ 4295 4935 "anyhow", 4296 4936 "aws-types", ··· 4305 4945 4306 4946 [[package]] 4307 4947 name = "symbolicator-stress" 4308 - version = "23.11.2" 4948 + version = "24.7.1" 4309 4949 dependencies = [ 4310 4950 "anyhow", 4311 4951 "axum", 4312 4952 "clap", 4313 4953 "futures", 4314 4954 "humantime", 4955 + "jemallocator", 4315 4956 "sentry", 4316 4957 "serde", 4317 4958 "serde_json", 4318 4959 "serde_yaml", 4960 + "sketches-ddsketch", 4319 4961 "symbolicator-js", 4320 4962 "symbolicator-native", 4321 4963 "symbolicator-service", 4322 4964 "symbolicator-test", 4323 4965 "tempfile", 4324 4966 "tokio", 4325 - "tracing-subscriber", 4326 4967 ] 4327 4968 4328 4969 [[package]] 4329 4970 name = "symbolicator-test" 4330 - version = "23.11.2" 4971 + version = "24.7.1" 4331 4972 dependencies = [ 4332 4973 "axum", 4333 4974 "humantime", ··· 4345 4986 4346 4987 [[package]] 4347 4988 name = "symbolicli" 4348 - version = "23.11.2" 4989 + version = "24.7.1" 4349 4990 dependencies = [ 4350 4991 "anyhow", 4351 4992 "clap", ··· 4354 4995 "reqwest", 4355 4996 "serde", 4356 4997 "serde_json", 4357 - "serde_yaml", 4358 4998 "symbolic", 4359 4999 "symbolicator-js", 4360 5000 "symbolicator-native", ··· 4365 5005 "toml", 4366 5006 "tracing", 4367 5007 "tracing-subscriber", 4368 - "url", 4369 5008 ] 4370 5009 4371 5010 [[package]] 4372 5011 name = "symsorter" 4373 - version = "23.11.2" 5012 + version = "24.7.1" 4374 5013 dependencies = [ 4375 5014 "anyhow", 4376 5015 "chrono", ··· 4389 5028 4390 5029 [[package]] 4391 5030 name = "syn" 4392 - version = "1.0.109" 5031 + version = "2.0.70" 4393 5032 source = "registry+https://github.com/rust-lang/crates.io-index" 4394 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 5033 + checksum = "2f0209b68b3613b093e0ec905354eccaedcfe83b8cb37cbdeae64026c3064c16" 4395 5034 dependencies = [ 4396 5035 "proc-macro2", 4397 5036 "quote", ··· 4399 5038 ] 4400 5039 4401 5040 [[package]] 4402 - name = "syn" 4403 - version = "2.0.39" 5041 + name = "sync_wrapper" 5042 + version = "0.1.2" 4404 5043 source = "registry+https://github.com/rust-lang/crates.io-index" 4405 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 4406 - dependencies = [ 4407 - "proc-macro2", 4408 - "quote", 4409 - "unicode-ident", 4410 - ] 5044 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4411 5045 4412 5046 [[package]] 4413 5047 name = "sync_wrapper" 4414 - version = "0.1.2" 5048 + version = "1.0.1" 4415 5049 source = "registry+https://github.com/rust-lang/crates.io-index" 4416 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 5050 + checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 4417 5051 4418 5052 [[package]] 4419 5053 name = "synstructure" 4420 - version = "0.12.6" 5054 + version = "0.13.1" 4421 5055 source = "registry+https://github.com/rust-lang/crates.io-index" 4422 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 5056 + checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 4423 5057 dependencies = [ 4424 5058 "proc-macro2", 4425 5059 "quote", 4426 - "syn 1.0.109", 4427 - "unicode-xid", 5060 + "syn", 4428 5061 ] 4429 5062 4430 5063 [[package]] ··· 4455 5088 checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 4456 5089 4457 5090 [[package]] 5091 + name = "tap" 5092 + version = "1.0.1" 5093 + source = "registry+https://github.com/rust-lang/crates.io-index" 5094 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 5095 + 5096 + [[package]] 4458 5097 name = "tempfile" 4459 - version = "3.8.1" 5098 + version = "3.10.1" 4460 5099 source = "registry+https://github.com/rust-lang/crates.io-index" 4461 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 5100 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 4462 5101 dependencies = [ 4463 5102 "cfg-if", 4464 5103 "fastrand", 4465 - "redox_syscall 0.4.1", 4466 5104 "rustix", 4467 - "windows-sys 0.48.0", 5105 + "windows-sys 0.52.0", 4468 5106 ] 4469 5107 4470 5108 [[package]] ··· 4489 5127 4490 5128 [[package]] 4491 5129 name = "thiserror" 4492 - version = "1.0.50" 5130 + version = "1.0.61" 4493 5131 source = "registry+https://github.com/rust-lang/crates.io-index" 4494 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 5132 + checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 4495 5133 dependencies = [ 4496 5134 "thiserror-impl", 4497 5135 ] 4498 5136 4499 5137 [[package]] 4500 5138 name = "thiserror-impl" 4501 - version = "1.0.50" 5139 + version = "1.0.61" 4502 5140 source = "registry+https://github.com/rust-lang/crates.io-index" 4503 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 5141 + checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 4504 5142 dependencies = [ 4505 5143 "proc-macro2", 4506 5144 "quote", 4507 - "syn 2.0.39", 5145 + "syn", 4508 5146 ] 4509 5147 4510 5148 [[package]] 4511 5149 name = "thread_local" 4512 - version = "1.1.7" 5150 + version = "1.1.8" 4513 5151 source = "registry+https://github.com/rust-lang/crates.io-index" 4514 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 5152 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 4515 5153 dependencies = [ 4516 5154 "cfg-if", 4517 5155 "once_cell", ··· 4519 5157 4520 5158 [[package]] 4521 5159 name = "time" 4522 - version = "0.3.30" 5160 + version = "0.3.36" 4523 5161 source = "registry+https://github.com/rust-lang/crates.io-index" 4524 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 5162 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 4525 5163 dependencies = [ 4526 5164 "deranged", 4527 5165 "itoa", 4528 - "libc", 4529 - "num_threads", 5166 + "num-conv", 4530 5167 "powerfmt", 4531 5168 "serde", 4532 5169 "time-core", ··· 4541 5178 4542 5179 [[package]] 4543 5180 name = "time-macros" 4544 - version = "0.2.15" 5181 + version = "0.2.18" 4545 5182 source = "registry+https://github.com/rust-lang/crates.io-index" 4546 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 5183 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 4547 5184 dependencies = [ 5185 + "num-conv", 4548 5186 "time-core", 4549 5187 ] 4550 5188 4551 5189 [[package]] 5190 + name = "tinystr" 5191 + version = "0.7.6" 5192 + source = "registry+https://github.com/rust-lang/crates.io-index" 5193 + checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 5194 + dependencies = [ 5195 + "displaydoc", 5196 + "zerovec", 5197 + ] 5198 + 5199 + [[package]] 4552 5200 name = "tinyvec" 4553 - version = "1.6.0" 5201 + version = "1.8.0" 4554 5202 source = "registry+https://github.com/rust-lang/crates.io-index" 4555 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 5203 + checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 4556 5204 dependencies = [ 4557 5205 "tinyvec_macros", 4558 5206 ] ··· 4565 5213 4566 5214 [[package]] 4567 5215 name = "tokio" 4568 - version = "1.34.0" 5216 + version = "1.38.0" 4569 5217 source = "registry+https://github.com/rust-lang/crates.io-index" 4570 - checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 5218 + checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 4571 5219 dependencies = [ 4572 5220 "backtrace", 4573 5221 "bytes", 4574 5222 "libc", 4575 - "mio 0.8.9", 5223 + "mio", 4576 5224 "num_cpus", 4577 5225 "pin-project-lite", 4578 - "socket2 0.5.5", 5226 + "signal-hook-registry", 5227 + "socket2", 4579 5228 "tokio-macros", 4580 5229 "windows-sys 0.48.0", 4581 5230 ] 4582 5231 4583 5232 [[package]] 4584 5233 name = "tokio-macros" 4585 - version = "2.2.0" 5234 + version = "2.3.0" 4586 5235 source = "registry+https://github.com/rust-lang/crates.io-index" 4587 - checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 5236 + checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 4588 5237 dependencies = [ 4589 5238 "proc-macro2", 4590 5239 "quote", 4591 - "syn 2.0.39", 5240 + "syn", 4592 5241 ] 4593 5242 4594 5243 [[package]] ··· 4619 5268 source = "registry+https://github.com/rust-lang/crates.io-index" 4620 5269 checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 4621 5270 dependencies = [ 4622 - "rustls", 5271 + "rustls 0.21.12", 5272 + "tokio", 5273 + ] 5274 + 5275 + [[package]] 5276 + name = "tokio-rustls" 5277 + version = "0.26.0" 5278 + source = "registry+https://github.com/rust-lang/crates.io-index" 5279 + checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 5280 + dependencies = [ 5281 + "rustls 0.23.11", 5282 + "rustls-pki-types", 4623 5283 "tokio", 4624 5284 ] 4625 5285 4626 5286 [[package]] 4627 5287 name = "tokio-stream" 4628 - version = "0.1.14" 5288 + version = "0.1.15" 4629 5289 source = "registry+https://github.com/rust-lang/crates.io-index" 4630 - checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 5290 + checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 4631 5291 dependencies = [ 4632 5292 "futures-core", 4633 5293 "pin-project-lite", ··· 4636 5296 4637 5297 [[package]] 4638 5298 name = "tokio-util" 4639 - version = "0.7.10" 5299 + version = "0.7.11" 4640 5300 source = "registry+https://github.com/rust-lang/crates.io-index" 4641 - checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 5301 + checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 4642 5302 dependencies = [ 4643 5303 "bytes", 4644 5304 "futures-core", 4645 5305 "futures-sink", 4646 5306 "pin-project-lite", 4647 5307 "tokio", 4648 - "tracing", 4649 5308 ] 4650 5309 4651 5310 [[package]] 4652 5311 name = "toml" 4653 - version = "0.8.8" 5312 + version = "0.8.14" 4654 5313 source = "registry+https://github.com/rust-lang/crates.io-index" 4655 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 5314 + checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" 4656 5315 dependencies = [ 4657 5316 "serde", 4658 5317 "serde_spanned", ··· 4662 5321 4663 5322 [[package]] 4664 5323 name = "toml_datetime" 4665 - version = "0.6.5" 5324 + version = "0.6.6" 4666 5325 source = "registry+https://github.com/rust-lang/crates.io-index" 4667 - checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 5326 + checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 4668 5327 dependencies = [ 4669 5328 "serde", 4670 5329 ] 4671 5330 4672 5331 [[package]] 4673 5332 name = "toml_edit" 4674 - version = "0.21.0" 5333 + version = "0.22.15" 4675 5334 source = "registry+https://github.com/rust-lang/crates.io-index" 4676 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 5335 + checksum = "d59a3a72298453f564e2b111fa896f8d07fabb36f51f06d7e875fc5e0b5a3ef1" 4677 5336 dependencies = [ 4678 5337 "indexmap", 4679 5338 "serde", ··· 4700 5359 4701 5360 [[package]] 4702 5361 name = "tower-http" 4703 - version = "0.4.4" 5362 + version = "0.5.2" 4704 5363 source = "registry+https://github.com/rust-lang/crates.io-index" 4705 - checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" 5364 + checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" 4706 5365 dependencies = [ 4707 - "bitflags 2.4.1", 5366 + "bitflags 2.6.0", 4708 5367 "bytes", 4709 - "futures-core", 4710 5368 "futures-util", 4711 - "http", 4712 - "http-body", 5369 + "http 1.1.0", 5370 + "http-body 1.0.0", 5371 + "http-body-util", 4713 5372 "http-range-header", 4714 5373 "httpdate", 4715 5374 "mime", ··· 4755 5414 dependencies = [ 4756 5415 "proc-macro2", 4757 5416 "quote", 4758 - "syn 2.0.39", 5417 + "syn", 4759 5418 ] 4760 5419 4761 5420 [[package]] ··· 4823 5482 4824 5483 [[package]] 4825 5484 name = "triomphe" 4826 - version = "0.1.10" 5485 + version = "0.1.11" 4827 5486 source = "registry+https://github.com/rust-lang/crates.io-index" 4828 - checksum = "d0c5a71827ac326072b6405552093e2ad2accd25a32fd78d4edc82d98c7f2409" 5487 + checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" 4829 5488 dependencies = [ 4830 5489 "serde", 4831 5490 "stable_deref_trait", 4832 5491 ] 4833 5492 4834 5493 [[package]] 4835 - name = "trust-dns-proto" 4836 - version = "0.23.2" 4837 - source = "registry+https://github.com/rust-lang/crates.io-index" 4838 - checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" 4839 - dependencies = [ 4840 - "async-trait", 4841 - "cfg-if", 4842 - "data-encoding", 4843 - "enum-as-inner", 4844 - "futures-channel", 4845 - "futures-io", 4846 - "futures-util", 4847 - "idna 0.4.0", 4848 - "ipnet", 4849 - "once_cell", 4850 - "rand", 4851 - "smallvec", 4852 - "thiserror", 4853 - "tinyvec", 4854 - "tokio", 4855 - "tracing", 4856 - "url", 4857 - ] 4858 - 4859 - [[package]] 4860 - name = "trust-dns-resolver" 4861 - version = "0.23.2" 4862 - source = "registry+https://github.com/rust-lang/crates.io-index" 4863 - checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" 4864 - dependencies = [ 4865 - "cfg-if", 4866 - "futures-util", 4867 - "ipconfig", 4868 - "lru-cache", 4869 - "once_cell", 4870 - "parking_lot 0.12.1", 4871 - "rand", 4872 - "resolv-conf", 4873 - "smallvec", 4874 - "thiserror", 4875 - "tokio", 4876 - "tracing", 4877 - "trust-dns-proto", 4878 - ] 4879 - 4880 - [[package]] 4881 5494 name = "try-lock" 4882 - version = "0.2.4" 5495 + version = "0.2.5" 4883 5496 source = "registry+https://github.com/rust-lang/crates.io-index" 4884 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 5497 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4885 5498 4886 5499 [[package]] 4887 5500 name = "typed-arena" ··· 4921 5534 4922 5535 [[package]] 4923 5536 name = "unicode-bidi" 4924 - version = "0.3.13" 5537 + version = "0.3.15" 4925 5538 source = "registry+https://github.com/rust-lang/crates.io-index" 4926 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 5539 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 4927 5540 4928 5541 [[package]] 4929 - name = "unicode-id" 4930 - version = "0.3.4" 5542 + name = "unicode-id-start" 5543 + version = "1.0.4" 4931 5544 source = "registry+https://github.com/rust-lang/crates.io-index" 4932 - checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f" 5545 + checksum = "02aebfa694eccbbbffdd92922c7de136b9fe764396d2f10e21bce1681477cfc1" 4933 5546 4934 5547 [[package]] 4935 5548 name = "unicode-ident" ··· 4939 5552 4940 5553 [[package]] 4941 5554 name = "unicode-normalization" 4942 - version = "0.1.22" 5555 + version = "0.1.23" 4943 5556 source = "registry+https://github.com/rust-lang/crates.io-index" 4944 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5557 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 4945 5558 dependencies = [ 4946 5559 "tinyvec", 4947 5560 ] 4948 5561 4949 5562 [[package]] 4950 5563 name = "unicode-width" 4951 - version = "0.1.11" 5564 + version = "0.1.13" 4952 5565 source = "registry+https://github.com/rust-lang/crates.io-index" 4953 - checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 4954 - 4955 - [[package]] 4956 - name = "unicode-xid" 4957 - version = "0.2.4" 4958 - source = "registry+https://github.com/rust-lang/crates.io-index" 4959 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5566 + checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 4960 5567 4961 5568 [[package]] 4962 5569 name = "unsafe-libyaml" 4963 - version = "0.2.9" 4964 - source = "registry+https://github.com/rust-lang/crates.io-index" 4965 - checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 4966 - 4967 - [[package]] 4968 - name = "untrusted" 4969 - version = "0.7.1" 5570 + version = "0.2.11" 4970 5571 source = "registry+https://github.com/rust-lang/crates.io-index" 4971 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 5572 + checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 4972 5573 4973 5574 [[package]] 4974 5575 name = "untrusted" ··· 4978 5579 4979 5580 [[package]] 4980 5581 name = "ureq" 4981 - version = "2.9.1" 5582 + version = "2.10.0" 4982 5583 source = "registry+https://github.com/rust-lang/crates.io-index" 4983 - checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97" 5584 + checksum = "72139d247e5f97a3eff96229a7ae85ead5328a39efe76f8bf5a06313d505b6ea" 4984 5585 dependencies = [ 4985 - "base64", 5586 + "base64 0.22.1", 4986 5587 "log", 4987 5588 "native-tls", 4988 5589 "once_cell", ··· 4991 5592 4992 5593 [[package]] 4993 5594 name = "url" 4994 - version = "2.5.0" 5595 + version = "2.5.2" 4995 5596 source = "registry+https://github.com/rust-lang/crates.io-index" 4996 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 5597 + checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 4997 5598 dependencies = [ 4998 5599 "form_urlencoded", 4999 5600 "idna 0.5.0", ··· 5008 5609 checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 5009 5610 5010 5611 [[package]] 5612 + name = "utf16_iter" 5613 + version = "1.0.5" 5614 + source = "registry+https://github.com/rust-lang/crates.io-index" 5615 + checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 5616 + 5617 + [[package]] 5618 + name = "utf8_iter" 5619 + version = "1.0.4" 5620 + source = "registry+https://github.com/rust-lang/crates.io-index" 5621 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 5622 + 5623 + [[package]] 5011 5624 name = "utf8parse" 5012 - version = "0.2.1" 5625 + version = "0.2.2" 5013 5626 source = "registry+https://github.com/rust-lang/crates.io-index" 5014 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5627 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 5015 5628 5016 5629 [[package]] 5017 5630 name = "uuid" 5018 - version = "1.6.1" 5631 + version = "1.10.0" 5019 5632 source = "registry+https://github.com/rust-lang/crates.io-index" 5020 - checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 5633 + checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 5021 5634 dependencies = [ 5022 5635 "getrandom", 5023 5636 "serde", ··· 5049 5662 5050 5663 [[package]] 5051 5664 name = "walkdir" 5052 - version = "2.4.0" 5665 + version = "2.5.0" 5053 5666 source = "registry+https://github.com/rust-lang/crates.io-index" 5054 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 5667 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 5055 5668 dependencies = [ 5056 5669 "same-file", 5057 5670 "winapi-util", ··· 5074 5687 5075 5688 [[package]] 5076 5689 name = "wasm-bindgen" 5077 - version = "0.2.88" 5690 + version = "0.2.92" 5078 5691 source = "registry+https://github.com/rust-lang/crates.io-index" 5079 - checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 5692 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 5080 5693 dependencies = [ 5081 5694 "cfg-if", 5082 5695 "wasm-bindgen-macro", ··· 5084 5697 5085 5698 [[package]] 5086 5699 name = "wasm-bindgen-backend" 5087 - version = "0.2.88" 5700 + version = "0.2.92" 5088 5701 source = "registry+https://github.com/rust-lang/crates.io-index" 5089 - checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 5702 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 5090 5703 dependencies = [ 5091 5704 "bumpalo", 5092 5705 "log", 5093 5706 "once_cell", 5094 5707 "proc-macro2", 5095 5708 "quote", 5096 - "syn 2.0.39", 5709 + "syn", 5097 5710 "wasm-bindgen-shared", 5098 5711 ] 5099 5712 5100 5713 [[package]] 5101 5714 name = "wasm-bindgen-futures" 5102 - version = "0.4.38" 5715 + version = "0.4.42" 5103 5716 source = "registry+https://github.com/rust-lang/crates.io-index" 5104 - checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 5717 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 5105 5718 dependencies = [ 5106 5719 "cfg-if", 5107 5720 "js-sys", ··· 5111 5724 5112 5725 [[package]] 5113 5726 name = "wasm-bindgen-macro" 5114 - version = "0.2.88" 5727 + version = "0.2.92" 5115 5728 source = "registry+https://github.com/rust-lang/crates.io-index" 5116 - checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 5729 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 5117 5730 dependencies = [ 5118 5731 "quote", 5119 5732 "wasm-bindgen-macro-support", ··· 5121 5734 5122 5735 [[package]] 5123 5736 name = "wasm-bindgen-macro-support" 5124 - version = "0.2.88" 5737 + version = "0.2.92" 5125 5738 source = "registry+https://github.com/rust-lang/crates.io-index" 5126 - checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 5739 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 5127 5740 dependencies = [ 5128 5741 "proc-macro2", 5129 5742 "quote", 5130 - "syn 2.0.39", 5743 + "syn", 5131 5744 "wasm-bindgen-backend", 5132 5745 "wasm-bindgen-shared", 5133 5746 ] 5134 5747 5135 5748 [[package]] 5136 5749 name = "wasm-bindgen-shared" 5137 - version = "0.2.88" 5750 + version = "0.2.92" 5138 5751 source = "registry+https://github.com/rust-lang/crates.io-index" 5139 - checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 5752 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 5140 5753 5141 5754 [[package]] 5142 5755 name = "wasm-split" 5143 - version = "23.11.2" 5756 + version = "24.7.1" 5144 5757 dependencies = [ 5145 5758 "anyhow", 5146 5759 "clap", ··· 5151 5764 5152 5765 [[package]] 5153 5766 name = "wasm-streams" 5154 - version = "0.3.0" 5767 + version = "0.4.0" 5155 5768 source = "registry+https://github.com/rust-lang/crates.io-index" 5156 - checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 5769 + checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 5157 5770 dependencies = [ 5158 5771 "futures-util", 5159 5772 "js-sys", ··· 5164 5777 5165 5778 [[package]] 5166 5779 name = "wasmbin" 5167 - version = "0.6.0" 5780 + version = "0.8.1" 5168 5781 source = "registry+https://github.com/rust-lang/crates.io-index" 5169 - checksum = "13cb41ab290430997d8b30474677ba9924d4545f3bcddc8b318de8b8df274c52" 5782 + checksum = "311322c49474a7490feac58b26e6b6b41fb0d4c6d4f3dae0c9736a9dcd77007a" 5170 5783 dependencies = [ 5171 5784 "custom_debug", 5172 5785 "leb128", ··· 5177 5790 5178 5791 [[package]] 5179 5792 name = "wasmbin-derive" 5180 - version = "0.2.2" 5793 + version = "0.2.3" 5181 5794 source = "registry+https://github.com/rust-lang/crates.io-index" 5182 - checksum = "7d81164066a0c96c81c1faf881c8e1f055fd9e67bb6313b605c6c9a3dcf0ee0b" 5795 + checksum = "3961bf864c790b5a06939f8f36d2a1a6be5bf0f926ddc25fb159b1766f2874db" 5183 5796 dependencies = [ 5184 5797 "proc-macro2", 5185 5798 "quote", 5186 - "syn 1.0.109", 5799 + "syn", 5187 5800 "synstructure", 5188 5801 "thiserror", 5189 5802 ] 5190 5803 5191 5804 [[package]] 5192 5805 name = "wasmparser" 5193 - version = "0.113.3" 5806 + version = "0.209.1" 5194 5807 source = "registry+https://github.com/rust-lang/crates.io-index" 5195 - checksum = "286049849b5a5bd09a8773171be96824afabffc7cc3df6caaf33a38db6cd07ae" 5808 + checksum = "07035cc9a9b41e62d3bb3a3815a66ab87c993c06fe1cf6b2a3f2a18499d937db" 5196 5809 dependencies = [ 5810 + "ahash", 5811 + "bitflags 2.6.0", 5812 + "hashbrown", 5197 5813 "indexmap", 5198 - "semver 1.0.20", 5814 + "semver 1.0.23", 5815 + "serde", 5199 5816 ] 5200 5817 5201 5818 [[package]] ··· 5210 5827 5211 5828 [[package]] 5212 5829 name = "web-sys" 5213 - version = "0.3.65" 5830 + version = "0.3.69" 5214 5831 source = "registry+https://github.com/rust-lang/crates.io-index" 5215 - checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 5832 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 5216 5833 dependencies = [ 5217 5834 "js-sys", 5218 5835 "wasm-bindgen", ··· 5232 5849 5233 5850 [[package]] 5234 5851 name = "widestring" 5235 - version = "1.0.2" 5852 + version = "1.1.0" 5236 5853 source = "registry+https://github.com/rust-lang/crates.io-index" 5237 - checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 5854 + checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 5238 5855 5239 5856 [[package]] 5240 5857 name = "winapi" ··· 5254 5871 5255 5872 [[package]] 5256 5873 name = "winapi-util" 5257 - version = "0.1.6" 5874 + version = "0.1.8" 5258 5875 source = "registry+https://github.com/rust-lang/crates.io-index" 5259 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 5876 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 5260 5877 dependencies = [ 5261 - "winapi", 5878 + "windows-sys 0.52.0", 5262 5879 ] 5263 5880 5264 5881 [[package]] ··· 5268 5885 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5269 5886 5270 5887 [[package]] 5271 - name = "windows-core" 5272 - version = "0.51.1" 5888 + name = "windows" 5889 + version = "0.52.0" 5273 5890 source = "registry+https://github.com/rust-lang/crates.io-index" 5274 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5891 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 5275 5892 dependencies = [ 5276 - "windows-targets 0.48.5", 5893 + "windows-core", 5894 + "windows-targets 0.52.6", 5277 5895 ] 5278 5896 5279 5897 [[package]] 5280 - name = "windows-sys" 5281 - version = "0.45.0" 5898 + name = "windows-core" 5899 + version = "0.52.0" 5282 5900 source = "registry+https://github.com/rust-lang/crates.io-index" 5283 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5901 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 5284 5902 dependencies = [ 5285 - "windows-targets 0.42.2", 5903 + "windows-targets 0.52.6", 5286 5904 ] 5287 5905 5288 5906 [[package]] ··· 5295 5913 ] 5296 5914 5297 5915 [[package]] 5298 - name = "windows-targets" 5299 - version = "0.42.2" 5916 + name = "windows-sys" 5917 + version = "0.52.0" 5300 5918 source = "registry+https://github.com/rust-lang/crates.io-index" 5301 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 5919 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5302 5920 dependencies = [ 5303 - "windows_aarch64_gnullvm 0.42.2", 5304 - "windows_aarch64_msvc 0.42.2", 5305 - "windows_i686_gnu 0.42.2", 5306 - "windows_i686_msvc 0.42.2", 5307 - "windows_x86_64_gnu 0.42.2", 5308 - "windows_x86_64_gnullvm 0.42.2", 5309 - "windows_x86_64_msvc 0.42.2", 5921 + "windows-targets 0.52.6", 5310 5922 ] 5311 5923 5312 5924 [[package]] ··· 5325 5937 ] 5326 5938 5327 5939 [[package]] 5328 - name = "windows_aarch64_gnullvm" 5329 - version = "0.42.2" 5940 + name = "windows-targets" 5941 + version = "0.52.6" 5330 5942 source = "registry+https://github.com/rust-lang/crates.io-index" 5331 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 5943 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 5944 + dependencies = [ 5945 + "windows_aarch64_gnullvm 0.52.6", 5946 + "windows_aarch64_msvc 0.52.6", 5947 + "windows_i686_gnu 0.52.6", 5948 + "windows_i686_gnullvm", 5949 + "windows_i686_msvc 0.52.6", 5950 + "windows_x86_64_gnu 0.52.6", 5951 + "windows_x86_64_gnullvm 0.52.6", 5952 + "windows_x86_64_msvc 0.52.6", 5953 + ] 5332 5954 5333 5955 [[package]] 5334 5956 name = "windows_aarch64_gnullvm" ··· 5337 5959 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5338 5960 5339 5961 [[package]] 5340 - name = "windows_aarch64_msvc" 5341 - version = "0.42.2" 5962 + name = "windows_aarch64_gnullvm" 5963 + version = "0.52.6" 5342 5964 source = "registry+https://github.com/rust-lang/crates.io-index" 5343 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 5965 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 5344 5966 5345 5967 [[package]] 5346 5968 name = "windows_aarch64_msvc" ··· 5349 5971 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5350 5972 5351 5973 [[package]] 5352 - name = "windows_i686_gnu" 5353 - version = "0.42.2" 5974 + name = "windows_aarch64_msvc" 5975 + version = "0.52.6" 5354 5976 source = "registry+https://github.com/rust-lang/crates.io-index" 5355 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5977 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 5356 5978 5357 5979 [[package]] 5358 5980 name = "windows_i686_gnu" ··· 5361 5983 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5362 5984 5363 5985 [[package]] 5364 - name = "windows_i686_msvc" 5365 - version = "0.42.2" 5986 + name = "windows_i686_gnu" 5987 + version = "0.52.6" 5366 5988 source = "registry+https://github.com/rust-lang/crates.io-index" 5367 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5989 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 5990 + 5991 + [[package]] 5992 + name = "windows_i686_gnullvm" 5993 + version = "0.52.6" 5994 + source = "registry+https://github.com/rust-lang/crates.io-index" 5995 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 5368 5996 5369 5997 [[package]] 5370 5998 name = "windows_i686_msvc" ··· 5373 6001 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5374 6002 5375 6003 [[package]] 5376 - name = "windows_x86_64_gnu" 5377 - version = "0.42.2" 6004 + name = "windows_i686_msvc" 6005 + version = "0.52.6" 5378 6006 source = "registry+https://github.com/rust-lang/crates.io-index" 5379 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 6007 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 5380 6008 5381 6009 [[package]] 5382 6010 name = "windows_x86_64_gnu" ··· 5385 6013 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5386 6014 5387 6015 [[package]] 5388 - name = "windows_x86_64_gnullvm" 5389 - version = "0.42.2" 6016 + name = "windows_x86_64_gnu" 6017 + version = "0.52.6" 5390 6018 source = "registry+https://github.com/rust-lang/crates.io-index" 5391 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 6019 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 5392 6020 5393 6021 [[package]] 5394 6022 name = "windows_x86_64_gnullvm" ··· 5397 6025 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5398 6026 5399 6027 [[package]] 5400 - name = "windows_x86_64_msvc" 5401 - version = "0.42.2" 6028 + name = "windows_x86_64_gnullvm" 6029 + version = "0.52.6" 5402 6030 source = "registry+https://github.com/rust-lang/crates.io-index" 5403 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 6031 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 5404 6032 5405 6033 [[package]] 5406 6034 name = "windows_x86_64_msvc" ··· 5409 6037 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5410 6038 5411 6039 [[package]] 6040 + name = "windows_x86_64_msvc" 6041 + version = "0.52.6" 6042 + source = "registry+https://github.com/rust-lang/crates.io-index" 6043 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 6044 + 6045 + [[package]] 5412 6046 name = "winnow" 5413 - version = "0.5.19" 6047 + version = "0.6.13" 5414 6048 source = "registry+https://github.com/rust-lang/crates.io-index" 5415 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 6049 + checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" 5416 6050 dependencies = [ 5417 6051 "memchr", 5418 6052 ] ··· 5428 6062 ] 5429 6063 5430 6064 [[package]] 5431 - name = "xmlparser" 5432 - version = "0.13.6" 6065 + name = "winreg" 6066 + version = "0.52.0" 6067 + source = "registry+https://github.com/rust-lang/crates.io-index" 6068 + checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 6069 + dependencies = [ 6070 + "cfg-if", 6071 + "windows-sys 0.48.0", 6072 + ] 6073 + 6074 + [[package]] 6075 + name = "write16" 6076 + version = "1.0.0" 5433 6077 source = "registry+https://github.com/rust-lang/crates.io-index" 5434 - checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 6078 + checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 5435 6079 5436 6080 [[package]] 5437 - name = "yaml-rust" 5438 - version = "0.4.5" 6081 + name = "writeable" 6082 + version = "0.5.5" 6083 + source = "registry+https://github.com/rust-lang/crates.io-index" 6084 + checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 6085 + 6086 + [[package]] 6087 + name = "wyz" 6088 + version = "0.5.1" 5439 6089 source = "registry+https://github.com/rust-lang/crates.io-index" 5440 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 6090 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 5441 6091 dependencies = [ 5442 - "linked-hash-map", 6092 + "tap", 5443 6093 ] 5444 6094 5445 6095 [[package]] 6096 + name = "xmlparser" 6097 + version = "0.13.6" 6098 + source = "registry+https://github.com/rust-lang/crates.io-index" 6099 + checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 6100 + 6101 + [[package]] 5446 6102 name = "yaxpeax-arch" 5447 - version = "0.2.7" 6103 + version = "0.2.8" 5448 6104 source = "registry+https://github.com/rust-lang/crates.io-index" 5449 - checksum = "f1ba5c2f163fa2f866c36750c6c931566c6d93231ae9410083b0738953b609d5" 6105 + checksum = "9f005c964432a1f9ee04598e094a3eb5f7568f6b33e89a2762d7bef6fbe8b255" 5450 6106 dependencies = [ 5451 6107 "crossterm", 5452 6108 "num-traits", ··· 5456 6112 5457 6113 [[package]] 5458 6114 name = "yaxpeax-x86" 5459 - version = "1.2.0" 6115 + version = "1.2.2" 5460 6116 source = "registry+https://github.com/rust-lang/crates.io-index" 5461 - checksum = "459ab06161ba99053d77dc66beb37ab4209da16cd01591dcc56e86643375cbde" 6117 + checksum = "9107477944697db42c41326f82d4c65b769b32512cdad1e086f36f0e0f25ff45" 5462 6118 dependencies = [ 5463 6119 "cfg-if", 5464 6120 "num-traits", ··· 5468 6124 ] 5469 6125 5470 6126 [[package]] 6127 + name = "yoke" 6128 + version = "0.7.4" 6129 + source = "registry+https://github.com/rust-lang/crates.io-index" 6130 + checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" 6131 + dependencies = [ 6132 + "serde", 6133 + "stable_deref_trait", 6134 + "yoke-derive", 6135 + "zerofrom", 6136 + ] 6137 + 6138 + [[package]] 6139 + name = "yoke-derive" 6140 + version = "0.7.4" 6141 + source = "registry+https://github.com/rust-lang/crates.io-index" 6142 + checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" 6143 + dependencies = [ 6144 + "proc-macro2", 6145 + "quote", 6146 + "syn", 6147 + "synstructure", 6148 + ] 6149 + 6150 + [[package]] 6151 + name = "zerocopy" 6152 + version = "0.7.35" 6153 + source = "registry+https://github.com/rust-lang/crates.io-index" 6154 + checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 6155 + dependencies = [ 6156 + "zerocopy-derive", 6157 + ] 6158 + 6159 + [[package]] 6160 + name = "zerocopy-derive" 6161 + version = "0.7.35" 6162 + source = "registry+https://github.com/rust-lang/crates.io-index" 6163 + checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 6164 + dependencies = [ 6165 + "proc-macro2", 6166 + "quote", 6167 + "syn", 6168 + ] 6169 + 6170 + [[package]] 6171 + name = "zerofrom" 6172 + version = "0.1.4" 6173 + source = "registry+https://github.com/rust-lang/crates.io-index" 6174 + checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" 6175 + dependencies = [ 6176 + "zerofrom-derive", 6177 + ] 6178 + 6179 + [[package]] 6180 + name = "zerofrom-derive" 6181 + version = "0.1.4" 6182 + source = "registry+https://github.com/rust-lang/crates.io-index" 6183 + checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" 6184 + dependencies = [ 6185 + "proc-macro2", 6186 + "quote", 6187 + "syn", 6188 + "synstructure", 6189 + ] 6190 + 6191 + [[package]] 5471 6192 name = "zeroize" 5472 - version = "1.7.0" 6193 + version = "1.8.1" 6194 + source = "registry+https://github.com/rust-lang/crates.io-index" 6195 + checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 6196 + 6197 + [[package]] 6198 + name = "zerovec" 6199 + version = "0.10.4" 6200 + source = "registry+https://github.com/rust-lang/crates.io-index" 6201 + checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 6202 + dependencies = [ 6203 + "yoke", 6204 + "zerofrom", 6205 + "zerovec-derive", 6206 + ] 6207 + 6208 + [[package]] 6209 + name = "zerovec-derive" 6210 + version = "0.10.3" 5473 6211 source = "registry+https://github.com/rust-lang/crates.io-index" 5474 - checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 6212 + checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 6213 + dependencies = [ 6214 + "proc-macro2", 6215 + "quote", 6216 + "syn", 6217 + ] 5475 6218 5476 6219 [[package]] 5477 6220 name = "zip" 5478 - version = "0.6.6" 6221 + version = "2.1.1" 5479 6222 source = "registry+https://github.com/rust-lang/crates.io-index" 5480 - checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 6223 + checksum = "1dd56a4d5921bc2f99947ac5b3abe5f510b1be7376fdc5e9fce4a23c6a93e87c" 5481 6224 dependencies = [ 5482 - "byteorder", 6225 + "arbitrary", 5483 6226 "bzip2", 5484 6227 "crc32fast", 5485 6228 "crossbeam-utils", 6229 + "displaydoc", 5486 6230 "flate2", 6231 + "indexmap", 6232 + "memchr", 6233 + "thiserror", 6234 + "zopfli", 6235 + ] 6236 + 6237 + [[package]] 6238 + name = "zopfli" 6239 + version = "0.8.1" 6240 + source = "registry+https://github.com/rust-lang/crates.io-index" 6241 + checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 6242 + dependencies = [ 6243 + "bumpalo", 6244 + "crc32fast", 6245 + "lockfree-object-pool", 6246 + "log", 6247 + "once_cell", 6248 + "simd-adler32", 5487 6249 ] 5488 6250 5489 6251 [[package]] 5490 6252 name = "zstd" 5491 - version = "0.13.0" 6253 + version = "0.13.2" 5492 6254 source = "registry+https://github.com/rust-lang/crates.io-index" 5493 - checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 6255 + checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 5494 6256 dependencies = [ 5495 6257 "zstd-safe", 5496 6258 ] 5497 6259 5498 6260 [[package]] 5499 6261 name = "zstd-safe" 5500 - version = "7.0.0" 6262 + version = "7.2.0" 5501 6263 source = "registry+https://github.com/rust-lang/crates.io-index" 5502 - checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" 6264 + checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa" 5503 6265 dependencies = [ 5504 6266 "zstd-sys", 5505 6267 ] 5506 6268 5507 6269 [[package]] 5508 6270 name = "zstd-sys" 5509 - version = "2.0.9+zstd.1.5.5" 6271 + version = "2.0.12+zstd.1.5.6" 5510 6272 source = "registry+https://github.com/rust-lang/crates.io-index" 5511 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 6273 + checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13" 5512 6274 dependencies = [ 5513 6275 "cc", 5514 6276 "pkg-config",
+3 -3
pkgs/by-name/sy/symbolicator/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "symbolicator"; 14 - version = "23.11.2"; 14 + version = "24.7.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "getsentry"; 18 18 repo = "symbolicator"; 19 19 rev = version; 20 - hash = "sha256-pPzm57ZtsLLD7P0xIi+egKcQ3dcOGH6JV+C9u4uGGRM="; 20 + hash = "sha256-thc1VXKtOc+kgIMHGDBp4InaSFG9mK9WYS7g90b5Fzs="; 21 21 fetchSubmodules = true; 22 22 }; 23 23 ··· 25 25 lockFile = ./Cargo.lock; 26 26 outputHashes = { 27 27 "cpp_demangle-0.4.1" = "sha256-9QopX2TOJc8bZ+UlSOFdjoe8NTJLVGrykyFL732tE3A="; 28 - "reqwest-0.11.22" = "sha256-0IPpirvQSpwaF3bc5jh67UdJtKen3uumNgz5L4iqmYg="; 28 + "reqwest-0.12.2" = "sha256-m46NyzsgXsDxb6zwVXP0wCdtCH+rb5f0x+oPNHuBF8s="; 29 29 }; 30 30 }; 31 31
+2 -2
pkgs/by-name/te/terraform-local/package.nix
··· 5 5 }: 6 6 python3Packages.buildPythonApplication rec { 7 7 pname = "terraform_local"; 8 - version = "0.18.2"; 8 + version = "0.19.0"; 9 9 pyproject = true; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - hash = "sha256-8opiMd6ZxgWRJIDa0vhZJh5bmsO/CaHgGJ4sdEdxZLc="; 13 + hash = "sha256-0E11eaEhz1pwP9MBVilqioj92fZP7wjLJcR4no79n9s="; 14 14 }; 15 15 16 16 build-system = with python3Packages; [ setuptools ];
+2 -2
pkgs/by-name/ya/yamlscript/package.nix
··· 2 2 3 3 buildGraalvmNativeImage rec { 4 4 pname = "yamlscript"; 5 - version = "0.1.69"; 5 + version = "0.1.71"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/yaml/yamlscript/releases/download/${version}/yamlscript.cli-${version}-standalone.jar"; 9 - hash = "sha256-Bw+TO9u0o+GHqVLPR7M4hFl1lMPa+tVDCeTEUoBBgcU="; 9 + hash = "sha256-ko34trxTZmEkh/rltHLeweUg0deH7yiN6ME5igJiHHY="; 10 10 }; 11 11 12 12 executable = "ys";
+2
pkgs/development/coq-modules/interval/default.nix
··· 7 7 domain = "gitlab.inria.fr"; 8 8 inherit version; 9 9 defaultVersion = with lib.versions; lib.switch coq.coq-version [ 10 + { case = range "8.13" "8.20"; out = "4.11.0"; } 10 11 { case = range "8.12" "8.19"; out = "4.10.0"; } 11 12 { case = range "8.12" "8.18"; out = "4.9.0"; } 12 13 { case = range "8.12" "8.17"; out = "4.8.0"; } ··· 16 17 { case = range "8.7" "8.11"; out = "3.4.2"; } 17 18 { case = range "8.5" "8.6"; out = "3.3.0"; } 18 19 ] null; 20 + release."4.11.0".sha256 = "sha256-vPwa4zSjyvxHLGDoNaBnHV2pb77dnQFbC50BL80fcvE="; 19 21 release."4.10.0".sha256 = "sha256-MZJVoKGLXjDabdv9BuUSK1L9z1cubzC9cqVuWevKIXQ="; 20 22 release."4.9.0".sha256 = "sha256-+5NppyQahcc1idGu/U3B+EIWuZz2L3/oY7dIJR6pitE="; 21 23 release."4.8.1".sha256 = "sha256-gknZ3bA90YY2AvwfFsP5iMhohwkQ8G96mH+4st2RPDc=";
+2 -2
pkgs/development/libraries/level-zero/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "level-zero"; 12 - version = "1.17.19"; 12 + version = "1.17.25"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "oneapi-src"; 16 16 repo = "level-zero"; 17 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-WfnoYLBBXzYQ35Og6UgGFv6ebLMBos49JvJcZANRhd8="; 18 + hash = "sha256-nC0Bp6Ggs5MDxBbrHVIh73LBb5yyMOUFuLXF06nvLkE="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ cmake addDriverRunpath ];
+1 -1
pkgs/development/libraries/pinocchio/default.nix
··· 7 7 , boost 8 8 , eigen 9 9 , example-robot-data 10 - , casadiSupport ? !stdenv.isDarwin 10 + , casadiSupport ? true 11 11 , collisionSupport ? true 12 12 , console-bridge 13 13 , jrl-cmakemodules
+40 -6
pkgs/development/libraries/science/math/bonmin/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fontconfig 4 5 , gfortran 5 6 , pkg-config 6 7 , blas 7 8 , bzip2 8 9 , cbc 9 10 , clp 11 + , doxygen 12 + , graphviz 10 13 , ipopt 11 14 , lapack 12 15 , libamplsolver 16 + , osi 17 + , texliveSmall 13 18 , zlib 14 19 }: 15 20 ··· 27 32 }; 28 33 29 34 nativeBuildInputs = [ 35 + doxygen 30 36 gfortran 37 + graphviz 31 38 pkg-config 39 + texliveSmall 32 40 ]; 33 41 buildInputs = [ 34 42 blas ··· 38 46 ipopt 39 47 lapack 40 48 libamplsolver 49 + osi 41 50 zlib 42 51 ]; 43 52 44 - meta = with lib; { 53 + configureFlagsArray = lib.optionals stdenv.isDarwin [ 54 + "--with-asl-lib=-lipoptamplinterface -lamplsolver" 55 + ]; 56 + 57 + # Fix doc install. Should not be necessary after next release 58 + # ref https://github.com/coin-or/Bonmin/commit/4f665bc9e489a73cb867472be9aea518976ecd28 59 + sourceRoot = "${src.name}/Bonmin"; 60 + 61 + # Fontconfig error: Cannot load default config file: No such file: (null) 62 + env.FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf"; 63 + 64 + # Fontconfig error: No writable cache directories 65 + preBuild = "export XDG_CACHE_HOME=$(mktemp -d)"; 66 + 67 + doCheck = true; 68 + checkTarget = "test"; 69 + 70 + # ignore one failing test 71 + postPatch = lib.optionalString stdenv.isDarwin '' 72 + substituteInPlace test/Makefile.in --replace-fail \ 73 + "./unitTest\''$(EXEEXT)" \ 74 + "" 75 + ''; 76 + 77 + # install documentation 78 + postInstall = "make install-doxygen-docs"; 79 + 80 + meta = { 45 81 description = "Open-source code for solving general MINLP (Mixed Integer NonLinear Programming) problems"; 46 82 mainProgram = "bonmin"; 47 83 homepage = "https://github.com/coin-or/Bonmin"; 48 - license = licenses.epl10; 49 - platforms = platforms.unix; 50 - maintainers = with maintainers; [ aanderse ]; 51 - # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 52 - broken = stdenv.isDarwin; 84 + license = lib.licenses.epl10; 85 + platforms = lib.platforms.unix; 86 + maintainers = with lib.maintainers; [ aanderse ]; 53 87 }; 54 88 }
+1 -1
pkgs/development/libraries/science/math/ipopt/default.nix
··· 6 6 , lapack 7 7 , gfortran 8 8 , enableAMPL ? true, libamplsolver 9 - , enableMUMPS ? !stdenv.isDarwin, mumps, mpi 9 + , enableMUMPS ? true, mumps, mpi 10 10 , enableSPRAL ? true, spral 11 11 }: 12 12
+3 -3
pkgs/development/php-packages/phan/default.nix
··· 7 7 (php.withExtensions ({ enabled, all }: enabled ++ (with all; [ ast ]))).buildComposerProject 8 8 (finalAttrs: { 9 9 pname = "phan"; 10 - version = "5.4.4"; 10 + version = "5.4.5"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "phan"; 14 14 repo = "phan"; 15 15 rev = finalAttrs.version; 16 - hash = "sha256-9kHTDuCvh0qV6Av6uLD0t4vJO5XLL9dgRAgaREsV7zM="; 16 + hash = "sha256-CSV+kapCzGOCBaYnX0lJVlDdZGNBCKZ/nogOac1xj1A="; 17 17 }; 18 18 19 - vendorHash = "sha256-yE85MBseJa0VGV5EbjT0te4QT3697YvtumGkMMfZtxI="; 19 + vendorHash = "sha256-qRcB0KmUJWRQaMlnK1JdUsZrikThD6nQnrqQZm9yROk="; 20 20 21 21 meta = { 22 22 description = "Static analyzer for PHP";
+2 -2
pkgs/development/python-modules/apsw/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "apsw"; 13 - version = "3.46.0.1"; 13 + version = "3.46.1.0"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 19 19 owner = "rogerbinns"; 20 20 repo = "apsw"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-GcfHkK4TCHPA2K6ymXtpCwNUCCUq0vq98UjYGGwn588="; 22 + hash = "sha256-/MMCwdd2juFbv/lrYwuO2mdWm0+v+YFn6h9CwdQMTpg="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+1 -1
pkgs/development/python-modules/dvc/default.nix
··· 66 66 owner = "iterative"; 67 67 repo = "dvc"; 68 68 rev = "refs/tags/${version}"; 69 - hash = "sha256-tC1Uv0EQZc0G4Eub98c/0mOp+haQPiQFGErQiRK0Gcw="; 69 + hash = "sha256-5akMXeHpj7LXhUGxpKLgp4p9WDhRcRRfisILsS1f9kM="; 70 70 }; 71 71 72 72 pythonRelaxDeps = [
+3 -3
pkgs/development/python-modules/graph-tool/default.nix
··· 34 34 in 35 35 buildPythonPackage rec { 36 36 pname = "graph-tool"; 37 - version = "2.72"; 37 + version = "2.77"; 38 38 format = "other"; 39 39 40 40 src = fetchurl { 41 41 url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2"; 42 - hash = "sha256-fInEzyauJPTjOU4XAR0TkIDbpAjli+rpzH++iztunHQ="; 42 + hash = "sha256-mu/6r1Uo836ZTxuIL3UdsKvuUz+H1FZY9Y3ZbEBK0LQ="; 43 43 }; 44 44 45 45 # Remove error messages about tput during build process without adding ncurses, ··· 99 99 homepage = "https://graph-tool.skewed.de"; 100 100 changelog = "https://git.skewed.de/count0/graph-tool/commits/release-${version}"; 101 101 license = lib.licenses.lgpl3Plus; 102 - maintainers = [ ]; 102 + maintainers = [ lib.maintainers.mjoerg ]; 103 103 }; 104 104 }
+8 -11
pkgs/development/python-modules/imageio/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "imageio"; 35 - version = "2.34.2"; 35 + version = "2.35.0"; 36 36 pyproject = true; 37 37 38 38 disabled = pythonOlder "3.8"; ··· 41 41 owner = "imageio"; 42 42 repo = "imageio"; 43 43 rev = "refs/tags/v${version}"; 44 - hash = "sha256-1q/LPEdo9rzcIR1ZD+bIP8MIKe7PmxRd8UX6c5C0V5k="; 44 + hash = "sha256-mmd3O7vvqKiHISASE5xRnBzuYon9HeEYRZGyDKy7n9o="; 45 45 }; 46 46 47 47 patches = lib.optionals (!stdenv.isDarwin) [ ··· 58 58 pillow 59 59 ]; 60 60 61 - passthru.optional-dependencies = { 61 + optional-dependencies = { 62 62 bsdf = [ ]; 63 63 dicom = [ ]; 64 64 feisem = [ ]; ··· 79 79 heif = [ pillow-heif ]; 80 80 }; 81 81 82 - nativeCheckInputs = 83 - [ 84 - fsspec 85 - psutil 86 - pytestCheckHook 87 - ] 88 - ++ fsspec.optional-dependencies.github 89 - ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 82 + nativeCheckInputs = [ 83 + fsspec 84 + psutil 85 + pytestCheckHook 86 + ] ++ fsspec.optional-dependencies.github ++ lib.flatten (builtins.attrValues optional-dependencies); 90 87 91 88 pytestFlagsArray = [ "-m 'not needs_internet'" ]; 92 89
+4 -4
pkgs/development/python-modules/keystoneauth1/default.nix
··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "keystoneauth1"; 29 - version = "5.6.0"; 29 + version = "5.7.0"; 30 30 pyproject = true; 31 31 32 32 src = fetchPypi { 33 33 inherit pname version; 34 - hash = "sha256-7LfzR1nr4QPbNyqwlTwLghkp3dSX8zKqaz72yqz/7Yg="; 34 + hash = "sha256-sswtaNGkjpwsbZsbH9ANfHvf4IboBAtR5wk4qLo639E="; 35 35 }; 36 36 37 37 postPatch = '' ··· 40 40 rm test-requirements.txt 41 41 ''; 42 42 43 - nativeBuildInputs = [ setuptools ]; 43 + build-system = [ setuptools ]; 44 44 45 - propagatedBuildInputs = [ 45 + dependencies = [ 46 46 betamax 47 47 iso8601 48 48 lxml
+2 -2
pkgs/development/python-modules/lacuscore/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "lacuscore"; 20 - version = "1.10.9"; 20 + version = "1.10.10"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "ail-project"; 27 27 repo = "LacusCore"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-6DBfmojU9p0QAojYxFSciQkc8uvQtRw37Fc8Mp5Eu/8="; 29 + hash = "sha256-FayFtkCV19fHlwsHIljVYEXJc8rxGZingfug3k2JCBM="; 30 30 }; 31 31 32 32 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/mitogen/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "mitogen"; 11 - version = "0.3.8"; 11 + version = "0.3.9"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "mitogen-hq"; 18 18 repo = "mitogen"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-6fuSmigLtNKrdOOSlmvPvzCIdFuvCuz/etNBXr5O0WQ="; 20 + hash = "sha256-dfOufUvDsrBFvnz8/mp7iY9Tm52KoFFuQQnbq85qTGs="; 21 21 }; 22 22 23 23 build-system = [ setuptools ];
+14 -7
pkgs/development/python-modules/osc-lib/default.nix
··· 7 7 oslo-utils, 8 8 openstacksdk, 9 9 pbr, 10 + pythonOlder, 10 11 requests-mock, 11 - simplejson, 12 + setuptools, 13 + requests, 12 14 stestr, 13 15 }: 14 16 15 17 buildPythonPackage rec { 16 18 pname = "osc-lib"; 17 - version = "2.8.0"; 18 - format = "setuptools"; 19 + version = "3.1.0"; 20 + pyproject = true; 21 + 22 + disabled = pythonOlder "3.8"; 19 23 20 24 src = fetchFromGitHub { 21 25 owner = "openstack"; 22 26 repo = "osc-lib"; 23 27 rev = version; 24 - hash = "sha256-ijL/m9BTAgDUjqy77nkl3rDppeUPBycmEqlL6uMruIA="; 28 + hash = "sha256-DDjWM4hjHPXYDeAJ6FDZZPzi65DG1rJ3efs8MouX1WY="; 25 29 }; 26 30 27 31 # fake version to make pbr.packaging happy and not reject it... 28 32 PBR_VERSION = version; 29 33 30 - nativeBuildInputs = [ pbr ]; 34 + build-system = [ 35 + pbr 36 + setuptools 37 + ]; 31 38 32 - propagatedBuildInputs = [ 39 + dependencies = [ 33 40 cliff 34 41 openstacksdk 35 42 oslo-i18n 36 43 oslo-utils 37 - simplejson 44 + requests 38 45 ]; 39 46 40 47 nativeCheckInputs = [
+7 -4
pkgs/development/python-modules/oslo-config/default.nix
··· 9 9 pyyaml, 10 10 requests, 11 11 rfc3986, 12 + setuptools, 12 13 stevedore, 13 14 callPackage, 14 15 }: 15 16 16 17 buildPythonPackage rec { 17 18 pname = "oslo-config"; 18 - version = "9.4.0"; 19 - format = "setuptools"; 19 + version = "9.5.0"; 20 + pyproject = true; 20 21 21 22 src = fetchPypi { 22 23 pname = "oslo.config"; 23 24 inherit version; 24 - hash = "sha256-NbEaZhtgjttQMF2tkeTjCBnZDveUt9fbpb2LLvLrjA0="; 25 + hash = "sha256-qlAARIhrbFX3ZXfLWpNJKkWWxfkoM3Z2DqeFLMScmaM="; 25 26 }; 26 27 27 28 postPatch = '' ··· 30 31 rm test-requirements.txt 31 32 ''; 32 33 33 - propagatedBuildInputs = [ 34 + build-system = [ setuptools ]; 35 + 36 + dependencies = [ 34 37 debtcollector 35 38 netaddr 36 39 oslo-i18n
+7 -4
pkgs/development/python-modules/oslo-log/default.nix
··· 14 14 python-dateutil, 15 15 pytestCheckHook, 16 16 pythonOlder, 17 + setuptools, 17 18 }: 18 19 19 20 buildPythonPackage rec { 20 21 pname = "oslo-log"; 21 - version = "6.0.0"; 22 - format = "setuptools"; 22 + version = "6.1.1"; 23 + pyproject = true; 23 24 24 25 disabled = pythonOlder "3.8"; 25 26 26 27 src = fetchPypi { 27 28 pname = "oslo.log"; 28 29 inherit version; 29 - hash = "sha256-ifDW+iy6goH4m1CKf+Sb+5far1XFJ4GH1FowaZceaH8="; 30 + hash = "sha256-41oSz+TK0T/7Cu2pn8yiCnBdD2lKhMLvewe0WWD4j7Q="; 30 31 }; 31 32 32 - propagatedBuildInputs = [ 33 + build-system = [ setuptools ]; 34 + 35 + dependencies = [ 33 36 oslo-config 34 37 oslo-context 35 38 oslo-serialization
+4 -4
pkgs/development/python-modules/python-openstackclient/default.nix
··· 13 13 python-ironicclient, 14 14 python-keystoneclient, 15 15 python-manilaclient, 16 - python-novaclient, 17 16 python-openstackclient, 18 17 requests-mock, 18 + requests, 19 19 setuptools, 20 20 sphinxHook, 21 21 sphinxcontrib-apidoc, ··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "python-openstackclient"; 28 - version = "6.6.0"; 28 + version = "7.0.0"; 29 29 pyproject = true; 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - hash = "sha256-u+8e00gpxBBSsuyiZIDinKH3K+BY0UMNpTQexExPKVw="; 33 + hash = "sha256-1HDjWYySnZI/12j9+Gb1G9NKkb+xfrcMoTY/q7aL0uA="; 34 34 }; 35 35 36 36 build-system = [ ··· 47 47 pbr 48 48 python-cinderclient 49 49 python-keystoneclient 50 - python-novaclient 50 + requests 51 51 ]; 52 52 53 53 nativeCheckInputs = [
+3 -3
pkgs/development/tools/bearer/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "bearer"; 11 - version = "1.46.0"; 11 + version = "1.46.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "bearer"; 15 15 repo = "bearer"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-3zazf7dAw0dt+eZHirpKBQrB1BrOLCJokkvL3RxAdnw="; 17 + hash = "sha256-zMQvD6ats1zJ/hK/aZh0LKWdSRqcR0BrAVcD4KnRwMQ="; 18 18 }; 19 19 20 - vendorHash = "sha256-wlo8HZqbrBEcCzNms6PKNV7JjmwlL2vJ3bly12RrcB4="; 20 + vendorHash = "sha256-1wxy/NXZCntVf8Po3Rn+pueadcveE0v3Jc0d4eYkY6s="; 21 21 22 22 subPackages = [ "cmd/bearer" ]; 23 23
+3 -3
pkgs/development/tools/go-tools/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "go-tools"; 8 - version = "2023.1.7"; 8 + version = "2024.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dominikh"; 12 12 repo = "go-tools"; 13 13 rev = version; 14 - sha256 = "sha256-oR3fsvZmeddN75WsxOMcYe/RAIjYz+ba03ADJfDUqNg="; 14 + sha256 = "sha256-uk2U8Jp/myJA6rmw+pk3DmmFLMqzfg8uudgTgc2Us5c="; 15 15 }; 16 16 17 - vendorHash = "sha256-dUO2Iw+RYk8s+3IV2/TSKjaX61YkD/AROq3177r+wKE="; 17 + vendorHash = "sha256-OZ67BWsIUaU24BPQ1VjbGE4GkDZUKgbBG3ynUVXvyaU="; 18 18 19 19 excludedPackages = [ "website" ]; 20 20
+3 -3
pkgs/development/tools/golangci-lint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "golangci-lint"; 5 - version = "1.59.1"; 5 + version = "1.60.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golangci"; 9 9 repo = "golangci-lint"; 10 10 rev = "v${version}"; 11 - hash = "sha256-VFU/qGyKBMYr0wtHXyaMjS5fXKAHWe99wDZuSyH8opg="; 11 + hash = "sha256-+F/t5UJjyqOsabi2J4M9g5JvAqfKjOvlzdhNozRCv70="; 12 12 }; 13 13 14 - vendorHash = "sha256-yYwYISK1wM/mSlAcDSIwYRo8sRWgw2u+SsvgjH+Z/7M="; 14 + vendorHash = "sha256-elDDSAeEpKXn6fhBFB218mWsSq0mo+GcfQsTDOAPSCI="; 15 15 16 16 subPackages = [ "cmd/golangci-lint" ]; 17 17
+1 -1
pkgs/development/tools/rust/cargo-pgrx/buildPgrxExtension.nix
··· 119 119 120 120 NIX_PGLIBDIR="${postgresql}/lib" \ 121 121 PGRX_BUILD_FLAGS="--frozen -j $NIX_BUILD_CORES ${builtins.concatStringsSep " " cargoBuildFlags}" \ 122 - RUSTFLAGS="${lib.optionalString stdenv.isDarwin "-Clink-args=-Wl,-undefined,dynamic_lookup"}" \ 122 + ${lib.optionalString stdenv.isDarwin ''RUSTFLAGS="''${RUSTFLAGS:+''${RUSTFLAGS} }-Clink-args=-Wl,-undefined,dynamic_lookup"''} \ 123 123 cargo pgrx package \ 124 124 --pg-config ${postgresql}/bin/pg_config \ 125 125 ${maybeDebugFlag} \
+22 -17
pkgs/misc/wiki-tui/default.nix
··· 1 - { lib 2 - , stdenv 3 - , rustPlatform 4 - , fetchFromGitHub 5 - , ncurses 6 - , openssl 7 - , pkg-config 8 - , Security 1 + { 2 + lib, 3 + stdenv, 4 + rustPlatform, 5 + fetchFromGitHub, 6 + ncurses, 7 + openssl, 8 + pkg-config, 9 + Security, 9 10 }: 10 11 11 12 rustPlatform.buildRustPackage rec { ··· 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "Builditluc"; 17 - repo = pname; 18 + repo = "wiki-tui"; 18 19 rev = "v${version}"; 19 20 hash = "sha256-euyg4wYWYerYT3hKdOCjokx8lJldGN7E3PHimDgQy3U="; 20 21 }; 21 22 22 - nativeBuildInputs = [ 23 - pkg-config 24 - ]; 23 + # Note: bump `time` dependency to be able to build with rust 1.80, should be removed on the next 24 + # release (see: https://github.com/NixOS/nixpkgs/issues/332957) 25 + cargoPatches = [ ./time.patch ]; 26 + 27 + nativeBuildInputs = [ pkg-config ]; 25 28 26 29 buildInputs = [ 27 30 ncurses 28 31 openssl 29 - ] ++ lib.optionals stdenv.isDarwin [ 30 - Security 31 - ]; 32 + ] ++ lib.optionals stdenv.isDarwin [ Security ]; 32 33 33 - cargoHash = "sha256-rKTR7vKt8woWAn7XgNYFiWu4KSiZYhaH+PLEIOfbNIY="; 34 + cargoHash = "sha256-XovbT+KC0va7yC5j7kf6t1SnXe1uyy1KI8FRV1AwkS0="; 34 35 35 36 meta = with lib; { 36 37 description = "Simple and easy to use Wikipedia Text User Interface"; 37 38 homepage = "https://github.com/builditluc/wiki-tui"; 38 39 changelog = "https://github.com/Builditluc/wiki-tui/releases/tag/v${version}"; 39 40 license = licenses.mit; 40 - maintainers = with maintainers; [ lom builditluc matthiasbeyer ]; 41 + maintainers = with maintainers; [ 42 + lom 43 + builditluc 44 + matthiasbeyer 45 + ]; 41 46 mainProgram = "wiki-tui"; 42 47 }; 43 48 }
+211
pkgs/misc/wiki-tui/time.patch
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index e66f0ac..918c3b2 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -318,7 +318,7 @@ dependencies = [ 6 + "log", 7 + "num", 8 + "owning_ref", 9 + - "time 0.3.22", 10 + + "time 0.3.36", 11 + "unicode-segmentation", 12 + "unicode-width", 13 + "xi-unicode", 14 + @@ -344,7 +344,7 @@ dependencies = [ 15 + "ident_case", 16 + "proc-macro2", 17 + "quote", 18 + - "syn 2.0.23", 19 + + "syn 2.0.32", 20 + ] 21 + 22 + [[package]] 23 + @@ -355,7 +355,16 @@ checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a" 24 + dependencies = [ 25 + "darling_core", 26 + "quote", 27 + - "syn 2.0.23", 28 + + "syn 2.0.32", 29 + +] 30 + + 31 + +[[package]] 32 + +name = "deranged" 33 + +version = "0.3.11" 34 + +source = "registry+https://github.com/rust-lang/crates.io-index" 35 + +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 36 + +dependencies = [ 37 + + "powerfmt", 38 + ] 39 + 40 + [[package]] 41 + @@ -427,7 +436,7 @@ checksum = "8560b409800a72d2d7860f8e5f4e0b0bd22bea6a352ea2a9ce30ccdef7f16d2f" 42 + dependencies = [ 43 + "proc-macro2", 44 + "quote", 45 + - "syn 2.0.23", 46 + + "syn 2.0.32", 47 + ] 48 + 49 + [[package]] 50 + @@ -448,7 +457,7 @@ dependencies = [ 51 + "darling", 52 + "proc-macro2", 53 + "quote", 54 + - "syn 2.0.23", 55 + + "syn 2.0.32", 56 + ] 57 + 58 + [[package]] 59 + @@ -1025,6 +1034,12 @@ dependencies = [ 60 + "num-traits", 61 + ] 62 + 63 + +[[package]] 64 + +name = "num-conv" 65 + +version = "0.1.0" 66 + +source = "registry+https://github.com/rust-lang/crates.io-index" 67 + +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 68 + + 69 + [[package]] 70 + name = "num-integer" 71 + version = "0.1.45" 72 + @@ -1129,7 +1144,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 73 + dependencies = [ 74 + "proc-macro2", 75 + "quote", 76 + - "syn 2.0.23", 77 + + "syn 2.0.32", 78 + ] 79 + 80 + [[package]] 81 + @@ -1282,6 +1297,12 @@ version = "0.3.27" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 84 + 85 + +[[package]] 86 + +name = "powerfmt" 87 + +version = "0.2.0" 88 + +source = "registry+https://github.com/rust-lang/crates.io-index" 89 + +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 90 + + 91 + [[package]] 92 + name = "ppv-lite86" 93 + version = "0.2.17" 94 + @@ -1518,9 +1539,9 @@ dependencies = [ 95 + 96 + [[package]] 97 + name = "serde" 98 + -version = "1.0.167" 99 + +version = "1.0.193" 100 + source = "registry+https://github.com/rust-lang/crates.io-index" 101 + -checksum = "7daf513456463b42aa1d94cff7e0c24d682b429f020b9afa4f5ba5c40a22b237" 102 + +checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 103 + dependencies = [ 104 + "serde_derive", 105 + ] 106 + @@ -1537,13 +1558,13 @@ dependencies = [ 107 + 108 + [[package]] 109 + name = "serde_derive" 110 + -version = "1.0.167" 111 + +version = "1.0.193" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + -checksum = "b69b106b68bc8054f0e974e70d19984040f8a5cf9215ca82626ea4853f82c4b9" 114 + +checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 115 + dependencies = [ 116 + "proc-macro2", 117 + "quote", 118 + - "syn 2.0.23", 119 + + "syn 2.0.32", 120 + ] 121 + 122 + [[package]] 123 + @@ -1565,7 +1586,7 @@ checksum = "1d89a8107374290037607734c0b73a85db7ed80cae314b3c5791f192a496e731" 124 + dependencies = [ 125 + "proc-macro2", 126 + "quote", 127 + - "syn 2.0.23", 128 + + "syn 2.0.32", 129 + ] 130 + 131 + [[package]] 132 + @@ -1750,9 +1771,9 @@ dependencies = [ 133 + 134 + [[package]] 135 + name = "syn" 136 + -version = "2.0.23" 137 + +version = "2.0.32" 138 + source = "registry+https://github.com/rust-lang/crates.io-index" 139 + -checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737" 140 + +checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" 141 + dependencies = [ 142 + "proc-macro2", 143 + "quote", 144 + @@ -1832,7 +1853,7 @@ checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f" 145 + dependencies = [ 146 + "proc-macro2", 147 + "quote", 148 + - "syn 2.0.23", 149 + + "syn 2.0.32", 150 + ] 151 + 152 + [[package]] 153 + @@ -1859,13 +1880,16 @@ dependencies = [ 154 + 155 + [[package]] 156 + name = "time" 157 + -version = "0.3.22" 158 + +version = "0.3.36" 159 + source = "registry+https://github.com/rust-lang/crates.io-index" 160 + -checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd" 161 + +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 162 + dependencies = [ 163 + + "deranged", 164 + "itoa", 165 + "libc", 166 + + "num-conv", 167 + "num_threads", 168 + + "powerfmt", 169 + "serde", 170 + "time-core", 171 + "time-macros", 172 + @@ -1873,16 +1897,17 @@ dependencies = [ 173 + 174 + [[package]] 175 + name = "time-core" 176 + -version = "0.1.1" 177 + +version = "0.1.2" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + -checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 180 + +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 181 + 182 + [[package]] 183 + name = "time-macros" 184 + -version = "0.2.9" 185 + +version = "0.2.18" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + -checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 188 + +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 189 + dependencies = [ 190 + + "num-conv", 191 + "time-core", 192 + ] 193 + 194 + @@ -2133,7 +2158,7 @@ dependencies = [ 195 + "once_cell", 196 + "proc-macro2", 197 + "quote", 198 + - "syn 2.0.23", 199 + + "syn 2.0.32", 200 + "wasm-bindgen-shared", 201 + ] 202 + 203 + @@ -2167,7 +2192,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 204 + dependencies = [ 205 + "proc-macro2", 206 + "quote", 207 + - "syn 2.0.23", 208 + + "syn 2.0.32", 209 + "wasm-bindgen-backend", 210 + "wasm-bindgen-shared", 211 + ]
+6 -4
pkgs/os-specific/linux/v4l2loopback/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, kernel, kmod }: 2 2 3 - stdenv.mkDerivation { 3 + let version = "0.13.2"; 4 + 5 + in stdenv.mkDerivation { 4 6 pname = "v4l2loopback"; 5 - version = "0.12.7-unstable-2024-02-12-${kernel.version}"; 7 + version = "${version}-${kernel.version}"; 6 8 7 9 src = fetchFromGitHub { 8 10 owner = "umlaeute"; 9 11 repo = "v4l2loopback"; 10 - rev = "5d72c17f92ee0e38efbb7eb85e34443ecbf1a80c"; 11 - hash = "sha256-ggmYH5MUXhMPvA8UZ2EAG+eGoPTNbw7B8UxmmgP6CsE="; 12 + rev = "v${version}"; 13 + hash = "sha256-rcwgOXnhRPTmNKUppupfe/2qNUBDUqVb3TeDbrP5pnU="; 12 14 }; 13 15 14 16 hardeningDisable = [ "format" "pic" ];
+4 -4
pkgs/servers/honk/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "honk"; 11 - version = "1.3.1"; 11 + version = "1.4.1"; 12 12 13 13 src = fetchurl { 14 14 url = "https://humungus.tedunangst.com/r/honk/d/honk-${version}.tgz"; 15 - hash = "sha256-F4Hz36nvcZv8MTh7a9Zr73kEBTS0c16Xty3T6/EzJeI="; 15 + hash = "sha256-o9K/ht31nEbx2JmLG3OSIgKZGygpDhZYqCxs6tuSnlc="; 16 16 }; 17 17 vendorHash = null; 18 18 ··· 27 27 subPackages = [ "." ]; 28 28 29 29 # This susbtitution is not mandatory. It is only existing to have something 30 - # working out of the box. This value can be overriden by the user, by 30 + # working out of the box. This value can be overridden by the user, by 31 31 # providing the `-viewdir` parameter in the command line. 32 32 postPatch = '' 33 - substituteInPlace main.go --replace \ 33 + substituteInPlace main.go --replace-fail \ 34 34 "var viewDir = \".\"" \ 35 35 "var viewDir = \"$out/share/honk\"" 36 36 '';
+2 -2
pkgs/tools/backup/rustic-rs/default.nix pkgs/by-name/ru/rustic/package.nix
··· 9 9 }: 10 10 11 11 rustPlatform.buildRustPackage rec { 12 - pname = "rustic-rs"; 12 + pname = "rustic"; 13 13 version = "0.7.0"; 14 14 15 15 src = fetchFromGitHub { ··· 19 19 hash = "sha256-jUAmboJTzX4oJZy9rFiPRbm94bVpZGa0SaqotoCU/Ss="; 20 20 }; 21 21 22 - cargoHash = "sha256-iZuWlYDGGziwb49BfKdt9Ahs6oQ0Ij2iiT0tvL7ZIVk="; 22 + cargoHash = "sha256-8YGvxnwD9Vshah2jZ+XxOW0qB4nvWsOyLY1W8k+xQzU="; 23 23 24 24 # At the time of writing, upstream defaults to "self-update" and "webdav". 25 25 # "self-update" is a self-updater, which we don't want in nixpkgs.
+60 -92
pkgs/tools/networking/mozillavpn/default.nix
··· 1 - { buildGoModule 2 - , cargo 3 - , cmake 4 - , fetchFromGitHub 5 - , go 6 - , lib 7 - , libcap 8 - , libgcrypt 9 - , libgpg-error 10 - , libsecret 11 - , pkg-config 12 - , polkit 13 - , python3 14 - , qt5compat 15 - , qtbase 16 - , qtnetworkauth 17 - , qtsvg 18 - , qttools 19 - , qtwayland 20 - , qtwebsockets 21 - , rustPlatform 22 - , rustc 23 - , stdenv 24 - , wireguard-tools 25 - , wrapQtAppsHook 1 + { 2 + buildGoModule, 3 + cargo, 4 + cmake, 5 + fetchFromGitHub, 6 + fetchpatch, 7 + go, 8 + lib, 9 + libcap, 10 + libgcrypt, 11 + libgpg-error, 12 + libsecret, 13 + pkg-config, 14 + polkit, 15 + python3, 16 + qt5compat, 17 + qtbase, 18 + qtnetworkauth, 19 + qtsvg, 20 + qttools, 21 + qtwayland, 22 + qtwebsockets, 23 + rustPlatform, 24 + rustc, 25 + stdenv, 26 + wireguard-tools, 27 + wrapQtAppsHook, 26 28 }: 27 29 28 - let 30 + stdenv.mkDerivation (finalAttrs: { 29 31 pname = "mozillavpn"; 30 - version = "2.21.0"; 32 + version = "2.23.1"; 31 33 src = fetchFromGitHub { 32 34 owner = "mozilla-mobile"; 33 35 repo = "mozilla-vpn-client"; 34 - rev = "v${version}"; 36 + rev = "v${finalAttrs.version}"; 35 37 fetchSubmodules = true; 36 - hash = "sha256-XBvKSgMuWgMuV+is2G028UNQ4hID7tKiHFuMdPOZcsI="; 38 + hash = "sha256-NQM1ZII9owD9ek/Leo6WRfvNybZ5pUjDgvQGXQBrD+0="; 37 39 }; 38 - patches = [ ]; 40 + patches = [ 41 + # Update cargo deps for "time" 42 + (fetchpatch { 43 + url = "https://github.com/mozilla-mobile/mozilla-vpn-client/commit/31d5799a30fc02067ad31d86b6ef63294bb3c3b8.patch"; 44 + hash = "sha256-ECrIcfhhSuvbqQ/ExPdFkQ6b9Q767lhUKmwPdDz7yxI="; 45 + }) 46 + ]; 39 47 40 - netfilterGoModules = (buildGoModule { 41 - inherit pname version src patches; 42 - modRoot = "linux/netfilter"; 43 - vendorHash = "sha256-Cmo0wnl0z5r1paaEf1MhCPbInWeoMhGjnxCxGh0cyO8="; 44 - }).goModules; 48 + netfilterGoModules = 49 + (buildGoModule { 50 + inherit (finalAttrs) 51 + pname 52 + version 53 + src 54 + patches 55 + ; 56 + modRoot = "linux/netfilter"; 57 + vendorHash = "sha256-Cmo0wnl0z5r1paaEf1MhCPbInWeoMhGjnxCxGh0cyO8="; 58 + }).goModules; 45 59 46 - extensionBridgeDeps = rustPlatform.fetchCargoTarball { 47 - inherit src patches; 48 - name = "${pname}-${version}-extension-bridge"; 49 - preBuild = "cd extension/bridge"; 50 - hash = "sha256-1BXlp9AC9oQo/UzCtgNWVv8Er2ERoDLKdlTYXLzodMQ="; 51 - }; 52 - signatureDeps = rustPlatform.fetchCargoTarball { 53 - inherit src patches; 54 - name = "${pname}-${version}-signature"; 55 - preBuild = "cd signature"; 56 - hash = "sha256-GtkDkeFdPsLuTpZh5UqIhFMpzW3HMkbz7npryOQkkGw="; 60 + cargoDeps = rustPlatform.fetchCargoTarball { 61 + inherit (finalAttrs) src patches; 62 + hash = "sha256-JIe6FQL0xm6FYYGoIwwnOxq21sC1y8xPsr8tYPF0Mzo="; 57 63 }; 58 - qtgleanDeps = rustPlatform.fetchCargoTarball { 59 - inherit src patches; 60 - name = "${pname}-${version}-qtglean"; 61 - preBuild = "cd qtglean"; 62 - hash = "sha256-HFmRcfxCcc83IPPIovbf3jNftp0olKQ6RzV8vPpCYAM="; 63 - }; 64 - 65 - in 66 - stdenv.mkDerivation { 67 - inherit pname version src patches; 68 64 69 65 buildInputs = [ 70 66 libcap ··· 93 89 wrapQtAppsHook 94 90 ]; 95 91 96 - postUnpack = '' 97 - pushd source/extension/bridge 98 - cargoDeps='${extensionBridgeDeps}' cargoSetupPostUnpackHook 99 - extensionBridgeDepsCopy="$cargoDepsCopy" 100 - popd 101 - 102 - pushd source/signature 103 - cargoDeps='${signatureDeps}' cargoSetupPostUnpackHook 104 - signatureDepsCopy="$cargoDepsCopy" 105 - popd 106 - 107 - pushd source/qtglean 108 - cargoDeps='${qtgleanDeps}' cargoSetupPostUnpackHook 109 - qtgleanDepsCopy="$cargoDepsCopy" 110 - popd 111 - ''; 112 - dontCargoSetupPostUnpack = true; 113 - 114 92 postPatch = '' 115 93 substituteInPlace src/cmake/linux.cmake \ 116 94 --replace '/etc/xdg/autostart' "$out/etc/xdg/autostart" \ ··· 120 98 substituteInPlace extension/CMakeLists.txt \ 121 99 --replace '/etc' "$out/etc" 122 100 123 - ln -s '${netfilterGoModules}' linux/netfilter/vendor 124 - 125 - pushd extension/bridge 126 - cargoDepsCopy="$extensionBridgeDepsCopy" cargoSetupPostPatchHook 127 - popd 128 - 129 - pushd signature 130 - cargoDepsCopy="$signatureDepsCopy" cargoSetupPostPatchHook 131 - popd 132 - 133 - pushd qtglean 134 - cargoDepsCopy="$qtgleanDepsCopy" cargoSetupPostPatchHook 135 - popd 136 - 137 - cargoSetupPostPatchHook() { true; } 101 + ln -s '${finalAttrs.netfilterGoModules}' linux/netfilter/vendor 138 102 ''; 139 103 140 104 cmakeFlags = [ ··· 144 108 ]; 145 109 dontFixCmake = true; 146 110 147 - qtWrapperArgs = 148 - [ "--prefix" "PATH" ":" (lib.makeBinPath [ wireguard-tools ]) ]; 111 + qtWrapperArgs = [ 112 + "--prefix" 113 + "PATH" 114 + ":" 115 + (lib.makeBinPath [ wireguard-tools ]) 116 + ]; 149 117 150 118 meta = { 151 119 description = "Client for the Mozilla VPN service"; ··· 155 123 maintainers = with lib.maintainers; [ andersk ]; 156 124 platforms = lib.platforms.linux; 157 125 }; 158 - } 126 + })
+3 -3
pkgs/tools/networking/ockam/default.nix
··· 13 13 14 14 let 15 15 pname = "ockam"; 16 - version = "0.130.0"; 16 + version = "0.132.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-k64EiISQMGtXcgB5iqkq+hPLfLGIS3ma2vyGedkCHsg="; 25 + hash = "sha256-ynlXQoOTvfSWCL1BqvIjJYYUDGmjDa0HaN3L8I6p/7Q="; 26 26 }; 27 27 28 - cargoHash = "sha256-qWfAGzWCPiFgxhbfUoar81jrRJMlOrZT7h/PJI9yz9Y="; 28 + cargoHash = "sha256-yOSCkOIprQoAGxPi1jsHPmQ9bVaudSNw13jL4jTNehY="; 29 29 nativeBuildInputs = [ git pkg-config ]; 30 30 buildInputs = [ openssl dbus ] 31 31 ++ lib.optionals stdenv.isDarwin [ AppKit Security ];
+3 -3
pkgs/tools/nix/nix-init/default.nix
··· 25 25 26 26 rustPlatform.buildRustPackage rec { 27 27 pname = "nix-init"; 28 - version = "0.3.0"; 28 + version = "0.3.1"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "nix-community"; 32 32 repo = "nix-init"; 33 33 rev = "v${version}"; 34 - hash = "sha256-YUstBO+iznr0eJYVJdNQ2BjDhvviRQuojhT9IlTuR0k="; 34 + hash = "sha256-PeOYYTSqqi/KSp+QjMbnNRQqKENo/zemN5Bpqiyh0vA="; 35 35 }; 36 36 37 - cargoHash = "sha256-OAgEzf+EyrwjNa40BwPwSNZ4lhEH93YxCbPJJ3r7oSQ="; 37 + cargoHash = "sha256-YRScCgmrCjzSZWHvnaBTCJsT02gd4SToz130zOMQ+VY="; 38 38 39 39 nativeBuildInputs = [ 40 40 curl
+66
pkgs/tools/nix/nix-melt/0001-fix-build-for-rust-1.80.patch
··· 1 + From 472d60ff5d0f7e1cbfe4ec92cf7e985eefb68a92 Mon Sep 17 00:00:00 2001 2 + From: Bryan Lai <bryanlais@gmail.com> 3 + Date: Wed, 14 Aug 2024 14:23:10 +0800 4 + Subject: [PATCH] deps: bump `time`, fix build for rust 1.80 5 + 6 + --- 7 + Cargo.lock | 22 ++++++++++++++++------ 8 + 1 file changed, 16 insertions(+), 6 deletions(-) 9 + 10 + diff --git a/Cargo.lock b/Cargo.lock 11 + index 5bd0f35..dabe0d1 100644 12 + --- a/Cargo.lock 13 + +++ b/Cargo.lock 14 + @@ -372,6 +372,15 @@ dependencies = [ 15 + "syn 1.0.109", 16 + ] 17 + 18 + +[[package]] 19 + +name = "deranged" 20 + +version = "0.3.11" 21 + +source = "registry+https://github.com/rust-lang/crates.io-index" 22 + +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 23 + +dependencies = [ 24 + + "serde", 25 + +] 26 + + 27 + [[package]] 28 + name = "errno" 29 + version = "0.3.1" 30 + @@ -1041,10 +1050,11 @@ dependencies = [ 31 + 32 + [[package]] 33 + name = "time" 34 + -version = "0.3.20" 35 + +version = "0.3.26" 36 + source = "registry+https://github.com/rust-lang/crates.io-index" 37 + -checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 38 + +checksum = "a79d09ac6b08c1ab3906a2f7cc2e81a0e27c7ae89c63812df75e52bef0751e07" 39 + dependencies = [ 40 + + "deranged", 41 + "itoa", 42 + "libc", 43 + "num_threads", 44 + @@ -1055,15 +1065,15 @@ dependencies = [ 45 + 46 + [[package]] 47 + name = "time-core" 48 + -version = "0.1.0" 49 + +version = "0.1.1" 50 + source = "registry+https://github.com/rust-lang/crates.io-index" 51 + -checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 52 + +checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 53 + 54 + [[package]] 55 + name = "time-macros" 56 + -version = "0.2.8" 57 + +version = "0.2.12" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + -checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 60 + +checksum = "75c65469ed6b3a4809d987a41eb1dc918e9bc1d92211cbad7ae82931846f7451" 61 + dependencies = [ 62 + "time-core", 63 + ] 64 + -- 65 + 2.45.2 66 +
+5 -1
pkgs/tools/nix/nix-melt/default.nix
··· 15 15 hash = "sha256-5V9sPbBb9t4B6yiLrYF+hx6YokGDH6+UsVQBhgqxMbY="; 16 16 }; 17 17 18 - cargoHash = "sha256-yBoaLqynvYC9ebC0zjd2FmSSd53xzn4ralihtCFubAw="; 18 + cargoPatches = [ 19 + ./0001-fix-build-for-rust-1.80.patch 20 + ]; 21 + 22 + cargoHash = "sha256-SzBsSr8bpzhc0GIcTkm9LZgJ66LEBe3QA8I7NdaJ0T8="; 19 23 20 24 nativeBuildInputs = [ 21 25 installShellFiles
+2 -2
pkgs/tools/package-management/poetry/plugins/poetry-plugin-up.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "poetry-plugin-up"; 12 - version = "0.7.2"; 12 + version = "0.7.3"; 13 13 format = "pyproject"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "MousaZeidBaker"; 17 17 repo = pname; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-O82oFEU67o0bZVBtkEZsOLtLBkuLHglr/4+Hkd/8Lvc="; 19 + hash = "sha256-yhGoiuqPUzEPiq+zO/RD4pB1LvOo80yLIpM+rRQHOmY="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+3 -28
pkgs/tools/system/efivar/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "efivar"; 5 - version = "38"; 5 + version = "39"; 6 6 7 7 outputs = [ "bin" "out" "dev" "man" ]; 8 8 9 9 src = fetchFromGitHub { 10 - owner = "rhinstaller"; 10 + owner = "rhboot"; 11 11 repo = "efivar"; 12 12 rev = version; 13 - hash = "sha256-A38BKGMK3Vo+85wzgxmzTjzZXtpcY9OpbZaONWnMYNk="; 13 + hash = "sha256-s/1k5a3n33iLmSpKQT5u08xoj8ypjf2Vzln88OBrqf0="; 14 14 }; 15 - 16 - patches = [ 17 - (fetchpatch { 18 - url = "https://github.com/rhboot/efivar/commit/15622b7e5761f3dde3f0e42081380b2b41639a48.patch"; 19 - sha256 = "sha256-SjZXj0hA2eQu2MfBoNjFPtd2DMYadtL7ZqwjKSf2cmI="; 20 - }) 21 - # src/Makefile: build util.c separately for makeguids 22 - # util.c needs to be built twice when cross-compiling 23 - (fetchpatch { 24 - url = "https://github.com/rhboot/efivar/commit/ca48d3964d26f5e3b38d73655f19b1836b16bd2d.patch"; 25 - hash = "sha256-DkNFIK4i7Eypyf2UeK7qHW36N2FSVRJ2rnOVLriWi5c="; 26 - }) 27 - (fetchpatch { 28 - name = "musl-backport.patch"; 29 - url = "https://github.com/rhboot/efivar/commit/cece3ffd5be2f8641eb694513f2b73e5eb97ffd3.patch"; 30 - sha256 = "7/E0gboU0A45/BY6jGPLuvds6qKtNjzpgKgdNTaVaZQ="; 31 - }) 32 - 33 - # Fix build against gcc-13: https://github.com/rhboot/efivar/pull/242 34 - (fetchpatch { 35 - name = "gcc-13.patch"; 36 - url = "https://github.com/rhboot/efivar/commit/52fece47d4f3ebd588bd85598bfc7a0142365f7e.patch"; 37 - hash = "sha256-tOmxbY7kD6kzbBZ2RhQ5gCCpHtu+2gRNa7VUAWdCKu0="; 38 - }) 39 - ]; 40 15 41 16 nativeBuildInputs = [ pkg-config mandoc ]; 42 17 buildInputs = [ popt ];
+1
pkgs/top-level/aliases.nix
··· 1318 1318 runCommandNoCC = runCommand; 1319 1319 runCommandNoCCLocal = runCommandLocal; 1320 1320 rustc-wasm32 = rustc; # Added 2023-12-01 1321 + rustic-rs = rustic; # Added 2024-08-02 1321 1322 rxvt_unicode = rxvt-unicode-unwrapped; # Added 2020-02-02 1322 1323 rxvt_unicode-with-plugins = rxvt-unicode; # Added 2020-02-02 1323 1324
+4 -2
pkgs/top-level/all-packages.nix
··· 25873 25873 25874 25874 roon-server = callPackage ../servers/roon-server { }; 25875 25875 25876 - rustic-rs = callPackage ../tools/backup/rustic-rs { 25876 + rustic = callPackage ../by-name/ru/rustic/package.nix { 25877 25877 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 25878 25878 }; 25879 25879 ··· 36836 36836 36837 36837 pdb2pqr = with python3Packages; toPythonApplication pdb2pqr; 36838 36838 36839 - pymol = callPackage ../applications/science/chemistry/pymol { }; 36839 + pymol = callPackage ../applications/science/chemistry/pymol { 36840 + python3Packages = python311Packages; 36841 + }; 36840 36842 36841 36843 quantum-espresso = callPackage ../applications/science/chemistry/quantum-espresso { 36842 36844 hdf5 = hdf5-fortran;