nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
df9eab67 d474c87a

+2188 -3022
+43 -6
doc/stdenv/stdenv.chapter.md
··· 101 101 102 102 ### Building a `stdenv` package in `nix-shell` {#sec-building-stdenv-package-in-nix-shell} 103 103 104 - To build a `stdenv` package in a [`nix-shell`](https://nixos.org/manual/nix/unstable/command-ref/nix-shell.html), use 104 + To build a `stdenv` package in a [`nix-shell`](https://nixos.org/manual/nix/unstable/command-ref/nix-shell.html), enter a shell, find the [phases](#sec-stdenv-phases) you wish to build, then invoke `genericBuild` manually: 105 + 106 + Go to an empty directory, invoke `nix-shell` with the desired package, and from inside the shell, set the output variables to a writable directory: 105 107 106 108 ```bash 109 + cd "$(mktemp -d)" 107 110 nix-shell '<nixpkgs>' -A some_package 108 - eval "${unpackPhase:-unpackPhase}" 109 - cd $sourceRoot 110 - eval "${patchPhase:-patchPhase}" 111 - eval "${configurePhase:-configurePhase}" 112 - eval "${buildPhase:-buildPhase}" 111 + export out=$(pwd)/out 112 + ``` 113 + 114 + Next, invoke the desired parts of the build. 115 + First, run the phases that generate a working copy of the sources, which will change directory to the sources for you: 116 + 117 + ```bash 118 + phases="${prePhases[*]:-} unpackPhase patchPhase" genericBuild 119 + ``` 120 + 121 + Then, run more phases up until the failure is reached. 122 + For example, if the failure is in the build phase, the following phases would be required: 123 + 124 + ```bash 125 + phases="${preConfigurePhases[*]:-} configurePhase ${preBuildPhases[*]:-} buildPhase" genericBuild 126 + ``` 127 + 128 + Re-run a single phase as many times as necessary to examine the failure like so: 129 + 130 + ```bash 131 + phases="buildPhase" genericBuild 113 132 ``` 114 133 115 134 To modify a [phase](#sec-stdenv-phases), first print it with 135 + 136 + ```bash 137 + echo "$buildPhase" 138 + ``` 139 + 140 + Or, if that is empty, for instance, if it is using a function: 116 141 117 142 ```bash 118 143 type buildPhase 119 144 ``` 120 145 121 146 then change it in a text editor, and paste it back to the terminal. 147 + 148 + ::: {.note} 149 + This method may have some inconsistencies in environment variables and behaviour compared to a normal build within the [Nix build sandbox](https://nixos.org/manual/nix/unstable/language/derivations#builder-execution). 150 + The following is a non-exhaustive list of such differences: 151 + 152 + - `TMP`, `TMPDIR`, and similar variables likely point to non-empty directories that the build might conflict with files in. 153 + - Output store paths are not writable, so the variables for outputs need to be overridden to writable paths. 154 + - Other environment variables may be inconsistent with a `nix-build` either due to `nix-shell`'s initialization script or due to the use of `nix-shell` without the `--pure` option. 155 + 156 + If the build fails differently inside the shell than in the sandbox, consider using [`breakpointHook`](#breakpointhook) and invoking `nix-build` instead. 157 + The [`--keep-failed`](https://nixos.org/manual/nix/unstable/command-ref/conf-file#opt--keep-failed) option for `nix-build` may also be useful to examine the build directory of a failed build. 158 + ::: 122 159 123 160 ## Tools provided by `stdenv` {#sec-tools-of-stdenv} 124 161
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 335 335 336 336 - `win-virtio` package was renamed to `virtio-win` to be consistent with the upstream package name. 337 337 338 + - `ps3netsrv` has been replaced with the webman-mod fork, the executable has been renamed from `ps3netsrv++` to `ps3netsrv` and cli parameters have changed. 339 + 338 340 ## Other Notable Changes {#sec-release-23.11-notable-changes} 339 341 340 342 - The Cinnamon module now enables XDG desktop integration by default. If you are experiencing collisions related to xdg-desktop-portal-gtk you can safely remove `xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];` from your NixOS configuration.
-16
nixos/modules/installer/tools/nixos-generate-config.pl
··· 102 102 return $cpuinfo =~ /^vendor_id\s*:.* $id$/m; 103 103 } 104 104 105 - 106 - # Determine CPU governor to use 107 - if (-e "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors") { 108 - my $governors = read_file("/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors"); 109 - # ondemand governor is not available on sandy bridge or later Intel CPUs 110 - my @desired_governors = ("ondemand", "powersave"); 111 - my $e; 112 - 113 - foreach $e (@desired_governors) { 114 - if (index($governors, $e) != -1) { 115 - last if (push @attrs, "powerManagement.cpuFreqGovernor = lib.mkDefault \"$e\";"); 116 - } 117 - } 118 - } 119 - 120 - 121 105 # Virtualization support? 122 106 push @kernelModules, "kvm-intel" if hasCPUFeature "vmx"; 123 107 push @kernelModules, "kvm-amd" if hasCPUFeature "svm";
+1 -1
nixos/modules/services/home-automation/esphome.nix
··· 112 112 ProtectKernelModules = true; 113 113 ProtectKernelTunables = true; 114 114 ProtectProc = "invisible"; 115 - ProcSubset = "pid"; 115 + ProcSubset = "all"; # Using "pid" breaks bwrap 116 116 ProtectSystem = "strict"; 117 117 #RemoveIPC = true; # Implied by DynamicUser 118 118 RestrictAddressFamilies = [
+11
nixos/modules/services/misc/forgejo.nix
··· 428 428 ]; 429 429 }; 430 430 431 + # Work around 'pq: permission denied for schema public' with postgres v15, until a 432 + # solution for `services.postgresql.ensureUsers` is found. 433 + # See https://github.com/NixOS/nixpkgs/issues/216989 434 + systemd.services.postgresql.postStart = lib.mkIf ( 435 + usePostgresql 436 + && cfg.database.createDatabase 437 + && lib.strings.versionAtLeast config.services.postgresql.package.version "15.0" 438 + ) (lib.mkAfter '' 439 + $PSQL -tAc 'ALTER DATABASE "${cfg.database.name}" OWNER TO "${cfg.database.user}";' 440 + ''); 441 + 431 442 services.mysql = optionalAttrs (useMysql && cfg.database.createDatabase) { 432 443 enable = mkDefault true; 433 444 package = mkDefault pkgs.mariadb;
+3 -2
pkgs/applications/blockchains/exodus/default.nix
··· 1 1 { stdenv 2 2 , lib 3 - , requireFile 3 + , fetchurl 4 4 , unzip 5 5 , glib 6 6 , systemd ··· 29 29 pname = "exodus"; 30 30 version = "23.9.25"; 31 31 32 - src = requireFile { 32 + src = fetchurl { 33 33 name = "exodus-linux-x64-${version}.zip"; 34 34 url = "https://downloads.exodus.com/releases/${pname}-linux-x64-${version}.zip"; 35 + curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; 35 36 sha256 = "a3e314de257e1ec01baa1023886f327ade4b233d833f7fe79f6c3e0f26d07ced"; 36 37 }; 37 38
+2 -2
pkgs/applications/misc/corectrl/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec{ 25 25 pname = "corectrl"; 26 - version = "1.3.5"; 26 + version = "1.3.6"; 27 27 28 28 src = fetchFromGitLab { 29 29 owner = "corectrl"; 30 30 repo = "corectrl"; 31 31 rev = "v${version}"; 32 - sha256 = "sha256-HETD2+acxJf30iC6UwRXD/onFYo3ki4RwAAVs4NbSAw="; 32 + sha256 = "sha256-a8cLtmv9nLtvN9o/aIwveTAT36XmTN1j85ZxVGIXO6E="; 33 33 }; 34 34 patches = [ 35 35 ./polkit-dir.patch
+1
pkgs/applications/misc/darkman/default.nix
··· 44 44 license = licenses.isc; 45 45 maintainers = [ maintainers.ajgrf ]; 46 46 platforms = platforms.linux; 47 + mainProgram = "darkman"; 47 48 }; 48 49 }
+1 -1
pkgs/applications/misc/dasel/default.nix
··· 12 12 owner = "TomWright"; 13 13 repo = "dasel"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-zxTT/CkSbH40R7itXAx0zD+haHOoMep/W4KfalJQ/8w="; 15 + hash = "sha256-zxTT/CkSbH40R7itXAx0zD+haHOoMep/W4KfalJQ/8w="; 16 16 }; 17 17 18 18 vendorHash = "sha256-CbR0uHtha2OoHW9mcB1I2lGJbjerbZARVN/mTstv/Y0=";
+14 -3
pkgs/applications/misc/diebahn/default.nix
··· 15 15 , gtk4 16 16 , libadwaita 17 17 , pango 18 + , gettext 18 19 , darwin 19 20 }: 20 21 ··· 55 54 gtk4 56 55 libadwaita 57 56 pango 58 - ] ++ lib.optionals stdenv.isDarwin [ 59 - darwin.apple_sdk.frameworks.Security 60 - ]; 57 + ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 58 + CoreFoundation 59 + Foundation 60 + Security 61 + ]); 62 + 63 + # Darwin needs to link against gettext from nixpkgs instead of the one vendored by gettext-sys 64 + # because the vendored copy does not build with newer versions of clang. 65 + env = lib.optionalAttrs stdenv.isDarwin { 66 + GETTEXT_BIN_DIR = "${lib.getBin gettext}/bin"; 67 + GETTEXT_INCLUDE_DIR = "${lib.getDev gettext}/include"; 68 + GETTEXT_LIB_DIR = "${lib.getLib gettext}/lib"; 69 + }; 61 70 62 71 meta = { 63 72 description = "GTK4 frontend for the travel information of the german railway";
+3 -3
pkgs/applications/misc/oxker/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "oxker"; 5 - version = "0.3.2"; 5 + version = "0.3.3"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-HFZSIzP3G6f78gTOpzZFG5ZAo5Lo6VuxQe6xMvCVfss="; 9 + sha256 = "sha256-2zdsVItGZYQydpC9E/uCbzOE9Xoh7zTqa9DpxA5qNCc="; 10 10 }; 11 11 12 - cargoHash = "sha256-ZsqxlwgXqw9eUEjw1DLBMz05V/y/ZbcrCL6I8TcnnDs="; 12 + cargoHash = "sha256-FXYFQpiK2BGUz9GjsUPS9LWPeezbBQ3A33juoVCl71g="; 13 13 14 14 meta = with lib; { 15 15 description = "A simple tui to view & control docker containers";
+1 -1
pkgs/applications/misc/tumpa/default.nix
··· 12 12 owner = "kushaldas"; 13 13 repo = "tumpa"; 14 14 rev = "v${version}"; 15 - sha256 = "17nhdildapgic5l05f3q1wf5jvz3qqdjv543c8gij1x9rdm8hgxi"; 15 + hash = "sha256-sT+IasupBxkfYoOULRvG429ZHA94uAJoYfFd1Whs0J4="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/applications/networking/cluster/temporal-cli/default.nix
··· 17 17 18 18 tctl-next = buildGoModule rec { 19 19 pname = "tctl-next"; 20 - version = "0.9.0"; 20 + version = "0.10.6"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "temporalio"; 24 24 repo = "cli"; 25 25 rev = "v${version}"; 26 - hash = "sha256-zgi1wNx7fWf/iFGKaVffcXnC90vUz+mBT6HhCGdXMa0="; 26 + hash = "sha256-4kNuudnYBD6rgIkysP7dEjsRu/dFvTm3hkbBYZ6+Zh4="; 27 27 }; 28 28 29 - vendorHash = "sha256-EX1T3AygarJn4Zae2I8CHQrZakmbNF1OwE4YZFF+nKc="; 29 + vendorHash = "sha256-ZECwF/avHKE4L9GHa2w5Lx71wD6UIAaPpRkUtpEVafI="; 30 30 31 31 inherit overrideModAttrs; 32 32
+2 -2
pkgs/applications/networking/cluster/vcluster/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vcluster"; 5 - version = "0.15.6"; 5 + version = "0.16.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "loft-sh"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-frYE/0PcVNlk+hwSCoPwSbL2se4dEP9g6aLDMGdn6x8="; 11 + hash = "sha256-LL+fikMTg79d9goFEkmxwYvF9E0GrPNTLmFy2tfnQtg="; 12 12 }; 13 13 14 14 vendorHash = null;
+13 -4
pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix
··· 34 34 hash = "sha256-o4kgneszVLENG167nWnk2FxM+PsMzi+PSyMUMIktZcc="; 35 35 }; 36 36 37 - patches = fetchpatch { 38 - url = "https://patch-diff.githubusercontent.com/raw/poljar/weechat-matrix/pull/309.patch"; 39 - sha256 = "sha256-Grdht+TOFvCYRpL7uhPivqL7YzLoNVF3iQNHgbv1Te0="; 40 - }; 37 + patches = [ 38 + # server: remove set_npn_protocols() 39 + (fetchpatch { 40 + url = "https://patch-diff.githubusercontent.com/raw/poljar/weechat-matrix/pull/309.patch"; 41 + hash = "sha256-Grdht+TOFvCYRpL7uhPivqL7YzLoNVF3iQNHgbv1Te0="; 42 + }) 43 + # Fix compatibility with matrix-nio 0.21 44 + (fetchpatch { 45 + url = "https://github.com/poljar/weechat-matrix/commit/feae9fda26ea9de98da9cd6733980a203115537e.patch"; 46 + hash = "sha256-MAfxJ85dqz5PNwp/GJdHA2VvXVdWh+Ayx5g0oHiw9rs="; 47 + includes = ["matrix/config.py"]; 48 + }) 49 + ]; 41 50 42 51 propagatedBuildInputs = [ 43 52 pyopenssl
+2 -2
pkgs/applications/networking/sync/rclone/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "rclone"; 9 - version = "1.64.1"; 9 + version = "1.64.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-JaUsclhAZpmVi3K9VdRfAber++ghiEfzmJDmeku9IXA="; 15 + hash = "sha256-gOFOcqCgFAiTc6W3v8Z917hGCzxluswqnuOoUht73GA="; 16 16 }; 17 17 18 18 vendorHash = "sha256-eYIGVCTvUfGbsIMFthEfD0r6aeA7Ly9xJ8PJ6hR2SjA=";
+1
pkgs/applications/office/zotero/default.nix
··· 153 153 license = licenses.agpl3Only; 154 154 platforms = platforms.linux; 155 155 maintainers = with maintainers; [ i077 ]; 156 + knownVulnerabilities = [ "CVE-2023-5217" ]; 156 157 }; 157 158 }
+1 -1
pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
··· 11 11 owner = "QubesOS"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256:02l1vs5c2jfw22gxvl2fb66m0d99n8ya1i7rphsb5cxsljvxary0"; 14 + hash = "sha256:02l1vs5c2jfw22gxvl2fb66m0d99n8ya1i7rphsb5cxsljvxary0"; 15 15 }; 16 16 17 17 buildInputs = [ xen ];
+2
pkgs/applications/radio/direwolf/default.nix
··· 8 8 , hamlib 9 9 , hamlibSupport ? true 10 10 , perl 11 + , portaudio 11 12 , python3 12 13 , espeak 13 14 , udev ··· 33 32 strictDeps = true; 34 33 35 34 buildInputs = lib.optionals stdenv.isLinux [ alsa-lib udev ] 35 + ++ lib.optionals stdenv.isDarwin [ portaudio ] 36 36 ++ lib.optionals gpsdSupport [ gpsd ] 37 37 ++ lib.optionals hamlibSupport [ hamlib ] 38 38 ++ lib.optionals extraScripts [ python3 perl espeak ];
+1 -1
pkgs/applications/radio/qdmr/default.nix
··· 28 28 owner = "hmatuschek"; 29 29 repo = "qdmr"; 30 30 rev = "v${version}"; 31 - sha256 = "sha256-YLGsKGcKIPd0ihd5IzlT71dYkxZfeH7BpnKQMEyY8dI="; 31 + hash = "sha256-YLGsKGcKIPd0ihd5IzlT71dYkxZfeH7BpnKQMEyY8dI="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+1 -1
pkgs/applications/video/w_scan2/default.nix
··· 12 12 owner = "stefantalpalaru"; 13 13 repo = "w_scan2"; 14 14 rev = version; 15 - sha256 = "sha256-fDFAJ4EMwu4X1Go3jkRjwA66xDY4tJ5wCKlEdZUT4qQ="; 15 + hash = "sha256-fDFAJ4EMwu4X1Go3jkRjwA66xDY4tJ5wCKlEdZUT4qQ="; 16 16 }; 17 17 18 18 meta = {
+1 -1
pkgs/applications/window-managers/cwm/default.nix
··· 9 9 owner = "leahneukirchen"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-L3u4mH2UH2pTHhSPVr5dUi94b9DheslkIWL6EgQ05yA="; 12 + hash = "sha256-L3u4mH2UH2pTHhSPVr5dUi94b9DheslkIWL6EgQ05yA="; 13 13 }; 14 14 15 15 strictDeps = true;
+3 -3
pkgs/by-name/tr/trunk-ng/package.nix
··· 3 3 4 4 rustPlatform.buildRustPackage rec { 5 5 pname = "trunk-ng"; 6 - version = "0.17.8"; 6 + version = "0.17.10"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "ctron"; 10 10 repo = "trunk"; 11 11 rev = "v${version}"; 12 - hash = "sha256-ycZIqDBZccPapOK0ZI9Cvq94tRxChrsWX1rhyWh0S2c="; 12 + hash = "sha256-F2g/GMxnS5r44i3NIJGOic9f+H5+JbFi3dqMqI6h6JQ="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ pkg-config ]; ··· 20 20 # requires network 21 21 checkFlags = [ "--skip=tools::tests::download_and_install_binaries" ]; 22 22 23 - cargoHash = "sha256-URHArTog34JcuxXHzTQBjQOFMffarNb51d9sUOfjm6c="; 23 + cargoHash = "sha256-37nCqRTgbsg2cXu4xwYC/qfodPIxx97Qns8FQe9NroQ="; 24 24 25 25 meta = with lib; { 26 26 homepage = "https://github.com/ctron/trunk";
+7 -19
pkgs/development/interpreters/starlark-rust/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 3 , fetchCrate 4 - , fetchpatch 5 - , stdenv 6 4 }: 7 5 8 6 rustPlatform.buildRustPackage rec { 9 - pname = "starlark"; 10 - version = "0.9.0"; 7 + pname = "starlark-rust"; 8 + version = "0.10.0"; 11 9 12 10 src = fetchCrate { 13 - inherit pname version; 14 - hash = "sha256-h8TBWWw94Ka9C0W0i0aHACq6jO0QOLnLW+wTRzorHcc="; 11 + pname = "starlark_bin"; 12 + inherit version; 13 + hash = "sha256-7AoNRTLyTYsUass9bMJMBUN+GrfUzEGM9cED5VsRESs="; 15 14 }; 16 15 17 - cargoHash = "sha256-OLzotKyiG0JmtjH0ckRImHMPPxfQZ+8IHZtXlo1f8+Y="; 18 - 19 - patches = [ 20 - # fix test broken due to using `fetchCrate` 21 - # https://github.com/facebookexperimental/starlark-rust/pull/78 22 - (fetchpatch { 23 - name = "fix-test-rust-loc-when-tested-from-the-crate.patch"; 24 - url = "https://github.com/facebookexperimental/starlark-rust/commit/0e4f90c77868e506268fcb6c9d37368e5b2b8cf5.patch"; 25 - hash = "sha256-c8irAyS2IQ5C6s+0t4+hbW8aFptkwvCu9JHLyZqZsW4="; 26 - stripLen = 1; 27 - }) 28 - ]; 16 + cargoHash = "sha256-Q00JJRiubrxnI0nFQqUTbxTTB70XV93HJycjdlvV+74="; 29 17 30 18 meta = with lib; { 31 19 description = "A Rust implementation of the Starlark language"; ··· 21 33 changelog = "https://github.com/facebookexperimental/starlark-rust/blob/v${version}/CHANGELOG.md"; 22 34 license = licenses.asl20; 23 35 maintainers = with maintainers; [ figsoda ]; 24 - broken = stdenv.isAarch64 || stdenv.isDarwin; 36 + mainProgram = "starlark"; 25 37 }; 26 38 }
+1 -1
pkgs/development/libraries/libcdada/default.nix
··· 12 12 owner = "msune"; 13 13 repo = "libcdada"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-vUasCukDRZYB67eu87ckEZG9i6rsNf0aKY2kZsVezRE="; 15 + hash = "sha256-vUasCukDRZYB67eu87ckEZG9i6rsNf0aKY2kZsVezRE="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/paho-mqtt-c/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "paho.mqtt.c"; 5 - version = "1.3.12"; 5 + version = "1.3.13"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "eclipse"; 9 9 repo = "paho.mqtt.c"; 10 10 rev = "v${version}"; 11 - hash = "sha256-LxyMbMA6Antt8Uu4jCvmvYT9+Vm4ZUVz4XXFdd0O7Kk="; 11 + hash = "sha256-dKQnepQAryAjImh2rX1jdgiKBtJQy9wzk/7rGQjUtPg="; 12 12 }; 13 13 14 14 postPatch = ''
+2 -2
pkgs/development/libraries/simgear/default.nix
··· 4 4 , curl 5 5 }: 6 6 let 7 - version = "2020.3.18"; 7 + version = "2020.3.19"; 8 8 shortVersion = builtins.substring 0 6 version; 9 9 in 10 10 stdenv.mkDerivation rec { ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 16 - sha256 = "sha256-bMHPJVaxckB5KezyurJDLG+wXuFt0ZAm6QNp8lc2Nso="; 16 + sha256 = "sha256-O5N8W5RCJHjl15EUvc1seOQ6Cm/7qXVEqG1EHD+ejDo="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+27 -7
pkgs/development/libraries/simpleitk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, swig4, lua, itk }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , swig4 6 + , lua 7 + , elastix 8 + , itk 9 + }: 2 10 3 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 4 12 pname = "simpleitk"; 5 13 version = "2.3.0"; 6 14 7 15 src = fetchFromGitHub { 8 16 owner = "SimpleITK"; 9 17 repo = "SimpleITK"; 10 - rev = "refs/tags/v${version}"; 18 + rev = "refs/tags/v${finalAttrs.version}"; 11 19 hash = "sha256-SJSFJEFu1qKowX5/98MslN7GFDS8aF5+EKkQ2983Azg="; 12 20 }; 13 21 14 - nativeBuildInputs = [ cmake swig4 ]; 15 - buildInputs = [ lua itk ]; 22 + nativeBuildInputs = [ 23 + cmake 24 + swig4 25 + ]; 26 + buildInputs = [ 27 + elastix 28 + lua 29 + itk 30 + ]; 16 31 17 32 # 2.0.0: linker error building examples 18 - cmakeFlags = [ "-DBUILD_EXAMPLES=OFF" "-DBUILD_SHARED_LIBS=ON" ]; 33 + cmakeFlags = [ 34 + "-DBUILD_EXAMPLES=OFF" 35 + "-DBUILD_SHARED_LIBS=OFF" 36 + "-DSimpleITK_USE_ELASTIX=ON" 37 + ]; 19 38 20 39 meta = with lib; { 21 40 homepage = "https://www.simpleitk.org"; 22 41 description = "Simplified interface to ITK"; 42 + changelog = "https://github.com/SimpleITK/SimpleITK/releases/tag/v${finalAttrs.version}"; 23 43 maintainers = with maintainers; [ bcdarwin ]; 24 44 platforms = platforms.linux; 25 45 license = licenses.asl20; 26 46 }; 27 - } 47 + })
+19 -14
pkgs/development/lisp-modules/packages.nix
··· 329 329 lispLibs = with self; [ bordeaux-threads closer-mop serapeum ]; 330 330 }; 331 331 332 - nkeymaps = build-asdf-system { 332 + nkeymaps = build-asdf-system rec { 333 333 pname = "nkeymaps"; 334 - version = "20230214-git"; 335 - src = pkgs.fetchzip { 336 - url = "http://beta.quicklisp.org/archive/nhooks/2023-02-14/nkeymaps-20230214-git.tgz"; 337 - sha256 = "197vxqby87vnpgcwchs3dqihk1gimp2cx9cc201pkdzvnbrixji6"; 334 + version = "1.1.0"; 335 + src = pkgs.fetchFromGitHub { 336 + owner = "atlas-engineer"; 337 + repo = "nkeymaps"; 338 + rev = version; 339 + hash = "sha256-ewMu2IgEzCYY72vG91IA7l8X78Ph6jpQvbKeOFZdAyM="; 338 340 }; 339 - lispLibs = with self; [ alexandria fset trivial-package-local-nicknames ]; 341 + lispLibs = with self; [ alexandria fset trivial-package-local-nicknames 342 + str ]; 340 343 }; 341 344 342 345 343 - history-tree = build-asdf-system { 346 + history-tree = build-asdf-system rec { 344 347 pname = "history-tree"; 345 - version = "20230214-git"; 346 - src = pkgs.fetchzip { 347 - url = "http://beta.quicklisp.org/archive/history-tree/2023-02-14/history-tree-20230214-git.tgz"; 348 - sha256 = "12kvnc8vcvg7nmgl5iqgbr4pj0vgb8f8avk9l5czz7f2hj91ysdp"; 348 + version = "0.1.1"; 349 + src = pkgs.fetchFromGitHub { 350 + owner = "atlas-engineer"; 351 + repo = "history-tree"; 352 + rev = version; 353 + hash = "sha256-lOORalyTybdut/If+dBXS4PlZt2AnZrEI/qjQWS03pk="; 349 354 }; 350 355 lispLibs = with self; [ 351 356 alexandria ··· 364 359 365 360 nyxt-gtk = build-asdf-system { 366 361 pname = "nyxt"; 367 - version = "3.7.0"; 362 + version = "3.9.0"; 368 363 369 364 lispLibs = (with super; [ 370 365 alexandria ··· 454 449 src = pkgs.fetchFromGitHub { 455 450 owner = "atlas-engineer"; 456 451 repo = "nyxt"; 457 - rev = "3.7.0"; 458 - sha256 = "sha256-viiyO4fX3uyGuvojQ1rYYKBldRdVNzeJX1KYlYwfWVU="; 452 + rev = "3.9.0"; 453 + sha256 = "sha256-bZoAE0FErgXPylOzh6AfMq3befms9dHms8+slbYdctk="; 459 454 }; 460 455 461 456 nativeBuildInputs = [ pkgs.makeWrapper ];
+7 -9
pkgs/development/python-modules/blinkpy/default.nix
··· 6 6 , pytestCheckHook 7 7 , python-dateutil 8 8 , python-slugify 9 - , pythonAtLeast 10 9 , pythonOlder 11 10 , requests 11 + , setuptools 12 12 , sortedcontainers 13 13 }: 14 14 15 15 buildPythonPackage rec { 16 16 pname = "blinkpy"; 17 17 version = "0.22.0"; 18 - format = "setuptools"; 18 + pyproject = true; 19 19 20 20 disabled = pythonOlder "3.8"; 21 21 ··· 25 25 rev = "refs/tags/v${version}"; 26 26 hash = "sha256-r8kf5L6bvtivqd9dSi8om1wIi8IHmipKFckNMPT515I="; 27 27 }; 28 + 29 + nativeBuildInputs = [ 30 + setuptools 31 + ]; 28 32 29 33 propagatedBuildInputs = [ 30 34 aiofiles ··· 53 49 "blinkpy.sync_module" 54 50 ]; 55 51 56 - disabledTests = lib.optionals (pythonAtLeast "3.10") [ 57 - "test_download_video_exit" 58 - "test_parse_camera_not_in_list" 59 - "test_parse_downloaded_items" 60 - ]; 61 - 62 52 meta = with lib; { 63 53 description = "Python library for the Blink Camera system"; 64 54 homepage = "https://github.com/fronzbot/blinkpy"; 65 - changelog = "https://github.com/fronzbot/blinkpy/releases/tag/v${version}"; 55 + changelog = "https://github.com/fronzbot/blinkpy/blob/${src.rev}/CHANGES.rst"; 66 56 license = licenses.mit; 67 57 maintainers = with maintainers; [ dotlambda ]; 68 58 };
+144
pkgs/development/python-modules/django/5.nix
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchPypi 5 + , pythonOlder 6 + , substituteAll 7 + 8 + # build 9 + , setuptools 10 + 11 + # patched in 12 + , geos 13 + , gdal 14 + , withGdal ? false 15 + 16 + # propagates 17 + , asgiref 18 + , sqlparse 19 + 20 + # extras 21 + , argon2-cffi 22 + , bcrypt 23 + 24 + # tests 25 + , aiosmtpd 26 + , docutils 27 + , geoip2 28 + , jinja2 29 + , numpy 30 + , pillow 31 + , pylibmc 32 + , pymemcache 33 + , python 34 + , pywatchman 35 + , pyyaml 36 + , pytz 37 + , redis 38 + , selenium 39 + , tblib 40 + , tzdata 41 + }: 42 + 43 + buildPythonPackage rec { 44 + pname = "Django"; 45 + version = "5.0a1"; 46 + pyproject = true; 47 + 48 + disabled = pythonOlder "3.10"; 49 + 50 + src = fetchPypi { 51 + inherit pname version; 52 + hash = "sha256-OlIFL7xeAfIgLAIKgkGqQNwDCxbI+0ncSAzEarhzUVg="; 53 + }; 54 + 55 + patches = [ 56 + (substituteAll { 57 + src = ./django_5_set_zoneinfo_dir.patch; 58 + zoneinfo = tzdata + "/share/zoneinfo"; 59 + }) 60 + # prevent tests from messing with our pythonpath 61 + ./django_5_tests_pythonpath.patch 62 + # disable test that excpects timezone issues 63 + ./django_5_disable_failing_tests.patch 64 + ] ++ lib.optionals withGdal [ 65 + (substituteAll { 66 + src = ./django_5_set_geos_gdal_lib.patch; 67 + geos = geos; 68 + gdal = gdal; 69 + extension = stdenv.hostPlatform.extensions.sharedLibrary; 70 + }) 71 + ]; 72 + 73 + postPatch = '' 74 + substituteInPlace tests/utils_tests/test_autoreload.py \ 75 + --replace "/usr/bin/python" "${python.interpreter}" 76 + ''; 77 + 78 + nativeBuildInputs = [ 79 + setuptools 80 + ]; 81 + 82 + propagatedBuildInputs = [ 83 + asgiref 84 + sqlparse 85 + ]; 86 + 87 + passthru.optional-dependencies = { 88 + argon2 = [ 89 + argon2-cffi 90 + ]; 91 + bcrypt = [ 92 + bcrypt 93 + ]; 94 + }; 95 + 96 + nativeCheckInputs = [ 97 + # tests/requirements/py3.txt 98 + aiosmtpd 99 + docutils 100 + geoip2 101 + jinja2 102 + numpy 103 + pillow 104 + pylibmc 105 + pymemcache 106 + pywatchman 107 + pyyaml 108 + pytz 109 + redis 110 + selenium 111 + tblib 112 + tzdata 113 + ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies); 114 + 115 + doCheck = !stdenv.isDarwin; 116 + 117 + preCheck = '' 118 + # make sure the installed library gets imported 119 + rm -rf django 120 + 121 + # provide timezone data, works only on linux 122 + export TZDIR=${tzdata}/${python.sitePackages}/tzdata/zoneinfo 123 + ''; 124 + 125 + checkPhase = '' 126 + runHook preCheck 127 + 128 + pushd tests 129 + ${python.interpreter} runtests.py --settings=test_sqlite 130 + popd 131 + 132 + runHook postCheck 133 + ''; 134 + 135 + __darwinAllowLocalNetworking = true; 136 + 137 + meta = with lib; { 138 + changelog = "https://docs.djangoproject.com/en/${lib.versions.majorMinor version}/releases/${version}/"; 139 + description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design."; 140 + homepage = "https://www.djangoproject.com"; 141 + license = licenses.bsd3; 142 + maintainers = with maintainers; [ hexa ]; 143 + }; 144 + }
+21
pkgs/development/python-modules/django/django_5_disable_failing_tests.patch
··· 1 + diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py 2 + index b204487..243f060 100644 3 + --- a/tests/settings_tests/tests.py 4 + +++ b/tests/settings_tests/tests.py 5 + @@ -2,7 +2,7 @@ import os 6 + import sys 7 + import unittest 8 + from types import ModuleType, SimpleNamespace 9 + -from unittest import mock 10 + +from unittest import mock, skip 11 + 12 + from django.conf import ENVIRONMENT_VARIABLE, LazySettings, Settings, settings 13 + from django.core.exceptions import ImproperlyConfigured 14 + @@ -335,6 +335,7 @@ class SettingsTests(SimpleTestCase): 15 + getattr(s, "foo") 16 + 17 + @requires_tz_support 18 + + @skip("Assertion fails, exception does not get raised") 19 + @mock.patch("django.conf.global_settings.TIME_ZONE", "test") 20 + def test_incorrect_timezone(self): 21 + with self.assertRaisesMessage(ValueError, "Incorrect timezone setting: test"):
+26
pkgs/development/python-modules/django/django_5_set_geos_gdal_lib.patch
··· 1 + diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py 2 + index 30cba0f..5afc031 100644 3 + --- a/django/contrib/gis/gdal/libgdal.py 4 + +++ b/django/contrib/gis/gdal/libgdal.py 5 + @@ -15,7 +15,7 @@ try: 6 + 7 + lib_path = settings.GDAL_LIBRARY_PATH 8 + except (AttributeError, ImportError, ImproperlyConfigured, OSError): 9 + - lib_path = None 10 + + lib_path = "@gdal@/lib/libgdal@extension@" 11 + 12 + if lib_path: 13 + lib_names = None 14 + diff --git a/django/contrib/gis/geos/libgeos.py b/django/contrib/gis/geos/libgeos.py 15 + index 1121b4f..f14ea2f 100644 16 + --- a/django/contrib/gis/geos/libgeos.py 17 + +++ b/django/contrib/gis/geos/libgeos.py 18 + @@ -25,7 +25,7 @@ def load_geos(): 19 + 20 + lib_path = settings.GEOS_LIBRARY_PATH 21 + except (AttributeError, ImportError, ImproperlyConfigured, OSError): 22 + - lib_path = None 23 + + lib_path = "@geos@/lib/libgeos_c@extension@" 24 + 25 + # Setting the appropriate names for the GEOS-C library. 26 + if lib_path:
+13
pkgs/development/python-modules/django/django_5_set_zoneinfo_dir.patch
··· 1 + diff --git a/django/conf/__init__.py b/django/conf/__init__.py 2 + index 22f1eab..3a752d1 100644 3 + --- a/django/conf/__init__.py 4 + +++ b/django/conf/__init__.py 5 + @@ -208,7 +208,7 @@ class Settings: 6 + if hasattr(time, "tzset") and self.TIME_ZONE: 7 + # When we can, attempt to validate the timezone. If we can't find 8 + # this file, no check happens and it's harmless. 9 + - zoneinfo_root = Path("/usr/share/zoneinfo") 10 + + zoneinfo_root = Path("@zoneinfo@") 11 + zone_info_file = zoneinfo_root.joinpath(*self.TIME_ZONE.split("/")) 12 + if zoneinfo_root.exists() and not zone_info_file.exists(): 13 + raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE)
+12
pkgs/development/python-modules/django/django_5_tests_pythonpath.patch
··· 1 + diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py 2 + index 7f39d7f..b5b0ae7 100644 3 + --- a/tests/admin_scripts/tests.py 4 + +++ b/tests/admin_scripts/tests.py 5 + @@ -126,6 +126,7 @@ class AdminScriptTestCase(SimpleTestCase): 6 + del test_environ["DJANGO_SETTINGS_MODULE"] 7 + python_path = [base_dir, django_dir, tests_dir] 8 + python_path.extend(ext_backend_base_dirs) 9 + + python_path.extend(sys.path) 10 + test_environ["PYTHONPATH"] = os.pathsep.join(python_path) 11 + test_environ["PYTHONWARNINGS"] = "" 12 +
+2 -2
pkgs/development/python-modules/jc/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "jc"; 16 - version = "1.23.4"; 16 + version = "1.23.5"; 17 17 disabled = pythonOlder "3.6"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "kellyjonbrazil"; 21 21 repo = pname; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-d0KONiYS/5JXrl5izFSTYeABEhCW+W9cKpMgk9o9LB4="; 23 + hash = "sha256-lIIUJL9NOtDpPQeuFi9xvFG0fPzYYEBv40s7Q+JSmN8="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ];
+2
pkgs/development/python-modules/qgrid/default.nix
··· 42 42 "test_edit_multi_index_df" 43 43 "test_multi_index" 44 44 "test_period_object_column" 45 + # probably incompatible with pandas>=2.1 46 + "test_add_row_button" 45 47 ]; 46 48 47 49 pythonImportsCheck = [ "qgrid" ];
+12 -2
pkgs/development/python-modules/simpleitk/default.nix
··· 4 4 , fetchFromGitHub 5 5 , cmake 6 6 , swig4 7 + , elastix 7 8 , itk 8 9 , numpy 9 10 , simpleitk ··· 21 20 make 22 21 ''; 23 22 24 - nativeBuildInputs = [ cmake swig4 scikit-build ]; 25 - propagatedBuildInputs = [ itk simpleitk numpy ]; 23 + nativeBuildInputs = [ 24 + cmake 25 + swig4 26 + scikit-build 27 + ]; 28 + propagatedBuildInputs = [ 29 + elastix 30 + itk 31 + simpleitk 32 + numpy 33 + ]; 26 34 27 35 pythonImportsCheck = [ "SimpleITK" ]; 28 36 }
+2 -2
pkgs/development/python-modules/tlds/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "tlds"; 8 - version = "2023080900"; 8 + version = "2023101900"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kichik"; 13 13 repo = "tlds"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-n6SGOBkwGrjnH01yFd9giODUDkPGVMwB1H/fozzwQwU="; 15 + hash = "sha256-ac4gM2+7RvmUl8ZI+XhjOkvR3lsTgoowowFo5K+ZFJ8="; 16 16 }; 17 17 18 18 pythonImportsCheck = [
+3 -3
pkgs/development/tools/misc/iozone/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "iozone"; 17 - version = "3.493"; 17 + version = "3.506"; 18 18 19 19 src = fetchurl { 20 - url = "http://www.iozone.org/src/current/iozone${lib.replaceStrings ["."] ["_"] version}.tgz"; 21 - hash = "sha256-Y0wSNgC0u0LoJ0g/oVsq+uba2ikHt4SxTgFBWTPUMZg="; 20 + url = "http://www.iozone.org/src/current/iozone${lib.replaceStrings ["."] ["_"] version}.tar"; 21 + hash = "sha256-EUzlwHGHO5ose6bnPQXV735mVkOSrL/NwLMmHbEPy+c="; 22 22 }; 23 23 24 24 license = fetchurl {
+3 -3
pkgs/development/tools/rust/cargo-hack/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-hack"; 5 - version = "0.6.8"; 5 + version = "0.6.11"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - hash = "sha256-ZFFrluvnm5kCOyIe4c+gT2N4W7aeg1Cv1666by92BJo="; 9 + hash = "sha256-lgrbqNK6CdrVo2u05CfVev+ZYa1BbhB4QVCGSMxAvO8="; 10 10 }; 11 11 12 - cargoHash = "sha256-Nbs2pE9WqwsTJLV3nUAWVVz6gwcmhyk9hv/uaOoAkIQ="; 12 + cargoHash = "sha256-3tM84DHGEablj7B0SdX9LdjYh1tq5t5ORjkbp/iqUqg="; 13 13 14 14 # some necessary files are absent in the crate version 15 15 doCheck = false;
+1 -1
pkgs/games/eidolon/default.nix
··· 14 14 owner = "~nicohman"; 15 15 repo = pname; 16 16 rev = version; 17 - sha256 = "sha256-Ofc3i+iMmbUgY3bomUk4rM3bEQInTV3rIPz3m0yZw/o="; 17 + hash = "sha256-Ofc3i+iMmbUgY3bomUk4rM3bEQInTV3rIPz3m0yZw/o="; 18 18 }; 19 19 20 20 cargoLock = {
+1 -1
pkgs/games/freenukum/default.nix
··· 32 32 owner = "silwol"; 33 33 repo = "freenukum"; 34 34 rev = "v${version}"; 35 - sha256 = "sha256-Tk9n2gPwyPin6JZ4RSO8d/+xVpEz4rF8C2eGKwrAXU0="; 35 + hash = "sha256-Tk9n2gPwyPin6JZ4RSO8d/+xVpEz4rF8C2eGKwrAXU0="; 36 36 }; 37 37 38 38 cargoSha256 = "sha256-8RfiObWDqZJg+sjjDBk+sRoS5CiECIdNPH79T+O8e8M=";
+1579 -2144
pkgs/games/jumpy/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "ab_glyph" 7 - version = "0.2.20" 7 + version = "0.2.22" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "fe21446ad43aa56417a767f3e2f3d7c4ca522904de1dd640529a76e9c5c3b33c" 9 + checksum = "b1061f3ff92c2f65800df1f12fc7b4ff44ee14783104187dd04dfee6f11b0fd2" 10 10 dependencies = [ 11 11 "ab_glyph_rasterizer", 12 12 "owned_ttf_parser", ··· 19 19 checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046" 20 20 21 21 [[package]] 22 - name = "addr2line" 23 - version = "0.19.0" 22 + name = "accesskit" 23 + version = "0.11.2" 24 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 25 + checksum = "76eb1adf08c5bcaa8490b9851fd53cca27fa9880076f178ea9d29f05196728a8" 26 + dependencies = [ 27 + "enumn", 28 + "serde", 29 + ] 30 + 31 + [[package]] 32 + name = "accesskit_consumer" 33 + version = "0.15.2" 34 + source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "04bb4d9e4772fe0d47df57d0d5dbe5d85dd05e2f37ae1ddb6b105e76be58fb00" 36 + dependencies = [ 37 + "accesskit", 38 + ] 39 + 40 + [[package]] 41 + name = "accesskit_macos" 42 + version = "0.9.0" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "134d0acf6acb667c89d3332999b1a5df4edbc8d6113910f392ebb73f2b03bb56" 45 + dependencies = [ 46 + "accesskit", 47 + "accesskit_consumer", 48 + "objc2", 49 + "once_cell", 50 + ] 51 + 52 + [[package]] 53 + name = "accesskit_windows" 54 + version = "0.14.3" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "9eac0a7f2d7cd7a93b938af401d3d8e8b7094217989a7c25c55a953023436e31" 57 + dependencies = [ 58 + "accesskit", 59 + "accesskit_consumer", 60 + "arrayvec", 61 + "once_cell", 62 + "paste", 63 + "windows 0.48.0", 64 + ] 65 + 66 + [[package]] 67 + name = "accesskit_winit" 68 + version = "0.14.4" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "825d23acee1bd6d25cbaa3ca6ed6e73faf24122a774ec33d52c5c86c6ab423c0" 71 + dependencies = [ 72 + "accesskit", 73 + "accesskit_macos", 74 + "accesskit_windows", 75 + "winit", 76 + ] 77 + 78 + [[package]] 79 + name = "addr2line" 80 + version = "0.21.0" 81 + source = "registry+https://github.com/rust-lang/crates.io-index" 82 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 26 83 dependencies = [ 27 84 "gimli", 28 85 ] ··· 92 35 93 36 [[package]] 94 37 name = "ahash" 95 - version = "0.7.6" 96 - source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 98 - dependencies = [ 99 - "getrandom 0.2.8", 100 - "once_cell", 101 - "version_check", 102 - ] 103 - 104 - [[package]] 105 - name = "ahash" 106 38 version = "0.8.3" 107 39 source = "registry+https://github.com/rust-lang/crates.io-index" 108 40 checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 109 41 dependencies = [ 110 42 "cfg-if", 43 + "getrandom 0.2.10", 111 44 "once_cell", 45 + "serde", 112 46 "version_check", 113 47 ] 114 48 115 49 [[package]] 116 50 name = "aho-corasick" 117 - version = "0.7.20" 51 + version = "1.1.2" 118 52 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 53 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 120 54 dependencies = [ 121 55 "memchr", 122 56 ] 123 57 124 58 [[package]] 125 - name = "aligned-vec" 126 - version = "0.5.0" 59 + name = "allocator-api2" 60 + version = "0.2.16" 127 61 source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" 62 + checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 129 63 130 64 [[package]] 131 65 name = "alsa" 132 - version = "0.7.0" 66 + version = "0.7.1" 133 67 source = "registry+https://github.com/rust-lang/crates.io-index" 134 - checksum = "8512c9117059663fb5606788fbca3619e2a91dac0e3fe516242eab1fa6be5e44" 68 + checksum = "e2562ad8dcf0f789f65c6fdaad8a8a9708ed6b488e649da28c01656ad66b8b47" 135 69 dependencies = [ 136 70 "alsa-sys", 137 - "bitflags", 71 + "bitflags 1.3.2", 138 72 "libc", 139 73 "nix 0.24.3", 140 74 ] ··· 141 93 ] 142 94 143 95 [[package]] 144 - name = "android_log-sys" 145 - version = "0.2.0" 96 + name = "android-activity" 97 + version = "0.4.3" 146 98 source = "registry+https://github.com/rust-lang/crates.io-index" 147 - checksum = "85965b6739a430150bdd138e2374a98af0c3ee0d030b3bb7fc3bddff58d0102e" 99 + checksum = "64529721f27c2314ced0890ce45e469574a73e5e6fdd6e9da1860eb29285f5e0" 100 + dependencies = [ 101 + "android-properties", 102 + "bitflags 1.3.2", 103 + "cc", 104 + "jni-sys", 105 + "libc", 106 + "log", 107 + "ndk", 108 + "ndk-context", 109 + "ndk-sys", 110 + "num_enum 0.6.1", 111 + ] 148 112 149 113 [[package]] 150 - name = "android_logger" 151 - version = "0.11.3" 114 + name = "android-properties" 115 + version = "0.2.2" 152 116 source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "8619b80c242aa7bd638b5c7ddd952addeecb71f69c75e33f1d47b2804f8f883a" 154 - dependencies = [ 155 - "android_log-sys", 156 - "env_logger", 157 - "log", 158 - "once_cell", 159 - ] 117 + checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" 118 + 119 + [[package]] 120 + name = "android_log-sys" 121 + version = "0.3.1" 122 + source = "registry+https://github.com/rust-lang/crates.io-index" 123 + checksum = "5ecc8056bf6ab9892dcd53216c83d1597487d7dacac16c8df6b877d127df9937" 160 124 161 125 [[package]] 162 126 name = "android_system_properties" ··· 180 120 ] 181 121 182 122 [[package]] 183 - name = "anstream" 184 - version = "0.2.6" 185 - source = "registry+https://github.com/rust-lang/crates.io-index" 186 - checksum = "342258dd14006105c2b75ab1bd7543a03bdf0cfc94383303ac212a04939dff6f" 187 - dependencies = [ 188 - "anstyle", 189 - "anstyle-parse", 190 - "anstyle-wincon", 191 - "concolor-override", 192 - "concolor-query", 193 - "is-terminal", 194 - "utf8parse", 195 - ] 196 - 197 - [[package]] 198 - name = "anstyle" 199 - version = "0.3.5" 200 - source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2" 202 - 203 - [[package]] 204 - name = "anstyle-parse" 205 - version = "0.1.1" 206 - source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "a7d1bb534e9efed14f3e5f44e7dd1a4f709384023a4165199a4241e18dff0116" 208 - dependencies = [ 209 - "utf8parse", 210 - ] 211 - 212 - [[package]] 213 - name = "anstyle-wincon" 214 - version = "0.2.0" 215 - source = "registry+https://github.com/rust-lang/crates.io-index" 216 - checksum = "c3127af6145b149f3287bb9a0d10ad9c5692dba8c53ad48285e5bec4063834fa" 217 - dependencies = [ 218 - "anstyle", 219 - "windows-sys 0.45.0", 220 - ] 221 - 222 - [[package]] 223 123 name = "anyhow" 224 - version = "1.0.70" 124 + version = "1.0.75" 225 125 source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 126 + checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 127 + 128 + [[package]] 129 + name = "append-only-vec" 130 + version = "0.1.3" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "f3cb8f874ecf419dd8165d0279746de966cb8966636d028845e3bd65d519812a" 227 133 228 134 [[package]] 229 135 name = "approx" ··· 202 176 203 177 [[package]] 204 178 name = "arboard" 205 - version = "3.2.0" 179 + version = "3.2.1" 206 180 source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "d6041616acea41d67c4a984709ddab1587fd0b10efe5cc563fee954d2f011854" 181 + checksum = "ac57f2b058a76363e357c056e4f74f1945bf734d37b8b3ef49066c4787dde0fc" 208 182 dependencies = [ 209 183 "clipboard-win", 210 184 "core-graphics", ··· 213 187 "objc", 214 188 "objc-foundation", 215 189 "objc_id", 216 - "once_cell", 217 - "parking_lot 0.12.1", 190 + "parking_lot", 218 191 "thiserror", 219 192 "winapi", 220 193 "x11rb", ··· 221 196 222 197 [[package]] 223 198 name = "arrayvec" 224 - version = "0.7.2" 199 + version = "0.7.4" 225 200 source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 201 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 227 202 228 203 [[package]] 229 204 name = "ash" 230 - version = "0.37.2+1.3.238" 205 + version = "0.37.3+1.3.251" 231 206 source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "28bf19c1f0a470be5fbf7522a308a05df06610252c5bcf5143e1b23f629a9a03" 207 + checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a" 233 208 dependencies = [ 234 - "libloading", 209 + "libloading 0.7.4", 235 210 ] 236 211 237 212 [[package]] 238 213 name = "async-channel" 239 - version = "1.8.0" 214 + version = "1.9.0" 240 215 source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 216 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 242 217 dependencies = [ 243 - "concurrent-queue 2.1.0", 244 - "event-listener", 218 + "concurrent-queue", 219 + "event-listener 2.5.3", 245 220 "futures-core", 246 221 ] 247 222 248 223 [[package]] 249 224 name = "async-executor" 250 - version = "1.5.1" 225 + version = "1.5.4" 251 226 source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 227 + checksum = "2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499" 253 228 dependencies = [ 254 229 "async-lock", 255 230 "async-task", 256 - "concurrent-queue 2.1.0", 257 - "fastrand", 231 + "concurrent-queue", 232 + "fastrand 2.0.1", 258 233 "futures-lite", 259 234 "slab", 260 - ] 261 - 262 - [[package]] 263 - name = "async-io" 264 - version = "1.13.0" 265 - source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 267 - dependencies = [ 268 - "async-lock", 269 - "autocfg", 270 - "cfg-if", 271 - "concurrent-queue 2.1.0", 272 - "futures-lite", 273 - "log", 274 - "parking", 275 - "polling", 276 - "rustix", 277 - "slab", 278 - "socket2", 279 - "waker-fn", 280 235 ] 281 236 282 237 [[package]] 283 238 name = "async-lock" 284 - version = "2.7.0" 239 + version = "2.8.0" 285 240 source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 241 + checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 287 242 dependencies = [ 288 - "event-listener", 243 + "event-listener 2.5.3", 289 244 ] 290 245 291 246 [[package]] 292 247 name = "async-task" 293 - version = "4.4.0" 248 + version = "4.4.1" 294 249 source = "registry+https://github.com/rust-lang/crates.io-index" 295 - checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 296 - 297 - [[package]] 298 - name = "async-timer" 299 - version = "0.2.10" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "4d62d1c449a11d63d953da8602322493f7718b83c2f649c6a7ba9e08c7af188f" 302 - dependencies = [ 303 - "libc", 304 - "wasm-bindgen", 305 - "winapi", 306 - ] 250 + checksum = "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921" 307 251 308 252 [[package]] 309 253 name = "atomic-arena" ··· 281 287 checksum = "5450eca8ce5abcfd5520727e975ebab30ccca96030550406b0ca718b224ead10" 282 288 283 289 [[package]] 284 - name = "atomic-polyfill" 285 - version = "0.1.11" 286 - source = "registry+https://github.com/rust-lang/crates.io-index" 287 - checksum = "e3ff7eb3f316534d83a8a2c3d1674ace8a5a71198eba31e2e2b597833f699b28" 288 - dependencies = [ 289 - "critical-section", 290 - ] 291 - 292 - [[package]] 293 - name = "atomic_refcell" 290 + name = "atomicell" 294 291 version = "0.1.9" 295 292 source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "857253367827bd9d0fd973f0ef15506a96e79e41b0ad7aa691203a4e3214f6c8" 293 + checksum = "157342dd84c64f16899b4b16c1fb2cce54b887990362aac3c590b3d13810890f" 297 294 298 295 [[package]] 299 296 name = "autocfg" ··· 294 309 295 310 [[package]] 296 311 name = "backtrace" 297 - version = "0.3.67" 312 + version = "0.3.69" 298 313 source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 314 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 300 315 dependencies = [ 301 316 "addr2line", 302 317 "cc", ··· 309 324 310 325 [[package]] 311 326 name = "base64" 312 - version = "0.13.1" 327 + version = "0.21.4" 313 328 source = "registry+https://github.com/rust-lang/crates.io-index" 314 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 315 - 316 - [[package]] 317 - name = "base64" 318 - version = "0.21.0" 319 - source = "registry+https://github.com/rust-lang/crates.io-index" 320 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 329 + checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 321 330 322 331 [[package]] 323 332 name = "bevy" 324 - version = "0.9.1" 333 + version = "0.11.3" 325 334 source = "registry+https://github.com/rust-lang/crates.io-index" 326 - checksum = "dae99b246505811f5bc19d2de1e406ec5d2816b421d58fa223779eb576f472c9" 335 + checksum = "91c6d3ec4f89e85294dc97334c5b271ddc301fdf67ac9bb994fe44d9273e6ed7" 327 336 dependencies = [ 328 337 "bevy_internal", 329 338 ] 330 339 331 340 [[package]] 332 - name = "bevy-inspector-egui" 333 - version = "0.17.0" 341 + name = "bevy_a11y" 342 + version = "0.11.3" 334 343 source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "8be4f9fa859e4840e7cbcc0ddf2c8a1441ff8f663c317769c5ccc70cdf13bcf2" 344 + checksum = "132c9e35a77c5395951f6d25fa2c52ee92296353426df4f961e60f3ff47e2e42" 336 345 dependencies = [ 337 - "bevy-inspector-egui-derive", 346 + "accesskit", 338 347 "bevy_app", 339 - "bevy_asset", 340 - "bevy_core", 341 - "bevy_core_pipeline", 348 + "bevy_derive", 342 349 "bevy_ecs", 343 - "bevy_egui", 344 - "bevy_hierarchy", 345 - "bevy_log", 346 - "bevy_math", 347 - "bevy_pbr", 348 - "bevy_reflect", 349 - "bevy_render", 350 - "bevy_utils", 351 - "egui", 352 - "image", 353 - "once_cell", 354 - "pretty-type-name", 355 - "smallvec", 356 - ] 357 - 358 - [[package]] 359 - name = "bevy-inspector-egui-derive" 360 - version = "0.17.0" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "97826e6225a5b56e77683e7b99418171f7531d48682b8531252dc6b8ef3e8113" 363 - dependencies = [ 364 - "proc-macro2", 365 - "quote", 366 - "syn 1.0.109", 367 350 ] 368 351 369 352 [[package]] 370 353 name = "bevy_app" 371 - version = "0.9.1" 354 + version = "0.11.3" 372 355 source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "536e4d0018347478545ed8b6cb6e57b9279ee984868e81b7c0e78e0fb3222e42" 356 + checksum = "f557a7d59e1e16892d7544fc37316506ee598cb5310ef0365125a30783c11531" 374 357 dependencies = [ 375 358 "bevy_derive", 376 359 "bevy_ecs", 377 360 "bevy_reflect", 361 + "bevy_tasks", 378 362 "bevy_utils", 379 363 "downcast-rs", 380 364 "wasm-bindgen", ··· 352 398 353 399 [[package]] 354 400 name = "bevy_asset" 355 - version = "0.9.1" 401 + version = "0.11.3" 356 402 source = "registry+https://github.com/rust-lang/crates.io-index" 357 - checksum = "6db1bb550168304df69c867c09125e1aae7ff51cf21575396e1598bf293442c4" 403 + checksum = "9714af523da4cdf58c42a317e5ed40349708ad954a18533991fd64c8ae0a6f68" 358 404 dependencies = [ 359 405 "anyhow", 406 + "async-channel", 360 407 "bevy_app", 361 408 "bevy_diagnostic", 362 409 "bevy_ecs", ··· 365 410 "bevy_reflect", 366 411 "bevy_tasks", 367 412 "bevy_utils", 413 + "bevy_winit", 368 414 "crossbeam-channel", 369 415 "downcast-rs", 370 - "fastrand", 416 + "fastrand 1.9.0", 371 417 "js-sys", 372 - "ndk-glue", 373 - "notify", 374 - "parking_lot 0.12.1", 418 + "parking_lot", 375 419 "serde", 376 420 "thiserror", 377 421 "wasm-bindgen", ··· 380 426 381 427 [[package]] 382 428 name = "bevy_core" 383 - version = "0.9.1" 429 + version = "0.11.3" 384 430 source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "96299aceb3c8362cb4aa39ff81c7ef758a5f4e768d16b5046a91628eff114ac0" 431 + checksum = "3d5272321be5fcf5ce2fb16023bc825bb10dfcb71611117296537181ce950f48" 386 432 dependencies = [ 387 433 "bevy_app", 388 434 "bevy_ecs", ··· 391 437 "bevy_tasks", 392 438 "bevy_utils", 393 439 "bytemuck", 394 - "serde", 395 440 ] 396 441 397 442 [[package]] 398 443 name = "bevy_core_pipeline" 399 - version = "0.9.1" 444 + version = "0.11.3" 400 445 source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "dc128a9860aadf16fb343ae427f2768986fd91dce64d945455acda9759c48014" 446 + checksum = "67382fa9c96ce4f4e5833ed7cedd9886844a8f3284b4a717bd4ac738dcdea0c3" 402 447 dependencies = [ 403 448 "bevy_app", 404 449 "bevy_asset", 450 + "bevy_core", 405 451 "bevy_derive", 406 452 "bevy_ecs", 407 453 "bevy_math", ··· 409 455 "bevy_render", 410 456 "bevy_transform", 411 457 "bevy_utils", 412 - "bitflags", 458 + "bitflags 2.4.0", 413 459 "radsort", 414 460 "serde", 415 461 ] 416 462 417 463 [[package]] 418 464 name = "bevy_derive" 419 - version = "0.9.1" 465 + version = "0.11.3" 420 466 source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "7baf73c58d41c353c6fd08e6764a2e7420c9f19e8227b391c50981db6d0282a6" 467 + checksum = "a44e4e2784a81430199e4157e02903a987a32127c773985506f020e7d501b62e" 422 468 dependencies = [ 423 469 "bevy_macro_utils", 424 470 "quote", 425 - "syn 1.0.109", 471 + "syn 2.0.38", 426 472 ] 427 473 428 474 [[package]] 429 475 name = "bevy_diagnostic" 430 - version = "0.9.1" 476 + version = "0.11.3" 431 477 source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "63bf96ec7980fa25b77ff6c72dfafada477936c0dab76c1edf6c028c0e5fe0e4" 478 + checksum = "6babb230dc383c98fdfc9603e3a7a2a49e1e2879dbe8291059ef37dca897932e" 433 479 dependencies = [ 434 480 "bevy_app", 435 481 "bevy_core", ··· 437 483 "bevy_log", 438 484 "bevy_time", 439 485 "bevy_utils", 486 + "sysinfo", 440 487 ] 441 488 442 489 [[package]] 443 490 name = "bevy_dylib" 444 - version = "0.9.1" 491 + version = "0.11.3" 445 492 source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "5d193c3d56e3bdd106596327d15dd67ddfd862f8b5aa8260677efefe3ddef736" 493 + checksum = "22ea11f830028e1c9d37f8bc88c5873f1c4c0346661209c2ba015f899c51863c" 447 494 dependencies = [ 448 495 "bevy_internal", 449 496 ] 450 497 451 498 [[package]] 452 499 name = "bevy_ecs" 453 - version = "0.9.1" 500 + version = "0.11.3" 454 501 source = "registry+https://github.com/rust-lang/crates.io-index" 455 - checksum = "d4c071d7c6bc9801253485e05d0c257284150de755391902746837ba21c0cf74" 502 + checksum = "266144b36df7e834d5198049e037ecdf2a2310a76ce39ed937d1b0a6a2c4e8c6" 456 503 dependencies = [ 457 504 "async-channel", 458 505 "bevy_ecs_macros", ··· 462 507 "bevy_tasks", 463 508 "bevy_utils", 464 509 "downcast-rs", 465 - "event-listener", 510 + "event-listener 2.5.3", 466 511 "fixedbitset", 467 - "fxhash", 512 + "rustc-hash", 468 513 "serde", 514 + "thiserror", 469 515 "thread_local", 470 516 ] 471 517 472 518 [[package]] 473 519 name = "bevy_ecs_macros" 474 - version = "0.9.1" 520 + version = "0.11.3" 475 521 source = "registry+https://github.com/rust-lang/crates.io-index" 476 - checksum = "c15bd45438eeb681ad74f2d205bb07a5699f98f9524462a30ec764afab2742ce" 522 + checksum = "7157a9c3be038d5008ee3f114feb6cf6b39c1d3d32ee21a7cacb8f81fccdfa80" 477 523 dependencies = [ 478 524 "bevy_macro_utils", 479 525 "proc-macro2", 480 526 "quote", 481 - "syn 1.0.109", 527 + "syn 2.0.38", 482 528 ] 483 529 484 530 [[package]] 485 531 name = "bevy_egui" 486 - version = "0.19.0" 487 - source = "registry+https://github.com/rust-lang/crates.io-index" 488 - checksum = "fbb8036050af170243e803eb68e0b5d34f549828a8de92479619fb6dac842f85" 532 + version = "0.21.0" 533 + source = "git+https://github.com/zicklag/bevy_egui?branch=feat/egui-0.23#aeb3d7f1eaaacc67cf3966974d1e31f31e8fad62" 489 534 dependencies = [ 490 535 "arboard", 491 536 "bevy", ··· 496 541 497 542 [[package]] 498 543 name = "bevy_encase_derive" 499 - version = "0.9.1" 544 + version = "0.11.3" 500 545 source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "962b6bb0d30e92ec2e6c29837acce9e55b920733a634e7c3c5fd5a514bea7a24" 546 + checksum = "d0ac0f55ad6bca1be7b0f35bbd5fc95ed3d31e4e9db158fee8e5327f59006001" 502 547 dependencies = [ 503 548 "bevy_macro_utils", 504 549 "encase_derive_impl", 505 550 ] 506 551 507 552 [[package]] 508 - name = "bevy_fluent" 509 - version = "0.5.0" 510 - source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "b76fd2fd9c24ecf87bdf6c41bef009825d380c6e260016dac1e6d428d9e0dc69" 512 - dependencies = [ 513 - "anyhow", 514 - "bevy", 515 - "fluent", 516 - "fluent-langneg", 517 - "fluent_content", 518 - "globset", 519 - "indexmap", 520 - "intl-memoizer", 521 - "ron", 522 - "serde", 523 - "serde_yaml", 524 - "thiserror", 525 - "tracing", 526 - "unic-langid", 527 - "uuid", 528 - ] 529 - 530 - [[package]] 531 - name = "bevy_framepace" 532 - version = "0.11.0" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "97caa0b25d627df47f7cfba0b2a9612f4b4ca9d0f53d897a3d70e02fcffea833" 535 - dependencies = [ 536 - "bevy", 537 - "spin_sleep", 538 - ] 539 - 540 - [[package]] 541 553 name = "bevy_gilrs" 542 - version = "0.9.1" 554 + version = "0.11.3" 543 555 source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "4af552dad82f854b2fae24f36a389fd8ee99d65fe86ae876e854e70d53ff16d9" 556 + checksum = "65f4d79c55829f8016014593a42453f61a564ffb06ef79460d25696ccdfac67b" 545 557 dependencies = [ 546 558 "bevy_app", 547 559 "bevy_ecs", 548 560 "bevy_input", 561 + "bevy_log", 562 + "bevy_time", 549 563 "bevy_utils", 550 564 "gilrs", 565 + "thiserror", 566 + ] 567 + 568 + [[package]] 569 + name = "bevy_gizmos" 570 + version = "0.11.3" 571 + source = "registry+https://github.com/rust-lang/crates.io-index" 572 + checksum = "e286a3e7276431963f4aa29165ea5429fa7dbbc6d5c5ba0c531e7dd44ecc88a2" 573 + dependencies = [ 574 + "bevy_app", 575 + "bevy_asset", 576 + "bevy_core", 577 + "bevy_core_pipeline", 578 + "bevy_ecs", 579 + "bevy_math", 580 + "bevy_reflect", 581 + "bevy_render", 582 + "bevy_sprite", 583 + "bevy_transform", 584 + "bevy_utils", 551 585 ] 552 586 553 587 [[package]] 554 588 name = "bevy_hierarchy" 555 - version = "0.9.1" 589 + version = "0.11.3" 556 590 source = "registry+https://github.com/rust-lang/crates.io-index" 557 - checksum = "8dd6d50c48c6e1bcb5e08a768b765323292bb3bf3a439b992754c57ffb85b23a" 591 + checksum = "103f8f58416ac6799b8c7f0b418f1fac9eba44fa924df3b0e16b09256b897e3d" 558 592 dependencies = [ 559 593 "bevy_app", 560 594 "bevy_core", ··· 556 612 557 613 [[package]] 558 614 name = "bevy_input" 559 - version = "0.9.1" 615 + version = "0.11.3" 560 616 source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "3378b5171284f4c4c0e8307081718a9fe458f846444616bd82d69110dcabca51" 617 + checksum = "ffbd935401101ac8003f3c3aea70788c65ad03f7a32716a10608bedda7a648bc" 562 618 dependencies = [ 563 619 "bevy_app", 564 620 "bevy_ecs", 565 621 "bevy_math", 566 622 "bevy_reflect", 567 623 "bevy_utils", 568 - "serde", 569 624 "thiserror", 570 625 ] 571 626 572 627 [[package]] 573 628 name = "bevy_internal" 574 - version = "0.9.1" 629 + version = "0.11.3" 575 630 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "4c46014b7e885b1311de06b6039e448454a4db55b8d35464798ba88faa186e11" 631 + checksum = "e0e35a9b2bd29aa784b3cc416bcbf2a298f69f00ca51fd042ea39d9af7fad37e" 577 632 dependencies = [ 633 + "bevy_a11y", 578 634 "bevy_app", 579 635 "bevy_asset", 580 636 "bevy_core", ··· 583 639 "bevy_diagnostic", 584 640 "bevy_ecs", 585 641 "bevy_gilrs", 642 + "bevy_gizmos", 586 643 "bevy_hierarchy", 587 644 "bevy_input", 588 645 "bevy_log", ··· 592 647 "bevy_ptr", 593 648 "bevy_reflect", 594 649 "bevy_render", 650 + "bevy_scene", 595 651 "bevy_sprite", 596 652 "bevy_tasks", 597 653 "bevy_time", ··· 600 654 "bevy_utils", 601 655 "bevy_window", 602 656 "bevy_winit", 603 - "ndk-glue", 604 - ] 605 - 606 - [[package]] 607 - name = "bevy_kira_audio" 608 - version = "0.13.0" 609 - source = "registry+https://github.com/rust-lang/crates.io-index" 610 - checksum = "b310ffe1c870e6ca5f0db228953f68af5a861302ec759edae43450f5835a0ece" 611 - dependencies = [ 612 - "anyhow", 613 - "bevy", 614 - "kira", 615 - "parking_lot 0.12.1", 616 - "thiserror", 617 657 ] 618 658 619 659 [[package]] 620 660 name = "bevy_log" 621 - version = "0.9.1" 661 + version = "0.11.3" 622 662 source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "6c480bac54cf4ae76edc3ae9ae3fa7c5e1b385e7f2111ef5ec3fd00cf3a7998b" 663 + checksum = "07dcc615ff4f617b06c3f9522fca3c55d56f9644db293318f8ab68fcdea5d4fe" 624 664 dependencies = [ 625 665 "android_log-sys", 626 666 "bevy_app", ··· 620 688 621 689 [[package]] 622 690 name = "bevy_macro_utils" 623 - version = "0.9.1" 691 + version = "0.11.3" 624 692 source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "022bb69196deeea691b6997414af85bbd7f2b34a8914c4aa7a7ff4dfa44f7677" 693 + checksum = "23ddc18d489b4e57832d4958cde7cd2f349f0ad91e5892ac9e2f2ee16546b981" 626 694 dependencies = [ 627 695 "quote", 628 - "syn 1.0.109", 629 - "toml", 696 + "rustc-hash", 697 + "syn 2.0.38", 698 + "toml_edit", 630 699 ] 631 700 632 701 [[package]] 633 702 name = "bevy_math" 634 - version = "0.9.1" 703 + version = "0.11.3" 635 704 source = "registry+https://github.com/rust-lang/crates.io-index" 636 - checksum = "d434c77ab766c806ed9062ef8a7285b3b02b47df51f188d4496199c3ac062eaf" 705 + checksum = "78286a81fead796dc4b45ab14f4f02fe29a94423d3587bcfef872b2a8e0a474b" 637 706 dependencies = [ 638 - "glam 0.22.0", 707 + "glam", 639 708 "serde", 640 709 ] 641 710 642 711 [[package]] 643 712 name = "bevy_mikktspace" 644 - version = "0.9.1" 713 + version = "0.11.3" 645 714 source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "bbfb5908d33fd613069be516180b8f138aaaf6e41c36b1fd98c6c29c00c24a13" 715 + checksum = "6cfc2a21ea47970a9b1f0f4735af3256a8f204815bd756110051d10f9d909497" 647 716 dependencies = [ 648 - "glam 0.22.0", 717 + "glam", 649 718 ] 650 719 651 720 [[package]] 652 721 name = "bevy_pbr" 653 - version = "0.9.1" 722 + version = "0.11.3" 654 723 source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "310b1f260a475d81445623e138e1b7245759a42310bc1f84b550a3f4ff8763bf" 724 + checksum = "63ca796a619e61cd43a0a3b11fde54644f7f0732a1fba1eef5d406248c6eba85" 656 725 dependencies = [ 657 726 "bevy_app", 658 727 "bevy_asset", ··· 666 733 "bevy_transform", 667 734 "bevy_utils", 668 735 "bevy_window", 669 - "bitflags", 736 + "bitflags 2.4.0", 670 737 "bytemuck", 738 + "naga_oil", 671 739 "radsort", 672 740 ] 673 741 674 742 [[package]] 675 743 name = "bevy_prototype_lyon" 676 - version = "0.7.2" 744 + version = "0.9.0" 677 745 source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "0c063aff10ca720d5cadf9cf669800eff2166f6f28cf7f20648ece1c3bdb2442" 746 + checksum = "9e347c16caede05dc5f774ba388cefeef0ab558a5601fc6b5ffd6606bef77308" 679 747 dependencies = [ 680 748 "bevy", 749 + "lyon_algorithms", 681 750 "lyon_tessellation", 682 751 "svgtypes", 683 752 ] 684 753 685 754 [[package]] 686 755 name = "bevy_ptr" 687 - version = "0.9.1" 756 + version = "0.11.3" 688 757 source = "registry+https://github.com/rust-lang/crates.io-index" 689 - checksum = "8ec44f7655039546bc5d34d98de877083473f3e9b2b81d560c528d6d74d3eff4" 758 + checksum = "72c7586401a46f7d8e436028225c1df5288f2e0082d066b247a82466fea155c6" 690 759 691 760 [[package]] 692 761 name = "bevy_reflect" 693 - version = "0.9.1" 762 + version = "0.11.3" 694 763 source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "6deae303a7f69dc243b2fa35b5e193cc920229f448942080c8eb2dbd9de6d37a" 764 + checksum = "0778197a1eb3e095a71417c74b7152ede02975cdc95b5ea4ddc5251ed00a2eb5" 696 765 dependencies = [ 697 766 "bevy_math", 698 767 "bevy_ptr", ··· 702 767 "bevy_utils", 703 768 "downcast-rs", 704 769 "erased-serde", 705 - "glam 0.22.0", 770 + "glam", 706 771 "once_cell", 707 - "parking_lot 0.12.1", 772 + "parking_lot", 708 773 "serde", 709 774 "smallvec", 775 + "smol_str", 710 776 "thiserror", 711 777 ] 712 778 713 779 [[package]] 714 780 name = "bevy_reflect_derive" 715 - version = "0.9.1" 781 + version = "0.11.3" 716 782 source = "registry+https://github.com/rust-lang/crates.io-index" 717 - checksum = "a2bf4cb9cd5acb4193f890f36cb63679f1502e2de025e66a63b194b8b133d018" 783 + checksum = "342a4b2d09db22c48607d23ad59a056aff1ee004549050a51d490d375ba29528" 718 784 dependencies = [ 719 785 "bevy_macro_utils", 720 786 "bit-set", 721 787 "proc-macro2", 722 788 "quote", 723 - "syn 1.0.109", 789 + "syn 2.0.38", 724 790 "uuid", 725 791 ] 726 792 727 793 [[package]] 728 794 name = "bevy_render" 729 - version = "0.9.1" 795 + version = "0.11.3" 730 796 source = "registry+https://github.com/rust-lang/crates.io-index" 731 - checksum = "2e3282a8f8779d2aced93207fbed73f740937c6c2bd27bd84f0799b081c7fca5" 797 + checksum = "39df4824b760928c27afc7b00fb649c7a63c9d76661ab014ff5c86537ee906cb" 732 798 dependencies = [ 733 799 "anyhow", 800 + "async-channel", 734 801 "bevy_app", 735 802 "bevy_asset", 736 803 "bevy_core", ··· 745 808 "bevy_mikktspace", 746 809 "bevy_reflect", 747 810 "bevy_render_macros", 811 + "bevy_tasks", 748 812 "bevy_time", 749 813 "bevy_transform", 750 814 "bevy_utils", 751 815 "bevy_window", 752 - "bitflags", 816 + "bitflags 2.4.0", 817 + "bytemuck", 753 818 "codespan-reporting", 754 819 "downcast-rs", 755 820 "encase", 756 821 "futures-lite", 757 - "hex", 758 822 "hexasphere", 759 823 "image", 824 + "js-sys", 760 825 "naga", 761 - "once_cell", 762 - "parking_lot 0.12.1", 826 + "naga_oil", 827 + "parking_lot", 763 828 "regex", 764 829 "serde", 765 830 "smallvec", 766 831 "thiserror", 767 832 "thread_local", 833 + "wasm-bindgen", 834 + "web-sys", 768 835 "wgpu", 836 + "wgpu-hal", 769 837 ] 770 838 771 839 [[package]] 772 840 name = "bevy_render_macros" 773 - version = "0.9.1" 841 + version = "0.11.3" 774 842 source = "registry+https://github.com/rust-lang/crates.io-index" 775 - checksum = "b7acae697776ac05bea523e1725cf2660c91c53abe72c66782ea1e1b9eedb572" 843 + checksum = "0bd08c740aac73363e32fb45af869b10cec65bcb76fe3e6cd0f8f7eebf4c36c9" 776 844 dependencies = [ 777 845 "bevy_macro_utils", 778 846 "proc-macro2", 779 847 "quote", 780 - "syn 1.0.109", 848 + "syn 2.0.38", 781 849 ] 782 850 783 851 [[package]] 784 - name = "bevy_simple_tilemap" 785 - version = "0.10.1" 786 - source = "git+https://github.com/forbjok/bevy_simple_tilemap.git?rev=963d447fa1fd2d6f89228106275b7086840be762#963d447fa1fd2d6f89228106275b7086840be762" 852 + name = "bevy_scene" 853 + version = "0.11.3" 854 + source = "registry+https://github.com/rust-lang/crates.io-index" 855 + checksum = "bd47e1263506153bef3a8be97fe2d856f206d315668c4f97510ca6cc181d9681" 787 856 dependencies = [ 788 - "bevy", 789 - "bitflags", 790 - "bytemuck", 791 - "rayon", 857 + "anyhow", 858 + "bevy_app", 859 + "bevy_asset", 860 + "bevy_derive", 861 + "bevy_ecs", 862 + "bevy_hierarchy", 863 + "bevy_reflect", 864 + "bevy_render", 865 + "bevy_transform", 866 + "bevy_utils", 867 + "ron", 868 + "serde", 869 + "thiserror", 870 + "uuid", 792 871 ] 793 872 794 873 [[package]] 795 874 name = "bevy_sprite" 796 - version = "0.9.1" 875 + version = "0.11.3" 797 876 source = "registry+https://github.com/rust-lang/crates.io-index" 798 - checksum = "5ec01c7db7f698d95bcb70708527c3ae6bcdc78fc247abe74f935cae8f0a1145" 877 + checksum = "68a8ca824fad75c6ef74cfbbba0a4ce3ccc435fa23d6bf3f003f260548813397" 799 878 dependencies = [ 800 879 "bevy_app", 801 880 "bevy_asset", ··· 824 871 "bevy_render", 825 872 "bevy_transform", 826 873 "bevy_utils", 827 - "bitflags", 874 + "bitflags 2.4.0", 828 875 "bytemuck", 829 876 "fixedbitset", 830 877 "guillotiere", ··· 834 881 835 882 [[package]] 836 883 name = "bevy_tasks" 837 - version = "0.9.1" 884 + version = "0.11.3" 838 885 source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "680b16b53df9c9f24681dd95f4d772d83760bd19adf8bca00f358a3aad997853" 886 + checksum = "c73bbb847c83990d3927005090df52f8ac49332e1643d2ad9aac3cd2974e66bf" 840 887 dependencies = [ 841 888 "async-channel", 842 889 "async-executor", 843 890 "async-task", 844 - "concurrent-queue 1.2.4", 891 + "concurrent-queue", 845 892 "futures-lite", 846 - "once_cell", 847 893 "wasm-bindgen-futures", 848 894 ] 849 895 850 896 [[package]] 851 897 name = "bevy_time" 852 - version = "0.9.1" 898 + version = "0.11.3" 853 899 source = "registry+https://github.com/rust-lang/crates.io-index" 854 - checksum = "1a5c38a6d3ea929c7f81e6adf5a6c62cf7e8c40f5106c2174d6057e9d8ea624d" 900 + checksum = "3d58d6dbae9c8225d8c0e0f04d2c5dbb71d22adc01ecd5ab3cebc364139e4a6d" 855 901 dependencies = [ 856 902 "bevy_app", 857 903 "bevy_ecs", 858 904 "bevy_reflect", 859 905 "bevy_utils", 860 906 "crossbeam-channel", 861 - "serde", 907 + "thiserror", 862 908 ] 863 909 864 910 [[package]] 865 911 name = "bevy_transform" 866 - version = "0.9.1" 912 + version = "0.11.3" 867 913 source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "ba13c57a040b89767191a6f6d720a635b7792793628bfa41a9e38b7026484aec" 914 + checksum = "3b9b0ac0149a57cd846cb357a35fc99286f9848e53d4481954608ac9552ed2d4" 869 915 dependencies = [ 870 916 "bevy_app", 871 917 "bevy_ecs", 872 918 "bevy_hierarchy", 873 919 "bevy_math", 874 920 "bevy_reflect", 875 - "serde", 876 - ] 877 - 878 - [[package]] 879 - name = "bevy_tweening" 880 - version = "0.6.0" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "6d38b2abf5518df10c3c32ee57a54b9ba7067f3bd1c137b912e286d573962145" 883 - dependencies = [ 884 - "bevy", 885 - "interpolation", 886 921 ] 887 922 888 923 [[package]] 889 924 name = "bevy_utils" 890 - version = "0.9.1" 925 + version = "0.11.3" 891 926 source = "registry+https://github.com/rust-lang/crates.io-index" 892 - checksum = "16750aae52cd35bd7b60eb61cee883420b250e11b4a290b8d44b2b2941795739" 927 + checksum = "08d9484e32434ea84dc548cff246ce0c6f756c1336f5ea03f24ac120a48595c7" 893 928 dependencies = [ 894 - "ahash 0.7.6", 895 - "getrandom 0.2.8", 896 - "hashbrown", 929 + "ahash", 930 + "bevy_utils_proc_macros", 931 + "getrandom 0.2.10", 932 + "hashbrown 0.14.1", 897 933 "instant", 934 + "petgraph", 935 + "thiserror", 898 936 "tracing", 899 937 "uuid", 900 938 ] 901 939 902 940 [[package]] 903 - name = "bevy_window" 904 - version = "0.9.1" 941 + name = "bevy_utils_proc_macros" 942 + version = "0.11.3" 905 943 source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "0a44d3f3bd54a2261f4f57f614bf7bccc8d2832761493c0cd7dab81d98cc151e" 944 + checksum = "5391b242c36f556db01d5891444730c83aa9dd648b6a8fd2b755d22cb3bddb57" 945 + dependencies = [ 946 + "proc-macro2", 947 + "quote", 948 + "syn 2.0.38", 949 + ] 950 + 951 + [[package]] 952 + name = "bevy_window" 953 + version = "0.11.3" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "bd584c0da7c4ada6557b09f57f30fb7cff21ccedc641473fc391574b4c9b7944" 907 956 dependencies = [ 908 957 "bevy_app", 909 958 "bevy_ecs", ··· 913 958 "bevy_math", 914 959 "bevy_reflect", 915 960 "bevy_utils", 916 - "raw-window-handle 0.5.2", 917 - "serde", 961 + "raw-window-handle", 918 962 ] 919 963 920 964 [[package]] 921 965 name = "bevy_winit" 922 - version = "0.9.1" 966 + version = "0.11.3" 923 967 source = "registry+https://github.com/rust-lang/crates.io-index" 924 - checksum = "c7b7e647ecd0b3577468da37767dcdd7c26ca9f80da0060b2ec4c77336b6d2e1" 968 + checksum = "bfdc044abdb95790c20053e6326760f0a2985f0dcd78613d397bf35f16039d53" 925 969 dependencies = [ 970 + "accesskit_winit", 926 971 "approx", 972 + "bevy_a11y", 927 973 "bevy_app", 974 + "bevy_derive", 928 975 "bevy_ecs", 976 + "bevy_hierarchy", 929 977 "bevy_input", 930 978 "bevy_math", 979 + "bevy_tasks", 931 980 "bevy_utils", 932 981 "bevy_window", 933 982 "crossbeam-channel", 934 - "raw-window-handle 0.5.2", 983 + "raw-window-handle", 935 984 "wasm-bindgen", 936 985 "web-sys", 937 986 "winit", 938 987 ] 939 988 940 989 [[package]] 941 - name = "bincode" 942 - version = "1.3.3" 943 - source = "registry+https://github.com/rust-lang/crates.io-index" 944 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 945 - dependencies = [ 946 - "serde", 947 - ] 948 - 949 - [[package]] 950 990 name = "bindgen" 951 - version = "0.64.0" 991 + version = "0.68.1" 952 992 source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4" 993 + checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 954 994 dependencies = [ 955 - "bitflags", 995 + "bitflags 2.4.0", 956 996 "cexpr", 957 997 "clang-sys", 958 998 "lazy_static", ··· 958 1008 "regex", 959 1009 "rustc-hash", 960 1010 "shlex", 961 - "syn 1.0.109", 1011 + "syn 2.0.38", 962 1012 ] 963 1013 964 1014 [[package]] ··· 977 1027 checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 978 1028 979 1029 [[package]] 980 - name = "bitfield" 981 - version = "0.14.0" 982 - source = "registry+https://github.com/rust-lang/crates.io-index" 983 - checksum = "2d7e60934ceec538daadb9d8432424ed043a904d8e0243f3c6446bce549a46ac" 984 - 985 - [[package]] 986 - name = "bitfield-rle" 987 - version = "0.2.0" 988 - source = "registry+https://github.com/rust-lang/crates.io-index" 989 - checksum = "3f8acc105b7bd3ed61e4bb7ad3e3b3f2a8da72205b2e0408cf71a499e8f57dd0" 990 - dependencies = [ 991 - "failure", 992 - "varinteger", 993 - ] 994 - 995 - [[package]] 996 1030 name = "bitflags" 997 1031 version = "1.3.2" 998 1032 source = "registry+https://github.com/rust-lang/crates.io-index" 999 1033 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 1034 + 1035 + [[package]] 1036 + name = "bitflags" 1037 + version = "2.4.0" 1038 + source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 1040 + dependencies = [ 1041 + "serde", 1042 + ] 1000 1043 1001 1044 [[package]] 1002 1045 name = "bitset-core" ··· 998 1055 checksum = "f421f1bcb30aa9d851a03c2920ab5d96ca920d5786645a597b5fc37922f8b89e" 999 1056 1000 1057 [[package]] 1058 + name = "bitvec" 1059 + version = "1.0.1" 1060 + source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 1062 + dependencies = [ 1063 + "funty", 1064 + "radium", 1065 + "tap", 1066 + "wyz", 1067 + ] 1068 + 1069 + [[package]] 1001 1070 name = "block" 1002 1071 version = "0.1.6" 1003 1072 source = "registry+https://github.com/rust-lang/crates.io-index" 1004 1073 checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 1005 1074 1006 1075 [[package]] 1007 - name = "bones_asset" 1008 - version = "0.1.0" 1009 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1076 + name = "block-buffer" 1077 + version = "0.10.4" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 1010 1080 dependencies = [ 1011 - "bevy_asset", 1012 - "bones_bevy_utils", 1013 - "bones_ecs", 1014 - "serde", 1015 - "type_ulid", 1016 - "ulid", 1081 + "generic-array", 1017 1082 ] 1018 1083 1019 1084 [[package]] 1020 - name = "bones_bevy_asset" 1021 - version = "0.1.0" 1022 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1085 + name = "block-sys" 1086 + version = "0.1.0-beta.1" 1087 + source = "registry+https://github.com/rust-lang/crates.io-index" 1088 + checksum = "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146" 1023 1089 dependencies = [ 1024 - "bevy_app", 1025 - "bevy_asset", 1026 - "bevy_reflect", 1027 - "bevy_utils", 1028 - "bones_bevy_asset_macros", 1029 - "bones_bevy_utils", 1030 - "bones_lib", 1031 - "glam 0.22.0", 1090 + "objc-sys", 1091 + ] 1092 + 1093 + [[package]] 1094 + name = "block2" 1095 + version = "0.2.0-alpha.6" 1096 + source = "registry+https://github.com/rust-lang/crates.io-index" 1097 + checksum = "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42" 1098 + dependencies = [ 1099 + "block-sys", 1100 + "objc2-encode", 1101 + ] 1102 + 1103 + [[package]] 1104 + name = "bones_asset" 1105 + version = "0.3.0" 1106 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1107 + dependencies = [ 1108 + "anyhow", 1109 + "append-only-vec", 1110 + "async-channel", 1111 + "bevy_tasks", 1112 + "bones_schema", 1113 + "bones_utils", 1114 + "bs58", 1115 + "dashmap", 1116 + "ehttp", 1117 + "erased-serde", 1118 + "event-listener 3.0.0", 1119 + "notify", 1120 + "once_cell", 1121 + "paste", 1122 + "path-absolutize", 1123 + "semver", 1032 1124 "serde", 1033 1125 "serde_json", 1034 1126 "serde_yaml", 1035 - "type_ulid", 1036 - "uuid", 1037 - ] 1038 - 1039 - [[package]] 1040 - name = "bones_bevy_asset_macros" 1041 - version = "0.2.0" 1042 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1043 - dependencies = [ 1044 - "proc-macro2", 1045 - "quote", 1046 - "regex", 1047 - "syn 1.0.109", 1127 + "sha2", 1128 + "tracing", 1048 1129 "ulid", 1049 1130 ] 1050 1131 1051 1132 [[package]] 1052 1133 name = "bones_bevy_renderer" 1053 - version = "0.1.2" 1054 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1134 + version = "0.3.0" 1135 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1055 1136 dependencies = [ 1137 + "anyhow", 1056 1138 "bevy", 1139 + "bevy_egui", 1057 1140 "bevy_prototype_lyon", 1058 - "bevy_simple_tilemap", 1059 - "bones_bevy_asset", 1060 - "bones_lib", 1061 - "glam 0.22.0", 1141 + "bones_framework", 1142 + "directories 5.0.1", 1143 + "glam", 1062 1144 "serde", 1063 - "serde_json", 1064 1145 "serde_yaml", 1065 - "type_ulid", 1066 - ] 1067 - 1068 - [[package]] 1069 - name = "bones_bevy_utils" 1070 - version = "0.1.0" 1071 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1072 - dependencies = [ 1073 - "bevy_ecs", 1074 - "type_ulid", 1146 + "web-sys", 1075 1147 ] 1076 1148 1077 1149 [[package]] 1078 1150 name = "bones_ecs" 1079 - version = "0.1.0" 1080 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1151 + version = "0.3.0" 1152 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1081 1153 dependencies = [ 1082 - "aligned-vec", 1083 1154 "anyhow", 1084 - "atomic_refcell", 1085 - "bevy_derive", 1155 + "atomicell", 1086 1156 "bitset-core", 1087 - "bytemuck", 1088 - "either", 1089 - "fxhash", 1090 - "itertools", 1091 - "serde", 1157 + "bones_schema", 1158 + "bones_utils", 1159 + "glam", 1160 + "paste", 1092 1161 "thiserror", 1093 - "type_ulid", 1094 1162 ] 1095 1163 1096 1164 [[package]] 1097 - name = "bones_input" 1098 - version = "0.1.0" 1099 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1165 + name = "bones_framework" 1166 + version = "0.3.0" 1167 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1100 1168 dependencies = [ 1101 - "bevy", 1102 - "bones_bevy_utils", 1103 - "glam 0.22.0", 1169 + "bones_asset", 1170 + "bones_lib", 1171 + "bones_schema", 1172 + "csscolorparser", 1173 + "egui", 1174 + "fluent", 1175 + "fluent-langneg", 1176 + "glam", 1177 + "hex", 1178 + "image", 1104 1179 "instant", 1105 - "type_ulid", 1180 + "intl-memoizer", 1181 + "kira", 1182 + "noise", 1183 + "serde", 1184 + "serde_yaml", 1185 + "sys-locale", 1186 + "thiserror", 1187 + "tracing", 1188 + "ttf-parser", 1189 + "unic-langid", 1106 1190 ] 1107 1191 1108 1192 [[package]] 1109 1193 name = "bones_lib" 1110 - version = "0.1.0" 1111 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1194 + version = "0.3.0" 1195 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1112 1196 dependencies = [ 1113 - "bones_asset", 1114 - "bones_bevy_utils", 1115 1197 "bones_ecs", 1116 - "bones_input", 1117 - "bones_render", 1118 - "noise", 1119 - "serde", 1120 - "type_ulid", 1198 + "instant", 1121 1199 ] 1122 1200 1123 1201 [[package]] 1124 - name = "bones_matchmaker_proto" 1125 - version = "0.1.0" 1202 + name = "bones_schema" 1203 + version = "0.3.0" 1204 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1205 + dependencies = [ 1206 + "append-only-vec", 1207 + "bones_schema_macros", 1208 + "bones_utils", 1209 + "erased-serde", 1210 + "glam", 1211 + "humantime", 1212 + "paste", 1213 + "serde", 1214 + "sptr", 1215 + "ulid", 1216 + ] 1217 + 1218 + [[package]] 1219 + name = "bones_schema_macros" 1220 + version = "0.3.0" 1221 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1222 + dependencies = [ 1223 + "proc-macro2", 1224 + "quote", 1225 + "venial", 1226 + ] 1227 + 1228 + [[package]] 1229 + name = "bones_utils" 1230 + version = "0.3.0" 1231 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1232 + dependencies = [ 1233 + "bevy_ptr", 1234 + "bones_utils_macros", 1235 + "branches", 1236 + "futures-lite", 1237 + "fxhash", 1238 + "getrandom 0.2.10", 1239 + "hashbrown 0.14.1", 1240 + "instant", 1241 + "maybe-owned", 1242 + "parking_lot", 1243 + "serde", 1244 + "smallvec", 1245 + "turborand", 1246 + "ulid", 1247 + "ustr", 1248 + ] 1249 + 1250 + [[package]] 1251 + name = "bones_utils_macros" 1252 + version = "0.3.0" 1253 + source = "git+https://github.com/fishfolk/bones#65d667e2ccd691388f0318c76d3a236bee9d11be" 1254 + dependencies = [ 1255 + "quote", 1256 + "venial", 1257 + ] 1258 + 1259 + [[package]] 1260 + name = "branches" 1261 + version = "0.1.3" 1126 1262 source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "bff7e71011db4da9f456122f586cf576ee42b249b26a5b2a840eee2141c4ef38" 1128 - dependencies = [ 1129 - "serde", 1130 - ] 1263 + checksum = "7958fb9748a08a6f46ef773e87c43997a844709bc293b4c3de48135debaf9d2a" 1131 1264 1132 1265 [[package]] 1133 - name = "bones_render" 1134 - version = "0.1.2" 1135 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 1136 - dependencies = [ 1137 - "bevy_render", 1138 - "bevy_transform", 1139 - "bones_asset", 1140 - "bones_bevy_utils", 1141 - "bones_ecs", 1142 - "glam 0.22.0", 1143 - "hex", 1144 - "serde", 1145 - "thiserror", 1146 - "type_ulid", 1147 - ] 1148 - 1149 - [[package]] 1150 - name = "bstr" 1151 - version = "1.4.0" 1266 + name = "bs58" 1267 + version = "0.5.0" 1152 1268 source = "registry+https://github.com/rust-lang/crates.io-index" 1153 - checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 1269 + checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" 1154 1270 dependencies = [ 1155 - "memchr", 1156 - "serde", 1271 + "tinyvec", 1157 1272 ] 1158 1273 1159 1274 [[package]] 1160 1275 name = "bumpalo" 1161 - version = "3.12.0" 1276 + version = "3.14.0" 1162 1277 source = "registry+https://github.com/rust-lang/crates.io-index" 1163 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 1278 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 1164 1279 1165 1280 [[package]] 1166 1281 name = "bytemuck" 1167 - version = "1.13.1" 1282 + version = "1.14.0" 1168 1283 source = "registry+https://github.com/rust-lang/crates.io-index" 1169 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 1284 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 1170 1285 dependencies = [ 1171 1286 "bytemuck_derive", 1172 1287 ] 1173 1288 1174 1289 [[package]] 1175 1290 name = "bytemuck_derive" 1176 - version = "1.4.1" 1291 + version = "1.5.0" 1177 1292 source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192" 1293 + checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 1179 1294 dependencies = [ 1180 1295 "proc-macro2", 1181 1296 "quote", 1182 - "syn 2.0.13", 1297 + "syn 2.0.38", 1183 1298 ] 1184 1299 1185 1300 [[package]] 1186 1301 name = "byteorder" 1187 - version = "1.4.3" 1302 + version = "1.5.0" 1188 1303 source = "registry+https://github.com/rust-lang/crates.io-index" 1189 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 1304 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1190 1305 1191 1306 [[package]] 1192 1307 name = "bytes" 1193 - version = "1.4.0" 1308 + version = "1.5.0" 1194 1309 source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 1196 - 1197 - [[package]] 1198 - name = "cache-padded" 1199 - version = "1.2.0" 1200 - source = "registry+https://github.com/rust-lang/crates.io-index" 1201 - checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" 1310 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 1202 1311 1203 1312 [[package]] 1204 1313 name = "cc" 1205 - version = "1.0.79" 1314 + version = "1.0.83" 1206 1315 source = "registry+https://github.com/rust-lang/crates.io-index" 1207 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 1316 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 1208 1317 dependencies = [ 1209 1318 "jobserver", 1319 + "libc", 1210 1320 ] 1211 1321 1212 1322 [[package]] ··· 1297 1301 dependencies = [ 1298 1302 "glob", 1299 1303 "libc", 1300 - "libloading", 1304 + "libloading 0.7.4", 1301 1305 ] 1302 - 1303 - [[package]] 1304 - name = "clap" 1305 - version = "4.2.1" 1306 - source = "registry+https://github.com/rust-lang/crates.io-index" 1307 - checksum = "046ae530c528f252094e4a77886ee1374437744b2bff1497aa898bbddbbb29b3" 1308 - dependencies = [ 1309 - "clap_builder", 1310 - "clap_derive", 1311 - "once_cell", 1312 - ] 1313 - 1314 - [[package]] 1315 - name = "clap_builder" 1316 - version = "4.2.1" 1317 - source = "registry+https://github.com/rust-lang/crates.io-index" 1318 - checksum = "223163f58c9a40c3b0a43e1c4b50a9ce09f007ea2cb1ec258a687945b4b7929f" 1319 - dependencies = [ 1320 - "anstream", 1321 - "anstyle", 1322 - "bitflags", 1323 - "clap_lex", 1324 - "strsim", 1325 - ] 1326 - 1327 - [[package]] 1328 - name = "clap_derive" 1329 - version = "4.2.0" 1330 - source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" 1332 - dependencies = [ 1333 - "heck", 1334 - "proc-macro2", 1335 - "quote", 1336 - "syn 2.0.13", 1337 - ] 1338 - 1339 - [[package]] 1340 - name = "clap_lex" 1341 - version = "0.4.1" 1342 - source = "registry+https://github.com/rust-lang/crates.io-index" 1343 - checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 1344 1306 1345 1307 [[package]] 1346 1308 name = "clipboard-win" ··· 1309 1355 "error-code", 1310 1356 "str-buf", 1311 1357 "winapi", 1312 - ] 1313 - 1314 - [[package]] 1315 - name = "cobs" 1316 - version = "0.2.3" 1317 - source = "registry+https://github.com/rust-lang/crates.io-index" 1318 - checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15" 1319 - 1320 - [[package]] 1321 - name = "cocoa" 1322 - version = "0.24.1" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 1325 - dependencies = [ 1326 - "bitflags", 1327 - "block", 1328 - "cocoa-foundation", 1329 - "core-foundation", 1330 - "core-graphics", 1331 - "foreign-types", 1332 - "libc", 1333 - "objc", 1334 - ] 1335 - 1336 - [[package]] 1337 - name = "cocoa-foundation" 1338 - version = "0.1.1" 1339 - source = "registry+https://github.com/rust-lang/crates.io-index" 1340 - checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" 1341 - dependencies = [ 1342 - "bitflags", 1343 - "block", 1344 - "core-foundation", 1345 - "core-graphics-types", 1346 - "foreign-types", 1347 - "libc", 1348 - "objc", 1349 1358 ] 1350 1359 1351 1360 [[package]] ··· 1328 1411 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 1329 1412 1330 1413 [[package]] 1414 + name = "com-rs" 1415 + version = "0.2.1" 1416 + source = "registry+https://github.com/rust-lang/crates.io-index" 1417 + checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" 1418 + 1419 + [[package]] 1331 1420 name = "combine" 1332 1421 version = "4.6.6" 1333 1422 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1344 1421 ] 1345 1422 1346 1423 [[package]] 1347 - name = "concolor-override" 1348 - version = "1.0.0" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "a855d4a1978dc52fb0536a04d384c2c0c1aa273597f08b77c8c4d3b2eec6037f" 1351 - 1352 - [[package]] 1353 - name = "concolor-query" 1354 - version = "0.3.3" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf" 1357 - dependencies = [ 1358 - "windows-sys 0.45.0", 1359 - ] 1360 - 1361 - [[package]] 1362 1424 name = "concurrent-queue" 1363 - version = "1.2.4" 1425 + version = "2.3.0" 1364 1426 source = "registry+https://github.com/rust-lang/crates.io-index" 1365 - checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c" 1366 - dependencies = [ 1367 - "cache-padded", 1368 - ] 1369 - 1370 - [[package]] 1371 - name = "concurrent-queue" 1372 - version = "2.1.0" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 1427 + checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 1375 1428 dependencies = [ 1376 1429 "crossbeam-utils", 1377 1430 ] ··· 1364 1465 1365 1466 [[package]] 1366 1467 name = "const_panic" 1367 - version = "0.2.7" 1468 + version = "0.2.8" 1368 1469 source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "58baae561b85ca19b3122a9ddd35c8ec40c3bcd14fe89921824eae73f7baffbf" 1470 + checksum = "6051f239ecec86fde3410901ab7860d458d160371533842974fc61f96d15879b" 1471 + 1472 + [[package]] 1473 + name = "const_soft_float" 1474 + version = "0.1.4" 1475 + source = "registry+https://github.com/rust-lang/crates.io-index" 1476 + checksum = "87ca1caa64ef4ed453e68bb3db612e51cf1b2f5b871337f0fcab1c8f87cc3dff" 1477 + 1478 + [[package]] 1479 + name = "constgebra" 1480 + version = "0.1.3" 1481 + source = "registry+https://github.com/rust-lang/crates.io-index" 1482 + checksum = "edd23e864550e6dafc1e41ac78ce4f1ccddc8672b40c403524a04ff3f0518420" 1483 + dependencies = [ 1484 + "const_soft_float", 1485 + ] 1370 1486 1371 1487 [[package]] 1372 1488 name = "core-foundation" ··· 1389 1475 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 1476 checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1391 1477 dependencies = [ 1392 - "core-foundation-sys 0.8.3", 1478 + "core-foundation-sys", 1393 1479 "libc", 1394 1480 ] 1395 1481 1396 1482 [[package]] 1397 1483 name = "core-foundation-sys" 1398 - version = "0.6.2" 1484 + version = "0.8.4" 1399 1485 source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" 1401 - 1402 - [[package]] 1403 - name = "core-foundation-sys" 1404 - version = "0.8.3" 1405 - source = "registry+https://github.com/rust-lang/crates.io-index" 1406 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 1486 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1407 1487 1408 1488 [[package]] 1409 1489 name = "core-graphics" ··· 1405 1497 source = "registry+https://github.com/rust-lang/crates.io-index" 1406 1498 checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 1407 1499 dependencies = [ 1408 - "bitflags", 1500 + "bitflags 1.3.2", 1409 1501 "core-foundation", 1410 1502 "core-graphics-types", 1411 1503 "foreign-types", ··· 1414 1506 1415 1507 [[package]] 1416 1508 name = "core-graphics-types" 1417 - version = "0.1.1" 1509 + version = "0.1.2" 1418 1510 source = "registry+https://github.com/rust-lang/crates.io-index" 1419 - checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 1511 + checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 1420 1512 dependencies = [ 1421 - "bitflags", 1513 + "bitflags 1.3.2", 1422 1514 "core-foundation", 1423 - "foreign-types", 1424 1515 "libc", 1425 1516 ] 1426 1517 1427 1518 [[package]] 1428 1519 name = "coreaudio-rs" 1429 - version = "0.11.2" 1520 + version = "0.11.3" 1430 1521 source = "registry+https://github.com/rust-lang/crates.io-index" 1431 - checksum = "cb17e2d1795b1996419648915df94bc7103c28f7b48062d7acf4652fc371b2ff" 1522 + checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace" 1432 1523 dependencies = [ 1433 - "bitflags", 1434 - "core-foundation-sys 0.6.2", 1524 + "bitflags 1.3.2", 1525 + "core-foundation-sys", 1435 1526 "coreaudio-sys", 1436 1527 ] 1437 1528 1438 1529 [[package]] 1439 1530 name = "coreaudio-sys" 1440 - version = "0.2.12" 1531 + version = "0.2.13" 1441 1532 source = "registry+https://github.com/rust-lang/crates.io-index" 1442 - checksum = "f034b2258e6c4ade2f73bf87b21047567fb913ee9550837c2316d139b0262b24" 1533 + checksum = "d8478e5bdad14dce236b9898ea002eabfa87cbe14f0aa538dbe3b6a4bec4332d" 1443 1534 dependencies = [ 1444 1535 "bindgen", 1445 1536 ] ··· 1450 1543 checksum = "6d959d90e938c5493000514b446987c07aed46c668faaa7d34d6c7a67b1a578c" 1451 1544 dependencies = [ 1452 1545 "alsa", 1453 - "core-foundation-sys 0.8.3", 1546 + "core-foundation-sys", 1454 1547 "coreaudio-rs", 1455 1548 "dasp_sample", 1456 1549 "jni 0.19.0", ··· 1461 1554 "ndk-context", 1462 1555 "oboe", 1463 1556 "once_cell", 1464 - "parking_lot 0.12.1", 1557 + "parking_lot", 1465 1558 "wasm-bindgen", 1466 1559 "wasm-bindgen-futures", 1467 1560 "web-sys", 1468 1561 "windows 0.46.0", 1562 + ] 1563 + 1564 + [[package]] 1565 + name = "cpufeatures" 1566 + version = "0.2.9" 1567 + source = "registry+https://github.com/rust-lang/crates.io-index" 1568 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 1569 + dependencies = [ 1570 + "libc", 1469 1571 ] 1470 1572 1471 1573 [[package]] ··· 1485 1569 dependencies = [ 1486 1570 "cfg-if", 1487 1571 ] 1488 - 1489 - [[package]] 1490 - name = "critical-section" 1491 - version = "1.1.1" 1492 - source = "registry+https://github.com/rust-lang/crates.io-index" 1493 - checksum = "6548a0ad5d2549e111e1f6a11a6c2e2d00ce6a3dafe22948d67c2b443f775e52" 1494 1572 1495 1573 [[package]] 1496 1574 name = "crossbeam" ··· 1502 1592 1503 1593 [[package]] 1504 1594 name = "crossbeam-channel" 1505 - version = "0.5.7" 1595 + version = "0.5.8" 1506 1596 source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" 1597 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1508 1598 dependencies = [ 1509 1599 "cfg-if", 1510 1600 "crossbeam-utils", ··· 1523 1613 1524 1614 [[package]] 1525 1615 name = "crossbeam-epoch" 1526 - version = "0.9.14" 1616 + version = "0.9.15" 1527 1617 source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 1618 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 1529 1619 dependencies = [ 1530 1620 "autocfg", 1531 1621 "cfg-if", 1532 1622 "crossbeam-utils", 1533 - "memoffset 0.8.0", 1623 + "memoffset 0.9.0", 1534 1624 "scopeguard", 1535 1625 ] 1536 1626 ··· 1546 1636 1547 1637 [[package]] 1548 1638 name = "crossbeam-utils" 1549 - version = "0.8.15" 1639 + version = "0.8.16" 1550 1640 source = "registry+https://github.com/rust-lang/crates.io-index" 1551 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 1641 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 1552 1642 dependencies = [ 1553 1643 "cfg-if", 1644 + ] 1645 + 1646 + [[package]] 1647 + name = "crypto-common" 1648 + version = "0.1.6" 1649 + source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1651 + dependencies = [ 1652 + "generic-array", 1653 + "typenum", 1554 1654 ] 1555 1655 1556 1656 [[package]] ··· 1573 1653 ] 1574 1654 1575 1655 [[package]] 1576 - name = "cty" 1577 - version = "0.2.2" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 1580 - 1581 - [[package]] 1582 1656 name = "d3d12" 1583 - version = "0.5.0" 1657 + version = "0.6.0" 1584 1658 source = "registry+https://github.com/rust-lang/crates.io-index" 1585 - checksum = "827914e1f53b1e0e025ecd3d967a7836b7bcb54520f90e21ef8df7b4d88a2759" 1659 + checksum = "d8f0de2f5a8e7bd4a9eec0e3c781992a4ce1724f68aec7d7a3715344de8b39da" 1586 1660 dependencies = [ 1587 - "bitflags", 1588 - "libloading", 1661 + "bitflags 1.3.2", 1662 + "libloading 0.7.4", 1589 1663 "winapi", 1590 1664 ] 1591 1665 1592 1666 [[package]] 1593 - name = "darling" 1594 - version = "0.13.4" 1667 + name = "dashmap" 1668 + version = "5.5.3" 1595 1669 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 1670 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 1597 1671 dependencies = [ 1598 - "darling_core", 1599 - "darling_macro", 1600 - ] 1601 - 1602 - [[package]] 1603 - name = "darling_core" 1604 - version = "0.13.4" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 1607 - dependencies = [ 1608 - "fnv", 1609 - "ident_case", 1610 - "proc-macro2", 1611 - "quote", 1612 - "strsim", 1613 - "syn 1.0.109", 1614 - ] 1615 - 1616 - [[package]] 1617 - name = "darling_macro" 1618 - version = "0.13.4" 1619 - source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 1621 - dependencies = [ 1622 - "darling_core", 1623 - "quote", 1624 - "syn 1.0.109", 1672 + "cfg-if", 1673 + "hashbrown 0.14.1", 1674 + "lock_api", 1675 + "once_cell", 1676 + "parking_lot_core", 1625 1677 ] 1626 1678 1627 1679 [[package]] ··· 1603 1711 checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" 1604 1712 1605 1713 [[package]] 1606 - name = "derive_more" 1607 - version = "0.99.17" 1714 + name = "data-encoding" 1715 + version = "2.4.0" 1608 1716 source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1717 + checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 1718 + 1719 + [[package]] 1720 + name = "digest" 1721 + version = "0.10.7" 1722 + source = "registry+https://github.com/rust-lang/crates.io-index" 1723 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1610 1724 dependencies = [ 1611 - "proc-macro2", 1612 - "quote", 1613 - "syn 1.0.109", 1725 + "block-buffer", 1726 + "crypto-common", 1614 1727 ] 1615 1728 1616 1729 [[package]] 1617 1730 name = "directories" 1618 - version = "4.0.1" 1731 + version = "1.0.2" 1619 1732 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210" 1733 + checksum = "72d337a64190607d4fcca2cb78982c5dd57f4916e19696b48a575fa746b6cb0f" 1621 1734 dependencies = [ 1622 - "dirs-sys", 1735 + "libc", 1736 + "winapi", 1623 1737 ] 1624 1738 1625 1739 [[package]] 1626 - name = "dirs" 1627 - version = "4.0.0" 1740 + name = "directories" 1741 + version = "5.0.1" 1628 1742 source = "registry+https://github.com/rust-lang/crates.io-index" 1629 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1743 + checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" 1630 1744 dependencies = [ 1631 1745 "dirs-sys", 1632 1746 ] 1633 1747 1634 1748 [[package]] 1635 1749 name = "dirs-sys" 1636 - version = "0.3.7" 1750 + version = "0.4.1" 1637 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1638 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1752 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1639 1753 dependencies = [ 1640 1754 "libc", 1755 + "option-ext", 1641 1756 "redox_users", 1642 - "winapi", 1757 + "windows-sys 0.48.0", 1643 1758 ] 1644 1759 1645 1760 [[package]] ··· 1657 1758 1658 1759 [[package]] 1659 1760 name = "displaydoc" 1660 - version = "0.2.3" 1761 + version = "0.2.4" 1661 1762 source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 1763 + checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 1663 1764 dependencies = [ 1664 1765 "proc-macro2", 1665 1766 "quote", 1666 - "syn 1.0.109", 1767 + "syn 2.0.38", 1768 + ] 1769 + 1770 + [[package]] 1771 + name = "document-features" 1772 + version = "0.2.7" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "e493c573fce17f00dcab13b6ac057994f3ce17d1af4dc39bfd482b83c6eb6157" 1775 + dependencies = [ 1776 + "litrs", 1667 1777 ] 1668 1778 1669 1779 [[package]] ··· 1683 1775 1684 1776 [[package]] 1685 1777 name = "ecolor" 1686 - version = "0.20.0" 1778 + version = "0.23.0" 1687 1779 source = "registry+https://github.com/rust-lang/crates.io-index" 1688 - checksum = "b601108bca3af7650440ace4ca55b2daf52c36f2635be3587d77b16efd8d0691" 1780 + checksum = "cfdf4e52dbbb615cfd30cf5a5265335c217b5fd8d669593cea74a517d9c605af" 1689 1781 dependencies = [ 1690 1782 "bytemuck", 1691 - ] 1692 - 1693 - [[package]] 1694 - name = "egui" 1695 - version = "0.20.1" 1696 - source = "registry+https://github.com/rust-lang/crates.io-index" 1697 - checksum = "65a5e883a316e53866977450eecfbcac9c48109c2ab3394af29feb83fcde4ea9" 1698 - dependencies = [ 1699 - "ahash 0.8.3", 1700 - "epaint", 1701 - "nohash-hasher", 1702 - ] 1703 - 1704 - [[package]] 1705 - name = "egui_extras" 1706 - version = "0.20.0" 1707 - source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "1975cd88ff7430f93b29e6b9868b648a8ff6a43b08b9ff8474ee0a648bd8f9a6" 1709 - dependencies = [ 1710 - "egui", 1711 1783 "serde", 1712 1784 ] 1713 1785 1714 1786 [[package]] 1715 - name = "either" 1716 - version = "1.8.1" 1787 + name = "egui" 1788 + version = "0.23.0" 1717 1789 source = "registry+https://github.com/rust-lang/crates.io-index" 1718 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1790 + checksum = "8bd69fed5fcf4fbb8225b24e80ea6193b61e17a625db105ef0c4d71dde6eb8b7" 1791 + dependencies = [ 1792 + "accesskit", 1793 + "ahash", 1794 + "epaint", 1795 + "nohash-hasher", 1796 + "serde", 1797 + ] 1798 + 1799 + [[package]] 1800 + name = "egui_extras" 1801 + version = "0.23.0" 1802 + source = "registry+https://github.com/rust-lang/crates.io-index" 1803 + checksum = "68ffe3fe5c00295f91c2a61a74ee271c32f74049c94ba0b1cea8f26eb478bc07" 1804 + dependencies = [ 1805 + "egui", 1806 + "enum-map", 1807 + "log", 1808 + "serde", 1809 + ] 1810 + 1811 + [[package]] 1812 + name = "ehttp" 1813 + version = "0.3.1" 1814 + source = "registry+https://github.com/rust-lang/crates.io-index" 1815 + checksum = "f88f45662356f96afc7d9e2bc9910ad8352ee01417f7c69b8b16a53c8767a75d" 1816 + dependencies = [ 1817 + "document-features", 1818 + "js-sys", 1819 + "ureq", 1820 + "wasm-bindgen", 1821 + "wasm-bindgen-futures", 1822 + "web-sys", 1823 + ] 1824 + 1825 + [[package]] 1826 + name = "either" 1827 + version = "1.9.0" 1828 + source = "registry+https://github.com/rust-lang/crates.io-index" 1829 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1719 1830 1720 1831 [[package]] 1721 1832 name = "emath" 1722 - version = "0.20.0" 1833 + version = "0.23.0" 1723 1834 source = "registry+https://github.com/rust-lang/crates.io-index" 1724 - checksum = "5277249c8c3430e7127e4f2c40a77485e7baf11ae132ce9b3253a8ed710df0a0" 1835 + checksum = "1ef2b29de53074e575c18b694167ccbe6e5191f7b25fe65175a0d905a32eeec0" 1725 1836 dependencies = [ 1726 1837 "bytemuck", 1838 + "serde", 1727 1839 ] 1728 1840 1729 1841 [[package]] 1730 1842 name = "encase" 1731 - version = "0.4.1" 1843 + version = "0.6.1" 1732 1844 source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "48ec50086547d597b5c871a78399ec04a14828a6a5c445a61ed4687c540edec6" 1845 + checksum = "8fce2eeef77fd4a293a54b62aa00ac9daebfbcda4bf8998c5a815635b004aa1c" 1734 1846 dependencies = [ 1735 1847 "const_panic", 1736 1848 "encase_derive", 1737 - "glam 0.22.0", 1849 + "glam", 1738 1850 "thiserror", 1739 1851 ] 1740 1852 1741 1853 [[package]] 1742 1854 name = "encase_derive" 1743 - version = "0.4.1" 1855 + version = "0.6.1" 1744 1856 source = "registry+https://github.com/rust-lang/crates.io-index" 1745 - checksum = "dda93e9714c7683c474f49a461a2ae329471d2bda43c4302d41c6d8339579e92" 1857 + checksum = "0e520cde08cbf4f7cc097f61573ec06ce467019803de8ae82fb2823fa1554a0e" 1746 1858 dependencies = [ 1747 1859 "encase_derive_impl", 1748 1860 ] 1749 1861 1750 1862 [[package]] 1751 1863 name = "encase_derive_impl" 1752 - version = "0.4.1" 1864 + version = "0.6.1" 1753 1865 source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "ec27b639e942eb0297513b81cc6d87c50f6c77dc8c37af00a39ed5db3b9657ee" 1866 + checksum = "3fe2568f851fd6144a45fa91cfed8fe5ca8fc0b56ba6797bfc1ed2771b90e37c" 1755 1867 dependencies = [ 1756 1868 "proc-macro2", 1757 1869 "quote", 1758 - "syn 1.0.109", 1870 + "syn 2.0.38", 1759 1871 ] 1760 1872 1761 1873 [[package]] 1762 1874 name = "encoding_rs" 1763 - version = "0.8.32" 1875 + version = "0.8.33" 1764 1876 source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1877 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1766 1878 dependencies = [ 1767 1879 "cfg-if", 1768 1880 ] 1769 1881 1770 1882 [[package]] 1771 - name = "env_logger" 1772 - version = "0.10.0" 1883 + name = "enum-map" 1884 + version = "2.6.3" 1773 1885 source = "registry+https://github.com/rust-lang/crates.io-index" 1774 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1886 + checksum = "c188012f8542dee7b3996e44dd89461d64aa471b0a7c71a1ae2f595d259e96e5" 1775 1887 dependencies = [ 1776 - "log", 1777 - "regex", 1778 - ] 1779 - 1780 - [[package]] 1781 - name = "epaint" 1782 - version = "0.20.0" 1783 - source = "registry+https://github.com/rust-lang/crates.io-index" 1784 - checksum = "de14b65fe5e423e0058f77a8beb2c863b056d0566d6c4ce0d097aa5814cb705a" 1785 - dependencies = [ 1786 - "ab_glyph", 1787 - "ahash 0.8.3", 1788 - "atomic_refcell", 1789 - "bytemuck", 1790 - "ecolor", 1791 - "emath", 1792 - "nohash-hasher", 1793 - "parking_lot 0.12.1", 1794 - ] 1795 - 1796 - [[package]] 1797 - name = "erased-serde" 1798 - version = "0.3.25" 1799 - source = "registry+https://github.com/rust-lang/crates.io-index" 1800 - checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569" 1801 - dependencies = [ 1888 + "enum-map-derive", 1802 1889 "serde", 1803 1890 ] 1804 1891 1805 1892 [[package]] 1806 - name = "errno" 1807 - version = "0.3.0" 1893 + name = "enum-map-derive" 1894 + version = "0.14.0" 1808 1895 source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 1896 + checksum = "04d0b288e3bb1d861c4403c1774a6f7a798781dfc519b3647df2a3dd4ae95f25" 1810 1897 dependencies = [ 1811 - "errno-dragonfly", 1812 - "libc", 1813 - "windows-sys 0.45.0", 1898 + "proc-macro2", 1899 + "quote", 1900 + "syn 2.0.38", 1814 1901 ] 1815 1902 1816 1903 [[package]] 1817 - name = "errno-dragonfly" 1818 - version = "0.1.2" 1904 + name = "enumn" 1905 + version = "0.1.12" 1819 1906 source = "registry+https://github.com/rust-lang/crates.io-index" 1820 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1907 + checksum = "c2ad8cef1d801a4686bfd8919f0b30eac4c8e48968c437a6405ded4fb5272d2b" 1821 1908 dependencies = [ 1822 - "cc", 1823 - "libc", 1909 + "proc-macro2", 1910 + "quote", 1911 + "syn 2.0.38", 1912 + ] 1913 + 1914 + [[package]] 1915 + name = "epaint" 1916 + version = "0.23.0" 1917 + source = "registry+https://github.com/rust-lang/crates.io-index" 1918 + checksum = "58067b840d009143934d91d8dcb8ded054d8301d7c11a517ace0a99bb1e1595e" 1919 + dependencies = [ 1920 + "ab_glyph", 1921 + "ahash", 1922 + "bytemuck", 1923 + "ecolor", 1924 + "emath", 1925 + "nohash-hasher", 1926 + "parking_lot", 1927 + "serde", 1928 + ] 1929 + 1930 + [[package]] 1931 + name = "equivalent" 1932 + version = "1.0.1" 1933 + source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1935 + 1936 + [[package]] 1937 + name = "erased-serde" 1938 + version = "0.3.31" 1939 + source = "registry+https://github.com/rust-lang/crates.io-index" 1940 + checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" 1941 + dependencies = [ 1942 + "serde", 1824 1943 ] 1825 1944 1826 1945 [[package]] ··· 1876 1941 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1877 1942 1878 1943 [[package]] 1879 - name = "failure" 1880 - version = "0.1.8" 1944 + name = "event-listener" 1945 + version = "3.0.0" 1881 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1882 - checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" 1947 + checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325" 1883 1948 dependencies = [ 1884 - "backtrace", 1885 - "failure_derive", 1886 - ] 1887 - 1888 - [[package]] 1889 - name = "failure_derive" 1890 - version = "0.1.8" 1891 - source = "registry+https://github.com/rust-lang/crates.io-index" 1892 - checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" 1893 - dependencies = [ 1894 - "proc-macro2", 1895 - "quote", 1896 - "syn 1.0.109", 1897 - "synstructure", 1949 + "concurrent-queue", 1950 + "parking", 1951 + "pin-project-lite", 1898 1952 ] 1899 1953 1900 1954 [[package]] ··· 1896 1972 ] 1897 1973 1898 1974 [[package]] 1899 - name = "filetime" 1900 - version = "0.2.20" 1975 + name = "fastrand" 1976 + version = "2.0.1" 1901 1977 source = "registry+https://github.com/rust-lang/crates.io-index" 1902 - checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 1978 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1979 + 1980 + [[package]] 1981 + name = "fdeflate" 1982 + version = "0.3.0" 1983 + source = "registry+https://github.com/rust-lang/crates.io-index" 1984 + checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1985 + dependencies = [ 1986 + "simd-adler32", 1987 + ] 1988 + 1989 + [[package]] 1990 + name = "filetime" 1991 + version = "0.2.22" 1992 + source = "registry+https://github.com/rust-lang/crates.io-index" 1993 + checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1903 1994 dependencies = [ 1904 1995 "cfg-if", 1905 1996 "libc", 1906 - "redox_syscall", 1907 - "windows-sys 0.45.0", 1997 + "redox_syscall 0.3.5", 1998 + "windows-sys 0.48.0", 1908 1999 ] 1909 2000 1910 2001 [[package]] ··· 1930 1991 1931 1992 [[package]] 1932 1993 name = "flate2" 1933 - version = "1.0.25" 1994 + version = "1.0.28" 1934 1995 source = "registry+https://github.com/rust-lang/crates.io-index" 1935 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1996 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1936 1997 dependencies = [ 1937 1998 "crc32fast", 1938 1999 "miniz_oxide", ··· 1949 2010 1950 2011 [[package]] 1951 2012 name = "fluent" 1952 - version = "0.16.0" 2013 + version = "0.15.0" 1953 2014 source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 2015 + checksum = "bc4d7142005e2066e4844caf9f271b93fc79836ee96ec85057b8c109687e629a" 1955 2016 dependencies = [ 1956 2017 "fluent-bundle", 1957 2018 "unic-langid", ··· 1992 2053 ] 1993 2054 1994 2055 [[package]] 1995 - name = "fluent_content" 1996 - version = "0.0.3" 1997 - source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "a582c297515a2fb08cbaa1166498dd18b11ba0e4d7c9cad5b10386a6a2208c8a" 1999 - dependencies = [ 2000 - "fluent", 2001 - "fluent-langneg", 2002 - "intl-memoizer", 2003 - "thiserror", 2004 - "tracing", 2005 - "unic-langid", 2006 - ] 2007 - 2008 - [[package]] 2009 - name = "flume" 2010 - version = "0.10.14" 2011 - source = "registry+https://github.com/rust-lang/crates.io-index" 2012 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 2013 - dependencies = [ 2014 - "spin 0.9.7", 2015 - ] 2016 - 2017 - [[package]] 2018 2056 name = "fnv" 2019 2057 version = "1.0.7" 2020 2058 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2014 2098 2015 2099 [[package]] 2016 2100 name = "form_urlencoded" 2017 - version = "1.1.0" 2101 + version = "1.2.0" 2018 2102 source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 2103 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 2020 2104 dependencies = [ 2021 2105 "percent-encoding", 2022 2106 ] ··· 2031 2115 ] 2032 2116 2033 2117 [[package]] 2034 - name = "futures" 2035 - version = "0.3.28" 2118 + name = "funty" 2119 + version = "2.0.0" 2036 2120 source = "registry+https://github.com/rust-lang/crates.io-index" 2037 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 2038 - dependencies = [ 2039 - "futures-channel", 2040 - "futures-core", 2041 - "futures-executor", 2042 - "futures-io", 2043 - "futures-sink", 2044 - "futures-task", 2045 - "futures-util", 2046 - ] 2047 - 2048 - [[package]] 2049 - name = "futures-channel" 2050 - version = "0.3.28" 2051 - source = "registry+https://github.com/rust-lang/crates.io-index" 2052 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 2053 - dependencies = [ 2054 - "futures-core", 2055 - "futures-sink", 2056 - ] 2121 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2057 2122 2058 2123 [[package]] 2059 2124 name = "futures-core" 2060 2125 version = "0.3.28" 2061 2126 source = "registry+https://github.com/rust-lang/crates.io-index" 2062 2127 checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2063 - 2064 - [[package]] 2065 - name = "futures-executor" 2066 - version = "0.3.28" 2067 - source = "registry+https://github.com/rust-lang/crates.io-index" 2068 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 2069 - dependencies = [ 2070 - "futures-core", 2071 - "futures-task", 2072 - "futures-util", 2073 - ] 2074 2128 2075 2129 [[package]] 2076 2130 name = "futures-io" ··· 2050 2164 2051 2165 [[package]] 2052 2166 name = "futures-lite" 2053 - version = "1.12.0" 2167 + version = "1.13.0" 2054 2168 source = "registry+https://github.com/rust-lang/crates.io-index" 2055 - checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 2169 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 2056 2170 dependencies = [ 2057 - "fastrand", 2171 + "fastrand 1.9.0", 2058 2172 "futures-core", 2059 2173 "futures-io", 2060 2174 "memchr", ··· 2064 2178 ] 2065 2179 2066 2180 [[package]] 2067 - name = "futures-macro" 2068 - version = "0.3.28" 2069 - source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2071 - dependencies = [ 2072 - "proc-macro2", 2073 - "quote", 2074 - "syn 2.0.13", 2075 - ] 2076 - 2077 - [[package]] 2078 - name = "futures-sink" 2079 - version = "0.3.28" 2080 - source = "registry+https://github.com/rust-lang/crates.io-index" 2081 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2082 - 2083 - [[package]] 2084 - name = "futures-task" 2085 - version = "0.3.28" 2086 - source = "registry+https://github.com/rust-lang/crates.io-index" 2087 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2088 - 2089 - [[package]] 2090 - name = "futures-util" 2091 - version = "0.3.28" 2092 - source = "registry+https://github.com/rust-lang/crates.io-index" 2093 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2094 - dependencies = [ 2095 - "futures-channel", 2096 - "futures-core", 2097 - "futures-io", 2098 - "futures-macro", 2099 - "futures-sink", 2100 - "futures-task", 2101 - "memchr", 2102 - "pin-project-lite", 2103 - "pin-utils", 2104 - "slab", 2105 - ] 2106 - 2107 - [[package]] 2108 2181 name = "fxhash" 2109 2182 version = "0.2.1" 2110 2183 source = "registry+https://github.com/rust-lang/crates.io-index" 2111 2184 checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 2112 2185 dependencies = [ 2113 2186 "byteorder", 2187 + ] 2188 + 2189 + [[package]] 2190 + name = "generic-array" 2191 + version = "0.14.7" 2192 + source = "registry+https://github.com/rust-lang/crates.io-index" 2193 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2194 + dependencies = [ 2195 + "typenum", 2196 + "version_check", 2114 2197 ] 2115 2198 2116 2199 [[package]] ··· 2105 2250 2106 2251 [[package]] 2107 2252 name = "getrandom" 2108 - version = "0.2.8" 2253 + version = "0.2.10" 2109 2254 source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 2255 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 2111 2256 dependencies = [ 2112 2257 "cfg-if", 2113 2258 "js-sys", ··· 2117 2262 ] 2118 2263 2119 2264 [[package]] 2120 - name = "ggrs" 2121 - version = "0.9.4" 2122 - source = "registry+https://github.com/rust-lang/crates.io-index" 2123 - checksum = "1419c3c38e579884b075b99a8ade2ca507e87a2bde81940c6fe4aea895696831" 2124 - dependencies = [ 2125 - "bincode", 2126 - "bitfield-rle", 2127 - "bytemuck", 2128 - "instant", 2129 - "js-sys", 2130 - "parking_lot 0.11.2", 2131 - "rand 0.8.5", 2132 - "serde", 2133 - ] 2134 - 2135 - [[package]] 2136 2265 name = "gilrs" 2137 - version = "0.10.1" 2266 + version = "0.10.2" 2138 2267 source = "registry+https://github.com/rust-lang/crates.io-index" 2139 - checksum = "7d0342acdc7b591d171212e17c9350ca02383b86d5f9af33c6e3598e03a6c57e" 2268 + checksum = "62fd19844d0eb919aca41d3e4ea0e0b6bf60e1e827558b101c269015b8f5f27a" 2140 2269 dependencies = [ 2141 2270 "fnv", 2142 2271 "gilrs-core", ··· 2131 2292 2132 2293 [[package]] 2133 2294 name = "gilrs-core" 2134 - version = "0.5.3" 2295 + version = "0.5.7" 2135 2296 source = "registry+https://github.com/rust-lang/crates.io-index" 2136 - checksum = "d2244818258229abc01fe5a7817664e8b82af29eb70e67ab39d49018ae679912" 2297 + checksum = "5ccc99e9b8d63ffcaa334c4babfa31f46e156618a11f63efb6e8e6bcb37b830d" 2137 2298 dependencies = [ 2138 2299 "core-foundation", 2139 2300 "io-kit-sys", ··· 2141 2302 "libc", 2142 2303 "libudev-sys", 2143 2304 "log", 2144 - "nix 0.25.1", 2305 + "nix 0.26.4", 2145 2306 "uuid", 2146 2307 "vec_map", 2147 2308 "wasm-bindgen", 2148 2309 "web-sys", 2149 - "windows 0.44.0", 2310 + "windows 0.51.1", 2150 2311 ] 2151 2312 2152 2313 [[package]] 2153 2314 name = "gimli" 2154 - version = "0.27.2" 2315 + version = "0.28.0" 2155 2316 source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 2317 + checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 2157 2318 2158 2319 [[package]] 2159 2320 name = "glam" 2160 - version = "0.22.0" 2321 + version = "0.24.2" 2161 2322 source = "registry+https://github.com/rust-lang/crates.io-index" 2162 - checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774" 2323 + checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945" 2163 2324 dependencies = [ 2164 2325 "bytemuck", 2165 - "num-traits", 2326 + "mint", 2166 2327 "serde", 2167 2328 ] 2168 - 2169 - [[package]] 2170 - name = "glam" 2171 - version = "0.23.0" 2172 - source = "registry+https://github.com/rust-lang/crates.io-index" 2173 - checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c" 2174 2329 2175 2330 [[package]] 2176 2331 name = "glob" ··· 2173 2340 checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2174 2341 2175 2342 [[package]] 2176 - name = "globset" 2177 - version = "0.4.10" 2178 - source = "registry+https://github.com/rust-lang/crates.io-index" 2179 - checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 2180 - dependencies = [ 2181 - "aho-corasick", 2182 - "bstr", 2183 - "fnv", 2184 - "log", 2185 - "regex", 2186 - ] 2187 - 2188 - [[package]] 2189 2343 name = "glow" 2190 - version = "0.11.2" 2344 + version = "0.12.3" 2191 2345 source = "registry+https://github.com/rust-lang/crates.io-index" 2192 - checksum = "d8bd5877156a19b8ac83a29b2306fe20537429d318f3ff0a1a2119f8d9c61919" 2346 + checksum = "ca0fe580e4b60a8ab24a868bc08e2f03cbcb20d3d676601fa909386713333728" 2193 2347 dependencies = [ 2194 2348 "js-sys", 2195 2349 "slotmap", ··· 2186 2366 2187 2367 [[package]] 2188 2368 name = "gpu-alloc" 2189 - version = "0.5.3" 2369 + version = "0.5.4" 2190 2370 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "7fc59e5f710e310e76e6707f86c561dd646f69a8876da9131703b2f717de818d" 2371 + checksum = "22beaafc29b38204457ea030f6fb7a84c9e4dd1b86e311ba0542533453d87f62" 2192 2372 dependencies = [ 2193 - "bitflags", 2373 + "bitflags 1.3.2", 2194 2374 "gpu-alloc-types", 2195 2375 ] 2196 2376 ··· 2200 2380 source = "registry+https://github.com/rust-lang/crates.io-index" 2201 2381 checksum = "54804d0d6bc9d7f26db4eaec1ad10def69b599315f487d32c334a80d1efe67a5" 2202 2382 dependencies = [ 2203 - "bitflags", 2383 + "bitflags 1.3.2", 2384 + ] 2385 + 2386 + [[package]] 2387 + name = "gpu-allocator" 2388 + version = "0.22.0" 2389 + source = "registry+https://github.com/rust-lang/crates.io-index" 2390 + checksum = "ce95f9e2e11c2c6fadfce42b5af60005db06576f231f5c92550fdded43c423e8" 2391 + dependencies = [ 2392 + "backtrace", 2393 + "log", 2394 + "thiserror", 2395 + "winapi", 2396 + "windows 0.44.0", 2204 2397 ] 2205 2398 2206 2399 [[package]] 2207 2400 name = "gpu-descriptor" 2208 - version = "0.2.3" 2401 + version = "0.2.4" 2209 2402 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 - checksum = "0b0c02e1ba0bdb14e965058ca34e09c020f8e507a760df1121728e0aef68d57a" 2403 + checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c" 2211 2404 dependencies = [ 2212 - "bitflags", 2405 + "bitflags 2.4.0", 2213 2406 "gpu-descriptor-types", 2214 - "hashbrown", 2407 + "hashbrown 0.14.1", 2215 2408 ] 2216 2409 2217 2410 [[package]] 2218 2411 name = "gpu-descriptor-types" 2219 - version = "0.1.1" 2412 + version = "0.1.2" 2220 2413 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "363e3677e55ad168fef68cf9de3a4a310b53124c5e784c53a1d70e92d23f2126" 2414 + checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c" 2222 2415 dependencies = [ 2223 - "bitflags", 2416 + "bitflags 2.4.0", 2224 2417 ] 2225 2418 2226 2419 [[package]] ··· 2247 2414 ] 2248 2415 2249 2416 [[package]] 2250 - name = "hash32" 2251 - version = "0.2.1" 2252 - source = "registry+https://github.com/rust-lang/crates.io-index" 2253 - checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 2254 - dependencies = [ 2255 - "byteorder", 2256 - ] 2257 - 2258 - [[package]] 2259 2417 name = "hashbrown" 2260 2418 version = "0.12.3" 2261 2419 source = "registry+https://github.com/rust-lang/crates.io-index" 2262 2420 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2421 + 2422 + [[package]] 2423 + name = "hashbrown" 2424 + version = "0.14.1" 2425 + source = "registry+https://github.com/rust-lang/crates.io-index" 2426 + checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" 2263 2427 dependencies = [ 2264 - "ahash 0.7.6", 2428 + "ahash", 2429 + "allocator-api2", 2265 2430 "serde", 2266 2431 ] 2267 2432 2268 2433 [[package]] 2269 - name = "heapless" 2270 - version = "0.7.16" 2434 + name = "hassle-rs" 2435 + version = "0.10.0" 2271 2436 source = "registry+https://github.com/rust-lang/crates.io-index" 2272 - checksum = "db04bc24a18b9ea980628ecf00e6c0264f3c1426dac36c00cb49b6fbad8b0743" 2437 + checksum = "1397650ee315e8891a0df210707f0fc61771b0cc518c3023896064c5407cb3b0" 2273 2438 dependencies = [ 2274 - "atomic-polyfill", 2275 - "hash32", 2276 - "rustc_version", 2277 - "serde", 2278 - "spin 0.9.7", 2279 - "stable_deref_trait", 2280 - ] 2281 - 2282 - [[package]] 2283 - name = "heck" 2284 - version = "0.4.1" 2285 - source = "registry+https://github.com/rust-lang/crates.io-index" 2286 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2287 - 2288 - [[package]] 2289 - name = "hermit-abi" 2290 - version = "0.2.6" 2291 - source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2293 - dependencies = [ 2439 + "bitflags 1.3.2", 2440 + "com-rs", 2294 2441 "libc", 2442 + "libloading 0.7.4", 2443 + "thiserror", 2444 + "widestring", 2445 + "winapi", 2295 2446 ] 2296 - 2297 - [[package]] 2298 - name = "hermit-abi" 2299 - version = "0.3.1" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 2302 2447 2303 2448 [[package]] 2304 2449 name = "hex" ··· 2286 2475 2287 2476 [[package]] 2288 2477 name = "hexasphere" 2289 - version = "8.1.0" 2478 + version = "9.1.0" 2290 2479 source = "registry+https://github.com/rust-lang/crates.io-index" 2291 - checksum = "bd41d443f978bfa380a6dad58b62a08c43bcb960631f13e9d015b911eaf73588" 2480 + checksum = "7cb3df16a7bcb1b5bc092abd55e14f77ca70aea14445026e264586fc62889a10" 2292 2481 dependencies = [ 2293 - "glam 0.23.0", 2294 - "once_cell", 2482 + "constgebra", 2483 + "glam", 2295 2484 ] 2296 2485 2297 2486 [[package]] ··· 2299 2488 version = "0.2.1" 2300 2489 source = "registry+https://github.com/rust-lang/crates.io-index" 2301 2490 checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 2491 + 2492 + [[package]] 2493 + name = "home" 2494 + version = "0.5.5" 2495 + source = "registry+https://github.com/rust-lang/crates.io-index" 2496 + checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2497 + dependencies = [ 2498 + "windows-sys 0.48.0", 2499 + ] 2302 2500 2303 2501 [[package]] 2304 2502 name = "humantime" ··· 2326 2506 ] 2327 2507 2328 2508 [[package]] 2329 - name = "ident_case" 2330 - version = "1.0.1" 2331 - source = "registry+https://github.com/rust-lang/crates.io-index" 2332 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2333 - 2334 - [[package]] 2335 2509 name = "idna" 2336 - version = "0.3.0" 2510 + version = "0.4.0" 2337 2511 source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2512 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 2339 2513 dependencies = [ 2340 2514 "unicode-bidi", 2341 2515 "unicode-normalization", 2342 2516 ] 2343 2517 2344 2518 [[package]] 2345 - name = "if-addrs" 2346 - version = "0.7.0" 2347 - source = "registry+https://github.com/rust-lang/crates.io-index" 2348 - checksum = "cbc0fa01ffc752e9dbc72818cdb072cd028b86be5e09dd04c5a643704fe101a9" 2349 - dependencies = [ 2350 - "libc", 2351 - "winapi", 2352 - ] 2353 - 2354 - [[package]] 2355 2519 name = "image" 2356 - version = "0.24.6" 2520 + version = "0.24.7" 2357 2521 source = "registry+https://github.com/rust-lang/crates.io-index" 2358 - checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 2522 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2359 2523 dependencies = [ 2360 2524 "bytemuck", 2361 2525 "byteorder", ··· 2357 2553 checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2358 2554 dependencies = [ 2359 2555 "autocfg", 2360 - "hashbrown", 2556 + "hashbrown 0.12.3", 2361 2557 "serde", 2558 + ] 2559 + 2560 + [[package]] 2561 + name = "indexmap" 2562 + version = "2.0.2" 2563 + source = "registry+https://github.com/rust-lang/crates.io-index" 2564 + checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2565 + dependencies = [ 2566 + "equivalent", 2567 + "hashbrown 0.14.1", 2362 2568 ] 2363 2569 2364 2570 [[package]] ··· 2377 2563 source = "registry+https://github.com/rust-lang/crates.io-index" 2378 2564 checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2379 2565 dependencies = [ 2380 - "bitflags", 2566 + "bitflags 1.3.2", 2381 2567 "inotify-sys", 2382 2568 "libc", 2383 2569 ] ··· 2404 2590 ] 2405 2591 2406 2592 [[package]] 2407 - name = "interpolation" 2408 - version = "0.2.0" 2409 - source = "registry+https://github.com/rust-lang/crates.io-index" 2410 - checksum = "d3b7357d2bbc5ee92f8e899ab645233e43d21407573cceb37fed8bc3dede2c02" 2411 - 2412 - [[package]] 2413 2593 name = "intl-memoizer" 2414 2594 version = "0.5.1" 2415 2595 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2424 2616 2425 2617 [[package]] 2426 2618 name = "io-kit-sys" 2427 - version = "0.2.0" 2619 + version = "0.3.0" 2428 2620 source = "registry+https://github.com/rust-lang/crates.io-index" 2429 - checksum = "7789f7f3c9686f96164f5109d69152de759e76e284f736bd57661c6df5091919" 2621 + checksum = "9b2d4429acc1deff0fbdece0325b4997bdb02b2c245ab7023fd5deca0f6348de" 2430 2622 dependencies = [ 2431 - "core-foundation-sys 0.8.3", 2432 - "mach", 2433 - ] 2434 - 2435 - [[package]] 2436 - name = "io-lifetimes" 2437 - version = "1.0.9" 2438 - source = "registry+https://github.com/rust-lang/crates.io-index" 2439 - checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb" 2440 - dependencies = [ 2441 - "hermit-abi 0.3.1", 2442 - "libc", 2443 - "windows-sys 0.45.0", 2444 - ] 2445 - 2446 - [[package]] 2447 - name = "is-terminal" 2448 - version = "0.4.6" 2449 - source = "registry+https://github.com/rust-lang/crates.io-index" 2450 - checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" 2451 - dependencies = [ 2452 - "hermit-abi 0.3.1", 2453 - "io-lifetimes", 2454 - "rustix", 2455 - "windows-sys 0.45.0", 2623 + "core-foundation-sys", 2624 + "mach2", 2456 2625 ] 2457 2626 2458 2627 [[package]] ··· 2443 2658 2444 2659 [[package]] 2445 2660 name = "itoa" 2446 - version = "1.0.6" 2661 + version = "1.0.9" 2447 2662 source = "registry+https://github.com/rust-lang/crates.io-index" 2448 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 2449 - 2450 - [[package]] 2451 - name = "iyes_loopless" 2452 - version = "0.9.1" 2453 - source = "registry+https://github.com/rust-lang/crates.io-index" 2454 - checksum = "c47fd2cbdb1d7f295c25e6bfccfd78a84b6eef3055bc9f01b34ae861721b01ee" 2455 - dependencies = [ 2456 - "bevy_app", 2457 - "bevy_ecs", 2458 - "bevy_time", 2459 - "bevy_utils", 2460 - ] 2663 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 2461 2664 2462 2665 [[package]] 2463 2666 name = "jni" ··· 2499 2726 2500 2727 [[package]] 2501 2728 name = "jobserver" 2502 - version = "0.1.26" 2729 + version = "0.1.27" 2503 2730 source = "registry+https://github.com/rust-lang/crates.io-index" 2504 - checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2731 + checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 2505 2732 dependencies = [ 2506 2733 "libc", 2507 2734 ] ··· 2514 2741 2515 2742 [[package]] 2516 2743 name = "js-sys" 2517 - version = "0.3.61" 2744 + version = "0.3.64" 2518 2745 source = "registry+https://github.com/rust-lang/crates.io-index" 2519 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 2746 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2520 2747 dependencies = [ 2521 2748 "wasm-bindgen", 2522 2749 ] ··· 2525 2752 name = "jumpy" 2526 2753 version = "0.7.0" 2527 2754 dependencies = [ 2528 - "anyhow", 2529 2755 "async-channel", 2530 - "async-timer", 2531 - "base64 0.21.0", 2532 - "bevy", 2533 - "bevy-inspector-egui", 2534 2756 "bevy_dylib", 2535 - "bevy_egui", 2536 - "bevy_fluent", 2537 - "bevy_framepace", 2538 - "bevy_kira_audio", 2539 - "bevy_prototype_lyon", 2540 - "bevy_tweening", 2541 - "bitfield", 2542 - "bones_bevy_asset", 2757 + "bevy_tasks", 2543 2758 "bones_bevy_renderer", 2544 - "bones_lib", 2545 - "bones_matchmaker_proto", 2546 - "bytemuck", 2547 - "bytes", 2548 - "clap", 2549 - "directories", 2550 - "downcast-rs", 2759 + "bones_framework", 2760 + "directories 1.0.2", 2551 2761 "egui_extras", 2552 - "either", 2553 - "fluent", 2554 - "fluent_content", 2555 - "fnv", 2556 - "futures-lite", 2557 - "getrandom 0.2.8", 2558 - "ggrs", 2559 - "iyes_loopless", 2560 - "jumpy_core", 2561 - "leafwing-input-manager", 2562 - "log", 2563 - "mdns-sd", 2564 - "mimalloc", 2565 - "normalize-path", 2566 - "numquant", 2567 - "once_cell", 2568 - "peg", 2569 - "ping-rs", 2570 - "postcard", 2571 - "puffin", 2572 - "puffin_egui", 2573 - "quinn", 2574 - "quinn_runtime_bevy", 2575 - "rand 0.8.5", 2576 - "rcgen", 2577 - "rustls", 2578 - "serde", 2579 - "serde_json", 2580 - "serde_yaml", 2581 - "smallvec", 2582 - "thiserror", 2583 - "tracing", 2584 - "turborand", 2585 - "type_ulid", 2586 - "unic-langid", 2587 - "wasm-bindgen", 2588 - "web-sys", 2589 - ] 2590 - 2591 - [[package]] 2592 - name = "jumpy_core" 2593 - version = "0.7.0" 2594 - dependencies = [ 2595 - "bevy", 2596 - "bones_bevy_asset", 2597 - "bones_lib", 2598 - "bytemuck", 2599 - "csscolorparser", 2600 - "glam 0.22.0", 2601 - "hex", 2602 2762 "humantime-serde", 2603 - "indexmap", 2763 + "indexmap 2.0.2", 2604 2764 "nalgebra", 2765 + "once_cell", 2605 2766 "ordered-float", 2767 + "peg", 2606 2768 "petgraph", 2607 2769 "puffin", 2608 2770 "rapier2d", 2609 2771 "serde", 2772 + "serde_yaml", 2773 + "shiftnanigans", 2774 + "thiserror", 2610 2775 "tracing", 2611 2776 "turborand", 2612 - "type_ulid", 2613 2777 ] 2614 2778 2615 2779 [[package]] ··· 2556 2846 checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3" 2557 2847 dependencies = [ 2558 2848 "libc", 2559 - "libloading", 2849 + "libloading 0.7.4", 2560 2850 "pkg-config", 2561 2851 ] 2562 2852 2563 2853 [[package]] 2564 2854 name = "kira" 2565 - version = "0.7.3" 2566 - source = "registry+https://github.com/rust-lang/crates.io-index" 2567 - checksum = "9e53aef6f6ec851da68a0ad6d6283bd99ea1a9164f38fd7ac353e28ccd6f5cda" 2855 + version = "0.8.5" 2856 + source = "git+https://github.com/zicklag/kira.git?branch=feat/sync#e587b155e862567677c114d0d6fc2963be37c14b" 2568 2857 dependencies = [ 2569 2858 "atomic-arena", 2570 2859 "cpal", 2860 + "glam", 2861 + "mint", 2571 2862 "ringbuf", 2572 2863 "symphonia", 2573 2864 ] 2574 2865 2575 2866 [[package]] 2576 2867 name = "kqueue" 2577 - version = "1.0.7" 2868 + version = "1.0.8" 2578 2869 source = "registry+https://github.com/rust-lang/crates.io-index" 2579 - checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" 2870 + checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 2580 2871 dependencies = [ 2581 2872 "kqueue-sys", 2582 2873 "libc", ··· 2585 2874 2586 2875 [[package]] 2587 2876 name = "kqueue-sys" 2588 - version = "1.0.3" 2877 + version = "1.0.4" 2589 2878 source = "registry+https://github.com/rust-lang/crates.io-index" 2590 - checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" 2879 + checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 2591 2880 dependencies = [ 2592 - "bitflags", 2881 + "bitflags 1.3.2", 2593 2882 "libc", 2594 2883 ] 2595 2884 ··· 2606 2895 checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 2607 2896 2608 2897 [[package]] 2609 - name = "leafwing-input-manager" 2610 - version = "0.8.0" 2611 - source = "registry+https://github.com/rust-lang/crates.io-index" 2612 - checksum = "bb82c6ee7d41f195f9384497dcee11bde691d07c1703667724de8afdf67ae987" 2613 - dependencies = [ 2614 - "bevy", 2615 - "derive_more", 2616 - "fixedbitset", 2617 - "itertools", 2618 - "leafwing_input_manager_macros", 2619 - "petitset", 2620 - "serde", 2621 - ] 2622 - 2623 - [[package]] 2624 - name = "leafwing_input_manager_macros" 2625 - version = "0.7.0" 2626 - source = "registry+https://github.com/rust-lang/crates.io-index" 2627 - checksum = "5ec3d0a4b25f0e6a66547cc3a1eb98b8477814db58de8035063f3db42353a7de" 2628 - dependencies = [ 2629 - "proc-macro-crate", 2630 - "proc-macro2", 2631 - "quote", 2632 - "syn 1.0.109", 2633 - ] 2634 - 2635 - [[package]] 2636 2898 name = "libc" 2637 - version = "0.2.140" 2899 + version = "0.2.149" 2638 2900 source = "registry+https://github.com/rust-lang/crates.io-index" 2639 - checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 2901 + checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 2640 2902 2641 2903 [[package]] 2642 2904 name = "libloading" ··· 2622 2938 ] 2623 2939 2624 2940 [[package]] 2625 - name = "libm" 2626 - version = "0.2.6" 2941 + name = "libloading" 2942 + version = "0.8.1" 2627 2943 source = "registry+https://github.com/rust-lang/crates.io-index" 2628 - checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 2944 + checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2945 + dependencies = [ 2946 + "cfg-if", 2947 + "windows-sys 0.48.0", 2948 + ] 2629 2949 2630 2950 [[package]] 2631 - name = "libmimalloc-sys" 2632 - version = "0.1.33" 2951 + name = "libm" 2952 + version = "0.2.8" 2633 2953 source = "registry+https://github.com/rust-lang/crates.io-index" 2634 - checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e" 2635 - dependencies = [ 2636 - "cc", 2637 - "libc", 2638 - ] 2954 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2639 2955 2640 2956 [[package]] 2641 2957 name = "libudev-sys" ··· 2648 2964 ] 2649 2965 2650 2966 [[package]] 2651 - name = "linux-raw-sys" 2652 - version = "0.3.1" 2967 + name = "litrs" 2968 + version = "0.2.3" 2653 2969 source = "registry+https://github.com/rust-lang/crates.io-index" 2654 - checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" 2970 + checksum = "f9275e0933cf8bb20f008924c0cb07a0692fe54d8064996520bf998de9eb79aa" 2655 2971 2656 2972 [[package]] 2657 2973 name = "lock_api" 2658 - version = "0.4.9" 2974 + version = "0.4.10" 2659 2975 source = "registry+https://github.com/rust-lang/crates.io-index" 2660 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2976 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 2661 2977 dependencies = [ 2662 2978 "autocfg", 2663 2979 "scopeguard", ··· 2665 2981 2666 2982 [[package]] 2667 2983 name = "log" 2668 - version = "0.4.17" 2984 + version = "0.4.20" 2669 2985 source = "registry+https://github.com/rust-lang/crates.io-index" 2670 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2986 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2987 + 2988 + [[package]] 2989 + name = "lyon_algorithms" 2990 + version = "1.0.3" 2991 + source = "registry+https://github.com/rust-lang/crates.io-index" 2992 + checksum = "00a0349cd8f0270781bb93a824b63df6178e3b4a27794e7be3ce3763f5a44d6e" 2671 2993 dependencies = [ 2672 - "cfg-if", 2994 + "lyon_path", 2995 + "num-traits", 2673 2996 ] 2674 2997 2675 2998 [[package]] ··· 2692 3001 2693 3002 [[package]] 2694 3003 name = "lyon_path" 2695 - version = "1.0.3" 3004 + version = "1.0.4" 2696 3005 source = "registry+https://github.com/rust-lang/crates.io-index" 2697 - checksum = "7da8358c012e5651e4619cfd0b5b75c0f77866181a01b0909aab4bae14adf660" 3006 + checksum = "ca507745ba7ccbc76e5c44e7b63b1a29d2b0d6126f375806a5bbaf657c7d6c45" 2698 3007 dependencies = [ 2699 3008 "lyon_geom", 2700 3009 "num-traits", ··· 2709 3018 "float_next_after", 2710 3019 "lyon_path", 2711 3020 "thiserror", 2712 - ] 2713 - 2714 - [[package]] 2715 - name = "mach" 2716 - version = "0.3.2" 2717 - source = "registry+https://github.com/rust-lang/crates.io-index" 2718 - checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 2719 - dependencies = [ 2720 - "libc", 2721 3021 ] 2722 3022 2723 3023 [[package]] ··· 2735 3053 source = "registry+https://github.com/rust-lang/crates.io-index" 2736 3054 checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2737 3055 dependencies = [ 2738 - "regex-automata", 3056 + "regex-automata 0.1.10", 2739 3057 ] 2740 3058 2741 3059 [[package]] 2742 3060 name = "matrixmultiply" 2743 - version = "0.3.2" 3061 + version = "0.3.8" 2744 3062 source = "registry+https://github.com/rust-lang/crates.io-index" 2745 - checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84" 3063 + checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2" 2746 3064 dependencies = [ 3065 + "autocfg", 2747 3066 "rawpointer", 2748 3067 ] 2749 3068 2750 3069 [[package]] 2751 - name = "mdns-sd" 2752 - version = "0.7.2" 3070 + name = "maybe-owned" 3071 + version = "0.3.4" 2753 3072 source = "registry+https://github.com/rust-lang/crates.io-index" 2754 - checksum = "ed0b1898d42fb934073c893ab88e8ae72076a5d862417dcf214c028011019753" 2755 - dependencies = [ 2756 - "flume", 2757 - "if-addrs", 2758 - "polling", 2759 - "socket2", 2760 - ] 3073 + checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" 2761 3074 2762 3075 [[package]] 2763 3076 name = "memchr" 2764 - version = "2.5.0" 3077 + version = "2.6.4" 2765 3078 source = "registry+https://github.com/rust-lang/crates.io-index" 2766 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3079 + checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2767 3080 2768 3081 [[package]] 2769 3082 name = "memoffset" ··· 2771 3094 2772 3095 [[package]] 2773 3096 name = "memoffset" 2774 - version = "0.8.0" 3097 + version = "0.9.0" 2775 3098 source = "registry+https://github.com/rust-lang/crates.io-index" 2776 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 3099 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 2777 3100 dependencies = [ 2778 3101 "autocfg", 2779 3102 ] ··· 2784 3107 source = "registry+https://github.com/rust-lang/crates.io-index" 2785 3108 checksum = "de11355d1f6781482d027a3b4d4de7825dcedb197bf573e0596d00008402d060" 2786 3109 dependencies = [ 2787 - "bitflags", 3110 + "bitflags 1.3.2", 2788 3111 "block", 2789 3112 "core-graphics-types", 2790 3113 "foreign-types", 2791 3114 "log", 2792 3115 "objc", 2793 - ] 2794 - 2795 - [[package]] 2796 - name = "mimalloc" 2797 - version = "0.1.37" 2798 - source = "registry+https://github.com/rust-lang/crates.io-index" 2799 - checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98" 2800 - dependencies = [ 2801 - "libmimalloc-sys", 2802 3116 ] 2803 3117 2804 3118 [[package]] ··· 2800 3132 2801 3133 [[package]] 2802 3134 name = "miniz_oxide" 2803 - version = "0.6.2" 3135 + version = "0.7.1" 2804 3136 source = "registry+https://github.com/rust-lang/crates.io-index" 2805 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 3137 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2806 3138 dependencies = [ 2807 3139 "adler", 3140 + "simd-adler32", 2808 3141 ] 2809 3142 2810 3143 [[package]] 2811 - name = "mio" 2812 - version = "0.8.6" 3144 + name = "mint" 3145 + version = "0.5.9" 2813 3146 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 3147 + checksum = "e53debba6bda7a793e5f99b8dacf19e626084f525f7829104ba9898f367d85ff" 3148 + 3149 + [[package]] 3150 + name = "mio" 3151 + version = "0.8.8" 3152 + source = "registry+https://github.com/rust-lang/crates.io-index" 3153 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 2815 3154 dependencies = [ 2816 3155 "libc", 2817 3156 "log", 2818 3157 "wasi 0.11.0+wasi-snapshot-preview1", 2819 - "windows-sys 0.45.0", 3158 + "windows-sys 0.48.0", 2820 3159 ] 2821 3160 2822 3161 [[package]] 2823 3162 name = "naga" 2824 - version = "0.10.0" 3163 + version = "0.12.3" 2825 3164 source = "registry+https://github.com/rust-lang/crates.io-index" 2826 - checksum = "262d2840e72dbe250e8cf2f522d080988dfca624c4112c096238a4845f591707" 3165 + checksum = "bbcc2e0513220fd2b598e6068608d4462db20322c0e77e47f6f488dfcfc279cb" 2827 3166 dependencies = [ 2828 3167 "bit-set", 2829 - "bitflags", 3168 + "bitflags 1.3.2", 2830 3169 "codespan-reporting", 2831 3170 "hexf-parse", 2832 - "indexmap", 3171 + "indexmap 1.9.3", 2833 3172 "log", 2834 3173 "num-traits", 2835 - "petgraph", 2836 3174 "pp-rs", 2837 3175 "rustc-hash", 2838 3176 "spirv", ··· 2848 3174 ] 2849 3175 2850 3176 [[package]] 2851 - name = "nalgebra" 2852 - version = "0.32.2" 3177 + name = "naga_oil" 3178 + version = "0.8.2" 2853 3179 source = "registry+https://github.com/rust-lang/crates.io-index" 2854 - checksum = "d68d47bba83f9e2006d117a9a33af1524e655516b8919caac694427a6fb1e511" 3180 + checksum = "8be942a5c21c58b9b0bf4d9b99db3634ddb7a916f8e1d1d0b71820cc4150e56b" 3181 + dependencies = [ 3182 + "bit-set", 3183 + "codespan-reporting", 3184 + "data-encoding", 3185 + "indexmap 1.9.3", 3186 + "naga", 3187 + "once_cell", 3188 + "regex", 3189 + "regex-syntax 0.6.29", 3190 + "rustc-hash", 3191 + "thiserror", 3192 + "tracing", 3193 + "unicode-ident", 3194 + ] 3195 + 3196 + [[package]] 3197 + name = "nalgebra" 3198 + version = "0.32.3" 3199 + source = "registry+https://github.com/rust-lang/crates.io-index" 3200 + checksum = "307ed9b18cc2423f29e83f84fd23a8e73628727990181f18641a8b5dc2ab1caa" 2855 3201 dependencies = [ 2856 3202 "approx", 2857 - "glam 0.22.0", 3203 + "glam", 2858 3204 "matrixmultiply", 2859 3205 "nalgebra-macros", 2860 3206 "num-complex", ··· 2886 3192 2887 3193 [[package]] 2888 3194 name = "nalgebra-macros" 2889 - version = "0.2.0" 3195 + version = "0.2.1" 2890 3196 source = "registry+https://github.com/rust-lang/crates.io-index" 2891 - checksum = "d232c68884c0c99810a5a4d333ef7e47689cfd0edc85efc9e54e1e6bf5212766" 3197 + checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998" 2892 3198 dependencies = [ 2893 3199 "proc-macro2", 2894 3200 "quote", ··· 2896 3202 ] 2897 3203 2898 3204 [[package]] 2899 - name = "natord" 2900 - version = "1.0.9" 2901 - source = "registry+https://github.com/rust-lang/crates.io-index" 2902 - checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c" 2903 - 2904 - [[package]] 2905 3205 name = "ndk" 2906 3206 version = "0.7.0" 2907 3207 source = "registry+https://github.com/rust-lang/crates.io-index" 2908 3208 checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 2909 3209 dependencies = [ 2910 - "bitflags", 3210 + "bitflags 1.3.2", 2911 3211 "jni-sys", 2912 3212 "ndk-sys", 2913 - "num_enum", 2914 - "raw-window-handle 0.5.2", 3213 + "num_enum 0.5.11", 3214 + "raw-window-handle", 2915 3215 "thiserror", 2916 3216 ] 2917 3217 ··· 2914 3226 version = "0.1.1" 2915 3227 source = "registry+https://github.com/rust-lang/crates.io-index" 2916 3228 checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2917 - 2918 - [[package]] 2919 - name = "ndk-glue" 2920 - version = "0.7.0" 2921 - source = "registry+https://github.com/rust-lang/crates.io-index" 2922 - checksum = "0434fabdd2c15e0aab768ca31d5b7b333717f03cf02037d5a0a3ff3c278ed67f" 2923 - dependencies = [ 2924 - "android_logger", 2925 - "libc", 2926 - "log", 2927 - "ndk", 2928 - "ndk-context", 2929 - "ndk-macro", 2930 - "ndk-sys", 2931 - "once_cell", 2932 - "parking_lot 0.12.1", 2933 - ] 2934 - 2935 - [[package]] 2936 - name = "ndk-macro" 2937 - version = "0.3.0" 2938 - source = "registry+https://github.com/rust-lang/crates.io-index" 2939 - checksum = "0df7ac00c4672f9d5aece54ee3347520b7e20f158656c7db2e6de01902eb7a6c" 2940 - dependencies = [ 2941 - "darling", 2942 - "proc-macro-crate", 2943 - "proc-macro2", 2944 - "quote", 2945 - "syn 1.0.109", 2946 - ] 2947 3229 2948 3230 [[package]] 2949 3231 name = "ndk-sys" ··· 2930 3272 source = "registry+https://github.com/rust-lang/crates.io-index" 2931 3273 checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 2932 3274 dependencies = [ 2933 - "bitflags", 3275 + "bitflags 1.3.2", 2934 3276 "cfg-if", 2935 3277 "libc", 2936 3278 "memoffset 0.6.5", ··· 2938 3280 2939 3281 [[package]] 2940 3282 name = "nix" 2941 - version = "0.25.1" 3283 + version = "0.26.4" 2942 3284 source = "registry+https://github.com/rust-lang/crates.io-index" 2943 - checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 3285 + checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 2944 3286 dependencies = [ 2945 - "autocfg", 2946 - "bitflags", 3287 + "bitflags 1.3.2", 2947 3288 "cfg-if", 2948 3289 "libc", 2949 3290 ] ··· 2975 3318 ] 2976 3319 2977 3320 [[package]] 2978 - name = "normalize-path" 2979 - version = "0.2.0" 2980 - source = "registry+https://github.com/rust-lang/crates.io-index" 2981 - checksum = "cf22e319b2e3cb517350572e3b70c6822e0a520abfb5c78f690e829a73e8d9f2" 2982 - 2983 - [[package]] 2984 3321 name = "notify" 2985 - version = "5.1.0" 3322 + version = "6.1.1" 2986 3323 source = "registry+https://github.com/rust-lang/crates.io-index" 2987 - checksum = "58ea850aa68a06e48fdb069c0ec44d0d64c8dbffa49bf3b6f7f0a901fdea1ba9" 3324 + checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 2988 3325 dependencies = [ 2989 - "bitflags", 3326 + "bitflags 2.4.0", 2990 3327 "crossbeam-channel", 2991 3328 "filetime", 2992 3329 "fsevent-sys", 2993 3330 "inotify", 2994 3331 "kqueue", 2995 3332 "libc", 3333 + "log", 2996 3334 "mio", 2997 3335 "walkdir", 2998 - "windows-sys 0.42.0", 3336 + "windows-sys 0.48.0", 3337 + ] 3338 + 3339 + [[package]] 3340 + name = "ntapi" 3341 + version = "0.4.1" 3342 + source = "registry+https://github.com/rust-lang/crates.io-index" 3343 + checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3344 + dependencies = [ 3345 + "winapi", 2999 3346 ] 3000 3347 3001 3348 [[package]] ··· 3014 3353 3015 3354 [[package]] 3016 3355 name = "num-complex" 3017 - version = "0.4.3" 3356 + version = "0.4.4" 3018 3357 source = "registry+https://github.com/rust-lang/crates.io-index" 3019 - checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" 3358 + checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 3020 3359 dependencies = [ 3021 3360 "num-traits", 3022 3361 ] ··· 3055 3394 3056 3395 [[package]] 3057 3396 name = "num-traits" 3058 - version = "0.2.15" 3397 + version = "0.2.17" 3059 3398 source = "registry+https://github.com/rust-lang/crates.io-index" 3060 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 3399 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3061 3400 dependencies = [ 3062 3401 "autocfg", 3063 3402 "libm", 3064 - ] 3065 - 3066 - [[package]] 3067 - name = "num_cpus" 3068 - version = "1.15.0" 3069 - source = "registry+https://github.com/rust-lang/crates.io-index" 3070 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 3071 - dependencies = [ 3072 - "hermit-abi 0.2.6", 3073 - "libc", 3074 3403 ] 3075 3404 3076 3405 [[package]] ··· 3069 3418 source = "registry+https://github.com/rust-lang/crates.io-index" 3070 3419 checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 3071 3420 dependencies = [ 3072 - "num_enum_derive", 3421 + "num_enum_derive 0.5.11", 3422 + ] 3423 + 3424 + [[package]] 3425 + name = "num_enum" 3426 + version = "0.6.1" 3427 + source = "registry+https://github.com/rust-lang/crates.io-index" 3428 + checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" 3429 + dependencies = [ 3430 + "num_enum_derive 0.6.1", 3073 3431 ] 3074 3432 3075 3433 [[package]] ··· 3094 3434 ] 3095 3435 3096 3436 [[package]] 3097 - name = "numquant" 3098 - version = "0.2.0" 3437 + name = "num_enum_derive" 3438 + version = "0.6.1" 3099 3439 source = "registry+https://github.com/rust-lang/crates.io-index" 3100 - checksum = "54809e43d79aa532432c0d03c6adf62fdd96f2e152b90cef6cd9a316c3da4d99" 3440 + checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" 3441 + dependencies = [ 3442 + "proc-macro-crate", 3443 + "proc-macro2", 3444 + "quote", 3445 + "syn 2.0.38", 3446 + ] 3101 3447 3102 3448 [[package]] 3103 3449 name = "objc" ··· 3127 3461 ] 3128 3462 3129 3463 [[package]] 3464 + name = "objc-sys" 3465 + version = "0.2.0-beta.2" 3466 + source = "registry+https://github.com/rust-lang/crates.io-index" 3467 + checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7" 3468 + 3469 + [[package]] 3470 + name = "objc2" 3471 + version = "0.3.0-beta.3.patch-leaks.3" 3472 + source = "registry+https://github.com/rust-lang/crates.io-index" 3473 + checksum = "7e01640f9f2cb1220bbe80325e179e532cb3379ebcd1bf2279d703c19fe3a468" 3474 + dependencies = [ 3475 + "block2", 3476 + "objc-sys", 3477 + "objc2-encode", 3478 + ] 3479 + 3480 + [[package]] 3481 + name = "objc2-encode" 3482 + version = "2.0.0-pre.2" 3483 + source = "registry+https://github.com/rust-lang/crates.io-index" 3484 + checksum = "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512" 3485 + dependencies = [ 3486 + "objc-sys", 3487 + ] 3488 + 3489 + [[package]] 3130 3490 name = "objc_exception" 3131 3491 version = "0.1.2" 3132 3492 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3172 3480 3173 3481 [[package]] 3174 3482 name = "object" 3175 - version = "0.30.3" 3483 + version = "0.32.1" 3176 3484 source = "registry+https://github.com/rust-lang/crates.io-index" 3177 - checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 3485 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3178 3486 dependencies = [ 3179 3487 "memchr", 3180 3488 ] ··· 3204 3512 3205 3513 [[package]] 3206 3514 name = "once_cell" 3207 - version = "1.17.1" 3515 + version = "1.18.0" 3208 3516 source = "registry+https://github.com/rust-lang/crates.io-index" 3209 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 3517 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 3210 3518 3211 3519 [[package]] 3212 - name = "openssl-probe" 3213 - version = "0.1.5" 3520 + name = "option-ext" 3521 + version = "0.2.0" 3214 3522 source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3523 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3216 3524 3217 3525 [[package]] 3218 3526 name = "optional" ··· 3221 3529 checksum = "978aa494585d3ca4ad74929863093e87cac9790d81fe7aba2b3dc2890643a0fc" 3222 3530 3223 3531 [[package]] 3224 - name = "ordered-float" 3225 - version = "3.6.0" 3532 + name = "orbclient" 3533 + version = "0.3.46" 3226 3534 source = "registry+https://github.com/rust-lang/crates.io-index" 3227 - checksum = "13a384337e997e6860ffbaa83708b2ef329fd8c54cb67a5f64d421e0f943254f" 3535 + checksum = "8378ac0dfbd4e7895f2d2c1f1345cab3836910baf3a300b000d04250f0c8428f" 3536 + dependencies = [ 3537 + "redox_syscall 0.3.5", 3538 + ] 3539 + 3540 + [[package]] 3541 + name = "ordered-float" 3542 + version = "3.9.2" 3543 + source = "registry+https://github.com/rust-lang/crates.io-index" 3544 + checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc" 3228 3545 dependencies = [ 3229 3546 "num-traits", 3230 3547 ] ··· 3246 3545 3247 3546 [[package]] 3248 3547 name = "owned_ttf_parser" 3249 - version = "0.18.1" 3548 + version = "0.19.0" 3250 3549 source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "e25e9fb15717794fae58ab55c26e044103aad13186fbb625893f9a3bbcc24228" 3550 + checksum = "706de7e2214113d63a8238d1910463cfce781129a6f263d13fdb09ff64355ba4" 3252 3551 dependencies = [ 3253 3552 "ttf-parser", 3254 3553 ] 3255 3554 3256 3555 [[package]] 3257 3556 name = "parking" 3258 - version = "2.0.0" 3557 + version = "2.1.1" 3259 3558 source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 3261 - 3262 - [[package]] 3263 - name = "parking_lot" 3264 - version = "0.11.2" 3265 - source = "registry+https://github.com/rust-lang/crates.io-index" 3266 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 3267 - dependencies = [ 3268 - "instant", 3269 - "lock_api", 3270 - "parking_lot_core 0.8.6", 3271 - ] 3559 + checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" 3272 3560 3273 3561 [[package]] 3274 3562 name = "parking_lot" ··· 3266 3576 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3267 3577 dependencies = [ 3268 3578 "lock_api", 3269 - "parking_lot_core 0.9.7", 3579 + "parking_lot_core", 3270 3580 ] 3271 3581 3272 3582 [[package]] 3273 3583 name = "parking_lot_core" 3274 - version = "0.8.6" 3584 + version = "0.9.8" 3275 3585 source = "registry+https://github.com/rust-lang/crates.io-index" 3276 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 3277 - dependencies = [ 3278 - "cfg-if", 3279 - "instant", 3280 - "libc", 3281 - "redox_syscall", 3282 - "smallvec", 3283 - "winapi", 3284 - ] 3285 - 3286 - [[package]] 3287 - name = "parking_lot_core" 3288 - version = "0.9.7" 3289 - source = "registry+https://github.com/rust-lang/crates.io-index" 3290 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 3586 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 3291 3587 dependencies = [ 3292 3588 "cfg-if", 3293 3589 "libc", 3294 - "redox_syscall", 3590 + "redox_syscall 0.3.5", 3295 3591 "smallvec", 3296 - "windows-sys 0.45.0", 3592 + "windows-targets 0.48.5", 3297 3593 ] 3298 3594 3299 3595 [[package]] 3300 3596 name = "parry2d" 3301 - version = "0.13.3" 3597 + version = "0.13.5" 3302 3598 source = "registry+https://github.com/rust-lang/crates.io-index" 3303 - checksum = "49c6edd297a40754e762344dbeb454bdfb51472f03280473065b9b0898008ce3" 3599 + checksum = "104ae65232e20477a98f9f1e75ca9850eae24a2ea846a2b1a0af03ad752136ce" 3304 3600 dependencies = [ 3305 3601 "approx", 3306 3602 "arrayvec", 3307 - "bitflags", 3603 + "bitflags 1.3.2", 3308 3604 "downcast-rs", 3309 3605 "either", 3310 - "indexmap", 3606 + "indexmap 1.9.3", 3311 3607 "nalgebra", 3312 3608 "num-derive", 3313 3609 "num-traits", ··· 3306 3630 3307 3631 [[package]] 3308 3632 name = "paste" 3309 - version = "1.0.12" 3633 + version = "1.0.14" 3310 3634 source = "registry+https://github.com/rust-lang/crates.io-index" 3311 - checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 3635 + checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 3636 + 3637 + [[package]] 3638 + name = "path-absolutize" 3639 + version = "3.1.1" 3640 + source = "registry+https://github.com/rust-lang/crates.io-index" 3641 + checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" 3642 + dependencies = [ 3643 + "path-dedot", 3644 + ] 3645 + 3646 + [[package]] 3647 + name = "path-dedot" 3648 + version = "3.1.1" 3649 + source = "registry+https://github.com/rust-lang/crates.io-index" 3650 + checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" 3651 + dependencies = [ 3652 + "once_cell", 3653 + ] 3312 3654 3313 3655 [[package]] 3314 3656 name = "peeking_take_while" ··· 3336 3642 3337 3643 [[package]] 3338 3644 name = "peg" 3339 - version = "0.8.1" 3645 + version = "0.8.2" 3340 3646 source = "registry+https://github.com/rust-lang/crates.io-index" 3341 - checksum = "a07f2cafdc3babeebc087e499118343442b742cc7c31b4d054682cc598508554" 3647 + checksum = "400bcab7d219c38abf8bd7cc2054eb9bbbd4312d66f6a5557d572a203f646f61" 3342 3648 dependencies = [ 3343 3649 "peg-macros", 3344 3650 "peg-runtime", ··· 3346 3652 3347 3653 [[package]] 3348 3654 name = "peg-macros" 3349 - version = "0.8.1" 3655 + version = "0.8.2" 3350 3656 source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "4a90084dc05cf0428428e3d12399f39faad19b0909f64fb9170c9fdd6d9cd49b" 3657 + checksum = "46e61cce859b76d19090f62da50a9fe92bab7c2a5f09e183763559a2ac392c90" 3352 3658 dependencies = [ 3353 3659 "peg-runtime", 3354 3660 "proc-macro2", ··· 3357 3663 3358 3664 [[package]] 3359 3665 name = "peg-runtime" 3360 - version = "0.8.1" 3666 + version = "0.8.2" 3361 3667 source = "registry+https://github.com/rust-lang/crates.io-index" 3362 - checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739" 3363 - 3364 - [[package]] 3365 - name = "pem" 3366 - version = "1.1.1" 3367 - source = "registry+https://github.com/rust-lang/crates.io-index" 3368 - checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 3369 - dependencies = [ 3370 - "base64 0.13.1", 3371 - ] 3668 + checksum = "36bae92c60fa2398ce4678b98b2c4b5a7c61099961ca1fa305aec04a9ad28922" 3372 3669 3373 3670 [[package]] 3374 3671 name = "percent-encoding" 3375 - version = "2.2.0" 3672 + version = "2.3.0" 3376 3673 source = "registry+https://github.com/rust-lang/crates.io-index" 3377 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 3674 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 3378 3675 3379 3676 [[package]] 3380 3677 name = "petgraph" 3381 - version = "0.6.3" 3678 + version = "0.6.4" 3382 3679 source = "registry+https://github.com/rust-lang/crates.io-index" 3383 - checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 3680 + checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 3384 3681 dependencies = [ 3385 3682 "fixedbitset", 3386 - "indexmap", 3387 - ] 3388 - 3389 - [[package]] 3390 - name = "petitset" 3391 - version = "0.2.1" 3392 - source = "registry+https://github.com/rust-lang/crates.io-index" 3393 - checksum = "6b1a50d821a2526af6d5756c23c68e453532a986e361a3e12c9cc7fe61d862ac" 3394 - dependencies = [ 3395 - "serde", 3683 + "indexmap 2.0.2", 3396 3684 ] 3397 3685 3398 3686 [[package]] 3399 3687 name = "phf" 3400 - version = "0.11.1" 3688 + version = "0.11.2" 3401 3689 source = "registry+https://github.com/rust-lang/crates.io-index" 3402 - checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 3690 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 3403 3691 dependencies = [ 3404 3692 "phf_macros", 3405 3693 "phf_shared", ··· 3389 3713 3390 3714 [[package]] 3391 3715 name = "phf_generator" 3392 - version = "0.11.1" 3716 + version = "0.11.2" 3393 3717 source = "registry+https://github.com/rust-lang/crates.io-index" 3394 - checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 3718 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 3395 3719 dependencies = [ 3396 3720 "phf_shared", 3397 3721 "rand 0.8.5", ··· 3399 3723 3400 3724 [[package]] 3401 3725 name = "phf_macros" 3402 - version = "0.11.1" 3726 + version = "0.11.2" 3403 3727 source = "registry+https://github.com/rust-lang/crates.io-index" 3404 - checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" 3728 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 3405 3729 dependencies = [ 3406 3730 "phf_generator", 3407 3731 "phf_shared", 3408 3732 "proc-macro2", 3409 3733 "quote", 3410 - "syn 1.0.109", 3734 + "syn 2.0.38", 3411 3735 ] 3412 3736 3413 3737 [[package]] 3414 3738 name = "phf_shared" 3415 - version = "0.11.1" 3739 + version = "0.11.2" 3416 3740 source = "registry+https://github.com/rust-lang/crates.io-index" 3417 - checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 3741 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 3418 3742 dependencies = [ 3419 3743 "siphasher", 3420 3744 ] 3421 3745 3422 3746 [[package]] 3423 - name = "pin-project" 3424 - version = "1.0.12" 3425 - source = "registry+https://github.com/rust-lang/crates.io-index" 3426 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 3427 - dependencies = [ 3428 - "pin-project-internal", 3429 - ] 3430 - 3431 - [[package]] 3432 - name = "pin-project-internal" 3433 - version = "1.0.12" 3434 - source = "registry+https://github.com/rust-lang/crates.io-index" 3435 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 3436 - dependencies = [ 3437 - "proc-macro2", 3438 - "quote", 3439 - "syn 1.0.109", 3440 - ] 3441 - 3442 - [[package]] 3443 3747 name = "pin-project-lite" 3444 - version = "0.2.9" 3748 + version = "0.2.13" 3445 3749 source = "registry+https://github.com/rust-lang/crates.io-index" 3446 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3447 - 3448 - [[package]] 3449 - name = "pin-utils" 3450 - version = "0.1.0" 3451 - source = "registry+https://github.com/rust-lang/crates.io-index" 3452 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3453 - 3454 - [[package]] 3455 - name = "ping-rs" 3456 - version = "0.1.2" 3457 - source = "registry+https://github.com/rust-lang/crates.io-index" 3458 - checksum = "d873f038f84371f9c7fa13f6afea4d5f1fbcd5070ba8eb7af2a6d41c768eff8b" 3459 - dependencies = [ 3460 - "futures", 3461 - "mio", 3462 - "paste", 3463 - "socket2", 3464 - "windows 0.43.0", 3465 - ] 3750 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 3466 3751 3467 3752 [[package]] 3468 3753 name = "pkg-config" 3469 - version = "0.3.26" 3754 + version = "0.3.27" 3470 3755 source = "registry+https://github.com/rust-lang/crates.io-index" 3471 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 3756 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3472 3757 3473 3758 [[package]] 3474 3759 name = "png" 3475 - version = "0.17.7" 3760 + version = "0.17.10" 3476 3761 source = "registry+https://github.com/rust-lang/crates.io-index" 3477 - checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" 3762 + checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3478 3763 dependencies = [ 3479 - "bitflags", 3764 + "bitflags 1.3.2", 3480 3765 "crc32fast", 3766 + "fdeflate", 3481 3767 "flate2", 3482 3768 "miniz_oxide", 3483 - ] 3484 - 3485 - [[package]] 3486 - name = "polling" 3487 - version = "2.6.0" 3488 - source = "registry+https://github.com/rust-lang/crates.io-index" 3489 - checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" 3490 - dependencies = [ 3491 - "autocfg", 3492 - "bitflags", 3493 - "cfg-if", 3494 - "concurrent-queue 2.1.0", 3495 - "libc", 3496 - "log", 3497 - "pin-project-lite", 3498 - "windows-sys 0.45.0", 3499 - ] 3500 - 3501 - [[package]] 3502 - name = "postcard" 3503 - version = "1.0.4" 3504 - source = "registry+https://github.com/rust-lang/crates.io-index" 3505 - checksum = "cfa512cd0d087cc9f99ad30a1bf64795b67871edbead083ffc3a4dfafa59aa00" 3506 - dependencies = [ 3507 - "cobs", 3508 - "heapless", 3509 - "serde", 3510 3769 ] 3511 3770 3512 3771 [[package]] ··· 3460 3849 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3461 3850 3462 3851 [[package]] 3463 - name = "pretty-type-name" 3464 - version = "1.0.1" 3465 - source = "registry+https://github.com/rust-lang/crates.io-index" 3466 - checksum = "f0f73cdaf19b52e6143685c3606206e114a4dfa969d6b14ec3894c88eb38bd4b" 3467 - 3468 - [[package]] 3469 3852 name = "proc-macro-crate" 3470 3853 version = "1.3.1" 3471 3854 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3471 3866 3472 3867 [[package]] 3473 3868 name = "proc-macro2" 3474 - version = "1.0.55" 3869 + version = "1.0.69" 3475 3870 source = "registry+https://github.com/rust-lang/crates.io-index" 3476 - checksum = "1d0dd4be24fcdcfeaa12a432d588dc59bbad6cad3510c67e74a2b6b2fc950564" 3871 + checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 3477 3872 dependencies = [ 3478 3873 "unicode-ident", 3479 3874 ] 3480 3875 3481 3876 [[package]] 3482 3877 name = "profiling" 3483 - version = "1.0.7" 3878 + version = "1.0.11" 3484 3879 source = "registry+https://github.com/rust-lang/crates.io-index" 3485 - checksum = "74605f360ce573babfe43964cbe520294dcb081afbf8c108fc6e23036b4da2df" 3880 + checksum = "f89dff0959d98c9758c88826cc002e2c3d0b9dfac4139711d1f30de442f1139b" 3486 3881 3487 3882 [[package]] 3488 3883 name = "puffin" 3489 - version = "0.14.3" 3884 + version = "0.16.0" 3490 3885 source = "registry+https://github.com/rust-lang/crates.io-index" 3491 - checksum = "a7b2c7a01f569fb03e2ff1f5376537f294001447bd23ce75ca51054fcd223fe4" 3886 + checksum = "76425abd4e1a0ad4bd6995dd974b52f414fca9974171df8e3708b3e660d05a21" 3492 3887 dependencies = [ 3493 3888 "anyhow", 3494 - "bincode", 3495 3889 "byteorder", 3890 + "cfg-if", 3496 3891 "instant", 3497 3892 "once_cell", 3498 - "parking_lot 0.12.1", 3499 - "ruzstd", 3500 - "serde", 3501 - "zstd", 3502 - ] 3503 - 3504 - [[package]] 3505 - name = "puffin_egui" 3506 - version = "0.19.2" 3507 - source = "registry+https://github.com/rust-lang/crates.io-index" 3508 - checksum = "ba98235ecff9f174793e135d2c6860f917cc7cd419a630b9978f1ab5d6026a3c" 3509 - dependencies = [ 3510 - "egui", 3511 - "indexmap", 3512 - "instant", 3513 - "natord", 3514 - "once_cell", 3515 - "puffin", 3516 - "time", 3517 - "vec1", 3518 - ] 3519 - 3520 - [[package]] 3521 - name = "quinn" 3522 - version = "0.9.3" 3523 - source = "registry+https://github.com/rust-lang/crates.io-index" 3524 - checksum = "445cbfe2382fa023c4f2f3c7e1c95c03dcc1df2bf23cebcb2b13e1402c4394d1" 3525 - dependencies = [ 3526 - "bytes", 3527 - "pin-project-lite", 3528 - "quinn-proto", 3529 - "quinn-udp", 3530 - "rustc-hash", 3531 - "rustls", 3532 - "thiserror", 3533 - "tokio", 3534 - "tracing", 3535 - "webpki", 3536 - ] 3537 - 3538 - [[package]] 3539 - name = "quinn-proto" 3540 - version = "0.9.3" 3541 - source = "registry+https://github.com/rust-lang/crates.io-index" 3542 - checksum = "67c10f662eee9c94ddd7135043e544f3c82fa839a1e7b865911331961b53186c" 3543 - dependencies = [ 3544 - "bytes", 3545 - "rand 0.8.5", 3546 - "ring", 3547 - "rustc-hash", 3548 - "rustls", 3549 - "rustls-native-certs", 3550 - "slab", 3551 - "thiserror", 3552 - "tinyvec", 3553 - "tracing", 3554 - "webpki", 3555 - ] 3556 - 3557 - [[package]] 3558 - name = "quinn-udp" 3559 - version = "0.3.2" 3560 - source = "registry+https://github.com/rust-lang/crates.io-index" 3561 - checksum = "641538578b21f5e5c8ea733b736895576d0fe329bb883b937db6f4d163dbaaf4" 3562 - dependencies = [ 3563 - "libc", 3564 - "quinn-proto", 3565 - "socket2", 3566 - "tracing", 3567 - "windows-sys 0.42.0", 3568 - ] 3569 - 3570 - [[package]] 3571 - name = "quinn_runtime_bevy" 3572 - version = "0.1.0" 3573 - source = "registry+https://github.com/rust-lang/crates.io-index" 3574 - checksum = "0a4d0c40761a7f14497d4ad43c3887fff819aff1a68d6d731377d98b2106e3be" 3575 - dependencies = [ 3576 - "async-executor", 3577 - "async-io", 3578 - "bevy_tasks", 3579 - "futures-lite", 3580 - "pin-project", 3581 - "quinn", 3582 - "quinn-proto", 3583 - "quinn-udp", 3584 3893 ] 3585 3894 3586 3895 [[package]] 3587 3896 name = "quote" 3588 - version = "1.0.26" 3897 + version = "1.0.33" 3589 3898 source = "registry+https://github.com/rust-lang/crates.io-index" 3590 - checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 3899 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3591 3900 dependencies = [ 3592 3901 "proc-macro2", 3593 3902 ] 3903 + 3904 + [[package]] 3905 + name = "radium" 3906 + version = "0.7.0" 3907 + source = "registry+https://github.com/rust-lang/crates.io-index" 3908 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 3594 3909 3595 3910 [[package]] 3596 3911 name = "radsort" ··· 3577 4052 source = "registry+https://github.com/rust-lang/crates.io-index" 3578 4053 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3579 4054 dependencies = [ 3580 - "getrandom 0.2.8", 4055 + "getrandom 0.2.10", 3581 4056 ] 3582 4057 3583 4058 [[package]] ··· 3613 4088 "approx", 3614 4089 "arrayvec", 3615 4090 "bit-vec", 3616 - "bitflags", 4091 + "bitflags 1.3.2", 3617 4092 "crossbeam", 3618 4093 "downcast-rs", 3619 - "indexmap", 4094 + "indexmap 1.9.3", 3620 4095 "nalgebra", 3621 4096 "num-derive", 3622 4097 "num-traits", 3623 4098 "parry2d", 3624 4099 "rustc-hash", 3625 4100 "simba", 3626 - ] 3627 - 3628 - [[package]] 3629 - name = "raw-window-handle" 3630 - version = "0.4.3" 3631 - source = "registry+https://github.com/rust-lang/crates.io-index" 3632 - checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" 3633 - dependencies = [ 3634 - "cty", 3635 4101 ] 3636 4102 3637 4103 [[package]] ··· 3638 4122 checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" 3639 4123 3640 4124 [[package]] 3641 - name = "rayon" 3642 - version = "1.7.0" 3643 - source = "registry+https://github.com/rust-lang/crates.io-index" 3644 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 3645 - dependencies = [ 3646 - "either", 3647 - "rayon-core", 3648 - ] 3649 - 3650 - [[package]] 3651 - name = "rayon-core" 3652 - version = "1.11.0" 3653 - source = "registry+https://github.com/rust-lang/crates.io-index" 3654 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 3655 - dependencies = [ 3656 - "crossbeam-channel", 3657 - "crossbeam-deque", 3658 - "crossbeam-utils", 3659 - "num_cpus", 3660 - ] 3661 - 3662 - [[package]] 3663 - name = "rcgen" 3664 - version = "0.10.0" 3665 - source = "registry+https://github.com/rust-lang/crates.io-index" 3666 - checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" 3667 - dependencies = [ 3668 - "pem", 3669 - "ring", 3670 - "time", 3671 - "yasna", 3672 - ] 3673 - 3674 - [[package]] 3675 4125 name = "rectangle-pack" 3676 4126 version = "0.4.2" 3677 4127 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3649 4167 source = "registry+https://github.com/rust-lang/crates.io-index" 3650 4168 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3651 4169 dependencies = [ 3652 - "bitflags", 4170 + "bitflags 1.3.2", 4171 + ] 4172 + 4173 + [[package]] 4174 + name = "redox_syscall" 4175 + version = "0.3.5" 4176 + source = "registry+https://github.com/rust-lang/crates.io-index" 4177 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 4178 + dependencies = [ 4179 + "bitflags 1.3.2", 3653 4180 ] 3654 4181 3655 4182 [[package]] ··· 3667 4176 source = "registry+https://github.com/rust-lang/crates.io-index" 3668 4177 checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3669 4178 dependencies = [ 3670 - "getrandom 0.2.8", 3671 - "redox_syscall", 4179 + "getrandom 0.2.10", 4180 + "redox_syscall 0.2.16", 3672 4181 "thiserror", 3673 4182 ] 3674 4183 3675 4184 [[package]] 3676 4185 name = "regex" 3677 - version = "1.7.3" 4186 + version = "1.10.1" 3678 4187 source = "registry+https://github.com/rust-lang/crates.io-index" 3679 - checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 4188 + checksum = "aaac441002f822bc9705a681810a4dd2963094b9ca0ddc41cb963a4c189189ea" 3680 4189 dependencies = [ 3681 4190 "aho-corasick", 3682 4191 "memchr", 3683 - "regex-syntax", 4192 + "regex-automata 0.4.2", 4193 + "regex-syntax 0.8.2", 3684 4194 ] 3685 4195 3686 4196 [[package]] ··· 3690 4198 source = "registry+https://github.com/rust-lang/crates.io-index" 3691 4199 checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3692 4200 dependencies = [ 3693 - "regex-syntax", 4201 + "regex-syntax 0.6.29", 4202 + ] 4203 + 4204 + [[package]] 4205 + name = "regex-automata" 4206 + version = "0.4.2" 4207 + source = "registry+https://github.com/rust-lang/crates.io-index" 4208 + checksum = "5011c7e263a695dc8ca064cddb722af1be54e517a280b12a5356f98366899e5d" 4209 + dependencies = [ 4210 + "aho-corasick", 4211 + "memchr", 4212 + "regex-syntax 0.8.2", 3694 4213 ] 3695 4214 3696 4215 [[package]] ··· 3711 4208 checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3712 4209 3713 4210 [[package]] 3714 - name = "renderdoc-sys" 3715 - version = "0.7.1" 4211 + name = "regex-syntax" 4212 + version = "0.8.2" 3716 4213 source = "registry+https://github.com/rust-lang/crates.io-index" 3717 - checksum = "f1382d1f0a252c4bf97dc20d979a2fdd05b024acd7c2ed0f7595d7817666a157" 4214 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 4215 + 4216 + [[package]] 4217 + name = "renderdoc-sys" 4218 + version = "1.0.0" 4219 + source = "registry+https://github.com/rust-lang/crates.io-index" 4220 + checksum = "216080ab382b992234dda86873c18d4c48358f5cfcb70fd693d7f6f2131b628b" 3718 4221 3719 4222 [[package]] 3720 4223 name = "ring" ··· 3731 4222 "cc", 3732 4223 "libc", 3733 4224 "once_cell", 3734 - "spin 0.5.2", 4225 + "spin", 3735 4226 "untrusted", 3736 4227 "web-sys", 3737 4228 "winapi", ··· 3754 4245 3755 4246 [[package]] 3756 4247 name = "ron" 3757 - version = "0.8.0" 4248 + version = "0.8.1" 3758 4249 source = "registry+https://github.com/rust-lang/crates.io-index" 3759 - checksum = "300a51053b1cb55c80b7a9fde4120726ddf25ca241a1cbb926626f62fb136bff" 4250 + checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 3760 4251 dependencies = [ 3761 - "base64 0.13.1", 3762 - "bitflags", 4252 + "base64", 4253 + "bitflags 2.4.0", 3763 4254 "serde", 4255 + "serde_derive", 3764 4256 ] 3765 4257 3766 4258 [[package]] 3767 4259 name = "rustc-demangle" 3768 - version = "0.1.22" 4260 + version = "0.1.23" 3769 4261 source = "registry+https://github.com/rust-lang/crates.io-index" 3770 - checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b" 4262 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 3771 4263 3772 4264 [[package]] 3773 4265 name = "rustc-hash" ··· 3777 4267 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3778 4268 3779 4269 [[package]] 3780 - name = "rustc_version" 3781 - version = "0.4.0" 3782 - source = "registry+https://github.com/rust-lang/crates.io-index" 3783 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3784 - dependencies = [ 3785 - "semver", 3786 - ] 3787 - 3788 - [[package]] 3789 - name = "rustix" 3790 - version = "0.37.6" 3791 - source = "registry+https://github.com/rust-lang/crates.io-index" 3792 - checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" 3793 - dependencies = [ 3794 - "bitflags", 3795 - "errno", 3796 - "io-lifetimes", 3797 - "libc", 3798 - "linux-raw-sys", 3799 - "windows-sys 0.45.0", 3800 - ] 3801 - 3802 - [[package]] 3803 4270 name = "rustls" 3804 - version = "0.20.8" 4271 + version = "0.21.7" 3805 4272 source = "registry+https://github.com/rust-lang/crates.io-index" 3806 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 4273 + checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 3807 4274 dependencies = [ 3808 4275 "log", 3809 4276 "ring", 4277 + "rustls-webpki", 3810 4278 "sct", 3811 - "webpki", 3812 4279 ] 3813 4280 3814 4281 [[package]] 3815 - name = "rustls-native-certs" 3816 - version = "0.6.2" 4282 + name = "rustls-webpki" 4283 + version = "0.101.6" 3817 4284 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 4285 + checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" 3819 4286 dependencies = [ 3820 - "openssl-probe", 3821 - "rustls-pemfile", 3822 - "schannel", 3823 - "security-framework", 3824 - ] 3825 - 3826 - [[package]] 3827 - name = "rustls-pemfile" 3828 - version = "1.0.2" 3829 - source = "registry+https://github.com/rust-lang/crates.io-index" 3830 - checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 3831 - dependencies = [ 3832 - "base64 0.21.0", 3833 - ] 3834 - 3835 - [[package]] 3836 - name = "ruzstd" 3837 - version = "0.3.1" 3838 - source = "registry+https://github.com/rust-lang/crates.io-index" 3839 - checksum = "9a15e661f0f9dac21f3494fe5d23a6338c0ac116a2d22c2b63010acd89467ffe" 3840 - dependencies = [ 3841 - "byteorder", 3842 - "thiserror", 3843 - "twox-hash", 4287 + "ring", 4288 + "untrusted", 3844 4289 ] 3845 4290 3846 4291 [[package]] 3847 4292 name = "ryu" 3848 - version = "1.0.13" 4293 + version = "1.0.15" 3849 4294 source = "registry+https://github.com/rust-lang/crates.io-index" 3850 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 4295 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3851 4296 3852 4297 [[package]] 3853 4298 name = "safe_arch" 3854 - version = "0.6.0" 4299 + version = "0.7.1" 3855 4300 source = "registry+https://github.com/rust-lang/crates.io-index" 3856 - checksum = "794821e4ccb0d9f979512f9c1973480123f9bd62a90d74ab0f9426fcf8f4a529" 4301 + checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354" 3857 4302 dependencies = [ 3858 4303 "bytemuck", 3859 4304 ] ··· 3823 4358 ] 3824 4359 3825 4360 [[package]] 3826 - name = "schannel" 3827 - version = "0.1.21" 3828 - source = "registry+https://github.com/rust-lang/crates.io-index" 3829 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 3830 - dependencies = [ 3831 - "windows-sys 0.42.0", 3832 - ] 3833 - 3834 - [[package]] 3835 4361 name = "scopeguard" 3836 - version = "1.1.0" 4362 + version = "1.2.0" 3837 4363 source = "registry+https://github.com/rust-lang/crates.io-index" 3838 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 4364 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3839 4365 3840 4366 [[package]] 3841 4367 name = "sct" ··· 3839 4383 ] 3840 4384 3841 4385 [[package]] 3842 - name = "security-framework" 3843 - version = "2.8.2" 3844 - source = "registry+https://github.com/rust-lang/crates.io-index" 3845 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 3846 - dependencies = [ 3847 - "bitflags", 3848 - "core-foundation", 3849 - "core-foundation-sys 0.8.3", 3850 - "libc", 3851 - "security-framework-sys", 3852 - ] 3853 - 3854 - [[package]] 3855 - name = "security-framework-sys" 3856 - version = "2.8.0" 3857 - source = "registry+https://github.com/rust-lang/crates.io-index" 3858 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 3859 - dependencies = [ 3860 - "core-foundation-sys 0.8.3", 3861 - "libc", 3862 - ] 3863 - 3864 - [[package]] 3865 4386 name = "self_cell" 3866 4387 version = "0.10.2" 3867 4388 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3846 4413 3847 4414 [[package]] 3848 4415 name = "semver" 3849 - version = "1.0.17" 4416 + version = "1.0.20" 3850 4417 source = "registry+https://github.com/rust-lang/crates.io-index" 3851 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 4418 + checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 4419 + dependencies = [ 4420 + "serde", 4421 + ] 3852 4422 3853 4423 [[package]] 3854 4424 name = "serde" 3855 - version = "1.0.159" 4425 + version = "1.0.189" 3856 4426 source = "registry+https://github.com/rust-lang/crates.io-index" 3857 - checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" 4427 + checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537" 3858 4428 dependencies = [ 3859 4429 "serde_derive", 3860 4430 ] 3861 4431 3862 4432 [[package]] 3863 4433 name = "serde_derive" 3864 - version = "1.0.159" 4434 + version = "1.0.189" 3865 4435 source = "registry+https://github.com/rust-lang/crates.io-index" 3866 - checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" 4436 + checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5" 3867 4437 dependencies = [ 3868 4438 "proc-macro2", 3869 4439 "quote", 3870 - "syn 2.0.13", 4440 + "syn 2.0.38", 3871 4441 ] 3872 4442 3873 4443 [[package]] 3874 4444 name = "serde_json" 3875 - version = "1.0.95" 4445 + version = "1.0.107" 3876 4446 source = "registry+https://github.com/rust-lang/crates.io-index" 3877 - checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" 4447 + checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 3878 4448 dependencies = [ 3879 4449 "itoa", 3880 4450 "ryu", ··· 3886 4450 3887 4451 [[package]] 3888 4452 name = "serde_yaml" 3889 - version = "0.9.19" 4453 + version = "0.9.25" 3890 4454 source = "registry+https://github.com/rust-lang/crates.io-index" 3891 - checksum = "f82e6c8c047aa50a7328632d067bcae6ef38772a79e28daf32f735e0e4f3dd10" 4455 + checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" 3892 4456 dependencies = [ 3893 - "indexmap", 4457 + "indexmap 2.0.2", 3894 4458 "itoa", 3895 4459 "ryu", 3896 4460 "serde", ··· 3898 4462 ] 3899 4463 3900 4464 [[package]] 3901 - name = "sha1_smol" 3902 - version = "1.0.0" 4465 + name = "sha2" 4466 + version = "0.10.8" 3903 4467 source = "registry+https://github.com/rust-lang/crates.io-index" 3904 - checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 4468 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 4469 + dependencies = [ 4470 + "cfg-if", 4471 + "cpufeatures", 4472 + "digest", 4473 + ] 3905 4474 3906 4475 [[package]] 3907 4476 name = "sharded-slab" 3908 - version = "0.1.4" 4477 + version = "0.1.7" 3909 4478 source = "registry+https://github.com/rust-lang/crates.io-index" 3910 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 4479 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3911 4480 dependencies = [ 3912 4481 "lazy_static", 3913 4482 ] 3914 4483 3915 4484 [[package]] 3916 - name = "shlex" 3917 - version = "1.1.0" 4485 + name = "shiftnanigans" 4486 + version = "0.3.3" 3918 4487 source = "registry+https://github.com/rust-lang/crates.io-index" 3919 - checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" 4488 + checksum = "9635466532d454fa020acbb12f629f1fc02fc9b4d5b39cc72ca478be37e314bc" 4489 + dependencies = [ 4490 + "bitvec", 4491 + "fastrand 1.9.0", 4492 + "itertools", 4493 + "log", 4494 + "nohash-hasher", 4495 + ] 4496 + 4497 + [[package]] 4498 + name = "shlex" 4499 + version = "1.2.0" 4500 + source = "registry+https://github.com/rust-lang/crates.io-index" 4501 + checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 3920 4502 3921 4503 [[package]] 3922 4504 name = "simba" 3923 - version = "0.8.0" 4505 + version = "0.8.1" 3924 4506 source = "registry+https://github.com/rust-lang/crates.io-index" 3925 - checksum = "50582927ed6f77e4ac020c057f37a268fc6aebc29225050365aacbb9deeeddc4" 4507 + checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae" 3926 4508 dependencies = [ 3927 4509 "approx", 3928 4510 "libm", ··· 3951 4497 ] 3952 4498 3953 4499 [[package]] 3954 - name = "siphasher" 3955 - version = "0.3.10" 4500 + name = "simd-adler32" 4501 + version = "0.3.7" 3956 4502 source = "registry+https://github.com/rust-lang/crates.io-index" 3957 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 4503 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 4504 + 4505 + [[package]] 4506 + name = "siphasher" 4507 + version = "0.3.11" 4508 + source = "registry+https://github.com/rust-lang/crates.io-index" 4509 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3958 4510 3959 4511 [[package]] 3960 4512 name = "slab" 3961 - version = "0.4.8" 4513 + version = "0.4.9" 3962 4514 source = "registry+https://github.com/rust-lang/crates.io-index" 3963 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 4515 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 3964 4516 dependencies = [ 3965 4517 "autocfg", 3966 4518 ] ··· 3982 4522 3983 4523 [[package]] 3984 4524 name = "smallvec" 3985 - version = "1.10.0" 4525 + version = "1.11.1" 3986 4526 source = "registry+https://github.com/rust-lang/crates.io-index" 3987 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 4527 + checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 3988 4528 dependencies = [ 3989 4529 "serde", 3990 4530 ] 3991 4531 3992 4532 [[package]] 3993 - name = "socket2" 3994 - version = "0.4.9" 4533 + name = "smol_str" 4534 + version = "0.2.0" 3995 4535 source = "registry+https://github.com/rust-lang/crates.io-index" 3996 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 4536 + checksum = "74212e6bbe9a4352329b2f68ba3130c15a3f26fe88ff22dbdc6cdd58fa85e99c" 3997 4537 dependencies = [ 3998 - "libc", 3999 - "winapi", 4538 + "serde", 4000 4539 ] 4001 4540 4002 4541 [[package]] 4003 4542 name = "spade" 4004 - version = "2.1.0" 4543 + version = "2.2.0" 4005 4544 source = "registry+https://github.com/rust-lang/crates.io-index" 4006 - checksum = "1190e0e8f4eb17fc3dbb2d20e1142676e56aaac3daede39f64a3302d687b80f3" 4545 + checksum = "88e65803986868d2372c582007c39ba89936a36ea5f236bf7a7728dc258f04f9" 4007 4546 dependencies = [ 4008 4547 "num-traits", 4009 4548 "optional", ··· 4017 4558 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4018 4559 4019 4560 [[package]] 4020 - name = "spin" 4021 - version = "0.9.7" 4022 - source = "registry+https://github.com/rust-lang/crates.io-index" 4023 - checksum = "c0959fd6f767df20b231736396e4f602171e00d95205676286e79d4a4eb67bef" 4024 - dependencies = [ 4025 - "lock_api", 4026 - ] 4027 - 4028 - [[package]] 4029 - name = "spin_sleep" 4030 - version = "1.1.1" 4031 - source = "registry+https://github.com/rust-lang/crates.io-index" 4032 - checksum = "cafa7900db085f4354dbc7025e25d7a839a14360ea13b5fc4fd717f2d3b23134" 4033 - dependencies = [ 4034 - "once_cell", 4035 - "winapi", 4036 - ] 4037 - 4038 - [[package]] 4039 4561 name = "spirv" 4040 4562 version = "0.2.0+1.5.4" 4041 4563 source = "registry+https://github.com/rust-lang/crates.io-index" 4042 4564 checksum = "246bfa38fe3db3f1dfc8ca5a2cdeb7348c78be2112740cc0ec8ef18b6d94f830" 4043 4565 dependencies = [ 4044 - "bitflags", 4566 + "bitflags 1.3.2", 4045 4567 "num-traits", 4046 4568 ] 4047 4569 4048 4570 [[package]] 4049 - name = "stable_deref_trait" 4050 - version = "1.2.0" 4571 + name = "sptr" 4572 + version = "0.3.2" 4051 4573 source = "registry+https://github.com/rust-lang/crates.io-index" 4052 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 4574 + checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a" 4053 4575 4054 4576 [[package]] 4055 4577 name = "static_assertions" ··· 4043 4603 version = "1.0.6" 4044 4604 source = "registry+https://github.com/rust-lang/crates.io-index" 4045 4605 checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 4046 - 4047 - [[package]] 4048 - name = "strsim" 4049 - version = "0.10.0" 4050 - source = "registry+https://github.com/rust-lang/crates.io-index" 4051 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4052 4606 4053 4607 [[package]] 4054 4608 name = "svg_fmt" ··· 4061 4627 4062 4628 [[package]] 4063 4629 name = "symphonia" 4064 - version = "0.5.2" 4630 + version = "0.5.3" 4065 4631 source = "registry+https://github.com/rust-lang/crates.io-index" 4066 - checksum = "3671dd6f64f4f9d5c87179525054cfc1f60de23ba1f193bd6ceab812737403f1" 4632 + checksum = "62e48dba70095f265fdb269b99619b95d04c89e619538138383e63310b14d941" 4067 4633 dependencies = [ 4068 4634 "lazy_static", 4069 4635 "symphonia-codec-vorbis", ··· 4074 4640 4075 4641 [[package]] 4076 4642 name = "symphonia-codec-vorbis" 4077 - version = "0.5.2" 4643 + version = "0.5.3" 4078 4644 source = "registry+https://github.com/rust-lang/crates.io-index" 4079 - checksum = "7dfed6f7b6bfa21d7cef1acefc8eae5db80df1608a1aca91871b07cbd28d7b74" 4645 + checksum = "3953397e3506aa01350c4205817e4f95b58d476877a42f0458d07b665749e203" 4080 4646 dependencies = [ 4081 4647 "log", 4082 4648 "symphonia-core", ··· 4085 4651 4086 4652 [[package]] 4087 4653 name = "symphonia-core" 4088 - version = "0.5.2" 4654 + version = "0.5.3" 4089 4655 source = "registry+https://github.com/rust-lang/crates.io-index" 4090 - checksum = "6b9567e2d8a5f866b2f94f5d366d811e0c6826babcff6d37de9e1a6690d38869" 4656 + checksum = "f7c73eb88fee79705268cc7b742c7bc93a7b76e092ab751d0833866970754142" 4091 4657 dependencies = [ 4092 4658 "arrayvec", 4093 - "bitflags", 4659 + "bitflags 1.3.2", 4094 4660 "bytemuck", 4095 4661 "lazy_static", 4096 4662 "log", ··· 4098 4664 4099 4665 [[package]] 4100 4666 name = "symphonia-format-ogg" 4101 - version = "0.5.2" 4667 + version = "0.5.3" 4102 4668 source = "registry+https://github.com/rust-lang/crates.io-index" 4103 - checksum = "474df6e86b871dcb56913130bada1440245f483057c4a2d8a2981455494c4439" 4669 + checksum = "9bf1a00ccd11452d44048a0368828040f778ae650418dbd9d8765b7ee2574c8d" 4104 4670 dependencies = [ 4105 4671 "log", 4106 4672 "symphonia-core", ··· 4110 4676 4111 4677 [[package]] 4112 4678 name = "symphonia-metadata" 4113 - version = "0.5.2" 4679 + version = "0.5.3" 4114 4680 source = "registry+https://github.com/rust-lang/crates.io-index" 4115 - checksum = "acd35c263223ef6161000be79b124a75de3e065eea563bf3ef169b3e94c7bb2e" 4681 + checksum = "89c3e1937e31d0e068bbe829f66b2f2bfaa28d056365279e0ef897172c3320c0" 4116 4682 dependencies = [ 4117 4683 "encoding_rs", 4118 4684 "lazy_static", ··· 4122 4688 4123 4689 [[package]] 4124 4690 name = "symphonia-utils-xiph" 4125 - version = "0.5.2" 4691 + version = "0.5.3" 4126 4692 source = "registry+https://github.com/rust-lang/crates.io-index" 4127 - checksum = "ce340a6c33ac06cb42de01220308ec056e8a2a3d5cc664aaf34567392557136b" 4693 + checksum = "a450ca645b80d69aff8b35576cbfdc7f20940b29998202aab910045714c951f8" 4128 4694 dependencies = [ 4129 4695 "symphonia-core", 4130 4696 "symphonia-metadata", ··· 4143 4709 4144 4710 [[package]] 4145 4711 name = "syn" 4146 - version = "2.0.13" 4712 + version = "2.0.38" 4147 4713 source = "registry+https://github.com/rust-lang/crates.io-index" 4148 - checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" 4714 + checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 4149 4715 dependencies = [ 4150 4716 "proc-macro2", 4151 4717 "quote", ··· 4153 4719 ] 4154 4720 4155 4721 [[package]] 4156 - name = "synstructure" 4157 - version = "0.12.6" 4722 + name = "sys-locale" 4723 + version = "0.3.1" 4158 4724 source = "registry+https://github.com/rust-lang/crates.io-index" 4159 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 4725 + checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" 4160 4726 dependencies = [ 4161 - "proc-macro2", 4162 - "quote", 4163 - "syn 1.0.109", 4164 - "unicode-xid", 4727 + "libc", 4165 4728 ] 4166 4729 4167 4730 [[package]] 4168 - name = "termcolor" 4169 - version = "1.2.0" 4731 + name = "sysinfo" 4732 + version = "0.29.10" 4170 4733 source = "registry+https://github.com/rust-lang/crates.io-index" 4171 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 4734 + checksum = "0a18d114d420ada3a891e6bc8e96a2023402203296a47cdd65083377dad18ba5" 4735 + dependencies = [ 4736 + "cfg-if", 4737 + "core-foundation-sys", 4738 + "libc", 4739 + "ntapi", 4740 + "once_cell", 4741 + "winapi", 4742 + ] 4743 + 4744 + [[package]] 4745 + name = "tap" 4746 + version = "1.0.1" 4747 + source = "registry+https://github.com/rust-lang/crates.io-index" 4748 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 4749 + 4750 + [[package]] 4751 + name = "termcolor" 4752 + version = "1.3.0" 4753 + source = "registry+https://github.com/rust-lang/crates.io-index" 4754 + checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 4172 4755 dependencies = [ 4173 4756 "winapi-util", 4174 4757 ] 4175 4758 4176 4759 [[package]] 4177 4760 name = "thiserror" 4178 - version = "1.0.40" 4761 + version = "1.0.49" 4179 4762 source = "registry+https://github.com/rust-lang/crates.io-index" 4180 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 4763 + checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" 4181 4764 dependencies = [ 4182 4765 "thiserror-impl", 4183 4766 ] 4184 4767 4185 4768 [[package]] 4186 4769 name = "thiserror-impl" 4187 - version = "1.0.40" 4770 + version = "1.0.49" 4188 4771 source = "registry+https://github.com/rust-lang/crates.io-index" 4189 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 4772 + checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" 4190 4773 dependencies = [ 4191 4774 "proc-macro2", 4192 4775 "quote", 4193 - "syn 2.0.13", 4776 + "syn 2.0.38", 4194 4777 ] 4195 4778 4196 4779 [[package]] ··· 4222 4771 4223 4772 [[package]] 4224 4773 name = "tiff" 4225 - version = "0.8.1" 4774 + version = "0.9.0" 4226 4775 source = "registry+https://github.com/rust-lang/crates.io-index" 4227 - checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471" 4776 + checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 4228 4777 dependencies = [ 4229 4778 "flate2", 4230 4779 "jpeg-decoder", ··· 4232 4781 ] 4233 4782 4234 4783 [[package]] 4235 - name = "time" 4236 - version = "0.3.20" 4237 - source = "registry+https://github.com/rust-lang/crates.io-index" 4238 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 4239 - dependencies = [ 4240 - "itoa", 4241 - "serde", 4242 - "time-core", 4243 - "time-macros", 4244 - ] 4245 - 4246 - [[package]] 4247 - name = "time-core" 4248 - version = "0.1.0" 4249 - source = "registry+https://github.com/rust-lang/crates.io-index" 4250 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 4251 - 4252 - [[package]] 4253 - name = "time-macros" 4254 - version = "0.2.8" 4255 - source = "registry+https://github.com/rust-lang/crates.io-index" 4256 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 4257 - dependencies = [ 4258 - "time-core", 4259 - ] 4260 - 4261 - [[package]] 4262 4784 name = "tinystr" 4263 - version = "0.7.1" 4785 + version = "0.7.4" 4264 4786 source = "registry+https://github.com/rust-lang/crates.io-index" 4265 - checksum = "7ac3f5b6856e931e15e07b478e98c8045239829a65f9156d4fa7e7788197a5ef" 4787 + checksum = "d5d0e245e80bdc9b4e5356fc45a72184abbc3861992603f515270e9340f5a219" 4266 4788 dependencies = [ 4267 4789 "displaydoc", 4268 4790 ] ··· 4256 4832 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4257 4833 4258 4834 [[package]] 4259 - name = "tokio" 4260 - version = "1.27.0" 4261 - source = "registry+https://github.com/rust-lang/crates.io-index" 4262 - checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 4263 - dependencies = [ 4264 - "autocfg", 4265 - "pin-project-lite", 4266 - "windows-sys 0.45.0", 4267 - ] 4268 - 4269 - [[package]] 4270 - name = "toml" 4271 - version = "0.5.11" 4272 - source = "registry+https://github.com/rust-lang/crates.io-index" 4273 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 4274 - dependencies = [ 4275 - "serde", 4276 - ] 4277 - 4278 - [[package]] 4279 4835 name = "toml_datetime" 4280 - version = "0.6.1" 4836 + version = "0.6.3" 4281 4837 source = "registry+https://github.com/rust-lang/crates.io-index" 4282 - checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 4838 + checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 4283 4839 4284 4840 [[package]] 4285 4841 name = "toml_edit" 4286 - version = "0.19.8" 4842 + version = "0.19.15" 4287 4843 source = "registry+https://github.com/rust-lang/crates.io-index" 4288 - checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 4844 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4289 4845 dependencies = [ 4290 - "indexmap", 4846 + "indexmap 2.0.2", 4291 4847 "toml_datetime", 4292 4848 "winnow", 4293 4849 ] 4294 4850 4295 4851 [[package]] 4296 4852 name = "tracing" 4297 - version = "0.1.37" 4853 + version = "0.1.39" 4298 4854 source = "registry+https://github.com/rust-lang/crates.io-index" 4299 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4855 + checksum = "ee2ef2af84856a50c1d430afce2fdded0a4ec7eda868db86409b4543df0797f9" 4300 4856 dependencies = [ 4301 - "cfg-if", 4302 4857 "pin-project-lite", 4303 4858 "tracing-attributes", 4304 4859 "tracing-core", ··· 4285 4882 4286 4883 [[package]] 4287 4884 name = "tracing-attributes" 4288 - version = "0.1.23" 4885 + version = "0.1.27" 4289 4886 source = "registry+https://github.com/rust-lang/crates.io-index" 4290 - checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 4887 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4291 4888 dependencies = [ 4292 4889 "proc-macro2", 4293 4890 "quote", 4294 - "syn 1.0.109", 4891 + "syn 2.0.38", 4295 4892 ] 4296 4893 4297 4894 [[package]] 4298 4895 name = "tracing-core" 4299 - version = "0.1.30" 4896 + version = "0.1.32" 4300 4897 source = "registry+https://github.com/rust-lang/crates.io-index" 4301 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 4898 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4302 4899 dependencies = [ 4303 4900 "once_cell", 4304 4901 "valuable", ··· 4317 4914 4318 4915 [[package]] 4319 4916 name = "tracing-subscriber" 4320 - version = "0.3.16" 4917 + version = "0.3.17" 4321 4918 source = "registry+https://github.com/rust-lang/crates.io-index" 4322 - checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 4919 + checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4323 4920 dependencies = [ 4324 4921 "matchers", 4325 4922 "nu-ansi-term", ··· 4346 4943 4347 4944 [[package]] 4348 4945 name = "ttf-parser" 4349 - version = "0.18.1" 4946 + version = "0.19.2" 4350 4947 source = "registry+https://github.com/rust-lang/crates.io-index" 4351 - checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633" 4948 + checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1" 4352 4949 4353 4950 [[package]] 4354 4951 name = "turborand" 4355 - version = "0.9.0" 4952 + version = "0.10.0" 4356 4953 source = "registry+https://github.com/rust-lang/crates.io-index" 4357 - checksum = "e68386c3caec086d54b19acec7f2ec3bd31109a71dfcea80b23c03520c9fb149" 4954 + checksum = "e28d61f1c96db8c016037a77961fa5da84fc3a57fe69a15283ace0ab1647bac0" 4358 4955 dependencies = [ 4359 - "getrandom 0.2.8", 4956 + "getrandom 0.2.10", 4360 4957 "instant", 4361 - ] 4362 - 4363 - [[package]] 4364 - name = "twox-hash" 4365 - version = "1.6.3" 4366 - source = "registry+https://github.com/rust-lang/crates.io-index" 4367 - checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 4368 - dependencies = [ 4369 - "cfg-if", 4370 - "static_assertions", 4371 4958 ] 4372 4959 4373 4960 [[package]] ··· 4370 4977 ] 4371 4978 4372 4979 [[package]] 4373 - name = "type_ulid" 4374 - version = "0.1.0" 4375 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 4376 - dependencies = [ 4377 - "type_ulid_macros", 4378 - "ulid", 4379 - ] 4380 - 4381 - [[package]] 4382 - name = "type_ulid_macros" 4383 - version = "0.1.0" 4384 - source = "git+https://github.com/fishfolk/bones#ad6d073a33dc342d5aed1155488e4681cf1bc782" 4385 - dependencies = [ 4386 - "proc-macro2", 4387 - "quote", 4388 - "syn 1.0.109", 4389 - "ulid", 4390 - ] 4391 - 4392 - [[package]] 4393 4980 name = "typenum" 4394 - version = "1.16.0" 4981 + version = "1.17.0" 4395 4982 source = "registry+https://github.com/rust-lang/crates.io-index" 4396 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4983 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 4397 4984 4398 4985 [[package]] 4399 4986 name = "ulid" 4400 - version = "1.0.0" 4987 + version = "1.1.0" 4401 4988 source = "registry+https://github.com/rust-lang/crates.io-index" 4402 - checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" 4989 + checksum = "7e37c4b6cbcc59a8dcd09a6429fbc7890286bcbb79215cea7b38a3c4c0921d93" 4403 4990 dependencies = [ 4404 4991 "rand 0.8.5", 4992 + "serde", 4405 4993 ] 4406 4994 4407 4995 [[package]] ··· 4412 5038 4413 5039 [[package]] 4414 5040 name = "unicode-ident" 4415 - version = "1.0.8" 5041 + version = "1.0.12" 4416 5042 source = "registry+https://github.com/rust-lang/crates.io-index" 4417 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 5043 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 4418 5044 4419 5045 [[package]] 4420 5046 name = "unicode-normalization" ··· 4427 5053 4428 5054 [[package]] 4429 5055 name = "unicode-width" 4430 - version = "0.1.10" 5056 + version = "0.1.11" 4431 5057 source = "registry+https://github.com/rust-lang/crates.io-index" 4432 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 5058 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 4433 5059 4434 5060 [[package]] 4435 5061 name = "unicode-xid" ··· 4439 5065 4440 5066 [[package]] 4441 5067 name = "unsafe-libyaml" 4442 - version = "0.2.7" 5068 + version = "0.2.9" 4443 5069 source = "registry+https://github.com/rust-lang/crates.io-index" 4444 - checksum = "ad2024452afd3874bf539695e04af6732ba06517424dbf958fdb16a01f3bef6c" 5070 + checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 4445 5071 4446 5072 [[package]] 4447 5073 name = "untrusted" ··· 4450 5076 checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4451 5077 4452 5078 [[package]] 4453 - name = "url" 4454 - version = "2.3.1" 5079 + name = "ureq" 5080 + version = "2.8.0" 4455 5081 source = "registry+https://github.com/rust-lang/crates.io-index" 4456 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 5082 + checksum = "f5ccd538d4a604753ebc2f17cd9946e89b77bf87f6a8e2309667c6f2e87855e3" 5083 + dependencies = [ 5084 + "base64", 5085 + "flate2", 5086 + "log", 5087 + "once_cell", 5088 + "rustls", 5089 + "rustls-webpki", 5090 + "url", 5091 + "webpki-roots", 5092 + ] 5093 + 5094 + [[package]] 5095 + name = "url" 5096 + version = "2.4.1" 5097 + source = "registry+https://github.com/rust-lang/crates.io-index" 5098 + checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 4457 5099 dependencies = [ 4458 5100 "form_urlencoded", 4459 5101 "idna", ··· 4477 5087 ] 4478 5088 4479 5089 [[package]] 4480 - name = "utf8parse" 4481 - version = "0.2.1" 5090 + name = "ustr" 5091 + version = "0.10.0" 4482 5092 source = "registry+https://github.com/rust-lang/crates.io-index" 4483 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5093 + checksum = "b050b13c1933490b043b8238a75bc7676cb49292f49768c9350eabb284eaeb87" 5094 + dependencies = [ 5095 + "ahash", 5096 + "byteorder", 5097 + "lazy_static", 5098 + "parking_lot", 5099 + "serde", 5100 + ] 4484 5101 4485 5102 [[package]] 4486 5103 name = "uuid" 4487 - version = "1.3.0" 5104 + version = "1.4.1" 4488 5105 source = "registry+https://github.com/rust-lang/crates.io-index" 4489 - checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" 5106 + checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 4490 5107 dependencies = [ 4491 - "getrandom 0.2.8", 5108 + "getrandom 0.2.10", 4492 5109 "serde", 4493 - "sha1_smol", 4494 5110 ] 4495 5111 4496 5112 [[package]] ··· 4506 5110 checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4507 5111 4508 5112 [[package]] 4509 - name = "varinteger" 4510 - version = "1.0.6" 4511 - source = "registry+https://github.com/rust-lang/crates.io-index" 4512 - checksum = "7ea29db9f94ff08bb619656b8120878f280526f71dc88b5262c958a510181812" 4513 - 4514 - [[package]] 4515 - name = "vec1" 4516 - version = "1.10.1" 4517 - source = "registry+https://github.com/rust-lang/crates.io-index" 4518 - checksum = "2bda7c41ca331fe9a1c278a9e7ee055f4be7f5eb1c2b72f079b4ff8b5fce9d5c" 4519 - 4520 - [[package]] 4521 5113 name = "vec_map" 4522 5114 version = "0.8.2" 4523 5115 source = "registry+https://github.com/rust-lang/crates.io-index" 4524 5116 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 5117 + 5118 + [[package]] 5119 + name = "venial" 5120 + version = "0.5.0" 5121 + source = "registry+https://github.com/rust-lang/crates.io-index" 5122 + checksum = "61584a325b16f97b5b25fcc852eb9550843a251057a5e3e5992d2376f3df4bb2" 5123 + dependencies = [ 5124 + "proc-macro2", 5125 + "quote", 5126 + ] 4525 5127 4526 5128 [[package]] 4527 5129 name = "version_check" ··· 4529 5135 4530 5136 [[package]] 4531 5137 name = "waker-fn" 4532 - version = "1.1.0" 5138 + version = "1.1.1" 4533 5139 source = "registry+https://github.com/rust-lang/crates.io-index" 4534 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 5140 + checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 4535 5141 4536 5142 [[package]] 4537 5143 name = "walkdir" 4538 - version = "2.3.3" 5144 + version = "2.4.0" 4539 5145 source = "registry+https://github.com/rust-lang/crates.io-index" 4540 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 5146 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 4541 5147 dependencies = [ 4542 5148 "same-file", 4543 5149 "winapi-util", ··· 4557 5163 4558 5164 [[package]] 4559 5165 name = "wasm-bindgen" 4560 - version = "0.2.84" 5166 + version = "0.2.87" 4561 5167 source = "registry+https://github.com/rust-lang/crates.io-index" 4562 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 5168 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 4563 5169 dependencies = [ 4564 5170 "cfg-if", 4565 5171 "wasm-bindgen-macro", ··· 4567 5173 4568 5174 [[package]] 4569 5175 name = "wasm-bindgen-backend" 4570 - version = "0.2.84" 5176 + version = "0.2.87" 4571 5177 source = "registry+https://github.com/rust-lang/crates.io-index" 4572 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 5178 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 4573 5179 dependencies = [ 4574 5180 "bumpalo", 4575 5181 "log", 4576 5182 "once_cell", 4577 5183 "proc-macro2", 4578 5184 "quote", 4579 - "syn 1.0.109", 5185 + "syn 2.0.38", 4580 5186 "wasm-bindgen-shared", 4581 5187 ] 4582 5188 4583 5189 [[package]] 4584 5190 name = "wasm-bindgen-futures" 4585 - version = "0.4.34" 5191 + version = "0.4.37" 4586 5192 source = "registry+https://github.com/rust-lang/crates.io-index" 4587 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 5193 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 4588 5194 dependencies = [ 4589 5195 "cfg-if", 4590 5196 "js-sys", ··· 4594 5200 4595 5201 [[package]] 4596 5202 name = "wasm-bindgen-macro" 4597 - version = "0.2.84" 5203 + version = "0.2.87" 4598 5204 source = "registry+https://github.com/rust-lang/crates.io-index" 4599 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 5205 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 4600 5206 dependencies = [ 4601 5207 "quote", 4602 5208 "wasm-bindgen-macro-support", ··· 4604 5210 4605 5211 [[package]] 4606 5212 name = "wasm-bindgen-macro-support" 4607 - version = "0.2.84" 5213 + version = "0.2.87" 4608 5214 source = "registry+https://github.com/rust-lang/crates.io-index" 4609 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 5215 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 4610 5216 dependencies = [ 4611 5217 "proc-macro2", 4612 5218 "quote", 4613 - "syn 1.0.109", 5219 + "syn 2.0.38", 4614 5220 "wasm-bindgen-backend", 4615 5221 "wasm-bindgen-shared", 4616 5222 ] 4617 5223 4618 5224 [[package]] 4619 5225 name = "wasm-bindgen-shared" 4620 - version = "0.2.84" 5226 + version = "0.2.87" 4621 5227 source = "registry+https://github.com/rust-lang/crates.io-index" 4622 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 5228 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5229 + 5230 + [[package]] 5231 + name = "wayland-scanner" 5232 + version = "0.29.5" 5233 + source = "registry+https://github.com/rust-lang/crates.io-index" 5234 + checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" 5235 + dependencies = [ 5236 + "proc-macro2", 5237 + "quote", 5238 + "xml-rs", 5239 + ] 4623 5240 4624 5241 [[package]] 4625 5242 name = "web-sys" 4626 - version = "0.3.61" 5243 + version = "0.3.64" 4627 5244 source = "registry+https://github.com/rust-lang/crates.io-index" 4628 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 5245 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 4629 5246 dependencies = [ 4630 5247 "js-sys", 4631 5248 "wasm-bindgen", ··· 4644 5239 4645 5240 [[package]] 4646 5241 name = "webbrowser" 4647 - version = "0.8.8" 5242 + version = "0.8.12" 4648 5243 source = "registry+https://github.com/rust-lang/crates.io-index" 4649 - checksum = "579cc485bd5ce5bfa0d738e4921dd0b956eca9800be1fd2e5257ebe95bc4617e" 5244 + checksum = "82b2391658b02c27719fc5a0a73d6e696285138e8b12fba9d4baa70451023c71" 4650 5245 dependencies = [ 4651 5246 "core-foundation", 4652 - "dirs", 5247 + "home", 4653 5248 "jni 0.21.1", 4654 5249 "log", 4655 5250 "ndk-context", 4656 5251 "objc", 4657 - "raw-window-handle 0.5.2", 5252 + "raw-window-handle", 4658 5253 "url", 4659 5254 "web-sys", 4660 5255 ] 4661 5256 4662 5257 [[package]] 4663 - name = "webpki" 4664 - version = "0.22.0" 5258 + name = "webpki-roots" 5259 + version = "0.25.2" 4665 5260 source = "registry+https://github.com/rust-lang/crates.io-index" 4666 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 4667 - dependencies = [ 4668 - "ring", 4669 - "untrusted", 4670 - ] 5261 + checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 4671 5262 4672 5263 [[package]] 4673 5264 name = "weezl" ··· 4673 5272 4674 5273 [[package]] 4675 5274 name = "wgpu" 4676 - version = "0.14.2" 5275 + version = "0.16.3" 4677 5276 source = "registry+https://github.com/rust-lang/crates.io-index" 4678 - checksum = "81f643110d228fd62a60c5ed2ab56c4d5b3704520bd50561174ec4ec74932937" 5277 + checksum = "480c965c9306872eb6255fa55e4b4953be55a8b64d57e61d7ff840d3dcc051cd" 4679 5278 dependencies = [ 4680 5279 "arrayvec", 5280 + "cfg-if", 4681 5281 "js-sys", 4682 5282 "log", 4683 5283 "naga", 4684 - "parking_lot 0.12.1", 4685 - "raw-window-handle 0.5.2", 5284 + "parking_lot", 5285 + "profiling", 5286 + "raw-window-handle", 4686 5287 "smallvec", 4687 5288 "static_assertions", 4688 5289 "wasm-bindgen", ··· 4697 5294 4698 5295 [[package]] 4699 5296 name = "wgpu-core" 4700 - version = "0.14.2" 5297 + version = "0.16.1" 4701 5298 source = "registry+https://github.com/rust-lang/crates.io-index" 4702 - checksum = "6000d1284ef8eec6076fd5544a73125fd7eb9b635f18dceeb829d826f41724ca" 5299 + checksum = "8f478237b4bf0d5b70a39898a66fa67ca3a007d79f2520485b8b0c3dfc46f8c2" 4703 5300 dependencies = [ 4704 5301 "arrayvec", 4705 5302 "bit-vec", 4706 - "bitflags", 4707 - "cfg_aliases", 5303 + "bitflags 2.4.0", 4708 5304 "codespan-reporting", 4709 - "fxhash", 4710 5305 "log", 4711 5306 "naga", 4712 - "parking_lot 0.12.1", 5307 + "parking_lot", 4713 5308 "profiling", 4714 - "raw-window-handle 0.5.2", 5309 + "raw-window-handle", 5310 + "rustc-hash", 4715 5311 "smallvec", 4716 5312 "thiserror", 4717 5313 "web-sys", ··· 4720 5318 4721 5319 [[package]] 4722 5320 name = "wgpu-hal" 4723 - version = "0.14.1" 5321 + version = "0.16.2" 4724 5322 source = "registry+https://github.com/rust-lang/crates.io-index" 4725 - checksum = "3cc320a61acb26be4f549c9b1b53405c10a223fbfea363ec39474c32c348d12f" 5323 + checksum = "1ecb3258078e936deee14fd4e0febe1cfe9bbb5ffef165cb60218d2ee5eb4448" 4726 5324 dependencies = [ 4727 5325 "android_system_properties", 4728 5326 "arrayvec", 4729 5327 "ash", 4730 5328 "bit-set", 4731 - "bitflags", 5329 + "bitflags 2.4.0", 4732 5330 "block", 4733 5331 "core-graphics-types", 4734 5332 "d3d12", 4735 5333 "foreign-types", 4736 - "fxhash", 4737 5334 "glow", 4738 5335 "gpu-alloc", 5336 + "gpu-allocator", 4739 5337 "gpu-descriptor", 5338 + "hassle-rs", 4740 5339 "js-sys", 4741 5340 "khronos-egl", 4742 - "libloading", 5341 + "libc", 5342 + "libloading 0.8.1", 4743 5343 "log", 4744 5344 "metal", 4745 5345 "naga", 4746 5346 "objc", 4747 - "parking_lot 0.12.1", 5347 + "parking_lot", 4748 5348 "profiling", 4749 5349 "range-alloc", 4750 - "raw-window-handle 0.5.2", 5350 + "raw-window-handle", 4751 5351 "renderdoc-sys", 5352 + "rustc-hash", 4752 5353 "smallvec", 4753 5354 "thiserror", 4754 5355 "wasm-bindgen", ··· 4762 5357 4763 5358 [[package]] 4764 5359 name = "wgpu-types" 4765 - version = "0.14.1" 5360 + version = "0.16.1" 4766 5361 source = "registry+https://github.com/rust-lang/crates.io-index" 4767 - checksum = "fb6b28ef22cac17b9109b25b3bf8c9a103eeb293d7c5f78653979b09140375f6" 5362 + checksum = "d0c153280bb108c2979eb5c7391cb18c56642dd3c072e55f52065e13e2a1252a" 4768 5363 dependencies = [ 4769 - "bitflags", 5364 + "bitflags 2.4.0", 5365 + "js-sys", 5366 + "web-sys", 4770 5367 ] 4771 5368 4772 5369 [[package]] 4773 5370 name = "wide" 4774 - version = "0.7.8" 5371 + version = "0.7.12" 4775 5372 source = "registry+https://github.com/rust-lang/crates.io-index" 4776 - checksum = "b689b6c49d6549434bf944e6b0f39238cf63693cb7a147e9d887507fffa3b223" 5373 + checksum = "ebecebefc38ff1860b4bc47550bbfa63af5746061cf0d29fcd7fa63171602598" 4777 5374 dependencies = [ 4778 5375 "bytemuck", 4779 5376 "safe_arch", 4780 5377 ] 5378 + 5379 + [[package]] 5380 + name = "widestring" 5381 + version = "1.0.2" 5382 + source = "registry+https://github.com/rust-lang/crates.io-index" 5383 + checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 4781 5384 4782 5385 [[package]] 4783 5386 name = "winapi" ··· 4805 5392 4806 5393 [[package]] 4807 5394 name = "winapi-util" 4808 - version = "0.1.5" 5395 + version = "0.1.6" 4809 5396 source = "registry+https://github.com/rust-lang/crates.io-index" 4810 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 5397 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 4811 5398 dependencies = [ 4812 5399 "winapi", 4813 5400 ] ··· 4829 5416 4830 5417 [[package]] 4831 5418 name = "windows" 4832 - version = "0.43.0" 4833 - source = "registry+https://github.com/rust-lang/crates.io-index" 4834 - checksum = "04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244" 4835 - dependencies = [ 4836 - "windows_aarch64_gnullvm", 4837 - "windows_aarch64_msvc 0.42.2", 4838 - "windows_i686_gnu 0.42.2", 4839 - "windows_i686_msvc 0.42.2", 4840 - "windows_x86_64_gnu 0.42.2", 4841 - "windows_x86_64_gnullvm", 4842 - "windows_x86_64_msvc 0.42.2", 4843 - ] 4844 - 4845 - [[package]] 4846 - name = "windows" 4847 5419 version = "0.44.0" 4848 5420 source = "registry+https://github.com/rust-lang/crates.io-index" 4849 5421 checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 4850 5422 dependencies = [ 4851 - "windows-targets", 5423 + "windows-targets 0.42.2", 4852 5424 ] 4853 5425 4854 5426 [[package]] ··· 4842 5444 source = "registry+https://github.com/rust-lang/crates.io-index" 4843 5445 checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25" 4844 5446 dependencies = [ 4845 - "windows-targets", 5447 + "windows-targets 0.42.2", 4846 5448 ] 4847 5449 4848 5450 [[package]] 4849 - name = "windows-sys" 4850 - version = "0.36.1" 5451 + name = "windows" 5452 + version = "0.48.0" 4851 5453 source = "registry+https://github.com/rust-lang/crates.io-index" 4852 - checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 5454 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 4853 5455 dependencies = [ 4854 - "windows_aarch64_msvc 0.36.1", 4855 - "windows_i686_gnu 0.36.1", 4856 - "windows_i686_msvc 0.36.1", 4857 - "windows_x86_64_gnu 0.36.1", 4858 - "windows_x86_64_msvc 0.36.1", 5456 + "windows-implement", 5457 + "windows-interface", 5458 + "windows-targets 0.48.5", 4859 5459 ] 4860 5460 4861 5461 [[package]] 4862 - name = "windows-sys" 4863 - version = "0.42.0" 5462 + name = "windows" 5463 + version = "0.51.1" 4864 5464 source = "registry+https://github.com/rust-lang/crates.io-index" 4865 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 5465 + checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 4866 5466 dependencies = [ 4867 - "windows_aarch64_gnullvm", 4868 - "windows_aarch64_msvc 0.42.2", 4869 - "windows_i686_gnu 0.42.2", 4870 - "windows_i686_msvc 0.42.2", 4871 - "windows_x86_64_gnu 0.42.2", 4872 - "windows_x86_64_gnullvm", 4873 - "windows_x86_64_msvc 0.42.2", 5467 + "windows-core", 5468 + "windows-targets 0.48.5", 5469 + ] 5470 + 5471 + [[package]] 5472 + name = "windows-core" 5473 + version = "0.51.1" 5474 + source = "registry+https://github.com/rust-lang/crates.io-index" 5475 + checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5476 + dependencies = [ 5477 + "windows-targets 0.48.5", 5478 + ] 5479 + 5480 + [[package]] 5481 + name = "windows-implement" 5482 + version = "0.48.0" 5483 + source = "registry+https://github.com/rust-lang/crates.io-index" 5484 + checksum = "5e2ee588991b9e7e6c8338edf3333fbe4da35dc72092643958ebb43f0ab2c49c" 5485 + dependencies = [ 5486 + "proc-macro2", 5487 + "quote", 5488 + "syn 1.0.109", 5489 + ] 5490 + 5491 + [[package]] 5492 + name = "windows-interface" 5493 + version = "0.48.0" 5494 + source = "registry+https://github.com/rust-lang/crates.io-index" 5495 + checksum = "e6fb8df20c9bcaa8ad6ab513f7b40104840c8867d5751126e4df3b08388d0cc7" 5496 + dependencies = [ 5497 + "proc-macro2", 5498 + "quote", 5499 + "syn 1.0.109", 4874 5500 ] 4875 5501 4876 5502 [[package]] ··· 4903 5481 source = "registry+https://github.com/rust-lang/crates.io-index" 4904 5482 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4905 5483 dependencies = [ 4906 - "windows-targets", 5484 + "windows-targets 0.42.2", 5485 + ] 5486 + 5487 + [[package]] 5488 + name = "windows-sys" 5489 + version = "0.48.0" 5490 + source = "registry+https://github.com/rust-lang/crates.io-index" 5491 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5492 + dependencies = [ 5493 + "windows-targets 0.48.5", 4907 5494 ] 4908 5495 4909 5496 [[package]] ··· 4921 5490 source = "registry+https://github.com/rust-lang/crates.io-index" 4922 5491 checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4923 5492 dependencies = [ 4924 - "windows_aarch64_gnullvm", 5493 + "windows_aarch64_gnullvm 0.42.2", 4925 5494 "windows_aarch64_msvc 0.42.2", 4926 5495 "windows_i686_gnu 0.42.2", 4927 5496 "windows_i686_msvc 0.42.2", 4928 5497 "windows_x86_64_gnu 0.42.2", 4929 - "windows_x86_64_gnullvm", 5498 + "windows_x86_64_gnullvm 0.42.2", 4930 5499 "windows_x86_64_msvc 0.42.2", 5500 + ] 5501 + 5502 + [[package]] 5503 + name = "windows-targets" 5504 + version = "0.48.5" 5505 + source = "registry+https://github.com/rust-lang/crates.io-index" 5506 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5507 + dependencies = [ 5508 + "windows_aarch64_gnullvm 0.48.5", 5509 + "windows_aarch64_msvc 0.48.5", 5510 + "windows_i686_gnu 0.48.5", 5511 + "windows_i686_msvc 0.48.5", 5512 + "windows_x86_64_gnu 0.48.5", 5513 + "windows_x86_64_gnullvm 0.48.5", 5514 + "windows_x86_64_msvc 0.48.5", 4931 5515 ] 4932 5516 4933 5517 [[package]] ··· 4952 5506 checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4953 5507 4954 5508 [[package]] 4955 - name = "windows_aarch64_msvc" 4956 - version = "0.36.1" 5509 + name = "windows_aarch64_gnullvm" 5510 + version = "0.48.5" 4957 5511 source = "registry+https://github.com/rust-lang/crates.io-index" 4958 - checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 5512 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4959 5513 4960 5514 [[package]] 4961 5515 name = "windows_aarch64_msvc" ··· 4964 5518 checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4965 5519 4966 5520 [[package]] 4967 - name = "windows_i686_gnu" 4968 - version = "0.36.1" 5521 + name = "windows_aarch64_msvc" 5522 + version = "0.48.5" 4969 5523 source = "registry+https://github.com/rust-lang/crates.io-index" 4970 - checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 5524 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4971 5525 4972 5526 [[package]] 4973 5527 name = "windows_i686_gnu" ··· 4976 5530 checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4977 5531 4978 5532 [[package]] 4979 - name = "windows_i686_msvc" 4980 - version = "0.36.1" 5533 + name = "windows_i686_gnu" 5534 + version = "0.48.5" 4981 5535 source = "registry+https://github.com/rust-lang/crates.io-index" 4982 - checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 5536 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4983 5537 4984 5538 [[package]] 4985 5539 name = "windows_i686_msvc" ··· 4988 5542 checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4989 5543 4990 5544 [[package]] 4991 - name = "windows_x86_64_gnu" 4992 - version = "0.36.1" 5545 + name = "windows_i686_msvc" 5546 + version = "0.48.5" 4993 5547 source = "registry+https://github.com/rust-lang/crates.io-index" 4994 - checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 5548 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4995 5549 4996 5550 [[package]] 4997 5551 name = "windows_x86_64_gnu" ··· 5000 5554 checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5001 5555 5002 5556 [[package]] 5557 + name = "windows_x86_64_gnu" 5558 + version = "0.48.5" 5559 + source = "registry+https://github.com/rust-lang/crates.io-index" 5560 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5561 + 5562 + [[package]] 5003 5563 name = "windows_x86_64_gnullvm" 5004 5564 version = "0.42.2" 5005 5565 source = "registry+https://github.com/rust-lang/crates.io-index" 5006 5566 checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5007 5567 5008 5568 [[package]] 5009 - name = "windows_x86_64_msvc" 5010 - version = "0.36.1" 5569 + name = "windows_x86_64_gnullvm" 5570 + version = "0.48.5" 5011 5571 source = "registry+https://github.com/rust-lang/crates.io-index" 5012 - checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 5572 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5013 5573 5014 5574 [[package]] 5015 5575 name = "windows_x86_64_msvc" ··· 5024 5572 checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5025 5573 5026 5574 [[package]] 5027 - name = "winit" 5028 - version = "0.27.5" 5575 + name = "windows_x86_64_msvc" 5576 + version = "0.48.5" 5029 5577 source = "registry+https://github.com/rust-lang/crates.io-index" 5030 - checksum = "bb796d6fbd86b2fd896c9471e6f04d39d750076ebe5680a3958f00f5ab97657c" 5578 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5579 + 5580 + [[package]] 5581 + name = "winit" 5582 + version = "0.28.7" 5583 + source = "registry+https://github.com/rust-lang/crates.io-index" 5584 + checksum = "9596d90b45384f5281384ab204224876e8e8bf7d58366d9b795ad99aa9894b94" 5031 5585 dependencies = [ 5032 - "bitflags", 5033 - "cocoa", 5586 + "android-activity", 5587 + "bitflags 1.3.2", 5588 + "cfg_aliases", 5034 5589 "core-foundation", 5035 5590 "core-graphics", 5036 5591 "dispatch", ··· 5046 5587 "log", 5047 5588 "mio", 5048 5589 "ndk", 5049 - "ndk-glue", 5050 - "objc", 5590 + "objc2", 5051 5591 "once_cell", 5052 - "parking_lot 0.12.1", 5592 + "orbclient", 5053 5593 "percent-encoding", 5054 - "raw-window-handle 0.4.3", 5055 - "raw-window-handle 0.5.2", 5594 + "raw-window-handle", 5595 + "redox_syscall 0.3.5", 5056 5596 "wasm-bindgen", 5597 + "wayland-scanner", 5057 5598 "web-sys", 5058 - "windows-sys 0.36.1", 5599 + "windows-sys 0.45.0", 5059 5600 "x11-dl", 5060 5601 ] 5061 5602 5062 5603 [[package]] 5063 5604 name = "winnow" 5064 - version = "0.4.1" 5605 + version = "0.5.17" 5065 5606 source = "registry+https://github.com/rust-lang/crates.io-index" 5066 - checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" 5607 + checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" 5067 5608 dependencies = [ 5068 5609 "memchr", 5610 + ] 5611 + 5612 + [[package]] 5613 + name = "wyz" 5614 + version = "0.5.1" 5615 + source = "registry+https://github.com/rust-lang/crates.io-index" 5616 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 5617 + dependencies = [ 5618 + "tap", 5069 5619 ] 5070 5620 5071 5621 [[package]] ··· 5111 5643 ] 5112 5644 5113 5645 [[package]] 5114 - name = "yasna" 5115 - version = "0.5.1" 5646 + name = "xml-rs" 5647 + version = "0.8.19" 5116 5648 source = "registry+https://github.com/rust-lang/crates.io-index" 5117 - checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" 5118 - dependencies = [ 5119 - "time", 5120 - ] 5121 - 5122 - [[package]] 5123 - name = "zstd" 5124 - version = "0.11.2+zstd.1.5.2" 5125 - source = "registry+https://github.com/rust-lang/crates.io-index" 5126 - checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 5127 - dependencies = [ 5128 - "zstd-safe", 5129 - ] 5130 - 5131 - [[package]] 5132 - name = "zstd-safe" 5133 - version = "5.0.2+zstd.1.5.2" 5134 - source = "registry+https://github.com/rust-lang/crates.io-index" 5135 - checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 5136 - dependencies = [ 5137 - "libc", 5138 - "zstd-sys", 5139 - ] 5140 - 5141 - [[package]] 5142 - name = "zstd-sys" 5143 - version = "2.0.7+zstd.1.5.4" 5144 - source = "registry+https://github.com/rust-lang/crates.io-index" 5145 - checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5" 5146 - dependencies = [ 5147 - "cc", 5148 - "libc", 5149 - "pkg-config", 5150 - ] 5649 + checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a"
+9 -13
pkgs/games/jumpy/default.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "jumpy"; 19 - version = "0.7.0"; 19 + version = "0.8.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "fishfolk"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-krO/iPGnzXeY3W8xSFerlKa1DvDl7ss00bGaAMkHUtw="; 25 + sha256 = "sha256-ggePJH2kKJ17aOWRKUnLyolIdSzlc6Axf5Iw74iFfek="; 26 26 }; 27 27 28 28 cargoLock = { 29 29 lockFile = ./Cargo.lock; 30 30 outputHashes = { 31 - "bevy_simple_tilemap-0.10.1" = "sha256-Q/AsBZjsr+uTIh/oN0OsIJxntZ4nuc1AReo0Ronj930="; 32 - "bones_asset-0.1.0" = "sha256-YyY5OsbRLkpAgvNifRiXfmzfsgFw/oFV1nQVCkXG4j4="; 31 + "bevy_egui-0.21.0" = "sha256-hu55tZQppw1NajwqIsYsw6de0IAwQwgra3D9OFzSSLc="; 32 + "bones_asset-0.3.0" = "sha256-1UeOXW6O/gMQBBUnHxRreJgmiUTPC5SJB+uLn9V8aa4="; 33 + "kira-0.8.5" = "sha256-z4R5aIaoRQQprL6JsVrFI69rwTOsW5OH01+jORS+hBQ="; 33 34 }; 34 35 }; 35 - 36 - patches = [ 37 - # jumpy uses an outdated version of mimalloc 38 - # which fails to build on aarch64-linux 39 - ./update-mimalloc.patch 40 - ]; 41 36 42 37 nativeBuildInputs = [ 43 38 makeWrapper ··· 52 57 xorg.libXi 53 58 xorg.libXrandr 54 59 ] ++ lib.optionals stdenv.isDarwin [ 55 - darwin.apple_sdk.frameworks.Cocoa 60 + darwin.apple_sdk_11_0.frameworks.Cocoa 56 61 rustPlatform.bindgenHook 57 62 ]; 58 63 ··· 62 67 ZSTD_SYS_USE_PKG_CONFIG = true; 63 68 }; 64 69 70 + # jumpy only loads assets from the current directory 71 + # https://github.com/fishfolk/bones/blob/f84d07c2f2847d9acd5c07098fe1575abc496400/framework_crates/bones_asset/src/io.rs#L50 65 72 postInstall = '' 66 73 mkdir $out/share 67 74 cp -r assets $out/share 68 - wrapProgram $out/bin/jumpy \ 69 - --set-default JUMPY_ASSET_DIR $out/share/assets 75 + wrapProgram $out/bin/jumpy --chdir $out/share 70 76 ''; 71 77 72 78 postFixup = lib.optionalString stdenv.isLinux ''
-37
pkgs/games/jumpy/update-mimalloc.patch
··· 1 - --- a/Cargo.lock 2 - +++ b/Cargo.lock 3 - @@ -2945,9 +2945,9 @@ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 4 - 5 - [[package]] 6 - name = "libmimalloc-sys" 7 - -version = "0.1.31" 8 - +version = "0.1.33" 9 - source = "registry+https://github.com/rust-lang/crates.io-index" 10 - -checksum = "ef2c45001fb108f37d41bed8efd715769acb14674c1ce3e266ef0e317ef5f877" 11 - +checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e" 12 - dependencies = [ 13 - "cc", 14 - "libc", 15 - @@ -3117,9 +3117,9 @@ dependencies = [ 16 - 17 - [[package]] 18 - name = "mimalloc" 19 - -version = "0.1.35" 20 - +version = "0.1.37" 21 - source = "registry+https://github.com/rust-lang/crates.io-index" 22 - -checksum = "92666043c712f7f5c756d07443469ddcda6dd971cc15258bb7f3c3216fd1b7aa" 23 - +checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98" 24 - dependencies = [ 25 - "libmimalloc-sys", 26 - ] 27 - --- a/Cargo.toml 28 - +++ b/Cargo.toml 29 - @@ -75,7 +75,7 @@ web-sys = { version = "0.3", features = ["Window", "Location", "Storage"] } 30 - 31 - [target.'cfg(not(target_arch = "wasm32"))'.dependencies] 32 - bevy_dylib = "0.9.1" 33 - -mimalloc = { version = "0.1.32", default-features = false } 34 - +mimalloc = { version = "0.1.37", default-features = false } 35 - # Networking deps 36 - ggrs = { version = "0.9.3", features = ["sync-send"] } 37 - bitfield = "0.14.0"
+16 -12
pkgs/os-specific/darwin/CoreSymbolication/default.nix
··· 1 - { fetchFromGitHub, stdenv }: 1 + { lib, fetchFromGitHub, stdenv }: 2 2 3 - # Reverse engineered CoreSymbolication to make dtrace buildable 4 - 5 - stdenv.mkDerivation rec { 6 - name = "CoreSymbolication"; 3 + stdenv.mkDerivation { 4 + pname = "core-symbolication"; 5 + version = "unstable-2018-06-17"; 7 6 8 7 src = fetchFromGitHub { 9 - repo = name; 8 + repo = "CoreSymbolication"; 10 9 owner = "matthewbauer"; 11 - rev = "671fcb66c82eac1827f3f53dc4cc4e9b1b94da0a"; 12 - sha256 = "0qpw46gwgjxiwqqjxksb8yghp2q8dwad6hzaf4zl82xpvk9n5ahj"; 10 + rev = "24c87c23664b3ee05dc7a5a87d647ae476a680e4"; 11 + hash = "sha256-PzvLq94eNhP0+rLwGMKcMzxuD6MlrNI7iT/eV0obtSE="; 13 12 }; 14 13 15 - installPhase = '' 16 - mkdir -p $out/include 17 - cp -r CoreSymbolication $out/include 18 - ''; 14 + makeFlags = [ "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ]; 15 + 16 + meta = with lib; { 17 + description = "Reverse engineered headers for Apple's CoreSymbolication framework"; 18 + homepage = "https://github.com/matthewbauer/CoreSymbolication"; 19 + license = licenses.mit; 20 + platforms = platforms.darwin; 21 + maintainers = with maintainers; [ matthewbauer ]; 22 + }; 19 23 }
+2 -2
pkgs/os-specific/darwin/utm/default.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation rec { 9 9 pname = "utm"; 10 - version = "4.4.3"; 10 + version = "4.4.4"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/utmapp/UTM/releases/download/v${version}/UTM.dmg"; 14 - hash = "sha256-U1HB8uP8OzHX8LzBE8u7YSDI4vlY9vlMRE+JI+x9rvk="; 14 + hash = "sha256-SyrqkNWRUKQS3D17XYsC/dcCKlPLGNNsG5obEiHE1Lk="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ undmg makeWrapper ];
+4 -3
pkgs/os-specific/linux/nftables/default.nix
··· 11 11 }: 12 12 13 13 stdenv.mkDerivation rec { 14 - version = "1.0.8"; 14 + version = "1.0.9"; 15 15 pname = "nftables"; 16 16 17 17 src = fetchurl { 18 18 url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.xz"; 19 - hash = "sha256-k3N0DeQagtvJiBjgpGoHP664qNBon6T6GnQ5nDK/PVA="; 19 + hash = "sha256-o8MEzZugYSOe4EdPmvuTipu5nYm5YCRvZvDDoKheFM0="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 44 44 ++ lib.optional withXtables "--with-xtables"; 45 45 46 46 passthru.tests = { 47 - inherit (nixosTests) firewall-nftables lxd-nftables; 47 + inherit (nixosTests) firewall-nftables; 48 + lxd-nftables = nixosTests.lxd.nftables; 48 49 nat = { inherit (nixosTests.nat.nftables) firewall standalone; }; 49 50 }; 50 51
+3 -3
pkgs/servers/invidious/versions.json
··· 4 4 "sha256": "sha256-EU6T9yQCdOLx98Io8o01rEsgxDFF/Xoy42LgPopD2/A=" 5 5 }, 6 6 "invidious": { 7 - "rev": "60fae015d8b5e4b0bfac8306065db07f93c4c661", 8 - "sha256": "sha256-yYTkDlQl6osvIC+k2mCXXsF8/33TB34vqOcZXPV1z/8=", 9 - "version": "unstable-2023-10-07" 7 + "rev": "3b219a4c7f932867f5a12608d8604436c722c1a0", 8 + "sha256": "sha256-+uhq97H5frDbks9U0dQ0TK3VmtM71mlyFQzq0Dd2ZIc=", 9 + "version": "unstable-2023-10-20" 10 10 }, 11 11 "lsquic": { 12 12 "sha256": "sha256-hG8cUvhbCNeMOsKkaJlgGpzUrIx47E/WhmPIdI5F3qM=",
+1 -1
pkgs/servers/monitoring/prometheus/promscale/default.nix
··· 13 13 owner = "timescale"; 14 14 repo = pname; 15 15 rev = version; 16 - sha256 = "sha256-JizUI9XRzOEHF1kAblYQRYB11z9KWX7od3lPiRN+JNI="; 16 + hash = "sha256-JizUI9XRzOEHF1kAblYQRYB11z9KWX7od3lPiRN+JNI="; 17 17 }; 18 18 19 19 vendorHash = "sha256-lnyKsipr/f9W9LWLb2lizKGLvIbS3XnSlOH1u1B87OY=";
+23 -20
pkgs/servers/ps3netsrv/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 2 - 3 - stdenv.mkDerivation { 1 + { lib, stdenv, fetchzip, mbedtls, meson, ninja, fetchFromGitHub }: 2 + let 3 + webManModVersion = "1.47.42"; 4 + in 5 + stdenv.mkDerivation rec { 4 6 pname = "ps3netsrv"; 5 - version = "1.1.0"; 7 + version = "20220813"; 6 8 7 - enableParallelBuilding = true; 8 - 9 - src = fetchFromGitHub { 10 - owner = "dirkvdb"; 11 - repo = "ps3netsrv--"; 12 - rev = "e54a66cbf142b86e2cffc1701984b95adb921e81"; 13 - sha256 = "sha256-SpPyRhPwOhTONAYH/eqLGmVl2XzhA1r1nUwKj7+rGyY="; 14 - fetchSubmodules = true; 9 + src = fetchzip { 10 + url = "https://github.com/aldostools/webMAN-MOD/releases/download/${webManModVersion}/${pname}_${version}.zip"; 11 + hash = "sha256-ynFuCD+tp8E/DDdB/HU9BCmwKcmQy6NBx26MKnP4W0o="; 15 12 }; 16 13 17 - buildPhase = "make CXX=$CXX"; 18 - installPhase = '' 19 - mkdir -p $out/bin 20 - cp ps3netsrv++ $out/bin 14 + sourceRoot = "./source/${pname}"; 15 + 16 + buildInputs = [ 17 + meson 18 + ninja 19 + mbedtls 20 + ]; 21 + 22 + postInstall = '' 23 + install -Dm644 ../LICENSE.TXT $out/usr/share/licenses/${pname}/LICENSE.TXT 21 24 ''; 22 25 23 26 meta = { 24 - description = "C++ implementation of the ps3netsrv server"; 25 - homepage = "https://github.com/dirkvdb/ps3netsrv--"; 26 - license = lib.licenses.mit; 27 + description = "PS3 Net Server (mod by aldostools)"; 28 + homepage = "https://github.com/aldostools/webMAN-MOD/"; 29 + license = lib.licenses.gpl3; 27 30 platforms = lib.platforms.unix; 28 31 maintainers = with lib.maintainers; [ makefu ]; 29 - mainProgram = "ps3netsrv++"; 32 + mainProgram = "ps3netsrv"; 30 33 }; 31 34 }
+3 -3
pkgs/servers/rt/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rt"; 5 - version = "5.0.3"; 5 + version = "5.0.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 repo = pname; 9 9 rev = "${pname}-${version}"; 10 10 owner = "bestpractical"; 11 - hash = "sha256-ZitlueLEbV3mGJg0aDrLa5IReJiOVaEf+JicbA9zUS4="; 11 + hash = "sha256-4E6xEk1sIiNBKJT4jD+SNK8Fs+hX8EuTv+jD1U1g6qY="; 12 12 }; 13 13 14 14 patches = [ ··· 57 57 GD 58 58 GDGraph 59 59 GnuPGInterface 60 - GraphViz 60 + GraphViz2 61 61 HTMLFormatExternal 62 62 HTMLFormatTextWithLinks 63 63 HTMLFormatTextWithLinksAndTables
+1 -1
pkgs/servers/tacacsplus/default.nix
··· 6 6 7 7 src = fetchurl { 8 8 url = "ftp://ftp.shrubbery.net/pub/tac_plus/tacacs-F${version}.tar.gz"; 9 - sha256 = "17i18z3s58c8yy8jxp01q3hzz5nirs4cjxms18zzkli6ip4jszql"; 9 + hash = "sha256-FH8tyY0m0vk/Crp2yYjO0Zb/4cAB3C6R94ihosdHIZ4="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ flex bison ];
+6 -9
pkgs/servers/web-apps/rss-bridge/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rss-bridge"; 5 - version = "2022-06-14"; 5 + version = "2023-09-24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "RSS-Bridge"; 9 9 repo = "rss-bridge"; 10 10 rev = version; 11 - sha256 = "sha256-yH+m65CIZokZSbnv1zfpKC/Qr/mPPC6dG49Zn62X0l4="; 11 + sha256 = "sha256-N1pbveOgJrB1M+WelKD07Jmv9Vz5NqT+IJf//L8UEnU="; 12 12 }; 13 13 14 - postPatch = '' 15 - substituteInPlace lib/rssbridge.php \ 16 - --replace "define('PATH_CACHE', PATH_ROOT . 'cache/');" "define('PATH_CACHE', getenv('RSSBRIDGE_DATA') . '/cache/');" \ 17 - --replace "define('FILE_CONFIG', PATH_ROOT . 'config.ini.php');" "define('FILE_CONFIG', getenv('RSSBRIDGE_DATA') . '/config.ini.php');" \ 18 - --replace "define('WHITELIST', PATH_ROOT . 'whitelist.txt');" "define('WHITELIST', getenv('RSSBRIDGE_DATA') . '/whitelist.txt');" 19 - ''; 14 + patches = [ 15 + ./paths.patch 16 + ]; 20 17 21 18 installPhase = '' 22 19 mkdir $out/ ··· 24 27 description = "The RSS feed for websites missing it"; 25 28 homepage = "https://github.com/RSS-Bridge/rss-bridge"; 26 29 license = licenses.unlicense; 27 - maintainers = with maintainers; [ dawidsowa ]; 30 + maintainers = with maintainers; [ dawidsowa mynacol ]; 28 31 platforms = platforms.all; 29 32 }; 30 33 }
+43
pkgs/servers/web-apps/rss-bridge/paths.patch
··· 1 + diff --git a/lib/Configuration.php b/lib/Configuration.php 2 + index c38d7cc9..d95e5174 100644 3 + --- a/lib/Configuration.php 4 + +++ b/lib/Configuration.php 5 + @@ -104,8 +104,8 @@ final class Configuration 6 + } 7 + } 8 + 9 + - if (file_exists(__DIR__ . '/../whitelist.txt')) { 10 + - $enabledBridges = trim(file_get_contents(__DIR__ . '/../whitelist.txt')); 11 + + if (file_exists(getenv('RSSBRIDGE_DATA') . '/whitelist.txt')) { 12 + + $enabledBridges = trim(file_get_contents(getenv('RSSBRIDGE_DATA') . '/whitelist.txt')); 13 + if ($enabledBridges === '*') { 14 + self::setConfig('system', 'enabled_bridges', ['*']); 15 + } else { 16 + diff --git a/lib/RssBridge.php b/lib/RssBridge.php 17 + index 6ba952eb..a0bbaf03 100644 18 + --- a/lib/RssBridge.php 19 + +++ b/lib/RssBridge.php 20 + @@ -11,8 +11,8 @@ final class RssBridge 21 + Configuration::verifyInstallation(); 22 + 23 + $customConfig = []; 24 + - if (file_exists(__DIR__ . '/../config.ini.php')) { 25 + - $customConfig = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED); 26 + + if (file_exists(getenv('RSSBRIDGE_DATA') . '/config.ini.php')) { 27 + + $customConfig = parse_ini_file(getenv('RSSBRIDGE_DATA') . '/config.ini.php', true, INI_SCANNER_TYPED); 28 + } 29 + Configuration::loadConfiguration($customConfig, getenv()); 30 + 31 + diff --git a/lib/bootstrap.php b/lib/bootstrap.php 32 + index dc1c0f04..194a3f8f 100644 33 + --- a/lib/bootstrap.php 34 + +++ b/lib/bootstrap.php 35 + @@ -27,7 +27,7 @@ const PATH_LIB_CACHES = __DIR__ . '/../caches/'; 36 + const PATH_LIB_ACTIONS = __DIR__ . '/../actions/'; 37 + 38 + /** Path to the cache folder */ 39 + -const PATH_CACHE = __DIR__ . '/../cache/'; 40 + +define('PATH_CACHE', getenv('RSSBRIDGE_DATA') . '/cache/'); 41 + 42 + /** URL to the RSS-Bridge repository */ 43 + const REPOSITORY = 'https://github.com/RSS-Bridge/rss-bridge/';
+2 -2
pkgs/tools/filesystems/btrfs-progs/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "btrfs-progs"; 12 - version = "6.5.2"; 12 + version = "6.5.3"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; 16 - sha256 = "sha256-xViy3dQ/V0ei9ctirtPlxQmXA4hkhaSAMQ/tRpjTYQw="; 16 + hash = "sha256-/OfLP5IOYV5j+vJlpM2fK/OdStyqZiEcmHaX2oWi7t0="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+11 -2
pkgs/tools/filesystems/duperemove/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, libgcrypt 2 2 , pkg-config, glib, linuxHeaders ? stdenv.cc.libc.linuxHeaders, sqlite 3 - , util-linux }: 3 + , util-linux, testers, duperemove }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "duperemove"; ··· 21 21 nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ libgcrypt glib linuxHeaders sqlite ]; 23 23 24 - makeFlags = [ "PREFIX=${placeholder "out"}" ]; 24 + makeFlags = [ 25 + "PREFIX=${placeholder "out"}" 26 + "VERSION=v${version}" 27 + ]; 28 + 29 + passthru.tests.version = testers.testVersion { 30 + package = duperemove; 31 + command = "duperemove --version"; 32 + version = "v${version}"; 33 + }; 25 34 26 35 meta = with lib; { 27 36 description = "A simple tool for finding duplicated extents and submitting them for deduplication";
-596
pkgs/tools/inputmethods/evscript/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "advancedresearch-tree_mem_sort" 7 - version = "0.2.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "aab032c118518f4bd1bd8f9efd22a60a7d153a7eafd2ed9709fc224ce4186094" 10 - 11 - [[package]] 12 - name = "ansi_term" 13 - version = "0.12.1" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 16 - dependencies = [ 17 - "winapi", 18 - ] 19 - 20 - [[package]] 21 - name = "atty" 22 - version = "0.2.14" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 25 - dependencies = [ 26 - "hermit-abi", 27 - "libc", 28 - "winapi", 29 - ] 30 - 31 - [[package]] 32 - name = "autocfg" 33 - version = "1.1.0" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 36 - 37 - [[package]] 38 - name = "bitflags" 39 - version = "0.8.2" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4" 42 - 43 - [[package]] 44 - name = "bitflags" 45 - version = "0.9.1" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" 48 - 49 - [[package]] 50 - name = "bitflags" 51 - version = "1.3.2" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 54 - 55 - [[package]] 56 - name = "cfg-if" 57 - version = "0.1.10" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 60 - 61 - [[package]] 62 - name = "cfg-if" 63 - version = "1.0.0" 64 - source = "registry+https://github.com/rust-lang/crates.io-index" 65 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 66 - 67 - [[package]] 68 - name = "clap" 69 - version = "2.34.0" 70 - source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 72 - dependencies = [ 73 - "ansi_term", 74 - "atty", 75 - "bitflags 1.3.2", 76 - "strsim", 77 - "textwrap", 78 - "unicode-width", 79 - "vec_map", 80 - ] 81 - 82 - [[package]] 83 - name = "dyon" 84 - version = "0.47.3" 85 - source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "e3d15155013e10adf698bcad154b122132abede1195ad2a33cc83ecbf6fd96e7" 87 - dependencies = [ 88 - "advancedresearch-tree_mem_sort", 89 - "lazy_static", 90 - "piston_meta", 91 - "range", 92 - "read_color", 93 - "read_token", 94 - "vecmath", 95 - ] 96 - 97 - [[package]] 98 - name = "evdev" 99 - version = "0.10.1" 100 - source = "git+https://github.com/valpackett/evdev?branch=uinput#4b905750a2103787e3e84241c60aaa79deb7c20c" 101 - dependencies = [ 102 - "bitflags 0.8.2", 103 - "fixedbitset", 104 - "libc", 105 - "nix 0.9.0", 106 - "num 0.1.42", 107 - "strum", 108 - "strum_macros", 109 - ] 110 - 111 - [[package]] 112 - name = "evscript" 113 - version = "0.0.0" 114 - dependencies = [ 115 - "clap", 116 - "dyon", 117 - "evdev", 118 - "nix 0.25.0", 119 - "num 0.4.0", 120 - "rusty-sandbox", 121 - "serde", 122 - "serde_derive", 123 - "toml", 124 - ] 125 - 126 - [[package]] 127 - name = "fixedbitset" 128 - version = "0.1.9" 129 - source = "registry+https://github.com/rust-lang/crates.io-index" 130 - checksum = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" 131 - 132 - [[package]] 133 - name = "fuchsia-cprng" 134 - version = "0.1.1" 135 - source = "registry+https://github.com/rust-lang/crates.io-index" 136 - checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 137 - 138 - [[package]] 139 - name = "hermit-abi" 140 - version = "0.1.19" 141 - source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 143 - dependencies = [ 144 - "libc", 145 - ] 146 - 147 - [[package]] 148 - name = "lazy_static" 149 - version = "1.4.0" 150 - source = "registry+https://github.com/rust-lang/crates.io-index" 151 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 152 - 153 - [[package]] 154 - name = "libc" 155 - version = "0.2.137" 156 - source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 158 - 159 - [[package]] 160 - name = "memoffset" 161 - version = "0.6.5" 162 - source = "registry+https://github.com/rust-lang/crates.io-index" 163 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 164 - dependencies = [ 165 - "autocfg", 166 - ] 167 - 168 - [[package]] 169 - name = "nix" 170 - version = "0.9.0" 171 - source = "registry+https://github.com/rust-lang/crates.io-index" 172 - checksum = "a2c5afeb0198ec7be8569d666644b574345aad2e95a53baf3a532da3e0f3fb32" 173 - dependencies = [ 174 - "bitflags 0.9.1", 175 - "cfg-if 0.1.10", 176 - "libc", 177 - "void", 178 - ] 179 - 180 - [[package]] 181 - name = "nix" 182 - version = "0.25.0" 183 - source = "registry+https://github.com/rust-lang/crates.io-index" 184 - checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" 185 - dependencies = [ 186 - "autocfg", 187 - "bitflags 1.3.2", 188 - "cfg-if 1.0.0", 189 - "libc", 190 - "memoffset", 191 - "pin-utils", 192 - ] 193 - 194 - [[package]] 195 - name = "num" 196 - version = "0.1.42" 197 - source = "registry+https://github.com/rust-lang/crates.io-index" 198 - checksum = "4703ad64153382334aa8db57c637364c322d3372e097840c72000dabdcf6156e" 199 - dependencies = [ 200 - "num-bigint 0.1.44", 201 - "num-complex 0.1.43", 202 - "num-integer", 203 - "num-iter", 204 - "num-rational 0.1.42", 205 - "num-traits", 206 - ] 207 - 208 - [[package]] 209 - name = "num" 210 - version = "0.4.0" 211 - source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" 213 - dependencies = [ 214 - "num-bigint 0.4.3", 215 - "num-complex 0.4.2", 216 - "num-integer", 217 - "num-iter", 218 - "num-rational 0.4.1", 219 - "num-traits", 220 - ] 221 - 222 - [[package]] 223 - name = "num-bigint" 224 - version = "0.1.44" 225 - source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "e63899ad0da84ce718c14936262a41cee2c79c981fc0a0e7c7beb47d5a07e8c1" 227 - dependencies = [ 228 - "num-integer", 229 - "num-traits", 230 - "rand", 231 - "rustc-serialize", 232 - ] 233 - 234 - [[package]] 235 - name = "num-bigint" 236 - version = "0.4.3" 237 - source = "registry+https://github.com/rust-lang/crates.io-index" 238 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 239 - dependencies = [ 240 - "autocfg", 241 - "num-integer", 242 - "num-traits", 243 - ] 244 - 245 - [[package]] 246 - name = "num-complex" 247 - version = "0.1.43" 248 - source = "registry+https://github.com/rust-lang/crates.io-index" 249 - checksum = "b288631d7878aaf59442cffd36910ea604ecd7745c36054328595114001c9656" 250 - dependencies = [ 251 - "num-traits", 252 - "rustc-serialize", 253 - ] 254 - 255 - [[package]] 256 - name = "num-complex" 257 - version = "0.4.2" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19" 260 - dependencies = [ 261 - "num-traits", 262 - ] 263 - 264 - [[package]] 265 - name = "num-integer" 266 - version = "0.1.45" 267 - source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 269 - dependencies = [ 270 - "autocfg", 271 - "num-traits", 272 - ] 273 - 274 - [[package]] 275 - name = "num-iter" 276 - version = "0.1.43" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 279 - dependencies = [ 280 - "autocfg", 281 - "num-integer", 282 - "num-traits", 283 - ] 284 - 285 - [[package]] 286 - name = "num-rational" 287 - version = "0.1.42" 288 - source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "ee314c74bd753fc86b4780aa9475da469155f3848473a261d2d18e35245a784e" 290 - dependencies = [ 291 - "num-bigint 0.1.44", 292 - "num-integer", 293 - "num-traits", 294 - "rustc-serialize", 295 - ] 296 - 297 - [[package]] 298 - name = "num-rational" 299 - version = "0.4.1" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 302 - dependencies = [ 303 - "autocfg", 304 - "num-bigint 0.4.3", 305 - "num-integer", 306 - "num-traits", 307 - ] 308 - 309 - [[package]] 310 - name = "num-traits" 311 - version = "0.2.15" 312 - source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 314 - dependencies = [ 315 - "autocfg", 316 - ] 317 - 318 - [[package]] 319 - name = "pin-utils" 320 - version = "0.1.0" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 323 - 324 - [[package]] 325 - name = "piston-float" 326 - version = "1.0.1" 327 - source = "registry+https://github.com/rust-lang/crates.io-index" 328 - checksum = "ad78bf43dcf80e8f950c92b84f938a0fc7590b7f6866fbcbeca781609c115590" 329 - 330 - [[package]] 331 - name = "piston_meta" 332 - version = "2.0.1" 333 - source = "registry+https://github.com/rust-lang/crates.io-index" 334 - checksum = "030240ae8cdfabe396630db10cfa80f6965aa45d4c505dc0890b98ba808e149f" 335 - dependencies = [ 336 - "lazy_static", 337 - "range", 338 - "read_token", 339 - ] 340 - 341 - [[package]] 342 - name = "proc-macro2" 343 - version = "1.0.47" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" 346 - dependencies = [ 347 - "unicode-ident", 348 - ] 349 - 350 - [[package]] 351 - name = "quote" 352 - version = "0.3.15" 353 - source = "registry+https://github.com/rust-lang/crates.io-index" 354 - checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 355 - 356 - [[package]] 357 - name = "quote" 358 - version = "1.0.21" 359 - source = "registry+https://github.com/rust-lang/crates.io-index" 360 - checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 361 - dependencies = [ 362 - "proc-macro2", 363 - ] 364 - 365 - [[package]] 366 - name = "rand" 367 - version = "0.4.6" 368 - source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 370 - dependencies = [ 371 - "fuchsia-cprng", 372 - "libc", 373 - "rand_core 0.3.1", 374 - "rdrand", 375 - "winapi", 376 - ] 377 - 378 - [[package]] 379 - name = "rand_core" 380 - version = "0.3.1" 381 - source = "registry+https://github.com/rust-lang/crates.io-index" 382 - checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 383 - dependencies = [ 384 - "rand_core 0.4.2", 385 - ] 386 - 387 - [[package]] 388 - name = "rand_core" 389 - version = "0.4.2" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 392 - 393 - [[package]] 394 - name = "range" 395 - version = "1.0.0" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "5b851d7223b2adbc5d30dea12eeaf45dd58c81559656e056d31ff7d5407ba6f1" 398 - 399 - [[package]] 400 - name = "rdrand" 401 - version = "0.4.0" 402 - source = "registry+https://github.com/rust-lang/crates.io-index" 403 - checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 404 - dependencies = [ 405 - "rand_core 0.3.1", 406 - ] 407 - 408 - [[package]] 409 - name = "read_color" 410 - version = "1.0.0" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "9f4c8858baa4ad3c8bcc156ae91a0ffe22b76a3975c40c49b4f04c15c6bce0da" 413 - 414 - [[package]] 415 - name = "read_token" 416 - version = "1.0.0" 417 - source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "051fef16f3ac50a9eacfd64de43e909016df6b722d70b2a6e73eb83c1e891638" 419 - dependencies = [ 420 - "range", 421 - ] 422 - 423 - [[package]] 424 - name = "rustc-serialize" 425 - version = "0.3.24" 426 - source = "registry+https://github.com/rust-lang/crates.io-index" 427 - checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" 428 - 429 - [[package]] 430 - name = "rusty-sandbox" 431 - version = "0.2.1" 432 - source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "5e0be1328117ff55cebdb605c82e7356b8d9d19f8bcdb2a615805298973c73e4" 434 - dependencies = [ 435 - "libc", 436 - "unix_socket", 437 - ] 438 - 439 - [[package]] 440 - name = "serde" 441 - version = "1.0.147" 442 - source = "registry+https://github.com/rust-lang/crates.io-index" 443 - checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" 444 - 445 - [[package]] 446 - name = "serde_derive" 447 - version = "1.0.147" 448 - source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" 450 - dependencies = [ 451 - "proc-macro2", 452 - "quote 1.0.21", 453 - "syn 1.0.103", 454 - ] 455 - 456 - [[package]] 457 - name = "strsim" 458 - version = "0.8.0" 459 - source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 461 - 462 - [[package]] 463 - name = "strum" 464 - version = "0.8.0" 465 - source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "4ca6e4730f517e041e547ffe23d29daab8de6b73af4b6ae2a002108169f5e7da" 467 - 468 - [[package]] 469 - name = "strum_macros" 470 - version = "0.8.0" 471 - source = "registry+https://github.com/rust-lang/crates.io-index" 472 - checksum = "3384590878eb0cab3b128e844412e2d010821e7e091211b9d87324173ada7db8" 473 - dependencies = [ 474 - "quote 0.3.15", 475 - "syn 0.11.11", 476 - ] 477 - 478 - [[package]] 479 - name = "syn" 480 - version = "0.11.11" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 483 - dependencies = [ 484 - "quote 0.3.15", 485 - "synom", 486 - "unicode-xid", 487 - ] 488 - 489 - [[package]] 490 - name = "syn" 491 - version = "1.0.103" 492 - source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" 494 - dependencies = [ 495 - "proc-macro2", 496 - "quote 1.0.21", 497 - "unicode-ident", 498 - ] 499 - 500 - [[package]] 501 - name = "synom" 502 - version = "0.11.3" 503 - source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 505 - dependencies = [ 506 - "unicode-xid", 507 - ] 508 - 509 - [[package]] 510 - name = "textwrap" 511 - version = "0.11.0" 512 - source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 514 - dependencies = [ 515 - "unicode-width", 516 - ] 517 - 518 - [[package]] 519 - name = "toml" 520 - version = "0.5.9" 521 - source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 523 - dependencies = [ 524 - "serde", 525 - ] 526 - 527 - [[package]] 528 - name = "unicode-ident" 529 - version = "1.0.5" 530 - source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 532 - 533 - [[package]] 534 - name = "unicode-width" 535 - version = "0.1.10" 536 - source = "registry+https://github.com/rust-lang/crates.io-index" 537 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 538 - 539 - [[package]] 540 - name = "unicode-xid" 541 - version = "0.0.4" 542 - source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 544 - 545 - [[package]] 546 - name = "unix_socket" 547 - version = "0.5.0" 548 - source = "registry+https://github.com/rust-lang/crates.io-index" 549 - checksum = "6aa2700417c405c38f5e6902d699345241c28c0b7ade4abaad71e35a87eb1564" 550 - dependencies = [ 551 - "cfg-if 0.1.10", 552 - "libc", 553 - ] 554 - 555 - [[package]] 556 - name = "vec_map" 557 - version = "0.8.2" 558 - source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 560 - 561 - [[package]] 562 - name = "vecmath" 563 - version = "1.0.0" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "956ae1e0d85bca567dee1dcf87fb1ca2e792792f66f87dced8381f99cd91156a" 566 - dependencies = [ 567 - "piston-float", 568 - ] 569 - 570 - [[package]] 571 - name = "void" 572 - version = "1.0.2" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 575 - 576 - [[package]] 577 - name = "winapi" 578 - version = "0.3.9" 579 - source = "registry+https://github.com/rust-lang/crates.io-index" 580 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 581 - dependencies = [ 582 - "winapi-i686-pc-windows-gnu", 583 - "winapi-x86_64-pc-windows-gnu", 584 - ] 585 - 586 - [[package]] 587 - name = "winapi-i686-pc-windows-gnu" 588 - version = "0.4.0" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 591 - 592 - [[package]] 593 - name = "winapi-x86_64-pc-windows-gnu" 594 - version = "0.4.0" 595 - source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+4 -9
pkgs/tools/inputmethods/evscript/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "evscript"; 5 - version = "unstable-2022-11-20"; 5 + version = "0.1.0"; 6 6 7 7 src = fetchFromGitea { 8 8 domain = "codeberg.org"; 9 9 owner = "valpackett"; 10 10 repo = pname; 11 - rev = "ba997c9723a91717c683f08e9957d0ecea3da6cd"; 12 - sha256 = "sha256-wuTPcBUuPK1D4VO8BXexx9AdiPM+X0TkJ3G7b7ofER8="; 11 + rev = version; 12 + hash = "sha256-lCXDDLovUb5aSOPTyVJL25v1JT1BGrrUlUR0Mu0XX4Q="; 13 13 }; 14 14 15 - cargoLock = { 16 - lockFile = ./Cargo.lock; 17 - outputHashes = { 18 - "evdev-0.10.1" = "sha256-iIzKhlA+7qg+nNwP82OIpoXVUEYU31iSEt1KJA3EewQ="; 19 - }; 20 - }; 15 + cargoHash = "sha256-KcQZnGFtev4ckhtQ7CNB773fAsExZ9EQl9e4Jf4beGo="; 21 16 22 17 meta = with lib; { 23 18 homepage = "https://codeberg.org/valpackett/evscript";
+2 -2
pkgs/tools/misc/blflash/default.nix
··· 8 8 owner = "spacemeowx2"; 9 9 repo = "blflash"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-lv5bUbq5AnZVeR8V0A4pamY9ZIQAhLmvZEr+CRMPcj0="; 11 + hash = "sha256-lv5bUbq5AnZVeR8V0A4pamY9ZIQAhLmvZEr+CRMPcj0="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-NRBW2rGrtEmmxONTpCM1D+o5HtnLjp175Sq9+aCp7ZE="; 14 + cargoHash = "sha256-NRBW2rGrtEmmxONTpCM1D+o5HtnLjp175Sq9+aCp7ZE="; 15 15 16 16 meta = with lib; { 17 17 description = "An bl602 serial flasher written in Rust";
+5 -1
pkgs/tools/misc/grc/default.nix
··· 21 21 substituteInPlace $f \ 22 22 --replace /usr/local/ $out/ 23 23 done 24 + 25 + # Support for absolute store paths. 26 + substituteInPlace grc.conf \ 27 + --replace "^([/\w\.]+\/)" "^([/\w\.\-]+\/)" 24 28 ''; 25 29 26 30 nativeBuildInputs = [ installShellFiles ]; ··· 46 42 beautifying your logfiles or output of commands. 47 43 ''; 48 44 license = licenses.gpl2Plus; 49 - maintainers = with maintainers; [ lovek323 AndersonTorres peterhoeg ]; 45 + maintainers = with maintainers; [ azahi lovek323 AndersonTorres peterhoeg ]; 50 46 platforms = platforms.unix; 51 47 }; 52 48 }
+1 -1
pkgs/tools/misc/silicon/default.nix
··· 26 26 owner = "Aloxaf"; 27 27 repo = "silicon"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-RuzaRJr1n21MbHSeHBt8CjEm5AwbDbvX9Nw5PeBTl+w="; 29 + hash = "sha256-RuzaRJr1n21MbHSeHBt8CjEm5AwbDbvX9Nw5PeBTl+w="; 30 30 }; 31 31 32 32 patches = [
+5 -15
pkgs/tools/networking/doggo/default.nix pkgs/by-name/do/doggo/package.nix
··· 1 - { lib 2 - , buildGoModule 1 + { buildGoModule 3 2 , fetchFromGitHub 4 3 , installShellFiles 5 - , fetchpatch 4 + , lib 6 5 }: 7 6 8 7 buildGoModule rec { 9 8 pname = "doggo"; 10 - version = "0.5.5"; 9 + version = "0.5.7"; 11 10 12 11 src = fetchFromGitHub { 13 12 owner = "mr-karan"; 14 13 repo = pname; 15 14 rev = "v${version}"; 16 - sha256 = "sha256-qc6RYz2bVaY/IBGIXUYO6wyh7iUDAJ1ASCK0dFwZo6s="; 15 + hash = "sha256-hzl7BE3vsE2G9O2nwN/gkqQTJ+9aDfNIjmpmgN1AYq8="; 17 16 }; 18 17 19 - patches = [ 20 - # go 1.20 support 21 - # https://github.com/mr-karan/doggo/pull/66 22 - (fetchpatch { 23 - url = "https://github.com/mr-karan/doggo/commit/7db5c2144fa4a3f18afe1c724b9367b03f84aed7.patch"; 24 - hash = "sha256-cx8s23e02zIvJOtuqTz8XC9ApYODh96Ubl1KhsFUZ9g="; 25 - }) 26 - ]; 27 - 28 - vendorHash = "sha256-GVLfPK1DFVSfNSdIxYSaspHFphd8ft2HUK0SMeWiVUg="; 18 + vendorHash = "sha256-uonybBLABPj9CPtc+y82ajvQI7kubK+lKi4eLcZIUqA="; 29 19 nativeBuildInputs = [ installShellFiles ]; 30 20 subPackages = [ "cmd/doggo" ]; 31 21
+2 -2
pkgs/tools/networking/nethoscope/default.nix
··· 15 15 owner = "vvilhonen"; 16 16 repo = "nethoscope"; 17 17 rev = "v${version}"; 18 - sha256 = "0dsv1f0ncwji8x7q1ix62955qji4jijgjx6xg3hxvl0vvvwqxcdz"; 18 + hash = "sha256-v7GO+d4b0N3heN10+WSUJEpcShKmx4BPR1FyZoELWzc="; 19 19 }; 20 20 21 - cargoSha256 = "0cl0i4m8fxyxfib95x90x6qr284y41wwgwqhflyfa7d3r6qwq8nk"; 21 + cargoHash = "sha256-0yLMscmjHeU8dRDzx3kgniCRsekg9ZJWdN13hyqJgDI="; 22 22 23 23 nativeBuildInputs = [ 24 24 pkg-config
+1 -1
pkgs/tools/networking/pmacct/default.nix
··· 25 25 owner = "pmacct"; 26 26 repo = "pmacct"; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-AcgZ5/8d1U/zGs4QeOkgkZS7ttCW6gtUv/Xuf4O4VE0="; 28 + hash = "sha256-AcgZ5/8d1U/zGs4QeOkgkZS7ttCW6gtUv/Xuf4O4VE0="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+1 -1
pkgs/tools/networking/tayga/default.nix
··· 6 6 7 7 src = fetchurl { 8 8 url= "http://www.litech.org/${pname}/${pname}-${version}.tar.bz2"; 9 - sha256 = "1700y121lhvpna49bjpssb7jq1abj9qw5wxgjn8gzp6jm4kpj7rb"; 9 + hash = "sha256-Kx95J6nS3P+Qla/zwnGSSwUsz9L6ypWIsndDGkTwAJw="; 10 10 }; 11 11 12 12 passthru.tests.tayga = nixosTests.tayga;
+2 -2
pkgs/tools/nix/alejandra/default.nix
··· 13 13 owner = "kamadorueda"; 14 14 repo = "alejandra"; 15 15 rev = version; 16 - sha256 = "sha256-xFumnivtVwu5fFBOrTxrv6fv3geHKF04RGP23EsDVaI="; 16 + hash = "sha256-xFumnivtVwu5fFBOrTxrv6fv3geHKF04RGP23EsDVaI="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-tF8E9mnvkTXoViVss9cNjpU4UkEsARp4RtlxKWq55hc="; 19 + cargoHash = "sha256-tF8E9mnvkTXoViVss9cNjpU4UkEsARp4RtlxKWq55hc="; 20 20 21 21 passthru.tests = { 22 22 version = testers.testVersion { package = alejandra; };
+1 -1
pkgs/tools/text/igrep/default.nix
··· 15 15 owner = "konradsz"; 16 16 repo = "igrep"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-L5mHuglU0CvTi02pbR8xfezBoH8L/DS+7jgvYvb4yro="; 18 + hash = "sha256-L5mHuglU0CvTi02pbR8xfezBoH8L/DS+7jgvYvb4yro="; 19 19 }; 20 20 21 21 cargoHash = "sha256-k63tu5Ffus4z0yd8vQ79q4+tokWAXD05Pvv9JByfnDg=";
+1 -3
pkgs/top-level/all-packages.nix
··· 7579 7579 inherit (darwin.apple_sdk.frameworks) Security; 7580 7580 }; 7581 7581 7582 - doggo = callPackage ../tools/networking/doggo { }; 7583 - 7584 7582 dq = callPackage ../tools/networking/dq { }; 7585 7583 7586 7584 dool = callPackage ../tools/system/dool { }; ··· 25006 25008 25007 25009 simp_le = callPackage ../tools/admin/simp_le { }; 25008 25010 25009 - simpleitk = callPackage ../development/libraries/simpleitk { lua = lua5_3; }; 25011 + simpleitk = callPackage ../development/libraries/simpleitk { lua = lua5_4; }; 25010 25012 25011 25013 sioclient = callPackage ../development/libraries/sioclient { }; 25012 25014
+38 -15
pkgs/top-level/perl-packages.nix
··· 98 98 hash = "sha256-6nyqFPdX3ggzEO0suimGYd3Mpd7gbsjxgEPqYlp53yA="; 99 99 }; 100 100 101 - outputs = ["out" "man"]; 101 + outputs = [ "out" "man" ]; 102 102 103 103 nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang; 104 104 propagatedBuildInputs = [ FileNext ]; ··· 6262 6262 6263 6263 DateExtract = buildPerlPackage { 6264 6264 pname = "Date-Extract"; 6265 - version = "0.06"; 6265 + version = "0.07"; 6266 6266 src = fetchurl { 6267 - url = "mirror://cpan/authors/id/A/AL/ALEXMV/Date-Extract-0.06.tar.gz"; 6268 - hash = "sha256-vHZY1cUMNSXsDvy1Ujal3i1dT8BvwUf6OSnI8JU82is="; 6267 + url = "mirror://cpan/authors/id/E/ET/ETHER/Date-Extract-0.07.tar.gz"; 6268 + hash = "sha256-+geIBK3k7uwd4UcuDguwR65i5MjU1QIHAbnlBXfFuPQ="; 6269 6269 }; 6270 - buildInputs = [ TestMockTime ]; 6271 - propagatedBuildInputs = [ DateTimeFormatNatural ]; 6270 + buildInputs = [ TestMockTimeHiRes ]; 6271 + propagatedBuildInputs = [ ClassDataInheritable DateTimeFormatNatural ]; 6272 6272 meta = { 6273 6273 description = "Extract probable dates from strings"; 6274 6274 license = with lib.licenses; [ artistic1 gpl1Plus ]; ··· 7295 7295 7296 7296 DBIxSearchBuilder = buildPerlPackage { 7297 7297 pname = "DBIx-SearchBuilder"; 7298 - version = "1.71"; 7298 + version = "1.77"; 7299 7299 src = fetchurl { 7300 - url = "mirror://cpan/authors/id/B/BP/BPS/DBIx-SearchBuilder-1.71.tar.gz"; 7301 - hash = "sha256-5C/dpvbmSSe7h3dIPlZtaDA6iwkY0YjKD+VRo6PUQr0="; 7300 + url = "mirror://cpan/authors/id/B/BP/BPS/DBIx-SearchBuilder-1.77.tar.gz"; 7301 + hash = "sha256-O/il1cjF/cYK0vY/Y/c90fZJP/TYJYcoOj4iM36P4HA="; 7302 7302 }; 7303 7303 buildInputs = [ DBDSQLite ]; 7304 7304 propagatedBuildInputs = [ CacheSimpleTimedExpiry ClassAccessor ClassReturnValue Clone DBIxDBSchema Want capitalization ]; ··· 9227 9227 propagatedBuildInputs = [ ModulePluggable Moo TypeTiny namespaceautoclean ]; 9228 9228 meta = { 9229 9229 description = "Watch for changes to files, cross-platform style"; 9230 - license = with lib.licenses; [artistic2 ]; 9230 + license = with lib.licenses; [ artistic2 ]; 9231 9231 }; 9232 9232 }; 9233 9233 ··· 10256 10256 10257 10257 GDGraph = buildPerlPackage { 10258 10258 pname = "GDGraph"; 10259 - version = "1.54"; 10259 + version = "1.56"; 10260 10260 src = fetchurl { 10261 - url = "mirror://cpan/authors/id/R/RU/RUZ/GDGraph-1.54.tar.gz"; 10262 - hash = "sha256-uW9cELZWwX0Wq2Whd3yQgpewKNO2gV9tVLIzfwBr+k8="; 10261 + url = "mirror://cpan/authors/id/B/BP/BPS/GDGraph-1.56.tar.gz"; 10262 + hash = "sha256-b0nMTlkBVIDbnJtrGK/YxQvjCIZoe2lBFRPQbziXERM="; 10263 10263 }; 10264 10264 propagatedBuildInputs = [ GDText ]; 10265 10265 buildInputs = [ CaptureTiny TestException ]; ··· 10752 10752 10753 10753 meta = { 10754 10754 description = "Perl interface to the GraphViz graphing tool"; 10755 - license = with lib.licenses; [artistic2 ]; 10755 + license = with lib.licenses; [ artistic2 ]; 10756 + }; 10757 + }; 10758 + 10759 + GraphViz2 = buildPerlPackage { 10760 + pname = "GraphViz2"; 10761 + version = "2.67"; 10762 + src = fetchurl { 10763 + url = "mirror://cpan/authors/id/E/ET/ETJ/GraphViz2-2.67.tar.gz"; 10764 + hash = "sha256-h8hcbt/86k+W5rSAD2+VEq6rGeuNOzSDAachMxvLhYA="; 10765 + }; 10766 + 10767 + # XXX: It'd be nicer if `GraphViz.pm' could record the path to graphviz. 10768 + buildInputs = [ pkgs.graphviz TestPod Moo IPCRun3 TypeTiny TestSnapshot Graph ]; 10769 + propagatedBuildInputs = [ FileWhich IPCRun ParseRecDescent XMLTwig XMLXPath DataSectionSimple ]; 10770 + 10771 + # needed for fontconfig tests 10772 + HOME = "/build"; 10773 + FONTCONFIG_PATH = "${lib.getOutput "out" pkgs.fontconfig}/etc/fonts"; 10774 + 10775 + meta = { 10776 + description = "Perl interface to the GraphViz graphing tool"; 10777 + license = with lib.licenses; [ artistic2 ]; 10756 10778 }; 10757 10779 }; 10758 10780 ··· 24656 24634 url = "mirror://cpan/authors/id/T/TA/TARAO/Test-MockTime-HiRes-0.08.tar.gz"; 24657 24635 hash = "sha256-X0n3rviV0yfa/fJ0TznBdsirDkuCJ9LW495omiWb3sE="; 24658 24636 }; 24659 - buildInputs = [ AnyEvent ModuleBuildTiny TestClass TestMockTime TestRequires ]; 24637 + buildInputs = [ AnyEvent ModuleBuildTiny TestClass TestRequires ]; 24638 + propagatedBuildInputs = [ TestMockTime ]; 24660 24639 meta = { 24661 24640 description = "Replaces actual time with simulated high resolution time"; 24662 24641 homepage = "https://github.com/tarao/perl5-Test-MockTime-HiRes";
+3
pkgs/top-level/python-packages.nix
··· 2887 2887 django = self.django_4; 2888 2888 django_4 = callPackage ../development/python-modules/django/4.nix { }; 2889 2889 2890 + # Pre-release 2891 + django_5 = callPackage ../development/python-modules/django/5.nix { }; 2892 + 2890 2893 django-admin-datta = callPackage ../development/python-modules/django-admin-datta { }; 2891 2894 2892 2895 django-admin-sortable2 = callPackage ../development/python-modules/django-admin-sortable2 { };