Merge remote-tracking branch 'origin/staging-next' into staging

K900 1d9d206c 428a7015

+880 -7908
+10 -5
nixos/doc/manual/development/unit-handling.section.md
··· 58 58 before the activation script is run. This behavior is different when the 59 59 service is socket-activated, as outlined in the following steps. 60 60 61 - - The last thing that is taken into account is whether the unit is a service 62 - and socket-activated. If `X-StopIfChanged` is **not** set, the service 63 - is **restart**ed with the others. If it is set, both the service and the 64 - socket are **stop**ped and the socket is **start**ed, leaving socket 65 - activation to start the service when it's needed. 61 + - The last thing that is taken into account is whether the unit is a 62 + service and socket-activated. A correspondence between a 63 + `.service` and its `.socket` unit is detected automatically, but 64 + services can **opt out** of that detection by setting 65 + `X-NotSocketActivated` to `yes` in their `[Service]` 66 + section. Otherwise, if `X-StopIfChanged` is **not** set, the 67 + service is **restart**ed with the others. If it is set, both the 68 + service and the socket are **stop**ped and the socket is 69 + **start**ed, leaving socket activation to start the service when 70 + it's needed. 66 71 67 72 ## Sysinit reactivation {#sec-sysinit-reactivation} 68 73
+3
nixos/lib/systemd-lib.nix
··· 579 579 '' else "") 580 580 + optionalString (def ? stopIfChanged && !def.stopIfChanged) '' 581 581 X-StopIfChanged=false 582 + '' 583 + + optionalString (def ? notSocketActivated && def.notSocketActivated) '' 584 + X-NotSocketActivated=true 582 585 '' + attrsToSection def.serviceConfig); 583 586 }; 584 587
+12
nixos/lib/systemd-unit-options.nix
··· 535 535 ''; 536 536 }; 537 537 538 + notSocketActivated = mkOption { 539 + type = types.bool; 540 + default = false; 541 + description = '' 542 + If set, a changed unit is never assumed to be 543 + socket-activated on configuration switch, even if 544 + it might have associated socket units. Instead, the unit 545 + will be restarted (or stopped/started) as if it had no 546 + associated sockets. 547 + ''; 548 + }; 549 + 538 550 startAt = mkOption { 539 551 type = with types; either str (listOf str); 540 552 default = [];
+4 -4
nixos/modules/services/hardware/udev.nix
··· 459 459 fi 460 460 ''; 461 461 462 - systemd.services.systemd-udevd = 463 - { restartTriggers = [ config.environment.etc."udev/rules.d".source ]; 464 - }; 465 - 462 + systemd.services.systemd-udevd = { 463 + restartTriggers = [ config.environment.etc."udev/rules.d".source ]; 464 + notSocketActivated = true; 465 + }; 466 466 }; 467 467 468 468 imports = [
+4 -5
nixos/modules/services/monitoring/prometheus/exporters/fastly.nix
··· 31 31 ''; 32 32 }; 33 33 34 - tokenPath = mkOption { 34 + environmentFile = mkOption { 35 35 type = path; 36 36 description = '' 37 - A run-time path to the token file, which is supposed to be provisioned 38 - outside of Nix store. 37 + An environment file containg at least the FASTLY_API_TOKEN= environment 38 + variable. 39 39 ''; 40 40 }; 41 41 }; 42 42 serviceOpts = { 43 43 serviceConfig = { 44 - LoadCredential = "fastly-api-token:${cfg.tokenPath}"; 45 - Environment = [ "FASTLY_API_TOKEN=%d/fastly-api-token" ]; 44 + EnvironmentFile = cfg.environmentFile; 46 45 ExecStart = escapeSystemdExecArgs ( 47 46 [ 48 47 (getExe pkgs.prometheus-fastly-exporter)
+4
nixos/modules/services/video/frigate.nix
··· 477 477 }; 478 478 }; 479 479 extraConfig = '' 480 + # Frigate wants to connect on 127.0.0.1:5000 for unauthenticated requests 481 + # https://github.com/NixOS/nixpkgs/issues/370349 482 + listen 127.0.0.1:5000; 483 + 480 484 # vod settings 481 485 vod_base_url ""; 482 486 vod_segments_base_url "";
+7
nixos/modules/system/activation/switch-to-configuration.pl
··· 544 544 } 545 545 } 546 546 547 + if (parse_systemd_bool(\%new_unit_info, "Service", "X-NotSocketActivated", 0)) { 548 + # If the unit explicitly opts out of socket 549 + # activation, restart it as if it weren't (but do 550 + # restart its sockets, that's fine): 551 + $socket_activated = 0; 552 + } 553 + 547 554 # If the unit is not socket-activated, record 548 555 # that this unit needs to be started below. 549 556 # We write this to a file to ensure that the
+1
nixos/modules/system/boot/networkd.nix
··· 2901 2901 config.environment.etc."systemd/networkd.conf".source 2902 2902 ]; 2903 2903 aliases = [ "dbus-org.freedesktop.network1.service" ]; 2904 + notSocketActivated = true; 2904 2905 }; 2905 2906 2906 2907 networking.iproute2 = mkIf (cfg.config.addRouteTablesToIPRoute2 && cfg.config.routeTables != { }) {
+9 -4
nixos/modules/virtualisation/oci-containers.nix
··· 14 14 defaultBackend = options.virtualisation.oci-containers.backend.default; 15 15 16 16 containerOptions = 17 - { ... }: 17 + { name, ... }: 18 18 { 19 19 20 20 options = { ··· 57 57 the previous image. 58 58 ''; 59 59 example = literalExpression "pkgs.dockerTools.streamLayeredImage {...};"; 60 + }; 61 + 62 + serviceName = mkOption { 63 + type = types.str; 64 + default = "${cfg.backend}-${name}"; 65 + defaultText = "<backend>-<name>"; 66 + description = "Systemd service name that manages the container"; 60 67 }; 61 68 62 69 login = { ··· 525 532 config = lib.mkIf (cfg.containers != { }) ( 526 533 lib.mkMerge [ 527 534 { 528 - systemd.services = mapAttrs' ( 529 - n: v: nameValuePair "${cfg.backend}-${n}" (mkService n v) 530 - ) cfg.containers; 535 + systemd.services = mapAttrs' (n: v: nameValuePair v.serviceName (mkService n v)) cfg.containers; 531 536 532 537 assertions = 533 538 let
+4 -1
nixos/tests/frigate.nix
··· 66 66 # login and store session 67 67 machine.log(machine.succeed(f"http --check-status --session=frigate post http://localhost/api/login user=admin password={password}")) 68 68 69 - # make authenticated api requested 69 + # make authenticated api request 70 70 machine.log(machine.succeed("http --check-status --session=frigate get http://localhost/api/version")) 71 + 72 + # make unauthenticated api request 73 + machine.log(machine.succeed("http --check-status get http://localhost:5000/api/version")) 71 74 72 75 # wait for a recording to appear 73 76 machine.wait_for_file("/var/cache/frigate/test@*.mp4")
-1
nixos/tests/gitea.nix
··· 36 36 meta.maintainers = with maintainers; [ 37 37 aanderse 38 38 kolaente 39 - ma27 40 39 ]; 41 40 42 41 nodes = {
+1 -1
nixos/tests/prometheus-exporters.nix
··· 399 399 fastly = { 400 400 exporterConfig = { 401 401 enable = true; 402 - tokenPath = pkgs.writeText "token" "abc123"; 402 + environmentFile = pkgs.writeText "fastly-exporter-env" "FASTLY_API_TOKEN=abc123"; 403 403 }; 404 404 405 405 exporterTest = ''
+6 -2
pkgs/applications/audio/ardour/7.nix
··· 28 28 liblo, 29 29 libogg, 30 30 libpulseaudio, 31 - librdf_raptor, 32 31 librdf_rasqal, 33 32 libsamplerate, 34 33 libsigcxx, ··· 94 93 url = "https://github.com/Ardour/ardour/commit/338cd09a4aa1b36b8095dfc14ab534395f9a4a92.patch?full_index=1"; 95 94 hash = "sha256-AvV4aLdkfrxPkE4NX2ETSagq4GjEC+sHCEqdcYvL+CY="; 96 95 }) 96 + 97 + # Fix build with boost >= 1.85 98 + (fetchpatch { 99 + url = "https://github.com/Ardour/ardour/commit/f94bde59d740d65e67c5cd13af4d7ea51453aeaa.patch"; 100 + hash = "sha256-dGRjkdF3REkANytDR17wIh8J2+AcLFmV4tKZied/OZg="; 101 + }) 97 102 ]; 98 103 99 104 # Ardour's wscript requires git revision and date to be available. ··· 139 144 liblo 140 145 libogg 141 146 libpulseaudio 142 - librdf_raptor 143 147 librdf_rasqal 144 148 libsamplerate 145 149 libsigcxx
+3 -3
pkgs/applications/display-managers/greetd/regreet.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "regreet"; 15 - version = "0.1.2"; 15 + version = "0.1.3"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "rharish101"; 19 19 repo = "ReGreet"; 20 20 rev = version; 21 - hash = "sha256-ubKSqt3axp46ECIKwq9K1aHTPeuMQ3fCx6aRlhXh2F0="; 21 + hash = "sha256-PYBRfBdy6+cv3VKBFu5RUec/yfuKrAEkRxpanihIt1E="; 22 22 }; 23 23 24 - cargoHash = "sha256-Gwz1xs6OhrBb4xOuUUmxDVKxTC2lyp4Ckzi+9bnaRgo="; 24 + cargoHash = "sha256-SUIyekcuDbPIh/9+EKaAoep9hZDJv8BW+ovtWyDqiCI="; 25 25 26 26 buildFeatures = [ "gtk4_8" ]; 27 27
+12
pkgs/applications/editors/vim/plugins/generated.nix
··· 1290 1290 meta.homepage = "https://github.com/Saghen/blink.compat/"; 1291 1291 }; 1292 1292 1293 + blink-ripgrep-nvim = buildVimPlugin { 1294 + pname = "blink-ripgrep.nvim"; 1295 + version = "2025-01-04"; 1296 + src = fetchFromGitHub { 1297 + owner = "mikavilpas"; 1298 + repo = "blink-ripgrep.nvim"; 1299 + rev = "1e0ff13ef364b585c1a21148d91b185cf3b246af"; 1300 + sha256 = "0hhv74pa61b3z990w7j5q59r9wd6l2c7vlxgak6xvgb5gksk3cbp"; 1301 + }; 1302 + meta.homepage = "https://github.com/mikavilpas/blink-ripgrep.nvim/"; 1303 + }; 1304 + 1293 1305 block-nvim = buildVimPlugin { 1294 1306 pname = "block.nvim"; 1295 1307 version = "2023-10-10";
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 104 104 https://github.com/LunarVim/bigfile.nvim/,, 105 105 https://github.com/APZelos/blamer.nvim/,HEAD, 106 106 https://github.com/giuxtaposition/blink-cmp-copilot/,HEAD, 107 + https://github.com/mikavilpas/blink-ripgrep.nvim/,HEAD, 107 108 https://github.com/Saghen/blink.compat/,HEAD, 108 109 https://github.com/HampusHauffman/block.nvim/,HEAD, 109 110 https://github.com/blueballs-theme/blueballs-neovim/,,
+3 -3
pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "mednafen-pce-fast"; 8 - version = "0-unstable-2024-11-15"; 8 + version = "0-unstable-2024-12-27"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "beetle-pce-fast-libretro"; 13 - rev = "931586f0512663f625a6e981d3047a6620281ab5"; 14 - hash = "sha256-9Nne4upiQNSAlTZsyXcLNIwN8MMKUO1ycahowYW1sWg="; 13 + rev = "cfbb0946f79de33bc615d0a079e1a92f1454c3e3"; 14 + hash = "sha256-47Fap6QjwFwodLaHBa78kKUap2DB8FdaEe6AEv0qyCA="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/bsnes-hd.nix
··· 6 6 }: 7 7 mkLibretroCore { 8 8 core = "bsnes-hd-beta"; 9 - version = "0-unstable-2023-04-26"; 9 + version = "0-unstable-2024-10-21"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "DerKoun"; 13 13 repo = "bsnes-hd"; 14 - rev = "f46b6d6368ea93943a30b5d4e79e8ed51c2da5e8"; 15 - hash = "sha256-Y3FhGtcz7BzwUSBy1SGMuylJdZti/JB8qQnabIkG/dI="; 14 + rev = "0bb7b8645e22ea2476cabd58f32e987b14686601"; 15 + hash = "sha256-YzWSZMn6v5hWIHnp6KmmpevCsf35Vi2BCcmFMnrFPH0="; 16 16 }; 17 17 18 18 extraBuildInputs = [
+3 -3
pkgs/applications/emulators/libretro/cores/bsnes.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "bsnes"; 8 - version = "0-unstable-2024-09-06"; 8 + version = "0-unstable-2024-12-13"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "bsnes-libretro"; 13 - rev = "20c55eb6333a11395ba637df8583066483e58cb2"; 14 - hash = "sha256-IP00xtxS3wwnQSmYltrX8GEHZX/65xnx2EsmQlE1VZM="; 13 + rev = "a0bb11bbb1fc5d6b478baca53c3efe526c43986c"; 14 + hash = "sha256-unOJ2hdCA5LxNUcJe7fJCAetLpqrQzujxFDOsxLzXow="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/gpsp.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "gpsp"; 8 - version = "0-unstable-2024-09-18"; 8 + version = "0-unstable-2024-12-26"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "gpsp"; 13 - rev = "36061caf8cc5e15c3c92fb772b6b8560c7c59ec7"; 14 - hash = "sha256-o36OUdgm7p+rAMN6R2e2Lqi4oBLTyxziw7Lr20ERBg0="; 13 + rev = "66ced08c693094f2eaefed5e11bd596c41028959"; 14 + hash = "sha256-gXk9T62wns7QixY98RSjfM/OW6SfH8N3NcjZ328WSAM="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/mame2003-plus.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "mame2003-plus"; 8 - version = "0-unstable-2024-11-01"; 8 + version = "0-unstable-2024-12-29"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "mame2003-plus-libretro"; 13 - rev = "b00ea1c9574126d75ae7b80c3b41e1186421fc1d"; 14 - hash = "sha256-Zq4P5UsZh3p9/zasfTC+pzWiLAo7T2qAgZw4bJ4ADdM="; 13 + rev = "aaf1a95728d9ca6d4cf6633b6a839f8daa27db81"; 14 + hash = "sha256-AjeXfISAcH6RiHU5gJutZUdpg2p+ASVKsI1+Nl76xSY="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/nestopia.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "nestopia"; 8 - version = "0-unstable-2024-12-14"; 8 + version = "0-unstable-2024-12-22"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "nestopia"; 13 - rev = "e7b65504ffc7f14fc5c74954d02b18f44c3aaf43"; 14 - hash = "sha256-WI/EPWfTmcPM8SSVroqlya6U5cEgmesSJGbPOjxCSUg="; 13 + rev = "6bbfff9a56ead67f0da696ab2c3aea3c11896964"; 14 + hash = "sha256-D2FtfabikcZq0dl+ot/NJJkOaQXj0Sl5P2ioNrvxgSs="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/prboom.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "prboom"; 8 - version = "0-unstable-2024-10-21"; 8 + version = "0-unstable-2024-12-27"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "libretro-prboom"; 13 - rev = "d25ccfb9739069824d8fff99e3ae78a58a09df01"; 14 - hash = "sha256-IaMreS2MSkFdZ3Jff2FOZBvKIIa4KIkp41LIg3PLl44="; 13 + rev = "b3e5f8b2e8855f9c6fc7ff7a0036e4e61379177d"; 14 + hash = "sha256-FtPn54s/QUu8fjeUBaAQMZ6EWAixV+gawuCv2eM+qrs="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/twenty-fortyeight.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "2048"; 8 - version = "0-unstable-2024-06-28"; 8 + version = "0-unstable-2024-12-27"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "libretro-2048"; 13 - rev = "5474ed1ab880b3296c9860d0943d7de1970c79dd"; 14 - hash = "sha256-i6bbxsLpSicDDGYKAxTMCMioHHfvBzVokun3PNYgDsc="; 13 + rev = "86e02d3c2dd76858db7370f5df1ccfc33b3abee1"; 14 + hash = "sha256-k3te3XZCw86NkqXpjZaYWi4twUvh9UBkiPyqposLTEs="; 15 15 }; 16 16 17 17 meta = {
+1 -1
pkgs/applications/networking/browsers/firefox/common.nix
··· 432 432 ] 433 433 # LTO is done using clang and lld on Linux. 434 434 ++ lib.optionals ltoSupport [ 435 - "--enable-lto=cross" # Cross-Language LTO 435 + "--enable-lto=cross,full" # Cross-Language LTO 436 436 "--enable-linker=lld" 437 437 ] 438 438 ++ lib.optional (isElfhackPlatform stdenv) (enableFeature elfhackSupport "elf-hack")
+20 -20
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 207 207 "vendorHash": "sha256-A6/YN/iFxdfGjYO8Pum5nWysGmEeLaxgFPe8zaoPfjA=" 208 208 }, 209 209 "buildkite": { 210 - "hash": "sha256-BaAl5rnE4soS4k76zxZwctQZ9uL6ejbbosQMpkwgVB4=", 210 + "hash": "sha256-mhiPKnn5cOXMlz1cM0BrJnRVESWakgkiN/R5ZUUEv/M=", 211 211 "homepage": "https://registry.terraform.io/providers/buildkite/buildkite", 212 212 "owner": "buildkite", 213 213 "repo": "terraform-provider-buildkite", 214 - "rev": "v1.15.1", 214 + "rev": "v1.15.2", 215 215 "spdx": "MIT", 216 - "vendorHash": "sha256-DzKXTIPkNFZT/YrdWWsH3pEMkDFT3pD0xLwteRz677g=" 216 + "vendorHash": "sha256-UdJxDq4VU7rWMoiSlXtb861yd+az2nrxGafvEj2K34Y=" 217 217 }, 218 218 "ccloud": { 219 219 "hash": "sha256-Dpx0eugcHCJV8GNPqjxx4P9ohgJgB10DTnHr+CeN/iQ=", ··· 243 243 "vendorHash": null 244 244 }, 245 245 "cloudamqp": { 246 - "hash": "sha256-jPiOgAQxQ6HIKJ/L5rh82fyd4rwrPOPgrQN3UMWBQF0=", 246 + "hash": "sha256-IdL/c9uJMCFiAug1WpU9CkqwPM4tOkqYNLjsON3wmjw=", 247 247 "homepage": "https://registry.terraform.io/providers/cloudamqp/cloudamqp", 248 248 "owner": "cloudamqp", 249 249 "repo": "terraform-provider-cloudamqp", 250 - "rev": "v1.32.1", 250 + "rev": "v1.32.2", 251 251 "spdx": "MPL-2.0", 252 - "vendorHash": "sha256-j3qdi19dxJL+R8Xa6MDag6KHMuBnzEZ9lUhuSAEZOAQ=" 252 + "vendorHash": "sha256-QErIw/HQ4BMWmM0xEnYsOY0Vcfj50o6mnIWML4nK/SU=" 253 253 }, 254 254 "cloudflare": { 255 255 "hash": "sha256-RC8/tw01yNxeqOlmLzzagRgxQm+o+4ztJ/7KWyBPJ+I=", ··· 570 570 "vendorHash": "sha256-TFH5tHOTRNPUMGYeYQ1ZbM6FjcojYnkB2NwnQOacTvg=" 571 571 }, 572 572 "helm": { 573 - "hash": "sha256-8cYhbxbjTfloDd3cLYNPv98TzeC0XVrb4DQ2ScZDYvI=", 573 + "hash": "sha256-LCvsZNeGQb4wWIASnQxXbH/3YJJaUZS9nY8mHq6M4FM=", 574 574 "homepage": "https://registry.terraform.io/providers/hashicorp/helm", 575 575 "owner": "hashicorp", 576 576 "repo": "terraform-provider-helm", 577 - "rev": "v2.16.1", 577 + "rev": "v2.17.0", 578 578 "spdx": "MPL-2.0", 579 - "vendorHash": "sha256-cMdWIciJEUvcrRaMMDlXI7fuJHXV6FCpyqG18Q926iQ=" 579 + "vendorHash": "sha256-XjxpJ8u7apSefoQ4jw3nrptca5+EtvB0zlCaK1zzRPQ=" 580 580 }, 581 581 "heroku": { 582 582 "hash": "sha256-B/NaFe8KOKGJJlF3vZnpdMnbD1VxBktqodPBk+4NZEc=", ··· 723 723 "vendorHash": "sha256-pE0WujGxCMW0/27F8aaNtyIHdsOJTwEJL+bdiHpzu7s=" 724 724 }, 725 725 "kubernetes": { 726 - "hash": "sha256-gHLEk5CpF4btfSwrpiDJv2lyBdoewf1uLyioj1CQjm0=", 726 + "hash": "sha256-eSAgeN/ExP75Kbhb099t3vW0XQA2TXIhiyv1RUt4ziM=", 727 727 "homepage": "https://registry.terraform.io/providers/hashicorp/kubernetes", 728 728 "owner": "hashicorp", 729 729 "repo": "terraform-provider-kubernetes", 730 - "rev": "v2.35.0", 730 + "rev": "v2.35.1", 731 731 "spdx": "MPL-2.0", 732 732 "vendorHash": "sha256-PfvIzUugDsnMKW7mSM2GyJZpXi3wJsEhYLKzlKq1U6A=" 733 733 }, ··· 822 822 "vendorHash": "sha256-YFzYLUfyJglKaJSBksrI1DBHmK6+yoMIg9QlGIEZFkU=" 823 823 }, 824 824 "minio": { 825 - "hash": "sha256-aSEzsncqNLWfVnnGfz/fDpRw9w2muGnybX8WYd1tP/Y=", 825 + "hash": "sha256-GJU70N/8EocLNxTG/psIsRYVHkg5fALhA9/ewErNML0=", 826 826 "homepage": "https://registry.terraform.io/providers/aminueza/minio", 827 827 "owner": "aminueza", 828 828 "repo": "terraform-provider-minio", 829 - "rev": "v3.2.1", 829 + "rev": "v3.2.2", 830 830 "spdx": "AGPL-3.0", 831 831 "vendorHash": "sha256-a9v1nVG3NiuyHwJGhIKKKXFDp4/Cb533EJxrfqK9h/A=" 832 832 }, ··· 976 976 "vendorHash": null 977 977 }, 978 978 "ovh": { 979 - "hash": "sha256-vHe/Yrz4vTWFJrbd4raQpbioxm6PXaValf/KW6uHmxs=", 979 + "hash": "sha256-qF2Wfgse2hcQ6TCbwfk+taUNwEKnNWZh2929VlgCrb4=", 980 980 "homepage": "https://registry.terraform.io/providers/ovh/ovh", 981 981 "owner": "ovh", 982 982 "repo": "terraform-provider-ovh", 983 - "rev": "v1.2.0", 983 + "rev": "v1.4.0", 984 984 "spdx": "MPL-2.0", 985 985 "vendorHash": null 986 986 }, 987 987 "pagerduty": { 988 - "hash": "sha256-HJ2HXH2HKY1nPRVQ/UPyMwm7++H0KR9iunNNEtkttm4=", 988 + "hash": "sha256-C0Ded8XrPh+yeN+0SvrOPaKONTWvvj4J15xsaXgsri4=", 989 989 "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", 990 990 "owner": "PagerDuty", 991 991 "repo": "terraform-provider-pagerduty", 992 - "rev": "v3.18.2", 992 + "rev": "v3.18.3", 993 993 "spdx": "MPL-2.0", 994 994 "vendorHash": null 995 995 }, ··· 1192 1192 "vendorHash": "sha256-c3R/7k7y7XS2Qli00nSj7gh/3Mj88PY4WybBTq/+pPs=" 1193 1193 }, 1194 1194 "spotinst": { 1195 - "hash": "sha256-vy0IOtH1S7Krud9JfID8oYYKpSrxolU4eStnppPjvpM=", 1195 + "hash": "sha256-odW3iNfCrl6VLWZGjwZoVfwWHJXCJXzfbjoh+QitbTo=", 1196 1196 "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", 1197 1197 "owner": "spotinst", 1198 1198 "repo": "terraform-provider-spotinst", 1199 - "rev": "v1.202.0", 1199 + "rev": "v1.204.0", 1200 1200 "spdx": "MPL-2.0", 1201 - "vendorHash": "sha256-ehPfPVaIkeKXNfuqNYjL2WwEHV/kMVoOQDOIfYRfY2A=" 1201 + "vendorHash": "sha256-m2WVp5FdEl1yyvdAqAe0tqbH7GC6M5WkxJxXevXxCL4=" 1202 1202 }, 1203 1203 "ssh": { 1204 1204 "hash": "sha256-1UN5QJyjCuxs2vQYlSuz2jsu/HgGTxOoWWRcv4qcwow=",
+3 -3
pkgs/applications/networking/instant-messengers/twitch-tui/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "twitch-tui"; 15 - version = "2.6.17"; 15 + version = "2.6.18"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "Xithrius"; 19 19 repo = pname; 20 20 tag = "v${version}"; 21 - hash = "sha256-QwFCabksDG+G7nfQPtxshd4n71Dj/uKOGRRutnZxECM="; 21 + hash = "sha256-uo9QEwSRIJKjWza8dEQXDCMQ/ydKBk/BX2TaVhX+k1M="; 22 22 }; 23 23 24 - cargoHash = "sha256-EEZZaTIDrVcygfXg7/cLOnrVeDfpP88Q16RQ+Bl7eUI="; 24 + cargoHash = "sha256-QYT5Aqwl2m/+SZlw55Ep3dIfmESSNowN30JJ52mY/Lk="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+3 -3
pkgs/applications/networking/irc/tiny/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "tiny"; 18 - version = "0.12.0"; 18 + version = "0.13.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "osa1"; 22 22 repo = "tiny"; 23 23 rev = "v${version}"; 24 - hash = "sha256-VlKhOHNggT+FbMvE/N2JQOJf0uB1N69HHdP09u89qSk="; 24 + hash = "sha256-phjEae2SS3zkSpuhhE4iscUM8ij8DT47YLIMATMG/+Q="; 25 25 }; 26 26 27 - cargoHash = "sha256-AhQCfLCoJU7o8s+XL3hDOPmZi9QjOxXSA9uglA1KSuY="; 27 + cargoHash = "sha256-DvFrRH6wObMvkRxS8vh3tlCrZNAiuZHfN0ARagMfG2k="; 28 28 29 29 nativeBuildInputs = lib.optional stdenv.hostPlatform.isLinux pkg-config; 30 30 buildInputs =
-7446
pkgs/applications/terminal-emulators/wezterm/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 = "addr2line" 7 - version = "0.21.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 - 20 - [[package]] 21 - name = "adler32" 22 - version = "1.2.0" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 25 - 26 - [[package]] 27 - name = "ahash" 28 - version = "0.7.7" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 31 - dependencies = [ 32 - "getrandom", 33 - "once_cell", 34 - "version_check", 35 - ] 36 - 37 - [[package]] 38 - name = "ahash" 39 - version = "0.8.7" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" 42 - dependencies = [ 43 - "cfg-if", 44 - "getrandom", 45 - "once_cell", 46 - "version_check", 47 - "zerocopy", 48 - ] 49 - 50 - [[package]] 51 - name = "aho-corasick" 52 - version = "1.1.2" 53 - source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 55 - dependencies = [ 56 - "memchr", 57 - ] 58 - 59 - [[package]] 60 - name = "allocator-api2" 61 - version = "0.2.16" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 64 - 65 - [[package]] 66 - name = "android-tzdata" 67 - version = "0.1.1" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 70 - 71 - [[package]] 72 - name = "android_system_properties" 73 - version = "0.1.5" 74 - source = "registry+https://github.com/rust-lang/crates.io-index" 75 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 76 - dependencies = [ 77 - "libc", 78 - ] 79 - 80 - [[package]] 81 - name = "anes" 82 - version = "0.1.6" 83 - source = "registry+https://github.com/rust-lang/crates.io-index" 84 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 85 - 86 - [[package]] 87 - name = "anstream" 88 - version = "0.6.11" 89 - source = "registry+https://github.com/rust-lang/crates.io-index" 90 - checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" 91 - dependencies = [ 92 - "anstyle", 93 - "anstyle-parse", 94 - "anstyle-query", 95 - "anstyle-wincon", 96 - "colorchoice", 97 - "utf8parse", 98 - ] 99 - 100 - [[package]] 101 - name = "anstyle" 102 - version = "1.0.5" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "2faccea4cc4ab4a667ce676a30e8ec13922a692c99bb8f5b11f1502c72e04220" 105 - 106 - [[package]] 107 - name = "anstyle-parse" 108 - version = "0.2.3" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 111 - dependencies = [ 112 - "utf8parse", 113 - ] 114 - 115 - [[package]] 116 - name = "anstyle-query" 117 - version = "1.0.2" 118 - source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 120 - dependencies = [ 121 - "windows-sys 0.52.0", 122 - ] 123 - 124 - [[package]] 125 - name = "anstyle-wincon" 126 - version = "3.0.2" 127 - source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 129 - dependencies = [ 130 - "anstyle", 131 - "windows-sys 0.52.0", 132 - ] 133 - 134 - [[package]] 135 - name = "anyhow" 136 - version = "1.0.79" 137 - source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 139 - 140 - [[package]] 141 - name = "arrayref" 142 - version = "0.3.7" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 145 - 146 - [[package]] 147 - name = "arrayvec" 148 - version = "0.7.4" 149 - source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 151 - 152 - [[package]] 153 - name = "as-raw-xcb-connection" 154 - version = "1.0.1" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" 157 - 158 - [[package]] 159 - name = "ash" 160 - version = "0.37.3+1.3.251" 161 - source = "registry+https://github.com/rust-lang/crates.io-index" 162 - checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a" 163 - dependencies = [ 164 - "libloading 0.7.4", 165 - ] 166 - 167 - [[package]] 168 - name = "assert_fs" 169 - version = "1.1.1" 170 - source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "2cd762e110c8ed629b11b6cde59458cc1c71de78ebbcc30099fc8e0403a2a2ec" 172 - dependencies = [ 173 - "anstyle", 174 - "doc-comment", 175 - "globwalk", 176 - "predicates", 177 - "predicates-core", 178 - "predicates-tree", 179 - "tempfile", 180 - ] 181 - 182 - [[package]] 183 - name = "async-broadcast" 184 - version = "0.5.1" 185 - source = "registry+https://github.com/rust-lang/crates.io-index" 186 - checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 187 - dependencies = [ 188 - "event-listener 2.5.3", 189 - "futures-core", 190 - ] 191 - 192 - [[package]] 193 - name = "async-channel" 194 - version = "1.9.0" 195 - source = "registry+https://github.com/rust-lang/crates.io-index" 196 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 197 - dependencies = [ 198 - "concurrent-queue", 199 - "event-listener 2.5.3", 200 - "futures-core", 201 - ] 202 - 203 - [[package]] 204 - name = "async-channel" 205 - version = "2.1.1" 206 - source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 208 - dependencies = [ 209 - "concurrent-queue", 210 - "event-listener 4.0.3", 211 - "event-listener-strategy", 212 - "futures-core", 213 - "pin-project-lite", 214 - ] 215 - 216 - [[package]] 217 - name = "async-executor" 218 - version = "1.8.0" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 221 - dependencies = [ 222 - "async-lock 3.3.0", 223 - "async-task", 224 - "concurrent-queue", 225 - "fastrand 2.0.1", 226 - "futures-lite 2.2.0", 227 - "slab", 228 - ] 229 - 230 - [[package]] 231 - name = "async-fs" 232 - version = "1.6.0" 233 - source = "registry+https://github.com/rust-lang/crates.io-index" 234 - checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 235 - dependencies = [ 236 - "async-lock 2.8.0", 237 - "autocfg", 238 - "blocking", 239 - "futures-lite 1.13.0", 240 - ] 241 - 242 - [[package]] 243 - name = "async-io" 244 - version = "1.13.0" 245 - source = "registry+https://github.com/rust-lang/crates.io-index" 246 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 247 - dependencies = [ 248 - "async-lock 2.8.0", 249 - "autocfg", 250 - "cfg-if", 251 - "concurrent-queue", 252 - "futures-lite 1.13.0", 253 - "log", 254 - "parking", 255 - "polling 2.8.0", 256 - "rustix 0.37.27", 257 - "slab", 258 - "socket2 0.4.10", 259 - "waker-fn", 260 - ] 261 - 262 - [[package]] 263 - name = "async-io" 264 - version = "2.3.1" 265 - source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" 267 - dependencies = [ 268 - "async-lock 3.3.0", 269 - "cfg-if", 270 - "concurrent-queue", 271 - "futures-io", 272 - "futures-lite 2.2.0", 273 - "parking", 274 - "polling 3.3.2", 275 - "rustix 0.38.30", 276 - "slab", 277 - "tracing", 278 - "windows-sys 0.52.0", 279 - ] 280 - 281 - [[package]] 282 - name = "async-lock" 283 - version = "2.8.0" 284 - source = "registry+https://github.com/rust-lang/crates.io-index" 285 - checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 286 - dependencies = [ 287 - "event-listener 2.5.3", 288 - ] 289 - 290 - [[package]] 291 - name = "async-lock" 292 - version = "3.3.0" 293 - source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 295 - dependencies = [ 296 - "event-listener 4.0.3", 297 - "event-listener-strategy", 298 - "pin-project-lite", 299 - ] 300 - 301 - [[package]] 302 - name = "async-net" 303 - version = "1.8.0" 304 - source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f" 306 - dependencies = [ 307 - "async-io 1.13.0", 308 - "blocking", 309 - "futures-lite 1.13.0", 310 - ] 311 - 312 - [[package]] 313 - name = "async-process" 314 - version = "1.8.1" 315 - source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 317 - dependencies = [ 318 - "async-io 1.13.0", 319 - "async-lock 2.8.0", 320 - "async-signal", 321 - "blocking", 322 - "cfg-if", 323 - "event-listener 3.1.0", 324 - "futures-lite 1.13.0", 325 - "rustix 0.38.30", 326 - "windows-sys 0.48.0", 327 - ] 328 - 329 - [[package]] 330 - name = "async-recursion" 331 - version = "1.0.5" 332 - source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 334 - dependencies = [ 335 - "proc-macro2", 336 - "quote", 337 - "syn 2.0.48", 338 - ] 339 - 340 - [[package]] 341 - name = "async-signal" 342 - version = "0.2.5" 343 - source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 345 - dependencies = [ 346 - "async-io 2.3.1", 347 - "async-lock 2.8.0", 348 - "atomic-waker", 349 - "cfg-if", 350 - "futures-core", 351 - "futures-io", 352 - "rustix 0.38.30", 353 - "signal-hook-registry", 354 - "slab", 355 - "windows-sys 0.48.0", 356 - ] 357 - 358 - [[package]] 359 - name = "async-task" 360 - version = "4.7.0" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 363 - 364 - [[package]] 365 - name = "async-trait" 366 - version = "0.1.77" 367 - source = "registry+https://github.com/rust-lang/crates.io-index" 368 - checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 369 - dependencies = [ 370 - "proc-macro2", 371 - "quote", 372 - "syn 2.0.48", 373 - ] 374 - 375 - [[package]] 376 - name = "async_ossl" 377 - version = "0.1.0" 378 - dependencies = [ 379 - "openssl", 380 - ] 381 - 382 - [[package]] 383 - name = "atomic" 384 - version = "0.5.3" 385 - source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba" 387 - 388 - [[package]] 389 - name = "atomic-waker" 390 - version = "1.1.2" 391 - source = "registry+https://github.com/rust-lang/crates.io-index" 392 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 393 - 394 - [[package]] 395 - name = "atty" 396 - version = "0.2.14" 397 - source = "registry+https://github.com/rust-lang/crates.io-index" 398 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 399 - dependencies = [ 400 - "hermit-abi 0.1.19", 401 - "libc", 402 - "winapi", 403 - ] 404 - 405 - [[package]] 406 - name = "autocfg" 407 - version = "1.1.0" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 410 - 411 - [[package]] 412 - name = "az" 413 - version = "1.2.1" 414 - source = "registry+https://github.com/rust-lang/crates.io-index" 415 - checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" 416 - 417 - [[package]] 418 - name = "backtrace" 419 - version = "0.3.69" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 422 - dependencies = [ 423 - "addr2line", 424 - "cc", 425 - "cfg-if", 426 - "libc", 427 - "miniz_oxide 0.7.1", 428 - "object", 429 - "rustc-demangle", 430 - ] 431 - 432 - [[package]] 433 - name = "base64" 434 - version = "0.13.1" 435 - source = "registry+https://github.com/rust-lang/crates.io-index" 436 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 437 - 438 - [[package]] 439 - name = "base64" 440 - version = "0.21.7" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 443 - 444 - [[package]] 445 - name = "base91" 446 - version = "0.1.0" 447 - 448 - [[package]] 449 - name = "battery" 450 - version = "0.1.0" 451 - dependencies = [ 452 - "anyhow", 453 - "config", 454 - "luahelper", 455 - "starship-battery", 456 - "wezterm-dynamic", 457 - ] 458 - 459 - [[package]] 460 - name = "benchmarking" 461 - version = "0.4.12" 462 - source = "registry+https://github.com/rust-lang/crates.io-index" 463 - checksum = "32842502e72b27b30b2681692d16bf47a8a375c5a2795613f0dc699bed9a48bb" 464 - 465 - [[package]] 466 - name = "bintree" 467 - version = "0.1.0" 468 - 469 - [[package]] 470 - name = "bit-set" 471 - version = "0.5.3" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 474 - dependencies = [ 475 - "bit-vec", 476 - ] 477 - 478 - [[package]] 479 - name = "bit-vec" 480 - version = "0.6.3" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 483 - 484 - [[package]] 485 - name = "bit_field" 486 - version = "0.10.2" 487 - source = "registry+https://github.com/rust-lang/crates.io-index" 488 - checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 489 - 490 - [[package]] 491 - name = "bitflags" 492 - version = "1.3.2" 493 - source = "registry+https://github.com/rust-lang/crates.io-index" 494 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 495 - 496 - [[package]] 497 - name = "bitflags" 498 - version = "2.4.2" 499 - source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 501 - dependencies = [ 502 - "serde", 503 - ] 504 - 505 - [[package]] 506 - name = "block" 507 - version = "0.1.6" 508 - source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 510 - 511 - [[package]] 512 - name = "block-buffer" 513 - version = "0.10.4" 514 - source = "registry+https://github.com/rust-lang/crates.io-index" 515 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 516 - dependencies = [ 517 - "generic-array", 518 - ] 519 - 520 - [[package]] 521 - name = "blocking" 522 - version = "1.5.1" 523 - source = "registry+https://github.com/rust-lang/crates.io-index" 524 - checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 525 - dependencies = [ 526 - "async-channel 2.1.1", 527 - "async-lock 3.3.0", 528 - "async-task", 529 - "fastrand 2.0.1", 530 - "futures-io", 531 - "futures-lite 2.2.0", 532 - "piper", 533 - "tracing", 534 - ] 535 - 536 - [[package]] 537 - name = "bstr" 538 - version = "0.1.4" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "59604ece62a407dc9164732e5adea02467898954c3a5811fd2dc140af14ef15b" 541 - dependencies = [ 542 - "lazy_static", 543 - "memchr", 544 - "regex-automata 0.1.10", 545 - ] 546 - 547 - [[package]] 548 - name = "bstr" 549 - version = "1.9.0" 550 - source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" 552 - dependencies = [ 553 - "memchr", 554 - "regex-automata 0.4.5", 555 - "serde", 556 - ] 557 - 558 - [[package]] 559 - name = "bumpalo" 560 - version = "3.14.0" 561 - source = "registry+https://github.com/rust-lang/crates.io-index" 562 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 563 - 564 - [[package]] 565 - name = "bytemuck" 566 - version = "1.14.1" 567 - source = "registry+https://github.com/rust-lang/crates.io-index" 568 - checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9" 569 - dependencies = [ 570 - "bytemuck_derive", 571 - ] 572 - 573 - [[package]] 574 - name = "bytemuck_derive" 575 - version = "1.5.0" 576 - source = "registry+https://github.com/rust-lang/crates.io-index" 577 - checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 578 - dependencies = [ 579 - "proc-macro2", 580 - "quote", 581 - "syn 2.0.48", 582 - ] 583 - 584 - [[package]] 585 - name = "byteorder" 586 - version = "1.5.0" 587 - source = "registry+https://github.com/rust-lang/crates.io-index" 588 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 589 - 590 - [[package]] 591 - name = "bytes" 592 - version = "1.5.0" 593 - source = "registry+https://github.com/rust-lang/crates.io-index" 594 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 595 - 596 - [[package]] 597 - name = "cairo-rs" 598 - version = "0.18.5" 599 - source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 601 - dependencies = [ 602 - "bitflags 2.4.2", 603 - "cairo-sys-rs", 604 - "libc", 605 - "once_cell", 606 - "thiserror", 607 - ] 608 - 609 - [[package]] 610 - name = "cairo-sys-rs" 611 - version = "0.18.0" 612 - dependencies = [ 613 - "cc", 614 - "libc", 615 - ] 616 - 617 - [[package]] 618 - name = "camino" 619 - version = "1.1.6" 620 - source = "registry+https://github.com/rust-lang/crates.io-index" 621 - checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 622 - 623 - [[package]] 624 - name = "cassowary" 625 - version = "0.3.0" 626 - source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 628 - 629 - [[package]] 630 - name = "cast" 631 - version = "0.3.0" 632 - source = "registry+https://github.com/rust-lang/crates.io-index" 633 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 634 - 635 - [[package]] 636 - name = "cc" 637 - version = "1.0.83" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 640 - dependencies = [ 641 - "jobserver", 642 - "libc", 643 - ] 644 - 645 - [[package]] 646 - name = "cfg-if" 647 - version = "1.0.0" 648 - source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 650 - 651 - [[package]] 652 - name = "cgl" 653 - version = "0.3.2" 654 - source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff" 656 - dependencies = [ 657 - "libc", 658 - ] 659 - 660 - [[package]] 661 - name = "chrono" 662 - version = "0.4.33" 663 - source = "registry+https://github.com/rust-lang/crates.io-index" 664 - checksum = "9f13690e35a5e4ace198e7beea2895d29f3a9cc55015fcebe6336bd2010af9eb" 665 - dependencies = [ 666 - "android-tzdata", 667 - "iana-time-zone", 668 - "num-traits", 669 - "pure-rust-locales", 670 - "serde", 671 - "windows-targets 0.52.0", 672 - ] 673 - 674 - [[package]] 675 - name = "ciborium" 676 - version = "0.2.2" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 679 - dependencies = [ 680 - "ciborium-io", 681 - "ciborium-ll", 682 - "serde", 683 - ] 684 - 685 - [[package]] 686 - name = "ciborium-io" 687 - version = "0.2.2" 688 - source = "registry+https://github.com/rust-lang/crates.io-index" 689 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 690 - 691 - [[package]] 692 - name = "ciborium-ll" 693 - version = "0.2.2" 694 - source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 696 - dependencies = [ 697 - "ciborium-io", 698 - "half 2.3.1", 699 - ] 700 - 701 - [[package]] 702 - name = "clap" 703 - version = "2.34.0" 704 - source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 706 - dependencies = [ 707 - "bitflags 1.3.2", 708 - "textwrap 0.11.0", 709 - "unicode-width", 710 - ] 711 - 712 - [[package]] 713 - name = "clap" 714 - version = "3.2.25" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 717 - dependencies = [ 718 - "bitflags 1.3.2", 719 - "clap_lex 0.2.4", 720 - "indexmap 1.9.3", 721 - "textwrap 0.16.0", 722 - ] 723 - 724 - [[package]] 725 - name = "clap" 726 - version = "4.4.18" 727 - source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 729 - dependencies = [ 730 - "clap_builder", 731 - "clap_derive", 732 - ] 733 - 734 - [[package]] 735 - name = "clap_builder" 736 - version = "4.4.18" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 739 - dependencies = [ 740 - "anstream", 741 - "anstyle", 742 - "clap_lex 0.6.0", 743 - "strsim", 744 - "terminal_size 0.3.0", 745 - ] 746 - 747 - [[package]] 748 - name = "clap_complete" 749 - version = "4.4.9" 750 - source = "registry+https://github.com/rust-lang/crates.io-index" 751 - checksum = "df631ae429f6613fcd3a7c1adbdb65f637271e561b03680adaa6573015dfb106" 752 - dependencies = [ 753 - "clap 4.4.18", 754 - ] 755 - 756 - [[package]] 757 - name = "clap_complete_fig" 758 - version = "4.4.2" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "87e571d70e22ec91d34e1c5317c8308035a2280d925167646bf094fc5de1737c" 761 - dependencies = [ 762 - "clap 4.4.18", 763 - "clap_complete", 764 - ] 765 - 766 - [[package]] 767 - name = "clap_derive" 768 - version = "4.4.7" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 771 - dependencies = [ 772 - "heck", 773 - "proc-macro2", 774 - "quote", 775 - "syn 2.0.48", 776 - ] 777 - 778 - [[package]] 779 - name = "clap_lex" 780 - version = "0.2.4" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 783 - dependencies = [ 784 - "os_str_bytes", 785 - ] 786 - 787 - [[package]] 788 - name = "clap_lex" 789 - version = "0.6.0" 790 - source = "registry+https://github.com/rust-lang/crates.io-index" 791 - checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 792 - 793 - [[package]] 794 - name = "clipboard-win" 795 - version = "2.2.0" 796 - source = "registry+https://github.com/rust-lang/crates.io-index" 797 - checksum = "e3a093d6fed558e5fe24c3dfc85a68bb68f1c824f440d3ba5aca189e2998786b" 798 - dependencies = [ 799 - "winapi", 800 - ] 801 - 802 - [[package]] 803 - name = "cocoa" 804 - version = "0.20.2" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "0c49e86fc36d5704151f5996b7b3795385f50ce09e3be0f47a0cfde869681cf8" 807 - dependencies = [ 808 - "bitflags 1.3.2", 809 - "block", 810 - "core-foundation 0.7.0", 811 - "core-graphics 0.19.2", 812 - "foreign-types 0.3.2", 813 - "libc", 814 - "objc", 815 - ] 816 - 817 - [[package]] 818 - name = "cocoa" 819 - version = "0.25.0" 820 - source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 822 - dependencies = [ 823 - "bitflags 1.3.2", 824 - "block", 825 - "cocoa-foundation", 826 - "core-foundation 0.9.4", 827 - "core-graphics 0.23.1", 828 - "foreign-types 0.5.0", 829 - "libc", 830 - "objc", 831 - ] 832 - 833 - [[package]] 834 - name = "cocoa-foundation" 835 - version = "0.1.2" 836 - source = "registry+https://github.com/rust-lang/crates.io-index" 837 - checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 838 - dependencies = [ 839 - "bitflags 1.3.2", 840 - "block", 841 - "core-foundation 0.9.4", 842 - "core-graphics-types", 843 - "libc", 844 - "objc", 845 - ] 846 - 847 - [[package]] 848 - name = "codec" 849 - version = "0.1.0" 850 - dependencies = [ 851 - "anyhow", 852 - "base91", 853 - "config", 854 - "leb128", 855 - "log", 856 - "metrics", 857 - "mux", 858 - "portable-pty", 859 - "rangeset", 860 - "serde", 861 - "smol", 862 - "termwiz", 863 - "thiserror", 864 - "varbincode", 865 - "wezterm-term", 866 - "zstd", 867 - ] 868 - 869 - [[package]] 870 - name = "codespan-reporting" 871 - version = "0.11.1" 872 - source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 874 - dependencies = [ 875 - "termcolor", 876 - "unicode-width", 877 - ] 878 - 879 - [[package]] 880 - name = "color-funcs" 881 - version = "0.1.0" 882 - dependencies = [ 883 - "anyhow", 884 - "config", 885 - "csscolorparser", 886 - "deltae", 887 - "image", 888 - "lazy_static", 889 - "log", 890 - "lru", 891 - "luahelper", 892 - "plist", 893 - "serde", 894 - "serde_json", 895 - "serde_yaml", 896 - "wezterm-dynamic", 897 - "wezterm-term", 898 - ] 899 - 900 - [[package]] 901 - name = "color_quant" 902 - version = "1.1.0" 903 - source = "registry+https://github.com/rust-lang/crates.io-index" 904 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 905 - 906 - [[package]] 907 - name = "colorchoice" 908 - version = "1.0.0" 909 - source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 911 - 912 - [[package]] 913 - name = "colored" 914 - version = "1.9.4" 915 - source = "registry+https://github.com/rust-lang/crates.io-index" 916 - checksum = "5a5f741c91823341bebf717d4c71bda820630ce065443b58bd1b7451af008355" 917 - dependencies = [ 918 - "is-terminal", 919 - "lazy_static", 920 - "winapi", 921 - ] 922 - 923 - [[package]] 924 - name = "colored" 925 - version = "2.1.0" 926 - source = "registry+https://github.com/rust-lang/crates.io-index" 927 - checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" 928 - dependencies = [ 929 - "lazy_static", 930 - "windows-sys 0.48.0", 931 - ] 932 - 933 - [[package]] 934 - name = "colorgrad" 935 - version = "0.6.2" 936 - source = "registry+https://github.com/rust-lang/crates.io-index" 937 - checksum = "6a5f405d474b9d05e0a093d3120e77e9bf26461b57a84b40aa2a221ac5617fb6" 938 - dependencies = [ 939 - "csscolorparser", 940 - ] 941 - 942 - [[package]] 943 - name = "com-rs" 944 - version = "0.2.1" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" 947 - 948 - [[package]] 949 - name = "concurrent-queue" 950 - version = "2.4.0" 951 - source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 953 - dependencies = [ 954 - "crossbeam-utils", 955 - ] 956 - 957 - [[package]] 958 - name = "config" 959 - version = "0.1.0" 960 - dependencies = [ 961 - "anyhow", 962 - "bitflags 1.3.2", 963 - "colorgrad", 964 - "dirs-next", 965 - "enum-display-derive", 966 - "env_logger 0.11.1", 967 - "hostname", 968 - "lazy_static", 969 - "libc", 970 - "log", 971 - "luahelper", 972 - "mlua", 973 - "nix 0.26.4", 974 - "notify", 975 - "once_cell", 976 - "ordered-float", 977 - "portable-pty", 978 - "promise", 979 - "serde", 980 - "serde_json", 981 - "shlex", 982 - "smol", 983 - "termwiz", 984 - "toml 0.8.8", 985 - "umask", 986 - "wezterm-bidi", 987 - "wezterm-config-derive", 988 - "wezterm-dynamic", 989 - "wezterm-input-types", 990 - "wezterm-ssh", 991 - "wezterm-term", 992 - "winapi", 993 - ] 994 - 995 - [[package]] 996 - name = "core-foundation" 997 - version = "0.7.0" 998 - source = "registry+https://github.com/rust-lang/crates.io-index" 999 - checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" 1000 - dependencies = [ 1001 - "core-foundation-sys 0.7.0", 1002 - "libc", 1003 - ] 1004 - 1005 - [[package]] 1006 - name = "core-foundation" 1007 - version = "0.9.4" 1008 - source = "registry+https://github.com/rust-lang/crates.io-index" 1009 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1010 - dependencies = [ 1011 - "core-foundation-sys 0.8.6", 1012 - "libc", 1013 - ] 1014 - 1015 - [[package]] 1016 - name = "core-foundation-sys" 1017 - version = "0.7.0" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" 1020 - 1021 - [[package]] 1022 - name = "core-foundation-sys" 1023 - version = "0.8.6" 1024 - source = "registry+https://github.com/rust-lang/crates.io-index" 1025 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1026 - 1027 - [[package]] 1028 - name = "core-graphics" 1029 - version = "0.19.2" 1030 - source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "b3889374e6ea6ab25dba90bb5d96202f61108058361f6dc72e8b03e6f8bbe923" 1032 - dependencies = [ 1033 - "bitflags 1.3.2", 1034 - "core-foundation 0.7.0", 1035 - "foreign-types 0.3.2", 1036 - "libc", 1037 - ] 1038 - 1039 - [[package]] 1040 - name = "core-graphics" 1041 - version = "0.23.1" 1042 - source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 1044 - dependencies = [ 1045 - "bitflags 1.3.2", 1046 - "core-foundation 0.9.4", 1047 - "core-graphics-types", 1048 - "foreign-types 0.5.0", 1049 - "libc", 1050 - ] 1051 - 1052 - [[package]] 1053 - name = "core-graphics-types" 1054 - version = "0.1.3" 1055 - source = "registry+https://github.com/rust-lang/crates.io-index" 1056 - checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 1057 - dependencies = [ 1058 - "bitflags 1.3.2", 1059 - "core-foundation 0.9.4", 1060 - "libc", 1061 - ] 1062 - 1063 - [[package]] 1064 - name = "core-text" 1065 - version = "20.1.0" 1066 - source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "c9d2790b5c08465d49f8dc05c8bcae9fea467855947db39b0f8145c091aaced5" 1068 - dependencies = [ 1069 - "core-foundation 0.9.4", 1070 - "core-graphics 0.23.1", 1071 - "foreign-types 0.5.0", 1072 - "libc", 1073 - ] 1074 - 1075 - [[package]] 1076 - name = "core2" 1077 - version = "0.4.0" 1078 - source = "registry+https://github.com/rust-lang/crates.io-index" 1079 - checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 1080 - dependencies = [ 1081 - "memchr", 1082 - ] 1083 - 1084 - [[package]] 1085 - name = "cpufeatures" 1086 - version = "0.2.12" 1087 - source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1089 - dependencies = [ 1090 - "libc", 1091 - ] 1092 - 1093 - [[package]] 1094 - name = "crc32fast" 1095 - version = "1.3.2" 1096 - source = "registry+https://github.com/rust-lang/crates.io-index" 1097 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1098 - dependencies = [ 1099 - "cfg-if", 1100 - ] 1101 - 1102 - [[package]] 1103 - name = "criterion" 1104 - version = "0.3.6" 1105 - source = "registry+https://github.com/rust-lang/crates.io-index" 1106 - checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f" 1107 - dependencies = [ 1108 - "atty", 1109 - "cast", 1110 - "clap 2.34.0", 1111 - "criterion-plot 0.4.5", 1112 - "csv", 1113 - "itertools", 1114 - "lazy_static", 1115 - "num-traits", 1116 - "oorandom", 1117 - "plotters", 1118 - "rayon", 1119 - "regex", 1120 - "serde", 1121 - "serde_cbor", 1122 - "serde_derive", 1123 - "serde_json", 1124 - "tinytemplate", 1125 - "walkdir", 1126 - ] 1127 - 1128 - [[package]] 1129 - name = "criterion" 1130 - version = "0.4.0" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 1133 - dependencies = [ 1134 - "anes", 1135 - "atty", 1136 - "cast", 1137 - "ciborium", 1138 - "clap 3.2.25", 1139 - "criterion-plot 0.5.0", 1140 - "itertools", 1141 - "lazy_static", 1142 - "num-traits", 1143 - "oorandom", 1144 - "plotters", 1145 - "rayon", 1146 - "regex", 1147 - "serde", 1148 - "serde_derive", 1149 - "serde_json", 1150 - "tinytemplate", 1151 - "walkdir", 1152 - ] 1153 - 1154 - [[package]] 1155 - name = "criterion-plot" 1156 - version = "0.4.5" 1157 - source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" 1159 - dependencies = [ 1160 - "cast", 1161 - "itertools", 1162 - ] 1163 - 1164 - [[package]] 1165 - name = "criterion-plot" 1166 - version = "0.5.0" 1167 - source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1169 - dependencies = [ 1170 - "cast", 1171 - "itertools", 1172 - ] 1173 - 1174 - [[package]] 1175 - name = "crossbeam" 1176 - version = "0.8.4" 1177 - source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 1179 - dependencies = [ 1180 - "crossbeam-channel", 1181 - "crossbeam-deque", 1182 - "crossbeam-epoch", 1183 - "crossbeam-queue", 1184 - "crossbeam-utils", 1185 - ] 1186 - 1187 - [[package]] 1188 - name = "crossbeam-channel" 1189 - version = "0.5.11" 1190 - source = "registry+https://github.com/rust-lang/crates.io-index" 1191 - checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 1192 - dependencies = [ 1193 - "crossbeam-utils", 1194 - ] 1195 - 1196 - [[package]] 1197 - name = "crossbeam-deque" 1198 - version = "0.8.5" 1199 - source = "registry+https://github.com/rust-lang/crates.io-index" 1200 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1201 - dependencies = [ 1202 - "crossbeam-epoch", 1203 - "crossbeam-utils", 1204 - ] 1205 - 1206 - [[package]] 1207 - name = "crossbeam-epoch" 1208 - version = "0.9.18" 1209 - source = "registry+https://github.com/rust-lang/crates.io-index" 1210 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1211 - dependencies = [ 1212 - "crossbeam-utils", 1213 - ] 1214 - 1215 - [[package]] 1216 - name = "crossbeam-queue" 1217 - version = "0.3.11" 1218 - source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1220 - dependencies = [ 1221 - "crossbeam-utils", 1222 - ] 1223 - 1224 - [[package]] 1225 - name = "crossbeam-utils" 1226 - version = "0.8.19" 1227 - source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 1229 - 1230 - [[package]] 1231 - name = "crunchy" 1232 - version = "0.2.2" 1233 - source = "registry+https://github.com/rust-lang/crates.io-index" 1234 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1235 - 1236 - [[package]] 1237 - name = "crypto-common" 1238 - version = "0.1.6" 1239 - source = "registry+https://github.com/rust-lang/crates.io-index" 1240 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1241 - dependencies = [ 1242 - "generic-array", 1243 - "typenum", 1244 - ] 1245 - 1246 - [[package]] 1247 - name = "csscolorparser" 1248 - version = "0.6.2" 1249 - source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf" 1251 - dependencies = [ 1252 - "lab", 1253 - "phf", 1254 - ] 1255 - 1256 - [[package]] 1257 - name = "csv" 1258 - version = "1.3.0" 1259 - source = "registry+https://github.com/rust-lang/crates.io-index" 1260 - checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" 1261 - dependencies = [ 1262 - "csv-core", 1263 - "itoa", 1264 - "ryu", 1265 - "serde", 1266 - ] 1267 - 1268 - [[package]] 1269 - name = "csv-core" 1270 - version = "0.1.11" 1271 - source = "registry+https://github.com/rust-lang/crates.io-index" 1272 - checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 1273 - dependencies = [ 1274 - "memchr", 1275 - ] 1276 - 1277 - [[package]] 1278 - name = "d3d12" 1279 - version = "0.7.0" 1280 - source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "e16e44ab292b1dddfdaf7be62cfd8877df52f2f3fde5858d95bab606be259f20" 1282 - dependencies = [ 1283 - "bitflags 2.4.2", 1284 - "libloading 0.8.1", 1285 - "winapi", 1286 - ] 1287 - 1288 - [[package]] 1289 - name = "darling" 1290 - version = "0.20.3" 1291 - source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 1293 - dependencies = [ 1294 - "darling_core", 1295 - "darling_macro", 1296 - ] 1297 - 1298 - [[package]] 1299 - name = "darling_core" 1300 - version = "0.20.3" 1301 - source = "registry+https://github.com/rust-lang/crates.io-index" 1302 - checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 1303 - dependencies = [ 1304 - "fnv", 1305 - "ident_case", 1306 - "proc-macro2", 1307 - "quote", 1308 - "strsim", 1309 - "syn 2.0.48", 1310 - ] 1311 - 1312 - [[package]] 1313 - name = "darling_macro" 1314 - version = "0.20.3" 1315 - source = "registry+https://github.com/rust-lang/crates.io-index" 1316 - checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 1317 - dependencies = [ 1318 - "darling_core", 1319 - "quote", 1320 - "syn 2.0.48", 1321 - ] 1322 - 1323 - [[package]] 1324 - name = "dary_heap" 1325 - version = "0.3.6" 1326 - source = "registry+https://github.com/rust-lang/crates.io-index" 1327 - checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" 1328 - 1329 - [[package]] 1330 - name = "data-encoding" 1331 - version = "2.5.0" 1332 - source = "registry+https://github.com/rust-lang/crates.io-index" 1333 - checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 1334 - 1335 - [[package]] 1336 - name = "deltae" 1337 - version = "0.3.2" 1338 - source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4" 1340 - 1341 - [[package]] 1342 - name = "deranged" 1343 - version = "0.3.11" 1344 - source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1346 - dependencies = [ 1347 - "powerfmt", 1348 - "serde", 1349 - ] 1350 - 1351 - [[package]] 1352 - name = "derivative" 1353 - version = "2.2.0" 1354 - source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1356 - dependencies = [ 1357 - "proc-macro2", 1358 - "quote", 1359 - "syn 1.0.109", 1360 - ] 1361 - 1362 - [[package]] 1363 - name = "dhat" 1364 - version = "0.3.2" 1365 - source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "4f2aaf837aaf456f6706cb46386ba8dffd4013a757e36f4ea05c20dd46b209a3" 1367 - dependencies = [ 1368 - "backtrace", 1369 - "lazy_static", 1370 - "mintex", 1371 - "parking_lot 0.12.1", 1372 - "rustc-hash", 1373 - "serde", 1374 - "serde_json", 1375 - "thousands", 1376 - ] 1377 - 1378 - [[package]] 1379 - name = "diff" 1380 - version = "0.1.13" 1381 - source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1383 - 1384 - [[package]] 1385 - name = "difflib" 1386 - version = "0.4.0" 1387 - source = "registry+https://github.com/rust-lang/crates.io-index" 1388 - checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1389 - 1390 - [[package]] 1391 - name = "digest" 1392 - version = "0.10.7" 1393 - source = "registry+https://github.com/rust-lang/crates.io-index" 1394 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1395 - dependencies = [ 1396 - "block-buffer", 1397 - "crypto-common", 1398 - ] 1399 - 1400 - [[package]] 1401 - name = "dirs" 1402 - version = "4.0.0" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1405 - dependencies = [ 1406 - "dirs-sys", 1407 - ] 1408 - 1409 - [[package]] 1410 - name = "dirs-next" 1411 - version = "2.0.0" 1412 - source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 1414 - dependencies = [ 1415 - "cfg-if", 1416 - "dirs-sys-next", 1417 - ] 1418 - 1419 - [[package]] 1420 - name = "dirs-sys" 1421 - version = "0.3.7" 1422 - source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1424 - dependencies = [ 1425 - "libc", 1426 - "redox_users", 1427 - "winapi", 1428 - ] 1429 - 1430 - [[package]] 1431 - name = "dirs-sys-next" 1432 - version = "0.1.2" 1433 - source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 1435 - dependencies = [ 1436 - "libc", 1437 - "redox_users", 1438 - "winapi", 1439 - ] 1440 - 1441 - [[package]] 1442 - name = "dlib" 1443 - version = "0.5.2" 1444 - source = "registry+https://github.com/rust-lang/crates.io-index" 1445 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 1446 - dependencies = [ 1447 - "libloading 0.8.1", 1448 - ] 1449 - 1450 - [[package]] 1451 - name = "doc-comment" 1452 - version = "0.3.3" 1453 - source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1455 - 1456 - [[package]] 1457 - name = "downcast-rs" 1458 - version = "1.2.0" 1459 - source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 1461 - 1462 - [[package]] 1463 - name = "dwrote" 1464 - version = "0.11.0" 1465 - source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b" 1467 - dependencies = [ 1468 - "lazy_static", 1469 - "libc", 1470 - "serde", 1471 - "serde_derive", 1472 - "winapi", 1473 - "wio", 1474 - ] 1475 - 1476 - [[package]] 1477 - name = "either" 1478 - version = "1.9.0" 1479 - source = "registry+https://github.com/rust-lang/crates.io-index" 1480 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1481 - 1482 - [[package]] 1483 - name = "embed-resource" 1484 - version = "1.8.0" 1485 - source = "registry+https://github.com/rust-lang/crates.io-index" 1486 - checksum = "e62abb876c07e4754fae5c14cafa77937841f01740637e17d78dc04352f32a5e" 1487 - dependencies = [ 1488 - "cc", 1489 - "rustc_version", 1490 - "toml 0.5.11", 1491 - "vswhom", 1492 - "winreg 0.10.1", 1493 - ] 1494 - 1495 - [[package]] 1496 - name = "emojis" 1497 - version = "0.6.1" 1498 - source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "4ee61eb945bff65ee7d19d157d39c67c33290ff0742907413fd5eefd29edc979" 1500 - dependencies = [ 1501 - "phf", 1502 - ] 1503 - 1504 - [[package]] 1505 - name = "encoding_rs" 1506 - version = "0.8.33" 1507 - source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1509 - dependencies = [ 1510 - "cfg-if", 1511 - ] 1512 - 1513 - [[package]] 1514 - name = "enum-display-derive" 1515 - version = "0.1.1" 1516 - source = "registry+https://github.com/rust-lang/crates.io-index" 1517 - checksum = "f16ef37b2a9b242295d61a154ee91ae884afff6b8b933b486b12481cc58310ca" 1518 - dependencies = [ 1519 - "proc-macro2", 1520 - "quote", 1521 - "syn 1.0.109", 1522 - ] 1523 - 1524 - [[package]] 1525 - name = "enumflags2" 1526 - version = "0.7.8" 1527 - source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1529 - dependencies = [ 1530 - "enumflags2_derive", 1531 - "serde", 1532 - ] 1533 - 1534 - [[package]] 1535 - name = "enumflags2_derive" 1536 - version = "0.7.8" 1537 - source = "registry+https://github.com/rust-lang/crates.io-index" 1538 - checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1539 - dependencies = [ 1540 - "proc-macro2", 1541 - "quote", 1542 - "syn 2.0.48", 1543 - ] 1544 - 1545 - [[package]] 1546 - name = "env-bootstrap" 1547 - version = "0.1.0" 1548 - dependencies = [ 1549 - "backtrace", 1550 - "battery", 1551 - "chrono", 1552 - "cocoa 0.20.2", 1553 - "color-funcs", 1554 - "config", 1555 - "dirs-next", 1556 - "env_logger 0.10.2", 1557 - "filesystem", 1558 - "json", 1559 - "lazy_static", 1560 - "libc", 1561 - "log", 1562 - "logging", 1563 - "mux-lua", 1564 - "objc", 1565 - "plugin", 1566 - "procinfo-funcs", 1567 - "share-data", 1568 - "spawn-funcs", 1569 - "ssh-funcs", 1570 - "termwiz", 1571 - "termwiz-funcs", 1572 - "time-funcs", 1573 - "url-funcs", 1574 - "wezterm-version", 1575 - "winapi", 1576 - ] 1577 - 1578 - [[package]] 1579 - name = "env_filter" 1580 - version = "0.1.0" 1581 - source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 1583 - dependencies = [ 1584 - "log", 1585 - "regex", 1586 - ] 1587 - 1588 - [[package]] 1589 - name = "env_logger" 1590 - version = "0.10.2" 1591 - source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 1593 - dependencies = [ 1594 - "humantime", 1595 - "is-terminal", 1596 - "log", 1597 - "regex", 1598 - "termcolor", 1599 - ] 1600 - 1601 - [[package]] 1602 - name = "env_logger" 1603 - version = "0.11.1" 1604 - source = "registry+https://github.com/rust-lang/crates.io-index" 1605 - checksum = "05e7cf40684ae96ade6232ed84582f40ce0a66efcd43a5117aef610534f8e0b8" 1606 - dependencies = [ 1607 - "anstream", 1608 - "anstyle", 1609 - "env_filter", 1610 - "humantime", 1611 - "log", 1612 - ] 1613 - 1614 - [[package]] 1615 - name = "equivalent" 1616 - version = "1.0.1" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1619 - 1620 - [[package]] 1621 - name = "errno" 1622 - version = "0.3.8" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1625 - dependencies = [ 1626 - "libc", 1627 - "windows-sys 0.52.0", 1628 - ] 1629 - 1630 - [[package]] 1631 - name = "euclid" 1632 - version = "0.22.9" 1633 - source = "registry+https://github.com/rust-lang/crates.io-index" 1634 - checksum = "87f253bc5c813ca05792837a0ff4b3a580336b224512d48f7eda1d7dd9210787" 1635 - dependencies = [ 1636 - "num-traits", 1637 - ] 1638 - 1639 - [[package]] 1640 - name = "event-listener" 1641 - version = "2.5.3" 1642 - source = "registry+https://github.com/rust-lang/crates.io-index" 1643 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1644 - 1645 - [[package]] 1646 - name = "event-listener" 1647 - version = "3.1.0" 1648 - source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 1650 - dependencies = [ 1651 - "concurrent-queue", 1652 - "parking", 1653 - "pin-project-lite", 1654 - ] 1655 - 1656 - [[package]] 1657 - name = "event-listener" 1658 - version = "4.0.3" 1659 - source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 1661 - dependencies = [ 1662 - "concurrent-queue", 1663 - "parking", 1664 - "pin-project-lite", 1665 - ] 1666 - 1667 - [[package]] 1668 - name = "event-listener-strategy" 1669 - version = "0.4.0" 1670 - source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1672 - dependencies = [ 1673 - "event-listener 4.0.3", 1674 - "pin-project-lite", 1675 - ] 1676 - 1677 - [[package]] 1678 - name = "exr" 1679 - version = "1.6.4" 1680 - source = "registry+https://github.com/rust-lang/crates.io-index" 1681 - checksum = "279d3efcc55e19917fff7ab3ddd6c14afb6a90881a0078465196fe2f99d08c56" 1682 - dependencies = [ 1683 - "bit_field", 1684 - "flume 0.10.14", 1685 - "half 2.3.1", 1686 - "lebe", 1687 - "miniz_oxide 0.7.1", 1688 - "rayon-core", 1689 - "smallvec", 1690 - "zune-inflate", 1691 - ] 1692 - 1693 - [[package]] 1694 - name = "fallible-iterator" 1695 - version = "0.2.0" 1696 - source = "registry+https://github.com/rust-lang/crates.io-index" 1697 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1698 - 1699 - [[package]] 1700 - name = "fallible-streaming-iterator" 1701 - version = "0.1.9" 1702 - source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1704 - 1705 - [[package]] 1706 - name = "fancy-regex" 1707 - version = "0.11.0" 1708 - source = "registry+https://github.com/rust-lang/crates.io-index" 1709 - checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 1710 - dependencies = [ 1711 - "bit-set", 1712 - "regex", 1713 - ] 1714 - 1715 - [[package]] 1716 - name = "fastrand" 1717 - version = "1.9.0" 1718 - source = "registry+https://github.com/rust-lang/crates.io-index" 1719 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1720 - dependencies = [ 1721 - "instant", 1722 - ] 1723 - 1724 - [[package]] 1725 - name = "fastrand" 1726 - version = "2.0.1" 1727 - source = "registry+https://github.com/rust-lang/crates.io-index" 1728 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1729 - 1730 - [[package]] 1731 - name = "fdeflate" 1732 - version = "0.3.4" 1733 - source = "registry+https://github.com/rust-lang/crates.io-index" 1734 - checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1735 - dependencies = [ 1736 - "simd-adler32", 1737 - ] 1738 - 1739 - [[package]] 1740 - name = "filedescriptor" 1741 - version = "0.8.3" 1742 - dependencies = [ 1743 - "libc", 1744 - "thiserror", 1745 - "winapi", 1746 - ] 1747 - 1748 - [[package]] 1749 - name = "filenamegen" 1750 - version = "0.2.4" 1751 - source = "registry+https://github.com/rust-lang/crates.io-index" 1752 - checksum = "0b2da6e8ef70499318bc50abd003fd66dbf6d8a46c23f9e90158f388a788976a" 1753 - dependencies = [ 1754 - "anyhow", 1755 - "bstr 0.1.4", 1756 - "regex", 1757 - "walkdir", 1758 - ] 1759 - 1760 - [[package]] 1761 - name = "filesystem" 1762 - version = "0.1.0" 1763 - dependencies = [ 1764 - "anyhow", 1765 - "config", 1766 - "filenamegen", 1767 - "luahelper", 1768 - "smol", 1769 - ] 1770 - 1771 - [[package]] 1772 - name = "filetime" 1773 - version = "0.2.23" 1774 - source = "registry+https://github.com/rust-lang/crates.io-index" 1775 - checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1776 - dependencies = [ 1777 - "cfg-if", 1778 - "libc", 1779 - "redox_syscall 0.4.1", 1780 - "windows-sys 0.52.0", 1781 - ] 1782 - 1783 - [[package]] 1784 - name = "finl_unicode" 1785 - version = "1.2.0" 1786 - source = "registry+https://github.com/rust-lang/crates.io-index" 1787 - checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" 1788 - 1789 - [[package]] 1790 - name = "fixed" 1791 - version = "1.24.0" 1792 - source = "registry+https://github.com/rust-lang/crates.io-index" 1793 - checksum = "02c69ce7e7c0f17aa18fdd9d0de39727adb9c6281f2ad12f57cbe54ae6e76e7d" 1794 - dependencies = [ 1795 - "az", 1796 - "bytemuck", 1797 - "half 2.3.1", 1798 - "typenum", 1799 - ] 1800 - 1801 - [[package]] 1802 - name = "fixedbitset" 1803 - version = "0.4.2" 1804 - source = "registry+https://github.com/rust-lang/crates.io-index" 1805 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1806 - 1807 - [[package]] 1808 - name = "flate2" 1809 - version = "1.0.28" 1810 - source = "registry+https://github.com/rust-lang/crates.io-index" 1811 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1812 - dependencies = [ 1813 - "crc32fast", 1814 - "miniz_oxide 0.7.1", 1815 - ] 1816 - 1817 - [[package]] 1818 - name = "float-cmp" 1819 - version = "0.9.0" 1820 - source = "registry+https://github.com/rust-lang/crates.io-index" 1821 - checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 1822 - dependencies = [ 1823 - "num-traits", 1824 - ] 1825 - 1826 - [[package]] 1827 - name = "flume" 1828 - version = "0.10.14" 1829 - source = "registry+https://github.com/rust-lang/crates.io-index" 1830 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1831 - dependencies = [ 1832 - "futures-core", 1833 - "futures-sink", 1834 - "nanorand", 1835 - "pin-project", 1836 - "spin", 1837 - ] 1838 - 1839 - [[package]] 1840 - name = "flume" 1841 - version = "0.11.0" 1842 - source = "registry+https://github.com/rust-lang/crates.io-index" 1843 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1844 - dependencies = [ 1845 - "futures-core", 1846 - "futures-sink", 1847 - "nanorand", 1848 - "spin", 1849 - ] 1850 - 1851 - [[package]] 1852 - name = "fnv" 1853 - version = "1.0.7" 1854 - source = "registry+https://github.com/rust-lang/crates.io-index" 1855 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1856 - 1857 - [[package]] 1858 - name = "fontconfig" 1859 - version = "0.1.0" 1860 - dependencies = [ 1861 - "libc", 1862 - "pkg-config", 1863 - ] 1864 - 1865 - [[package]] 1866 - name = "foreign-types" 1867 - version = "0.3.2" 1868 - source = "registry+https://github.com/rust-lang/crates.io-index" 1869 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1870 - dependencies = [ 1871 - "foreign-types-shared 0.1.1", 1872 - ] 1873 - 1874 - [[package]] 1875 - name = "foreign-types" 1876 - version = "0.5.0" 1877 - source = "registry+https://github.com/rust-lang/crates.io-index" 1878 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1879 - dependencies = [ 1880 - "foreign-types-macros", 1881 - "foreign-types-shared 0.3.1", 1882 - ] 1883 - 1884 - [[package]] 1885 - name = "foreign-types-macros" 1886 - version = "0.2.3" 1887 - source = "registry+https://github.com/rust-lang/crates.io-index" 1888 - checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1889 - dependencies = [ 1890 - "proc-macro2", 1891 - "quote", 1892 - "syn 2.0.48", 1893 - ] 1894 - 1895 - [[package]] 1896 - name = "foreign-types-shared" 1897 - version = "0.1.1" 1898 - source = "registry+https://github.com/rust-lang/crates.io-index" 1899 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1900 - 1901 - [[package]] 1902 - name = "foreign-types-shared" 1903 - version = "0.3.1" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1906 - 1907 - [[package]] 1908 - name = "form_urlencoded" 1909 - version = "1.2.1" 1910 - source = "registry+https://github.com/rust-lang/crates.io-index" 1911 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1912 - dependencies = [ 1913 - "percent-encoding", 1914 - ] 1915 - 1916 - [[package]] 1917 - name = "frecency" 1918 - version = "0.1.0" 1919 - dependencies = [ 1920 - "chrono", 1921 - "serde", 1922 - "serde_json", 1923 - "serde_with", 1924 - ] 1925 - 1926 - [[package]] 1927 - name = "freetype" 1928 - version = "0.1.0" 1929 - dependencies = [ 1930 - "cc", 1931 - "fixed", 1932 - ] 1933 - 1934 - [[package]] 1935 - name = "fsevent-sys" 1936 - version = "4.1.0" 1937 - source = "registry+https://github.com/rust-lang/crates.io-index" 1938 - checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1939 - dependencies = [ 1940 - "libc", 1941 - ] 1942 - 1943 - [[package]] 1944 - name = "futures" 1945 - version = "0.3.30" 1946 - source = "registry+https://github.com/rust-lang/crates.io-index" 1947 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1948 - dependencies = [ 1949 - "futures-channel", 1950 - "futures-core", 1951 - "futures-executor", 1952 - "futures-io", 1953 - "futures-sink", 1954 - "futures-task", 1955 - "futures-util", 1956 - ] 1957 - 1958 - [[package]] 1959 - name = "futures-channel" 1960 - version = "0.3.30" 1961 - source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1963 - dependencies = [ 1964 - "futures-core", 1965 - "futures-sink", 1966 - ] 1967 - 1968 - [[package]] 1969 - name = "futures-core" 1970 - version = "0.3.30" 1971 - source = "registry+https://github.com/rust-lang/crates.io-index" 1972 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1973 - 1974 - [[package]] 1975 - name = "futures-executor" 1976 - version = "0.3.30" 1977 - source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1979 - dependencies = [ 1980 - "futures-core", 1981 - "futures-task", 1982 - "futures-util", 1983 - ] 1984 - 1985 - [[package]] 1986 - name = "futures-io" 1987 - version = "0.3.30" 1988 - source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1990 - 1991 - [[package]] 1992 - name = "futures-lite" 1993 - version = "1.13.0" 1994 - source = "registry+https://github.com/rust-lang/crates.io-index" 1995 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1996 - dependencies = [ 1997 - "fastrand 1.9.0", 1998 - "futures-core", 1999 - "futures-io", 2000 - "memchr", 2001 - "parking", 2002 - "pin-project-lite", 2003 - "waker-fn", 2004 - ] 2005 - 2006 - [[package]] 2007 - name = "futures-lite" 2008 - version = "2.2.0" 2009 - source = "registry+https://github.com/rust-lang/crates.io-index" 2010 - checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 2011 - dependencies = [ 2012 - "fastrand 2.0.1", 2013 - "futures-core", 2014 - "futures-io", 2015 - "parking", 2016 - "pin-project-lite", 2017 - ] 2018 - 2019 - [[package]] 2020 - name = "futures-macro" 2021 - version = "0.3.30" 2022 - source = "registry+https://github.com/rust-lang/crates.io-index" 2023 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 2024 - dependencies = [ 2025 - "proc-macro2", 2026 - "quote", 2027 - "syn 2.0.48", 2028 - ] 2029 - 2030 - [[package]] 2031 - name = "futures-sink" 2032 - version = "0.3.30" 2033 - source = "registry+https://github.com/rust-lang/crates.io-index" 2034 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 2035 - 2036 - [[package]] 2037 - name = "futures-task" 2038 - version = "0.3.30" 2039 - source = "registry+https://github.com/rust-lang/crates.io-index" 2040 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 2041 - 2042 - [[package]] 2043 - name = "futures-timer" 2044 - version = "3.0.2" 2045 - source = "registry+https://github.com/rust-lang/crates.io-index" 2046 - checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 2047 - 2048 - [[package]] 2049 - name = "futures-util" 2050 - version = "0.3.30" 2051 - source = "registry+https://github.com/rust-lang/crates.io-index" 2052 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 2053 - dependencies = [ 2054 - "futures-channel", 2055 - "futures-core", 2056 - "futures-io", 2057 - "futures-macro", 2058 - "futures-sink", 2059 - "futures-task", 2060 - "memchr", 2061 - "pin-project-lite", 2062 - "pin-utils", 2063 - "slab", 2064 - ] 2065 - 2066 - [[package]] 2067 - name = "fuzzy-matcher" 2068 - version = "0.3.7" 2069 - source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94" 2071 - dependencies = [ 2072 - "thread_local", 2073 - ] 2074 - 2075 - [[package]] 2076 - name = "generate-bidi" 2077 - version = "0.1.0" 2078 - dependencies = [ 2079 - "anyhow", 2080 - ] 2081 - 2082 - [[package]] 2083 - name = "generic-array" 2084 - version = "0.14.7" 2085 - source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2087 - dependencies = [ 2088 - "typenum", 2089 - "version_check", 2090 - ] 2091 - 2092 - [[package]] 2093 - name = "gethostname" 2094 - version = "0.4.3" 2095 - source = "registry+https://github.com/rust-lang/crates.io-index" 2096 - checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 2097 - dependencies = [ 2098 - "libc", 2099 - "windows-targets 0.48.5", 2100 - ] 2101 - 2102 - [[package]] 2103 - name = "getopts" 2104 - version = "0.2.21" 2105 - source = "registry+https://github.com/rust-lang/crates.io-index" 2106 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 2107 - dependencies = [ 2108 - "unicode-width", 2109 - ] 2110 - 2111 - [[package]] 2112 - name = "getrandom" 2113 - version = "0.2.12" 2114 - source = "registry+https://github.com/rust-lang/crates.io-index" 2115 - checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 2116 - dependencies = [ 2117 - "cfg-if", 2118 - "js-sys", 2119 - "libc", 2120 - "wasi", 2121 - "wasm-bindgen", 2122 - ] 2123 - 2124 - [[package]] 2125 - name = "gif" 2126 - version = "0.12.0" 2127 - source = "registry+https://github.com/rust-lang/crates.io-index" 2128 - checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 2129 - dependencies = [ 2130 - "color_quant", 2131 - "weezl", 2132 - ] 2133 - 2134 - [[package]] 2135 - name = "gimli" 2136 - version = "0.28.1" 2137 - source = "registry+https://github.com/rust-lang/crates.io-index" 2138 - checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 2139 - 2140 - [[package]] 2141 - name = "git2" 2142 - version = "0.16.1" 2143 - source = "registry+https://github.com/rust-lang/crates.io-index" 2144 - checksum = "ccf7f68c2995f392c49fffb4f95ae2c873297830eb25c6bc4c114ce8f4562acc" 2145 - dependencies = [ 2146 - "bitflags 1.3.2", 2147 - "libc", 2148 - "libgit2-sys", 2149 - "log", 2150 - "openssl-probe", 2151 - "openssl-sys", 2152 - "url", 2153 - ] 2154 - 2155 - [[package]] 2156 - name = "gl_generator" 2157 - version = "0.14.0" 2158 - source = "registry+https://github.com/rust-lang/crates.io-index" 2159 - checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 2160 - dependencies = [ 2161 - "khronos_api", 2162 - "log", 2163 - "xml-rs", 2164 - ] 2165 - 2166 - [[package]] 2167 - name = "glium" 2168 - version = "0.31.0" 2169 - source = "registry+https://github.com/rust-lang/crates.io-index" 2170 - checksum = "0ab4f09b43d8ee427a700cb9ed3b20e0e858d62a509edded1a98ca5707d68e19" 2171 - dependencies = [ 2172 - "backtrace", 2173 - "fnv", 2174 - "gl_generator", 2175 - "lazy_static", 2176 - "memoffset 0.6.5", 2177 - "smallvec", 2178 - "takeable-option", 2179 - ] 2180 - 2181 - [[package]] 2182 - name = "glob" 2183 - version = "0.3.1" 2184 - source = "registry+https://github.com/rust-lang/crates.io-index" 2185 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2186 - 2187 - [[package]] 2188 - name = "globset" 2189 - version = "0.4.14" 2190 - source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 2192 - dependencies = [ 2193 - "aho-corasick", 2194 - "bstr 1.9.0", 2195 - "log", 2196 - "regex-automata 0.4.5", 2197 - "regex-syntax", 2198 - ] 2199 - 2200 - [[package]] 2201 - name = "globwalk" 2202 - version = "0.9.1" 2203 - source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757" 2205 - dependencies = [ 2206 - "bitflags 2.4.2", 2207 - "ignore", 2208 - "walkdir", 2209 - ] 2210 - 2211 - [[package]] 2212 - name = "glow" 2213 - version = "0.13.1" 2214 - source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1" 2216 - dependencies = [ 2217 - "js-sys", 2218 - "slotmap", 2219 - "wasm-bindgen", 2220 - "web-sys", 2221 - ] 2222 - 2223 - [[package]] 2224 - name = "glutin_wgl_sys" 2225 - version = "0.5.0" 2226 - source = "registry+https://github.com/rust-lang/crates.io-index" 2227 - checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead" 2228 - dependencies = [ 2229 - "gl_generator", 2230 - ] 2231 - 2232 - [[package]] 2233 - name = "governor" 2234 - version = "0.5.1" 2235 - source = "registry+https://github.com/rust-lang/crates.io-index" 2236 - checksum = "c390a940a5d157878dd057c78680a33ce3415bcd05b4799509ea44210914b4d5" 2237 - dependencies = [ 2238 - "cfg-if", 2239 - "futures", 2240 - "futures-timer", 2241 - "no-std-compat", 2242 - "nonzero_ext", 2243 - "parking_lot 0.12.1", 2244 - "smallvec", 2245 - ] 2246 - 2247 - [[package]] 2248 - name = "gpu-alloc" 2249 - version = "0.6.0" 2250 - source = "registry+https://github.com/rust-lang/crates.io-index" 2251 - checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171" 2252 - dependencies = [ 2253 - "bitflags 2.4.2", 2254 - "gpu-alloc-types", 2255 - ] 2256 - 2257 - [[package]] 2258 - name = "gpu-alloc-types" 2259 - version = "0.3.0" 2260 - source = "registry+https://github.com/rust-lang/crates.io-index" 2261 - checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4" 2262 - dependencies = [ 2263 - "bitflags 2.4.2", 2264 - ] 2265 - 2266 - [[package]] 2267 - name = "gpu-allocator" 2268 - version = "0.23.0" 2269 - source = "registry+https://github.com/rust-lang/crates.io-index" 2270 - checksum = "40fe17c8a05d60c38c0a4e5a3c802f2f1ceb66b76c67d96ffb34bef0475a7fad" 2271 - dependencies = [ 2272 - "backtrace", 2273 - "log", 2274 - "presser", 2275 - "thiserror", 2276 - "winapi", 2277 - "windows 0.51.1", 2278 - ] 2279 - 2280 - [[package]] 2281 - name = "gpu-descriptor" 2282 - version = "0.2.4" 2283 - source = "registry+https://github.com/rust-lang/crates.io-index" 2284 - checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c" 2285 - dependencies = [ 2286 - "bitflags 2.4.2", 2287 - "gpu-descriptor-types", 2288 - "hashbrown 0.14.3", 2289 - ] 2290 - 2291 - [[package]] 2292 - name = "gpu-descriptor-types" 2293 - version = "0.1.2" 2294 - source = "registry+https://github.com/rust-lang/crates.io-index" 2295 - checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c" 2296 - dependencies = [ 2297 - "bitflags 2.4.2", 2298 - ] 2299 - 2300 - [[package]] 2301 - name = "guillotiere" 2302 - version = "0.6.2" 2303 - source = "registry+https://github.com/rust-lang/crates.io-index" 2304 - checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782" 2305 - dependencies = [ 2306 - "euclid", 2307 - "svg_fmt", 2308 - ] 2309 - 2310 - [[package]] 2311 - name = "h2" 2312 - version = "0.3.24" 2313 - source = "registry+https://github.com/rust-lang/crates.io-index" 2314 - checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 2315 - dependencies = [ 2316 - "bytes", 2317 - "fnv", 2318 - "futures-core", 2319 - "futures-sink", 2320 - "futures-util", 2321 - "http", 2322 - "indexmap 2.2.1", 2323 - "slab", 2324 - "tokio", 2325 - "tokio-util", 2326 - "tracing", 2327 - ] 2328 - 2329 - [[package]] 2330 - name = "half" 2331 - version = "1.8.2" 2332 - source = "registry+https://github.com/rust-lang/crates.io-index" 2333 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2334 - 2335 - [[package]] 2336 - name = "half" 2337 - version = "2.3.1" 2338 - source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 2340 - dependencies = [ 2341 - "cfg-if", 2342 - "crunchy", 2343 - ] 2344 - 2345 - [[package]] 2346 - name = "harfbuzz" 2347 - version = "0.1.0" 2348 - dependencies = [ 2349 - "cc", 2350 - "freetype", 2351 - ] 2352 - 2353 - [[package]] 2354 - name = "hashbrown" 2355 - version = "0.11.2" 2356 - source = "registry+https://github.com/rust-lang/crates.io-index" 2357 - checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 2358 - dependencies = [ 2359 - "ahash 0.7.7", 2360 - ] 2361 - 2362 - [[package]] 2363 - name = "hashbrown" 2364 - version = "0.12.3" 2365 - source = "registry+https://github.com/rust-lang/crates.io-index" 2366 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2367 - dependencies = [ 2368 - "ahash 0.7.7", 2369 - ] 2370 - 2371 - [[package]] 2372 - name = "hashbrown" 2373 - version = "0.13.2" 2374 - source = "registry+https://github.com/rust-lang/crates.io-index" 2375 - checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2376 - dependencies = [ 2377 - "ahash 0.8.7", 2378 - ] 2379 - 2380 - [[package]] 2381 - name = "hashbrown" 2382 - version = "0.14.3" 2383 - source = "registry+https://github.com/rust-lang/crates.io-index" 2384 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2385 - dependencies = [ 2386 - "ahash 0.8.7", 2387 - "allocator-api2", 2388 - ] 2389 - 2390 - [[package]] 2391 - name = "hashlink" 2392 - version = "0.7.0" 2393 - source = "registry+https://github.com/rust-lang/crates.io-index" 2394 - checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf" 2395 - dependencies = [ 2396 - "hashbrown 0.11.2", 2397 - ] 2398 - 2399 - [[package]] 2400 - name = "hassle-rs" 2401 - version = "0.10.0" 2402 - source = "registry+https://github.com/rust-lang/crates.io-index" 2403 - checksum = "1397650ee315e8891a0df210707f0fc61771b0cc518c3023896064c5407cb3b0" 2404 - dependencies = [ 2405 - "bitflags 1.3.2", 2406 - "com-rs", 2407 - "libc", 2408 - "libloading 0.7.4", 2409 - "thiserror", 2410 - "widestring", 2411 - "winapi", 2412 - ] 2413 - 2414 - [[package]] 2415 - name = "hdrhistogram" 2416 - version = "7.5.4" 2417 - source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" 2419 - dependencies = [ 2420 - "base64 0.21.7", 2421 - "byteorder", 2422 - "crossbeam-channel", 2423 - "flate2", 2424 - "nom", 2425 - "num-traits", 2426 - ] 2427 - 2428 - [[package]] 2429 - name = "heck" 2430 - version = "0.4.1" 2431 - source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2433 - 2434 - [[package]] 2435 - name = "hermit-abi" 2436 - version = "0.1.19" 2437 - source = "registry+https://github.com/rust-lang/crates.io-index" 2438 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 2439 - dependencies = [ 2440 - "libc", 2441 - ] 2442 - 2443 - [[package]] 2444 - name = "hermit-abi" 2445 - version = "0.3.4" 2446 - source = "registry+https://github.com/rust-lang/crates.io-index" 2447 - checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 2448 - 2449 - [[package]] 2450 - name = "hex" 2451 - version = "0.4.3" 2452 - source = "registry+https://github.com/rust-lang/crates.io-index" 2453 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2454 - 2455 - [[package]] 2456 - name = "hexf-parse" 2457 - version = "0.2.1" 2458 - source = "registry+https://github.com/rust-lang/crates.io-index" 2459 - checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 2460 - 2461 - [[package]] 2462 - name = "home" 2463 - version = "0.5.9" 2464 - source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2466 - dependencies = [ 2467 - "windows-sys 0.52.0", 2468 - ] 2469 - 2470 - [[package]] 2471 - name = "hostname" 2472 - version = "0.3.1" 2473 - source = "registry+https://github.com/rust-lang/crates.io-index" 2474 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 2475 - dependencies = [ 2476 - "libc", 2477 - "match_cfg", 2478 - "winapi", 2479 - ] 2480 - 2481 - [[package]] 2482 - name = "http" 2483 - version = "0.2.11" 2484 - source = "registry+https://github.com/rust-lang/crates.io-index" 2485 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2486 - dependencies = [ 2487 - "bytes", 2488 - "fnv", 2489 - "itoa", 2490 - ] 2491 - 2492 - [[package]] 2493 - name = "http-body" 2494 - version = "0.4.6" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2497 - dependencies = [ 2498 - "bytes", 2499 - "http", 2500 - "pin-project-lite", 2501 - ] 2502 - 2503 - [[package]] 2504 - name = "http_req" 2505 - version = "0.10.2" 2506 - source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "90394b01e9de1f7eca6ca0664cc64bd92add9603c1aa4f961813f23789035e10" 2508 - dependencies = [ 2509 - "native-tls", 2510 - "unicase", 2511 - ] 2512 - 2513 - [[package]] 2514 - name = "httparse" 2515 - version = "1.8.0" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2518 - 2519 - [[package]] 2520 - name = "httpdate" 2521 - version = "1.0.3" 2522 - source = "registry+https://github.com/rust-lang/crates.io-index" 2523 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2524 - 2525 - [[package]] 2526 - name = "humansize" 2527 - version = "2.1.3" 2528 - source = "registry+https://github.com/rust-lang/crates.io-index" 2529 - checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 2530 - dependencies = [ 2531 - "libm", 2532 - ] 2533 - 2534 - [[package]] 2535 - name = "humantime" 2536 - version = "2.1.0" 2537 - source = "registry+https://github.com/rust-lang/crates.io-index" 2538 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2539 - 2540 - [[package]] 2541 - name = "hyper" 2542 - version = "0.14.28" 2543 - source = "registry+https://github.com/rust-lang/crates.io-index" 2544 - checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 2545 - dependencies = [ 2546 - "bytes", 2547 - "futures-channel", 2548 - "futures-core", 2549 - "futures-util", 2550 - "h2", 2551 - "http", 2552 - "http-body", 2553 - "httparse", 2554 - "httpdate", 2555 - "itoa", 2556 - "pin-project-lite", 2557 - "socket2 0.5.5", 2558 - "tokio", 2559 - "tower-service", 2560 - "tracing", 2561 - "want", 2562 - ] 2563 - 2564 - [[package]] 2565 - name = "hyper-tls" 2566 - version = "0.5.0" 2567 - source = "registry+https://github.com/rust-lang/crates.io-index" 2568 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2569 - dependencies = [ 2570 - "bytes", 2571 - "hyper", 2572 - "native-tls", 2573 - "tokio", 2574 - "tokio-native-tls", 2575 - ] 2576 - 2577 - [[package]] 2578 - name = "iana-time-zone" 2579 - version = "0.1.59" 2580 - source = "registry+https://github.com/rust-lang/crates.io-index" 2581 - checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 2582 - dependencies = [ 2583 - "android_system_properties", 2584 - "core-foundation-sys 0.8.6", 2585 - "iana-time-zone-haiku", 2586 - "js-sys", 2587 - "wasm-bindgen", 2588 - "windows-core 0.52.0", 2589 - ] 2590 - 2591 - [[package]] 2592 - name = "iana-time-zone-haiku" 2593 - version = "0.1.2" 2594 - source = "registry+https://github.com/rust-lang/crates.io-index" 2595 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2596 - dependencies = [ 2597 - "cc", 2598 - ] 2599 - 2600 - [[package]] 2601 - name = "ident_case" 2602 - version = "1.0.1" 2603 - source = "registry+https://github.com/rust-lang/crates.io-index" 2604 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2605 - 2606 - [[package]] 2607 - name = "idna" 2608 - version = "0.5.0" 2609 - source = "registry+https://github.com/rust-lang/crates.io-index" 2610 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2611 - dependencies = [ 2612 - "unicode-bidi", 2613 - "unicode-normalization", 2614 - ] 2615 - 2616 - [[package]] 2617 - name = "ignore" 2618 - version = "0.4.22" 2619 - source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 2621 - dependencies = [ 2622 - "crossbeam-deque", 2623 - "globset", 2624 - "log", 2625 - "memchr", 2626 - "regex-automata 0.4.5", 2627 - "same-file", 2628 - "walkdir", 2629 - "winapi-util", 2630 - ] 2631 - 2632 - [[package]] 2633 - name = "image" 2634 - version = "0.24.8" 2635 - source = "registry+https://github.com/rust-lang/crates.io-index" 2636 - checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23" 2637 - dependencies = [ 2638 - "bytemuck", 2639 - "byteorder", 2640 - "color_quant", 2641 - "exr", 2642 - "gif", 2643 - "jpeg-decoder", 2644 - "num-traits", 2645 - "png", 2646 - "qoi", 2647 - "tiff", 2648 - ] 2649 - 2650 - [[package]] 2651 - name = "indexmap" 2652 - version = "1.9.3" 2653 - source = "registry+https://github.com/rust-lang/crates.io-index" 2654 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2655 - dependencies = [ 2656 - "autocfg", 2657 - "hashbrown 0.12.3", 2658 - "serde", 2659 - ] 2660 - 2661 - [[package]] 2662 - name = "indexmap" 2663 - version = "2.2.1" 2664 - source = "registry+https://github.com/rust-lang/crates.io-index" 2665 - checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b" 2666 - dependencies = [ 2667 - "equivalent", 2668 - "hashbrown 0.14.3", 2669 - ] 2670 - 2671 - [[package]] 2672 - name = "inotify" 2673 - version = "0.9.6" 2674 - source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2676 - dependencies = [ 2677 - "bitflags 1.3.2", 2678 - "inotify-sys", 2679 - "libc", 2680 - ] 2681 - 2682 - [[package]] 2683 - name = "inotify-sys" 2684 - version = "0.1.5" 2685 - source = "registry+https://github.com/rust-lang/crates.io-index" 2686 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 2687 - dependencies = [ 2688 - "libc", 2689 - ] 2690 - 2691 - [[package]] 2692 - name = "instant" 2693 - version = "0.1.12" 2694 - source = "registry+https://github.com/rust-lang/crates.io-index" 2695 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2696 - dependencies = [ 2697 - "cfg-if", 2698 - ] 2699 - 2700 - [[package]] 2701 - name = "intrusive-collections" 2702 - version = "0.9.6" 2703 - source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "b694dc9f70c3bda874626d2aed13b780f137aab435f4e9814121955cf706122e" 2705 - dependencies = [ 2706 - "memoffset 0.9.0", 2707 - ] 2708 - 2709 - [[package]] 2710 - name = "io-lifetimes" 2711 - version = "1.0.11" 2712 - source = "registry+https://github.com/rust-lang/crates.io-index" 2713 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2714 - dependencies = [ 2715 - "hermit-abi 0.3.4", 2716 - "libc", 2717 - "windows-sys 0.48.0", 2718 - ] 2719 - 2720 - [[package]] 2721 - name = "ioctl-rs" 2722 - version = "0.1.6" 2723 - source = "registry+https://github.com/rust-lang/crates.io-index" 2724 - checksum = "f7970510895cee30b3e9128319f2cefd4bde883a39f38baa279567ba3a7eb97d" 2725 - dependencies = [ 2726 - "libc", 2727 - ] 2728 - 2729 - [[package]] 2730 - name = "ipnet" 2731 - version = "2.9.0" 2732 - source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 2734 - 2735 - [[package]] 2736 - name = "is-terminal" 2737 - version = "0.4.10" 2738 - source = "registry+https://github.com/rust-lang/crates.io-index" 2739 - checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" 2740 - dependencies = [ 2741 - "hermit-abi 0.3.4", 2742 - "rustix 0.38.30", 2743 - "windows-sys 0.52.0", 2744 - ] 2745 - 2746 - [[package]] 2747 - name = "itertools" 2748 - version = "0.10.5" 2749 - source = "registry+https://github.com/rust-lang/crates.io-index" 2750 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2751 - dependencies = [ 2752 - "either", 2753 - ] 2754 - 2755 - [[package]] 2756 - name = "itoa" 2757 - version = "1.0.10" 2758 - source = "registry+https://github.com/rust-lang/crates.io-index" 2759 - checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 2760 - 2761 - [[package]] 2762 - name = "jobserver" 2763 - version = "0.1.27" 2764 - source = "registry+https://github.com/rust-lang/crates.io-index" 2765 - checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 2766 - dependencies = [ 2767 - "libc", 2768 - ] 2769 - 2770 - [[package]] 2771 - name = "jpeg-decoder" 2772 - version = "0.3.1" 2773 - source = "registry+https://github.com/rust-lang/crates.io-index" 2774 - checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 2775 - dependencies = [ 2776 - "rayon", 2777 - ] 2778 - 2779 - [[package]] 2780 - name = "js-sys" 2781 - version = "0.3.67" 2782 - source = "registry+https://github.com/rust-lang/crates.io-index" 2783 - checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 2784 - dependencies = [ 2785 - "wasm-bindgen", 2786 - ] 2787 - 2788 - [[package]] 2789 - name = "json" 2790 - version = "0.1.0" 2791 - dependencies = [ 2792 - "anyhow", 2793 - "config", 2794 - "luahelper", 2795 - "serde_json", 2796 - "wezterm-dynamic", 2797 - ] 2798 - 2799 - [[package]] 2800 - name = "k9" 2801 - version = "0.11.6" 2802 - source = "registry+https://github.com/rust-lang/crates.io-index" 2803 - checksum = "32ddb58b0079a063218472916af599f2753ccb40942cdaba9d1f3fefccef17a9" 2804 - dependencies = [ 2805 - "anyhow", 2806 - "colored 1.9.4", 2807 - "diff", 2808 - "lazy_static", 2809 - "libc", 2810 - "proc-macro2", 2811 - "regex", 2812 - "syn 1.0.109", 2813 - "term_size", 2814 - ] 2815 - 2816 - [[package]] 2817 - name = "k9" 2818 - version = "0.12.0" 2819 - source = "registry+https://github.com/rust-lang/crates.io-index" 2820 - checksum = "088bcebb5b68b1b14b64d7f05b0f802719250b97fdc0338ec42529ea777ed614" 2821 - dependencies = [ 2822 - "anyhow", 2823 - "colored 2.1.0", 2824 - "diff", 2825 - "lazy_static", 2826 - "libc", 2827 - "proc-macro2", 2828 - "regex", 2829 - "syn 2.0.48", 2830 - "terminal_size 0.2.6", 2831 - ] 2832 - 2833 - [[package]] 2834 - name = "khronos-egl" 2835 - version = "6.0.0" 2836 - source = "registry+https://github.com/rust-lang/crates.io-index" 2837 - checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" 2838 - dependencies = [ 2839 - "libc", 2840 - "libloading 0.8.1", 2841 - "pkg-config", 2842 - ] 2843 - 2844 - [[package]] 2845 - name = "khronos_api" 2846 - version = "3.1.0" 2847 - source = "registry+https://github.com/rust-lang/crates.io-index" 2848 - checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 2849 - 2850 - [[package]] 2851 - name = "kqueue" 2852 - version = "1.0.8" 2853 - source = "registry+https://github.com/rust-lang/crates.io-index" 2854 - checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 2855 - dependencies = [ 2856 - "kqueue-sys", 2857 - "libc", 2858 - ] 2859 - 2860 - [[package]] 2861 - name = "kqueue-sys" 2862 - version = "1.0.4" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 2865 - dependencies = [ 2866 - "bitflags 1.3.2", 2867 - "libc", 2868 - ] 2869 - 2870 - [[package]] 2871 - name = "lab" 2872 - version = "0.11.0" 2873 - source = "registry+https://github.com/rust-lang/crates.io-index" 2874 - checksum = "bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f" 2875 - 2876 - [[package]] 2877 - name = "lazy_static" 2878 - version = "1.4.0" 2879 - source = "registry+https://github.com/rust-lang/crates.io-index" 2880 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2881 - 2882 - [[package]] 2883 - name = "lazycell" 2884 - version = "1.3.0" 2885 - source = "registry+https://github.com/rust-lang/crates.io-index" 2886 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 2887 - 2888 - [[package]] 2889 - name = "leb128" 2890 - version = "0.2.5" 2891 - source = "registry+https://github.com/rust-lang/crates.io-index" 2892 - checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" 2893 - 2894 - [[package]] 2895 - name = "lebe" 2896 - version = "0.5.2" 2897 - source = "registry+https://github.com/rust-lang/crates.io-index" 2898 - checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 2899 - 2900 - [[package]] 2901 - name = "lfucache" 2902 - version = "0.1.0" 2903 - dependencies = [ 2904 - "ahash 0.8.7", 2905 - "config", 2906 - "fnv", 2907 - "intrusive-collections", 2908 - "k9 0.11.6", 2909 - "metrics", 2910 - ] 2911 - 2912 - [[package]] 2913 - name = "libc" 2914 - version = "0.2.152" 2915 - source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 2917 - 2918 - [[package]] 2919 - name = "libflate" 2920 - version = "2.0.0" 2921 - source = "registry+https://github.com/rust-lang/crates.io-index" 2922 - checksum = "9f7d5654ae1795afc7ff76f4365c2c8791b0feb18e8996a96adad8ffd7c3b2bf" 2923 - dependencies = [ 2924 - "adler32", 2925 - "core2", 2926 - "crc32fast", 2927 - "dary_heap", 2928 - "libflate_lz77", 2929 - ] 2930 - 2931 - [[package]] 2932 - name = "libflate_lz77" 2933 - version = "2.0.0" 2934 - source = "registry+https://github.com/rust-lang/crates.io-index" 2935 - checksum = "be5f52fb8c451576ec6b79d3f4deb327398bc05bbdbd99021a6e77a4c855d524" 2936 - dependencies = [ 2937 - "core2", 2938 - "hashbrown 0.13.2", 2939 - "rle-decode-fast", 2940 - ] 2941 - 2942 - [[package]] 2943 - name = "libgit2-sys" 2944 - version = "0.14.2+1.5.1" 2945 - source = "registry+https://github.com/rust-lang/crates.io-index" 2946 - checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4" 2947 - dependencies = [ 2948 - "cc", 2949 - "libc", 2950 - "libz-sys", 2951 - "openssl-sys", 2952 - "pkg-config", 2953 - ] 2954 - 2955 - [[package]] 2956 - name = "libloading" 2957 - version = "0.6.7" 2958 - source = "registry+https://github.com/rust-lang/crates.io-index" 2959 - checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" 2960 - dependencies = [ 2961 - "cfg-if", 2962 - "winapi", 2963 - ] 2964 - 2965 - [[package]] 2966 - name = "libloading" 2967 - version = "0.7.4" 2968 - source = "registry+https://github.com/rust-lang/crates.io-index" 2969 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2970 - dependencies = [ 2971 - "cfg-if", 2972 - "winapi", 2973 - ] 2974 - 2975 - [[package]] 2976 - name = "libloading" 2977 - version = "0.8.1" 2978 - source = "registry+https://github.com/rust-lang/crates.io-index" 2979 - checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2980 - dependencies = [ 2981 - "cfg-if", 2982 - "windows-sys 0.48.0", 2983 - ] 2984 - 2985 - [[package]] 2986 - name = "libm" 2987 - version = "0.2.8" 2988 - source = "registry+https://github.com/rust-lang/crates.io-index" 2989 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2990 - 2991 - [[package]] 2992 - name = "libredox" 2993 - version = "0.0.1" 2994 - source = "registry+https://github.com/rust-lang/crates.io-index" 2995 - checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2996 - dependencies = [ 2997 - "bitflags 2.4.2", 2998 - "libc", 2999 - "redox_syscall 0.4.1", 3000 - ] 3001 - 3002 - [[package]] 3003 - name = "libsqlite3-sys" 3004 - version = "0.24.2" 3005 - source = "registry+https://github.com/rust-lang/crates.io-index" 3006 - checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14" 3007 - dependencies = [ 3008 - "cc", 3009 - "pkg-config", 3010 - "vcpkg", 3011 - ] 3012 - 3013 - [[package]] 3014 - name = "libssh-rs" 3015 - version = "0.2.2" 3016 - source = "registry+https://github.com/rust-lang/crates.io-index" 3017 - checksum = "eb3fe324fb06b71d28abb81382ac547f25b4895e853a9968482dc5002fb3db08" 3018 - dependencies = [ 3019 - "bitflags 1.3.2", 3020 - "libssh-rs-sys", 3021 - "openssl-sys", 3022 - "thiserror", 3023 - ] 3024 - 3025 - [[package]] 3026 - name = "libssh-rs-sys" 3027 - version = "0.2.2" 3028 - source = "registry+https://github.com/rust-lang/crates.io-index" 3029 - checksum = "3af07827858d82a7b74d6f935ad4201ff764fb1de8efcc26aeaa33e5f9c89ca2" 3030 - dependencies = [ 3031 - "cc", 3032 - "libz-sys", 3033 - "openssl-sys", 3034 - "pkg-config", 3035 - ] 3036 - 3037 - [[package]] 3038 - name = "libssh2-sys" 3039 - version = "0.3.0" 3040 - source = "registry+https://github.com/rust-lang/crates.io-index" 3041 - checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" 3042 - dependencies = [ 3043 - "cc", 3044 - "libc", 3045 - "libz-sys", 3046 - "openssl-sys", 3047 - "pkg-config", 3048 - "vcpkg", 3049 - ] 3050 - 3051 - [[package]] 3052 - name = "libz-sys" 3053 - version = "1.1.15" 3054 - source = "registry+https://github.com/rust-lang/crates.io-index" 3055 - checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" 3056 - dependencies = [ 3057 - "cc", 3058 - "libc", 3059 - "pkg-config", 3060 - "vcpkg", 3061 - ] 3062 - 3063 - [[package]] 3064 - name = "line-wrap" 3065 - version = "0.1.1" 3066 - source = "registry+https://github.com/rust-lang/crates.io-index" 3067 - checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 3068 - dependencies = [ 3069 - "safemem", 3070 - ] 3071 - 3072 - [[package]] 3073 - name = "line_drawing" 3074 - version = "0.8.1" 3075 - source = "registry+https://github.com/rust-lang/crates.io-index" 3076 - checksum = "15cb10f27ad3eac84fdb70f0ea6dfe3bc33f7d6f3aa575f32d1ced3a342049a1" 3077 - dependencies = [ 3078 - "num-traits", 3079 - ] 3080 - 3081 - [[package]] 3082 - name = "linked-hash-map" 3083 - version = "0.5.6" 3084 - source = "registry+https://github.com/rust-lang/crates.io-index" 3085 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3086 - 3087 - [[package]] 3088 - name = "linux-raw-sys" 3089 - version = "0.3.8" 3090 - source = "registry+https://github.com/rust-lang/crates.io-index" 3091 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 3092 - 3093 - [[package]] 3094 - name = "linux-raw-sys" 3095 - version = "0.4.13" 3096 - source = "registry+https://github.com/rust-lang/crates.io-index" 3097 - checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 3098 - 3099 - [[package]] 3100 - name = "lock_api" 3101 - version = "0.4.11" 3102 - source = "registry+https://github.com/rust-lang/crates.io-index" 3103 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 3104 - dependencies = [ 3105 - "autocfg", 3106 - "scopeguard", 3107 - ] 3108 - 3109 - [[package]] 3110 - name = "log" 3111 - version = "0.4.20" 3112 - source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 3114 - 3115 - [[package]] 3116 - name = "logging" 3117 - version = "0.1.0" 3118 - dependencies = [ 3119 - "anyhow", 3120 - "config", 3121 - "log", 3122 - "luahelper", 3123 - ] 3124 - 3125 - [[package]] 3126 - name = "lru" 3127 - version = "0.7.8" 3128 - source = "registry+https://github.com/rust-lang/crates.io-index" 3129 - checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" 3130 - dependencies = [ 3131 - "hashbrown 0.12.3", 3132 - ] 3133 - 3134 - [[package]] 3135 - name = "lua-src" 3136 - version = "546.0.2" 3137 - source = "registry+https://github.com/rust-lang/crates.io-index" 3138 - checksum = "2da0daa7eee611a4c30c8f5ee31af55266e26e573971ba9336d2993e2da129b2" 3139 - dependencies = [ 3140 - "cc", 3141 - ] 3142 - 3143 - [[package]] 3144 - name = "luahelper" 3145 - version = "0.1.0" 3146 - dependencies = [ 3147 - "bstr 1.9.0", 3148 - "log", 3149 - "mlua", 3150 - "wezterm-dynamic", 3151 - ] 3152 - 3153 - [[package]] 3154 - name = "luajit-src" 3155 - version = "210.5.5+f2336c4" 3156 - source = "registry+https://github.com/rust-lang/crates.io-index" 3157 - checksum = "d8bcba9790f4e3b1c1467d75cdd011a63bbe6bc75da95af5d2cb4e3631f939c4" 3158 - dependencies = [ 3159 - "cc", 3160 - "which", 3161 - ] 3162 - 3163 - [[package]] 3164 - name = "mac_address" 3165 - version = "1.1.5" 3166 - source = "registry+https://github.com/rust-lang/crates.io-index" 3167 - checksum = "4863ee94f19ed315bf3bc00299338d857d4b5bc856af375cc97d237382ad3856" 3168 - dependencies = [ 3169 - "nix 0.23.2", 3170 - "winapi", 3171 - ] 3172 - 3173 - [[package]] 3174 - name = "mach" 3175 - version = "0.3.2" 3176 - source = "registry+https://github.com/rust-lang/crates.io-index" 3177 - checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 3178 - dependencies = [ 3179 - "libc", 3180 - ] 3181 - 3182 - [[package]] 3183 - name = "malloc_buf" 3184 - version = "0.0.6" 3185 - source = "registry+https://github.com/rust-lang/crates.io-index" 3186 - checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 3187 - dependencies = [ 3188 - "libc", 3189 - ] 3190 - 3191 - [[package]] 3192 - name = "maplit" 3193 - version = "1.0.2" 3194 - source = "registry+https://github.com/rust-lang/crates.io-index" 3195 - checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 3196 - 3197 - [[package]] 3198 - name = "match_cfg" 3199 - version = "0.1.0" 3200 - source = "registry+https://github.com/rust-lang/crates.io-index" 3201 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 3202 - 3203 - [[package]] 3204 - name = "memchr" 3205 - version = "2.7.1" 3206 - source = "registry+https://github.com/rust-lang/crates.io-index" 3207 - checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 3208 - 3209 - [[package]] 3210 - name = "memmap2" 3211 - version = "0.2.3" 3212 - source = "registry+https://github.com/rust-lang/crates.io-index" 3213 - checksum = "723e3ebdcdc5c023db1df315364573789f8857c11b631a2fdfad7c00f5c046b4" 3214 - dependencies = [ 3215 - "libc", 3216 - ] 3217 - 3218 - [[package]] 3219 - name = "memmap2" 3220 - version = "0.5.10" 3221 - source = "registry+https://github.com/rust-lang/crates.io-index" 3222 - checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 3223 - dependencies = [ 3224 - "libc", 3225 - ] 3226 - 3227 - [[package]] 3228 - name = "memmap2" 3229 - version = "0.8.0" 3230 - source = "registry+https://github.com/rust-lang/crates.io-index" 3231 - checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 3232 - dependencies = [ 3233 - "libc", 3234 - ] 3235 - 3236 - [[package]] 3237 - name = "memmem" 3238 - version = "0.1.1" 3239 - source = "registry+https://github.com/rust-lang/crates.io-index" 3240 - checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15" 3241 - 3242 - [[package]] 3243 - name = "memoffset" 3244 - version = "0.6.5" 3245 - source = "registry+https://github.com/rust-lang/crates.io-index" 3246 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 3247 - dependencies = [ 3248 - "autocfg", 3249 - ] 3250 - 3251 - [[package]] 3252 - name = "memoffset" 3253 - version = "0.7.1" 3254 - source = "registry+https://github.com/rust-lang/crates.io-index" 3255 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 3256 - dependencies = [ 3257 - "autocfg", 3258 - ] 3259 - 3260 - [[package]] 3261 - name = "memoffset" 3262 - version = "0.9.0" 3263 - source = "registry+https://github.com/rust-lang/crates.io-index" 3264 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 3265 - dependencies = [ 3266 - "autocfg", 3267 - ] 3268 - 3269 - [[package]] 3270 - name = "metal" 3271 - version = "0.27.0" 3272 - source = "registry+https://github.com/rust-lang/crates.io-index" 3273 - checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25" 3274 - dependencies = [ 3275 - "bitflags 2.4.2", 3276 - "block", 3277 - "core-graphics-types", 3278 - "foreign-types 0.5.0", 3279 - "log", 3280 - "objc", 3281 - "paste", 3282 - ] 3283 - 3284 - [[package]] 3285 - name = "metrics" 3286 - version = "0.17.1" 3287 - source = "registry+https://github.com/rust-lang/crates.io-index" 3288 - checksum = "55586aa936c35f34ba8aa5d97356d554311206e1ce1f9e68fe7b07288e5ad827" 3289 - dependencies = [ 3290 - "ahash 0.7.7", 3291 - "metrics-macros", 3292 - ] 3293 - 3294 - [[package]] 3295 - name = "metrics-macros" 3296 - version = "0.4.1" 3297 - source = "registry+https://github.com/rust-lang/crates.io-index" 3298 - checksum = "0daa0ab3a0ae956d0e2c1f42511422850e577d36a255357d1a7d08d45ee3a2f1" 3299 - dependencies = [ 3300 - "lazy_static", 3301 - "proc-macro2", 3302 - "quote", 3303 - "regex", 3304 - "syn 1.0.109", 3305 - ] 3306 - 3307 - [[package]] 3308 - name = "mime" 3309 - version = "0.3.17" 3310 - source = "registry+https://github.com/rust-lang/crates.io-index" 3311 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3312 - 3313 - [[package]] 3314 - name = "minimal-lexical" 3315 - version = "0.2.1" 3316 - source = "registry+https://github.com/rust-lang/crates.io-index" 3317 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3318 - 3319 - [[package]] 3320 - name = "miniz_oxide" 3321 - version = "0.4.4" 3322 - source = "registry+https://github.com/rust-lang/crates.io-index" 3323 - checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 3324 - dependencies = [ 3325 - "adler", 3326 - "autocfg", 3327 - ] 3328 - 3329 - [[package]] 3330 - name = "miniz_oxide" 3331 - version = "0.7.1" 3332 - source = "registry+https://github.com/rust-lang/crates.io-index" 3333 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3334 - dependencies = [ 3335 - "adler", 3336 - "simd-adler32", 3337 - ] 3338 - 3339 - [[package]] 3340 - name = "mintex" 3341 - version = "0.1.3" 3342 - source = "registry+https://github.com/rust-lang/crates.io-index" 3343 - checksum = "9bec4598fddb13cc7b528819e697852653252b760f1228b7642679bf2ff2cd07" 3344 - 3345 - [[package]] 3346 - name = "mio" 3347 - version = "0.8.10" 3348 - source = "registry+https://github.com/rust-lang/crates.io-index" 3349 - checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 3350 - dependencies = [ 3351 - "libc", 3352 - "log", 3353 - "wasi", 3354 - "windows-sys 0.48.0", 3355 - ] 3356 - 3357 - [[package]] 3358 - name = "mlua" 3359 - version = "0.9.5" 3360 - source = "registry+https://github.com/rust-lang/crates.io-index" 3361 - checksum = "1d3561f79659ff3afad7b25e2bf2ec21507fe601ebecb7f81088669ec4bfd51e" 3362 - dependencies = [ 3363 - "bstr 1.9.0", 3364 - "futures-util", 3365 - "mlua-sys", 3366 - "num-traits", 3367 - "once_cell", 3368 - "rustc-hash", 3369 - ] 3370 - 3371 - [[package]] 3372 - name = "mlua-sys" 3373 - version = "0.5.1" 3374 - source = "registry+https://github.com/rust-lang/crates.io-index" 3375 - checksum = "2847b42764435201d8cbee1f517edb79c4cca4181877b90047587c89e1b7bce4" 3376 - dependencies = [ 3377 - "cc", 3378 - "cfg-if", 3379 - "lua-src", 3380 - "luajit-src", 3381 - "pkg-config", 3382 - ] 3383 - 3384 - [[package]] 3385 - name = "mux" 3386 - version = "0.1.0" 3387 - dependencies = [ 3388 - "anyhow", 3389 - "async-trait", 3390 - "base64 0.21.7", 3391 - "bintree", 3392 - "bitflags 1.3.2", 3393 - "chrono", 3394 - "config", 3395 - "crossbeam", 3396 - "downcast-rs", 3397 - "fancy-regex", 3398 - "filedescriptor", 3399 - "finl_unicode", 3400 - "flume 0.10.14", 3401 - "hostname", 3402 - "k9 0.11.6", 3403 - "lazy_static", 3404 - "libc", 3405 - "log", 3406 - "luahelper", 3407 - "metrics", 3408 - "mlua", 3409 - "names", 3410 - "nix 0.25.1", 3411 - "ntapi", 3412 - "parking_lot 0.12.1", 3413 - "percent-encoding", 3414 - "portable-pty", 3415 - "procinfo", 3416 - "promise", 3417 - "rangeset", 3418 - "serde", 3419 - "serial", 3420 - "shell-words", 3421 - "smol", 3422 - "terminfo", 3423 - "termwiz", 3424 - "termwiz-funcs", 3425 - "textwrap 0.16.0", 3426 - "thiserror", 3427 - "url", 3428 - "wezterm-dynamic", 3429 - "wezterm-ssh", 3430 - "wezterm-term", 3431 - "winapi", 3432 - ] 3433 - 3434 - [[package]] 3435 - name = "mux-lua" 3436 - version = "0.1.0" 3437 - dependencies = [ 3438 - "anyhow", 3439 - "config", 3440 - "libc", 3441 - "log", 3442 - "luahelper", 3443 - "mux", 3444 - "parking_lot 0.12.1", 3445 - "portable-pty", 3446 - "smol", 3447 - "termwiz", 3448 - "termwiz-funcs", 3449 - "url-funcs", 3450 - "wezterm-dynamic", 3451 - "wezterm-term", 3452 - ] 3453 - 3454 - [[package]] 3455 - name = "naga" 3456 - version = "0.14.2" 3457 - source = "registry+https://github.com/rust-lang/crates.io-index" 3458 - checksum = "ae585df4b6514cf8842ac0f1ab4992edc975892704835b549cf818dc0191249e" 3459 - dependencies = [ 3460 - "bit-set", 3461 - "bitflags 2.4.2", 3462 - "codespan-reporting", 3463 - "hexf-parse", 3464 - "indexmap 2.2.1", 3465 - "log", 3466 - "num-traits", 3467 - "rustc-hash", 3468 - "spirv", 3469 - "termcolor", 3470 - "thiserror", 3471 - "unicode-xid", 3472 - ] 3473 - 3474 - [[package]] 3475 - name = "names" 3476 - version = "0.12.0" 3477 - source = "registry+https://github.com/rust-lang/crates.io-index" 3478 - checksum = "10a8690bf09abf659851e58cd666c3d37ac6af07c2bd7a9e332cfba471715775" 3479 - dependencies = [ 3480 - "rand", 3481 - ] 3482 - 3483 - [[package]] 3484 - name = "nanorand" 3485 - version = "0.7.0" 3486 - source = "registry+https://github.com/rust-lang/crates.io-index" 3487 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 3488 - dependencies = [ 3489 - "getrandom", 3490 - ] 3491 - 3492 - [[package]] 3493 - name = "native-tls" 3494 - version = "0.2.11" 3495 - source = "registry+https://github.com/rust-lang/crates.io-index" 3496 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 3497 - dependencies = [ 3498 - "lazy_static", 3499 - "libc", 3500 - "log", 3501 - "openssl", 3502 - "openssl-probe", 3503 - "openssl-sys", 3504 - "schannel", 3505 - "security-framework", 3506 - "security-framework-sys", 3507 - "tempfile", 3508 - ] 3509 - 3510 - [[package]] 3511 - name = "nix" 3512 - version = "0.23.2" 3513 - source = "registry+https://github.com/rust-lang/crates.io-index" 3514 - checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c" 3515 - dependencies = [ 3516 - "bitflags 1.3.2", 3517 - "cc", 3518 - "cfg-if", 3519 - "libc", 3520 - "memoffset 0.6.5", 3521 - ] 3522 - 3523 - [[package]] 3524 - name = "nix" 3525 - version = "0.24.3" 3526 - source = "registry+https://github.com/rust-lang/crates.io-index" 3527 - checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 3528 - dependencies = [ 3529 - "bitflags 1.3.2", 3530 - "cfg-if", 3531 - "libc", 3532 - "memoffset 0.6.5", 3533 - ] 3534 - 3535 - [[package]] 3536 - name = "nix" 3537 - version = "0.25.1" 3538 - source = "registry+https://github.com/rust-lang/crates.io-index" 3539 - checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 3540 - dependencies = [ 3541 - "autocfg", 3542 - "bitflags 1.3.2", 3543 - "cfg-if", 3544 - "libc", 3545 - "memoffset 0.6.5", 3546 - "pin-utils", 3547 - ] 3548 - 3549 - [[package]] 3550 - name = "nix" 3551 - version = "0.26.4" 3552 - source = "registry+https://github.com/rust-lang/crates.io-index" 3553 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3554 - dependencies = [ 3555 - "bitflags 1.3.2", 3556 - "cfg-if", 3557 - "libc", 3558 - "memoffset 0.7.1", 3559 - "pin-utils", 3560 - ] 3561 - 3562 - [[package]] 3563 - name = "no-std-compat" 3564 - version = "0.4.1" 3565 - source = "registry+https://github.com/rust-lang/crates.io-index" 3566 - checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" 3567 - 3568 - [[package]] 3569 - name = "nom" 3570 - version = "7.1.3" 3571 - source = "registry+https://github.com/rust-lang/crates.io-index" 3572 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3573 - dependencies = [ 3574 - "memchr", 3575 - "minimal-lexical", 3576 - ] 3577 - 3578 - [[package]] 3579 - name = "nonzero_ext" 3580 - version = "0.3.0" 3581 - source = "registry+https://github.com/rust-lang/crates.io-index" 3582 - checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 3583 - 3584 - [[package]] 3585 - name = "normalize-line-endings" 3586 - version = "0.3.0" 3587 - source = "registry+https://github.com/rust-lang/crates.io-index" 3588 - checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 3589 - 3590 - [[package]] 3591 - name = "notify" 3592 - version = "5.2.0" 3593 - source = "registry+https://github.com/rust-lang/crates.io-index" 3594 - checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" 3595 - dependencies = [ 3596 - "bitflags 1.3.2", 3597 - "crossbeam-channel", 3598 - "filetime", 3599 - "fsevent-sys", 3600 - "inotify", 3601 - "kqueue", 3602 - "libc", 3603 - "mio", 3604 - "walkdir", 3605 - "windows-sys 0.45.0", 3606 - ] 3607 - 3608 - [[package]] 3609 - name = "ntapi" 3610 - version = "0.4.1" 3611 - source = "registry+https://github.com/rust-lang/crates.io-index" 3612 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3613 - dependencies = [ 3614 - "winapi", 3615 - ] 3616 - 3617 - [[package]] 3618 - name = "num" 3619 - version = "0.3.1" 3620 - source = "registry+https://github.com/rust-lang/crates.io-index" 3621 - checksum = "8b7a8e9be5e039e2ff869df49155f1c06bd01ade2117ec783e56ab0932b67a8f" 3622 - dependencies = [ 3623 - "num-bigint", 3624 - "num-complex", 3625 - "num-integer", 3626 - "num-iter", 3627 - "num-rational", 3628 - "num-traits", 3629 - ] 3630 - 3631 - [[package]] 3632 - name = "num-bigint" 3633 - version = "0.3.3" 3634 - source = "registry+https://github.com/rust-lang/crates.io-index" 3635 - checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" 3636 - dependencies = [ 3637 - "autocfg", 3638 - "num-integer", 3639 - "num-traits", 3640 - ] 3641 - 3642 - [[package]] 3643 - name = "num-complex" 3644 - version = "0.3.1" 3645 - source = "registry+https://github.com/rust-lang/crates.io-index" 3646 - checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" 3647 - dependencies = [ 3648 - "num-traits", 3649 - ] 3650 - 3651 - [[package]] 3652 - name = "num-conv" 3653 - version = "0.1.0" 3654 - source = "registry+https://github.com/rust-lang/crates.io-index" 3655 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3656 - 3657 - [[package]] 3658 - name = "num-derive" 3659 - version = "0.3.3" 3660 - source = "registry+https://github.com/rust-lang/crates.io-index" 3661 - checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 3662 - dependencies = [ 3663 - "proc-macro2", 3664 - "quote", 3665 - "syn 1.0.109", 3666 - ] 3667 - 3668 - [[package]] 3669 - name = "num-integer" 3670 - version = "0.1.45" 3671 - source = "registry+https://github.com/rust-lang/crates.io-index" 3672 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3673 - dependencies = [ 3674 - "autocfg", 3675 - "num-traits", 3676 - ] 3677 - 3678 - [[package]] 3679 - name = "num-iter" 3680 - version = "0.1.43" 3681 - source = "registry+https://github.com/rust-lang/crates.io-index" 3682 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 3683 - dependencies = [ 3684 - "autocfg", 3685 - "num-integer", 3686 - "num-traits", 3687 - ] 3688 - 3689 - [[package]] 3690 - name = "num-rational" 3691 - version = "0.3.2" 3692 - source = "registry+https://github.com/rust-lang/crates.io-index" 3693 - checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" 3694 - dependencies = [ 3695 - "autocfg", 3696 - "num-bigint", 3697 - "num-integer", 3698 - "num-traits", 3699 - ] 3700 - 3701 - [[package]] 3702 - name = "num-traits" 3703 - version = "0.2.17" 3704 - source = "registry+https://github.com/rust-lang/crates.io-index" 3705 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3706 - dependencies = [ 3707 - "autocfg", 3708 - ] 3709 - 3710 - [[package]] 3711 - name = "num_cpus" 3712 - version = "1.16.0" 3713 - source = "registry+https://github.com/rust-lang/crates.io-index" 3714 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 3715 - dependencies = [ 3716 - "hermit-abi 0.3.4", 3717 - "libc", 3718 - ] 3719 - 3720 - [[package]] 3721 - name = "objc" 3722 - version = "0.2.7" 3723 - source = "registry+https://github.com/rust-lang/crates.io-index" 3724 - checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 3725 - dependencies = [ 3726 - "malloc_buf", 3727 - "objc_exception", 3728 - ] 3729 - 3730 - [[package]] 3731 - name = "objc_exception" 3732 - version = "0.1.2" 3733 - source = "registry+https://github.com/rust-lang/crates.io-index" 3734 - checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 3735 - dependencies = [ 3736 - "cc", 3737 - ] 3738 - 3739 - [[package]] 3740 - name = "object" 3741 - version = "0.32.2" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 3744 - dependencies = [ 3745 - "memchr", 3746 - ] 3747 - 3748 - [[package]] 3749 - name = "once_cell" 3750 - version = "1.19.0" 3751 - source = "registry+https://github.com/rust-lang/crates.io-index" 3752 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 3753 - 3754 - [[package]] 3755 - name = "oorandom" 3756 - version = "11.1.3" 3757 - source = "registry+https://github.com/rust-lang/crates.io-index" 3758 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3759 - 3760 - [[package]] 3761 - name = "openssl" 3762 - version = "0.10.63" 3763 - source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" 3765 - dependencies = [ 3766 - "bitflags 2.4.2", 3767 - "cfg-if", 3768 - "foreign-types 0.3.2", 3769 - "libc", 3770 - "once_cell", 3771 - "openssl-macros", 3772 - "openssl-sys", 3773 - ] 3774 - 3775 - [[package]] 3776 - name = "openssl-macros" 3777 - version = "0.1.1" 3778 - source = "registry+https://github.com/rust-lang/crates.io-index" 3779 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3780 - dependencies = [ 3781 - "proc-macro2", 3782 - "quote", 3783 - "syn 2.0.48", 3784 - ] 3785 - 3786 - [[package]] 3787 - name = "openssl-probe" 3788 - version = "0.1.5" 3789 - source = "registry+https://github.com/rust-lang/crates.io-index" 3790 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3791 - 3792 - [[package]] 3793 - name = "openssl-src" 3794 - version = "300.2.1+3.2.0" 3795 - source = "registry+https://github.com/rust-lang/crates.io-index" 3796 - checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3" 3797 - dependencies = [ 3798 - "cc", 3799 - ] 3800 - 3801 - [[package]] 3802 - name = "openssl-sys" 3803 - version = "0.9.99" 3804 - source = "registry+https://github.com/rust-lang/crates.io-index" 3805 - checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" 3806 - dependencies = [ 3807 - "cc", 3808 - "libc", 3809 - "openssl-src", 3810 - "pkg-config", 3811 - "vcpkg", 3812 - ] 3813 - 3814 - [[package]] 3815 - name = "ordered-float" 3816 - version = "4.2.0" 3817 - source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" 3819 - dependencies = [ 3820 - "num-traits", 3821 - "rand", 3822 - "serde", 3823 - ] 3824 - 3825 - [[package]] 3826 - name = "ordered-stream" 3827 - version = "0.2.0" 3828 - source = "registry+https://github.com/rust-lang/crates.io-index" 3829 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 3830 - dependencies = [ 3831 - "futures-core", 3832 - "pin-project-lite", 3833 - ] 3834 - 3835 - [[package]] 3836 - name = "os_str_bytes" 3837 - version = "6.6.1" 3838 - source = "registry+https://github.com/rust-lang/crates.io-index" 3839 - checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 3840 - 3841 - [[package]] 3842 - name = "parking" 3843 - version = "2.2.0" 3844 - source = "registry+https://github.com/rust-lang/crates.io-index" 3845 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 3846 - 3847 - [[package]] 3848 - name = "parking_lot" 3849 - version = "0.11.2" 3850 - source = "registry+https://github.com/rust-lang/crates.io-index" 3851 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 3852 - dependencies = [ 3853 - "instant", 3854 - "lock_api", 3855 - "parking_lot_core 0.8.6", 3856 - ] 3857 - 3858 - [[package]] 3859 - name = "parking_lot" 3860 - version = "0.12.1" 3861 - source = "registry+https://github.com/rust-lang/crates.io-index" 3862 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3863 - dependencies = [ 3864 - "lock_api", 3865 - "parking_lot_core 0.9.9", 3866 - ] 3867 - 3868 - [[package]] 3869 - name = "parking_lot_core" 3870 - version = "0.8.6" 3871 - source = "registry+https://github.com/rust-lang/crates.io-index" 3872 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 3873 - dependencies = [ 3874 - "cfg-if", 3875 - "instant", 3876 - "libc", 3877 - "redox_syscall 0.2.16", 3878 - "smallvec", 3879 - "winapi", 3880 - ] 3881 - 3882 - [[package]] 3883 - name = "parking_lot_core" 3884 - version = "0.9.9" 3885 - source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3887 - dependencies = [ 3888 - "cfg-if", 3889 - "libc", 3890 - "redox_syscall 0.4.1", 3891 - "smallvec", 3892 - "windows-targets 0.48.5", 3893 - ] 3894 - 3895 - [[package]] 3896 - name = "paste" 3897 - version = "1.0.14" 3898 - source = "registry+https://github.com/rust-lang/crates.io-index" 3899 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 3900 - 3901 - [[package]] 3902 - name = "pem" 3903 - version = "3.0.3" 3904 - source = "registry+https://github.com/rust-lang/crates.io-index" 3905 - checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" 3906 - dependencies = [ 3907 - "base64 0.21.7", 3908 - "serde", 3909 - ] 3910 - 3911 - [[package]] 3912 - name = "percent-encoding" 3913 - version = "2.3.1" 3914 - source = "registry+https://github.com/rust-lang/crates.io-index" 3915 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3916 - 3917 - [[package]] 3918 - name = "pest" 3919 - version = "2.7.6" 3920 - source = "registry+https://github.com/rust-lang/crates.io-index" 3921 - checksum = "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06" 3922 - dependencies = [ 3923 - "memchr", 3924 - "thiserror", 3925 - "ucd-trie", 3926 - ] 3927 - 3928 - [[package]] 3929 - name = "pest_derive" 3930 - version = "2.7.6" 3931 - source = "registry+https://github.com/rust-lang/crates.io-index" 3932 - checksum = "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde" 3933 - dependencies = [ 3934 - "pest", 3935 - "pest_generator", 3936 - ] 3937 - 3938 - [[package]] 3939 - name = "pest_generator" 3940 - version = "2.7.6" 3941 - source = "registry+https://github.com/rust-lang/crates.io-index" 3942 - checksum = "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275" 3943 - dependencies = [ 3944 - "pest", 3945 - "pest_meta", 3946 - "proc-macro2", 3947 - "quote", 3948 - "syn 2.0.48", 3949 - ] 3950 - 3951 - [[package]] 3952 - name = "pest_meta" 3953 - version = "2.7.6" 3954 - source = "registry+https://github.com/rust-lang/crates.io-index" 3955 - checksum = "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d" 3956 - dependencies = [ 3957 - "once_cell", 3958 - "pest", 3959 - "sha2", 3960 - ] 3961 - 3962 - [[package]] 3963 - name = "phf" 3964 - version = "0.11.2" 3965 - source = "registry+https://github.com/rust-lang/crates.io-index" 3966 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 3967 - dependencies = [ 3968 - "phf_macros", 3969 - "phf_shared", 3970 - ] 3971 - 3972 - [[package]] 3973 - name = "phf_codegen" 3974 - version = "0.11.2" 3975 - source = "registry+https://github.com/rust-lang/crates.io-index" 3976 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 3977 - dependencies = [ 3978 - "phf_generator", 3979 - "phf_shared", 3980 - ] 3981 - 3982 - [[package]] 3983 - name = "phf_generator" 3984 - version = "0.11.2" 3985 - source = "registry+https://github.com/rust-lang/crates.io-index" 3986 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 3987 - dependencies = [ 3988 - "phf_shared", 3989 - "rand", 3990 - ] 3991 - 3992 - [[package]] 3993 - name = "phf_macros" 3994 - version = "0.11.2" 3995 - source = "registry+https://github.com/rust-lang/crates.io-index" 3996 - checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 3997 - dependencies = [ 3998 - "phf_generator", 3999 - "phf_shared", 4000 - "proc-macro2", 4001 - "quote", 4002 - "syn 2.0.48", 4003 - ] 4004 - 4005 - [[package]] 4006 - name = "phf_shared" 4007 - version = "0.11.2" 4008 - source = "registry+https://github.com/rust-lang/crates.io-index" 4009 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 4010 - dependencies = [ 4011 - "siphasher", 4012 - ] 4013 - 4014 - [[package]] 4015 - name = "pin-project" 4016 - version = "1.1.4" 4017 - source = "registry+https://github.com/rust-lang/crates.io-index" 4018 - checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" 4019 - dependencies = [ 4020 - "pin-project-internal", 4021 - ] 4022 - 4023 - [[package]] 4024 - name = "pin-project-internal" 4025 - version = "1.1.4" 4026 - source = "registry+https://github.com/rust-lang/crates.io-index" 4027 - checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" 4028 - dependencies = [ 4029 - "proc-macro2", 4030 - "quote", 4031 - "syn 2.0.48", 4032 - ] 4033 - 4034 - [[package]] 4035 - name = "pin-project-lite" 4036 - version = "0.2.13" 4037 - source = "registry+https://github.com/rust-lang/crates.io-index" 4038 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 4039 - 4040 - [[package]] 4041 - name = "pin-utils" 4042 - version = "0.1.0" 4043 - source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4045 - 4046 - [[package]] 4047 - name = "piper" 4048 - version = "0.2.1" 4049 - source = "registry+https://github.com/rust-lang/crates.io-index" 4050 - checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 4051 - dependencies = [ 4052 - "atomic-waker", 4053 - "fastrand 2.0.1", 4054 - "futures-io", 4055 - ] 4056 - 4057 - [[package]] 4058 - name = "pkg-config" 4059 - version = "0.3.29" 4060 - source = "registry+https://github.com/rust-lang/crates.io-index" 4061 - checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 4062 - 4063 - [[package]] 4064 - name = "plist" 4065 - version = "1.6.0" 4066 - source = "registry+https://github.com/rust-lang/crates.io-index" 4067 - checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 4068 - dependencies = [ 4069 - "base64 0.21.7", 4070 - "indexmap 2.2.1", 4071 - "line-wrap", 4072 - "quick-xml 0.31.0", 4073 - "serde", 4074 - "time", 4075 - ] 4076 - 4077 - [[package]] 4078 - name = "plotters" 4079 - version = "0.3.5" 4080 - source = "registry+https://github.com/rust-lang/crates.io-index" 4081 - checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 4082 - dependencies = [ 4083 - "num-traits", 4084 - "plotters-backend", 4085 - "plotters-svg", 4086 - "wasm-bindgen", 4087 - "web-sys", 4088 - ] 4089 - 4090 - [[package]] 4091 - name = "plotters-backend" 4092 - version = "0.3.5" 4093 - source = "registry+https://github.com/rust-lang/crates.io-index" 4094 - checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 4095 - 4096 - [[package]] 4097 - name = "plotters-svg" 4098 - version = "0.3.5" 4099 - source = "registry+https://github.com/rust-lang/crates.io-index" 4100 - checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 4101 - dependencies = [ 4102 - "plotters-backend", 4103 - ] 4104 - 4105 - [[package]] 4106 - name = "plugin" 4107 - version = "0.1.0" 4108 - dependencies = [ 4109 - "anyhow", 4110 - "config", 4111 - "git2", 4112 - "log", 4113 - "luahelper", 4114 - "tempfile", 4115 - "wezterm-dynamic", 4116 - ] 4117 - 4118 - [[package]] 4119 - name = "png" 4120 - version = "0.17.11" 4121 - source = "registry+https://github.com/rust-lang/crates.io-index" 4122 - checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" 4123 - dependencies = [ 4124 - "bitflags 1.3.2", 4125 - "crc32fast", 4126 - "fdeflate", 4127 - "flate2", 4128 - "miniz_oxide 0.7.1", 4129 - ] 4130 - 4131 - [[package]] 4132 - name = "polling" 4133 - version = "2.8.0" 4134 - source = "registry+https://github.com/rust-lang/crates.io-index" 4135 - checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 4136 - dependencies = [ 4137 - "autocfg", 4138 - "bitflags 1.3.2", 4139 - "cfg-if", 4140 - "concurrent-queue", 4141 - "libc", 4142 - "log", 4143 - "pin-project-lite", 4144 - "windows-sys 0.48.0", 4145 - ] 4146 - 4147 - [[package]] 4148 - name = "polling" 4149 - version = "3.3.2" 4150 - source = "registry+https://github.com/rust-lang/crates.io-index" 4151 - checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" 4152 - dependencies = [ 4153 - "cfg-if", 4154 - "concurrent-queue", 4155 - "pin-project-lite", 4156 - "rustix 0.38.30", 4157 - "tracing", 4158 - "windows-sys 0.52.0", 4159 - ] 4160 - 4161 - [[package]] 4162 - name = "portable-pty" 4163 - version = "0.8.1" 4164 - dependencies = [ 4165 - "anyhow", 4166 - "bitflags 1.3.2", 4167 - "downcast-rs", 4168 - "filedescriptor", 4169 - "futures", 4170 - "lazy_static", 4171 - "libc", 4172 - "log", 4173 - "nix 0.25.1", 4174 - "serde", 4175 - "serde_derive", 4176 - "serial", 4177 - "shared_library", 4178 - "shell-words", 4179 - "smol", 4180 - "winapi", 4181 - "winreg 0.10.1", 4182 - ] 4183 - 4184 - [[package]] 4185 - name = "powerfmt" 4186 - version = "0.2.0" 4187 - source = "registry+https://github.com/rust-lang/crates.io-index" 4188 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4189 - 4190 - [[package]] 4191 - name = "ppv-lite86" 4192 - version = "0.2.17" 4193 - source = "registry+https://github.com/rust-lang/crates.io-index" 4194 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 4195 - 4196 - [[package]] 4197 - name = "predicates" 4198 - version = "3.1.0" 4199 - source = "registry+https://github.com/rust-lang/crates.io-index" 4200 - checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" 4201 - dependencies = [ 4202 - "anstyle", 4203 - "difflib", 4204 - "float-cmp", 4205 - "normalize-line-endings", 4206 - "predicates-core", 4207 - "regex", 4208 - ] 4209 - 4210 - [[package]] 4211 - name = "predicates-core" 4212 - version = "1.0.6" 4213 - source = "registry+https://github.com/rust-lang/crates.io-index" 4214 - checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 4215 - 4216 - [[package]] 4217 - name = "predicates-tree" 4218 - version = "1.0.9" 4219 - source = "registry+https://github.com/rust-lang/crates.io-index" 4220 - checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 4221 - dependencies = [ 4222 - "predicates-core", 4223 - "termtree", 4224 - ] 4225 - 4226 - [[package]] 4227 - name = "presser" 4228 - version = "0.3.1" 4229 - source = "registry+https://github.com/rust-lang/crates.io-index" 4230 - checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" 4231 - 4232 - [[package]] 4233 - name = "proc-macro-crate" 4234 - version = "1.3.1" 4235 - source = "registry+https://github.com/rust-lang/crates.io-index" 4236 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 4237 - dependencies = [ 4238 - "once_cell", 4239 - "toml_edit 0.19.15", 4240 - ] 4241 - 4242 - [[package]] 4243 - name = "proc-macro2" 4244 - version = "1.0.78" 4245 - source = "registry+https://github.com/rust-lang/crates.io-index" 4246 - checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 4247 - dependencies = [ 4248 - "unicode-ident", 4249 - ] 4250 - 4251 - [[package]] 4252 - name = "procinfo" 4253 - version = "0.1.0" 4254 - dependencies = [ 4255 - "libc", 4256 - "log", 4257 - "luahelper", 4258 - "ntapi", 4259 - "wezterm-dynamic", 4260 - "winapi", 4261 - ] 4262 - 4263 - [[package]] 4264 - name = "procinfo-funcs" 4265 - version = "0.1.0" 4266 - dependencies = [ 4267 - "anyhow", 4268 - "config", 4269 - "libc", 4270 - "luahelper", 4271 - "procinfo", 4272 - "wezterm-dynamic", 4273 - ] 4274 - 4275 - [[package]] 4276 - name = "profiling" 4277 - version = "1.0.13" 4278 - source = "registry+https://github.com/rust-lang/crates.io-index" 4279 - checksum = "d135ede8821cf6376eb7a64148901e1690b788c11ae94dc297ae917dbc91dc0e" 4280 - 4281 - [[package]] 4282 - name = "promise" 4283 - version = "0.2.0" 4284 - dependencies = [ 4285 - "anyhow", 4286 - "async-executor", 4287 - "async-io 1.13.0", 4288 - "async-task", 4289 - "flume 0.10.14", 4290 - "lazy_static", 4291 - "thiserror", 4292 - ] 4293 - 4294 - [[package]] 4295 - name = "pulldown-cmark" 4296 - version = "0.9.6" 4297 - source = "registry+https://github.com/rust-lang/crates.io-index" 4298 - checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" 4299 - dependencies = [ 4300 - "bitflags 2.4.2", 4301 - "getopts", 4302 - "memchr", 4303 - "unicase", 4304 - ] 4305 - 4306 - [[package]] 4307 - name = "pure-rust-locales" 4308 - version = "0.7.0" 4309 - source = "registry+https://github.com/rust-lang/crates.io-index" 4310 - checksum = "ed02a829e62dc2715ceb8afb4f80e298148e1345749ceb369540fe0eb3368432" 4311 - 4312 - [[package]] 4313 - name = "qoi" 4314 - version = "0.4.1" 4315 - source = "registry+https://github.com/rust-lang/crates.io-index" 4316 - checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 4317 - dependencies = [ 4318 - "bytemuck", 4319 - ] 4320 - 4321 - [[package]] 4322 - name = "quick-xml" 4323 - version = "0.30.0" 4324 - source = "registry+https://github.com/rust-lang/crates.io-index" 4325 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 4326 - dependencies = [ 4327 - "memchr", 4328 - ] 4329 - 4330 - [[package]] 4331 - name = "quick-xml" 4332 - version = "0.31.0" 4333 - source = "registry+https://github.com/rust-lang/crates.io-index" 4334 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 4335 - dependencies = [ 4336 - "memchr", 4337 - ] 4338 - 4339 - [[package]] 4340 - name = "quote" 4341 - version = "1.0.35" 4342 - source = "registry+https://github.com/rust-lang/crates.io-index" 4343 - checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 4344 - dependencies = [ 4345 - "proc-macro2", 4346 - ] 4347 - 4348 - [[package]] 4349 - name = "rand" 4350 - version = "0.8.5" 4351 - source = "registry+https://github.com/rust-lang/crates.io-index" 4352 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4353 - dependencies = [ 4354 - "libc", 4355 - "rand_chacha", 4356 - "rand_core", 4357 - "serde", 4358 - ] 4359 - 4360 - [[package]] 4361 - name = "rand_chacha" 4362 - version = "0.3.1" 4363 - source = "registry+https://github.com/rust-lang/crates.io-index" 4364 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4365 - dependencies = [ 4366 - "ppv-lite86", 4367 - "rand_core", 4368 - ] 4369 - 4370 - [[package]] 4371 - name = "rand_core" 4372 - version = "0.6.4" 4373 - source = "registry+https://github.com/rust-lang/crates.io-index" 4374 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4375 - dependencies = [ 4376 - "getrandom", 4377 - "serde", 4378 - ] 4379 - 4380 - [[package]] 4381 - name = "range-alloc" 4382 - version = "0.1.3" 4383 - source = "registry+https://github.com/rust-lang/crates.io-index" 4384 - checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab" 4385 - 4386 - [[package]] 4387 - name = "rangeset" 4388 - version = "0.1.0" 4389 - dependencies = [ 4390 - "criterion 0.3.6", 4391 - "num", 4392 - ] 4393 - 4394 - [[package]] 4395 - name = "ratelim" 4396 - version = "0.1.0" 4397 - dependencies = [ 4398 - "config", 4399 - "governor", 4400 - ] 4401 - 4402 - [[package]] 4403 - name = "raw-window-handle" 4404 - version = "0.5.2" 4405 - source = "registry+https://github.com/rust-lang/crates.io-index" 4406 - checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 4407 - 4408 - [[package]] 4409 - name = "rayon" 4410 - version = "1.8.1" 4411 - source = "registry+https://github.com/rust-lang/crates.io-index" 4412 - checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 4413 - dependencies = [ 4414 - "either", 4415 - "rayon-core", 4416 - ] 4417 - 4418 - [[package]] 4419 - name = "rayon-core" 4420 - version = "1.12.1" 4421 - source = "registry+https://github.com/rust-lang/crates.io-index" 4422 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 4423 - dependencies = [ 4424 - "crossbeam-deque", 4425 - "crossbeam-utils", 4426 - ] 4427 - 4428 - [[package]] 4429 - name = "rcgen" 4430 - version = "0.12.1" 4431 - source = "registry+https://github.com/rust-lang/crates.io-index" 4432 - checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1" 4433 - dependencies = [ 4434 - "pem", 4435 - "ring", 4436 - "time", 4437 - "yasna", 4438 - ] 4439 - 4440 - [[package]] 4441 - name = "redox_syscall" 4442 - version = "0.2.16" 4443 - source = "registry+https://github.com/rust-lang/crates.io-index" 4444 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 4445 - dependencies = [ 4446 - "bitflags 1.3.2", 4447 - ] 4448 - 4449 - [[package]] 4450 - name = "redox_syscall" 4451 - version = "0.4.1" 4452 - source = "registry+https://github.com/rust-lang/crates.io-index" 4453 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4454 - dependencies = [ 4455 - "bitflags 1.3.2", 4456 - ] 4457 - 4458 - [[package]] 4459 - name = "redox_users" 4460 - version = "0.4.4" 4461 - source = "registry+https://github.com/rust-lang/crates.io-index" 4462 - checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 4463 - dependencies = [ 4464 - "getrandom", 4465 - "libredox", 4466 - "thiserror", 4467 - ] 4468 - 4469 - [[package]] 4470 - name = "regex" 4471 - version = "1.10.3" 4472 - source = "registry+https://github.com/rust-lang/crates.io-index" 4473 - checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 4474 - dependencies = [ 4475 - "aho-corasick", 4476 - "memchr", 4477 - "regex-automata 0.4.5", 4478 - "regex-syntax", 4479 - ] 4480 - 4481 - [[package]] 4482 - name = "regex-automata" 4483 - version = "0.1.10" 4484 - source = "registry+https://github.com/rust-lang/crates.io-index" 4485 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 4486 - 4487 - [[package]] 4488 - name = "regex-automata" 4489 - version = "0.4.5" 4490 - source = "registry+https://github.com/rust-lang/crates.io-index" 4491 - checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 4492 - dependencies = [ 4493 - "aho-corasick", 4494 - "memchr", 4495 - "regex-syntax", 4496 - ] 4497 - 4498 - [[package]] 4499 - name = "regex-syntax" 4500 - version = "0.8.2" 4501 - source = "registry+https://github.com/rust-lang/crates.io-index" 4502 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 4503 - 4504 - [[package]] 4505 - name = "relative-path" 4506 - version = "1.9.2" 4507 - source = "registry+https://github.com/rust-lang/crates.io-index" 4508 - checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc" 4509 - 4510 - [[package]] 4511 - name = "renderdoc-sys" 4512 - version = "1.0.0" 4513 - source = "registry+https://github.com/rust-lang/crates.io-index" 4514 - checksum = "216080ab382b992234dda86873c18d4c48358f5cfcb70fd693d7f6f2131b628b" 4515 - 4516 - [[package]] 4517 - name = "reqwest" 4518 - version = "0.11.23" 4519 - source = "registry+https://github.com/rust-lang/crates.io-index" 4520 - checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" 4521 - dependencies = [ 4522 - "base64 0.21.7", 4523 - "bytes", 4524 - "encoding_rs", 4525 - "futures-core", 4526 - "futures-util", 4527 - "h2", 4528 - "http", 4529 - "http-body", 4530 - "hyper", 4531 - "hyper-tls", 4532 - "ipnet", 4533 - "js-sys", 4534 - "log", 4535 - "mime", 4536 - "native-tls", 4537 - "once_cell", 4538 - "percent-encoding", 4539 - "pin-project-lite", 4540 - "serde", 4541 - "serde_json", 4542 - "serde_urlencoded", 4543 - "system-configuration", 4544 - "tokio", 4545 - "tokio-native-tls", 4546 - "tower-service", 4547 - "url", 4548 - "wasm-bindgen", 4549 - "wasm-bindgen-futures", 4550 - "web-sys", 4551 - "winreg 0.50.0", 4552 - ] 4553 - 4554 - [[package]] 4555 - name = "resize" 4556 - version = "0.5.5" 4557 - source = "registry+https://github.com/rust-lang/crates.io-index" 4558 - checksum = "f2a08c42ea86684dc00256494c4eb8b54707890ddac50c05060a717f29669029" 4559 - dependencies = [ 4560 - "rgb", 4561 - ] 4562 - 4563 - [[package]] 4564 - name = "rgb" 4565 - version = "0.8.37" 4566 - source = "registry+https://github.com/rust-lang/crates.io-index" 4567 - checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 4568 - dependencies = [ 4569 - "bytemuck", 4570 - ] 4571 - 4572 - [[package]] 4573 - name = "ring" 4574 - version = "0.17.7" 4575 - source = "registry+https://github.com/rust-lang/crates.io-index" 4576 - checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 4577 - dependencies = [ 4578 - "cc", 4579 - "getrandom", 4580 - "libc", 4581 - "spin", 4582 - "untrusted", 4583 - "windows-sys 0.48.0", 4584 - ] 4585 - 4586 - [[package]] 4587 - name = "rle-decode-fast" 4588 - version = "1.0.3" 4589 - source = "registry+https://github.com/rust-lang/crates.io-index" 4590 - checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 4591 - 4592 - [[package]] 4593 - name = "rstest" 4594 - version = "0.18.2" 4595 - source = "registry+https://github.com/rust-lang/crates.io-index" 4596 - checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199" 4597 - dependencies = [ 4598 - "futures", 4599 - "futures-timer", 4600 - "rstest_macros", 4601 - "rustc_version", 4602 - ] 4603 - 4604 - [[package]] 4605 - name = "rstest_macros" 4606 - version = "0.18.2" 4607 - source = "registry+https://github.com/rust-lang/crates.io-index" 4608 - checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605" 4609 - dependencies = [ 4610 - "cfg-if", 4611 - "glob", 4612 - "proc-macro2", 4613 - "quote", 4614 - "regex", 4615 - "relative-path", 4616 - "rustc_version", 4617 - "syn 2.0.48", 4618 - "unicode-ident", 4619 - ] 4620 - 4621 - [[package]] 4622 - name = "rusqlite" 4623 - version = "0.27.0" 4624 - source = "registry+https://github.com/rust-lang/crates.io-index" 4625 - checksum = "85127183a999f7db96d1a976a309eebbfb6ea3b0b400ddd8340190129de6eb7a" 4626 - dependencies = [ 4627 - "bitflags 1.3.2", 4628 - "fallible-iterator", 4629 - "fallible-streaming-iterator", 4630 - "hashlink", 4631 - "libsqlite3-sys", 4632 - "memchr", 4633 - "smallvec", 4634 - ] 4635 - 4636 - [[package]] 4637 - name = "rustc-demangle" 4638 - version = "0.1.23" 4639 - source = "registry+https://github.com/rust-lang/crates.io-index" 4640 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 4641 - 4642 - [[package]] 4643 - name = "rustc-hash" 4644 - version = "1.1.0" 4645 - source = "registry+https://github.com/rust-lang/crates.io-index" 4646 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 4647 - 4648 - [[package]] 4649 - name = "rustc_version" 4650 - version = "0.4.0" 4651 - source = "registry+https://github.com/rust-lang/crates.io-index" 4652 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 4653 - dependencies = [ 4654 - "semver 1.0.21", 4655 - ] 4656 - 4657 - [[package]] 4658 - name = "rustix" 4659 - version = "0.37.27" 4660 - source = "registry+https://github.com/rust-lang/crates.io-index" 4661 - checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 4662 - dependencies = [ 4663 - "bitflags 1.3.2", 4664 - "errno", 4665 - "io-lifetimes", 4666 - "libc", 4667 - "linux-raw-sys 0.3.8", 4668 - "windows-sys 0.48.0", 4669 - ] 4670 - 4671 - [[package]] 4672 - name = "rustix" 4673 - version = "0.38.30" 4674 - source = "registry+https://github.com/rust-lang/crates.io-index" 4675 - checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 4676 - dependencies = [ 4677 - "bitflags 2.4.2", 4678 - "errno", 4679 - "libc", 4680 - "linux-raw-sys 0.4.13", 4681 - "windows-sys 0.52.0", 4682 - ] 4683 - 4684 - [[package]] 4685 - name = "ryu" 4686 - version = "1.0.16" 4687 - source = "registry+https://github.com/rust-lang/crates.io-index" 4688 - checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 4689 - 4690 - [[package]] 4691 - name = "safemem" 4692 - version = "0.3.3" 4693 - source = "registry+https://github.com/rust-lang/crates.io-index" 4694 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 4695 - 4696 - [[package]] 4697 - name = "same-file" 4698 - version = "1.0.6" 4699 - source = "registry+https://github.com/rust-lang/crates.io-index" 4700 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4701 - dependencies = [ 4702 - "winapi-util", 4703 - ] 4704 - 4705 - [[package]] 4706 - name = "schannel" 4707 - version = "0.1.23" 4708 - source = "registry+https://github.com/rust-lang/crates.io-index" 4709 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 4710 - dependencies = [ 4711 - "windows-sys 0.52.0", 4712 - ] 4713 - 4714 - [[package]] 4715 - name = "scoped-tls" 4716 - version = "1.0.1" 4717 - source = "registry+https://github.com/rust-lang/crates.io-index" 4718 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 4719 - 4720 - [[package]] 4721 - name = "scopeguard" 4722 - version = "1.2.0" 4723 - source = "registry+https://github.com/rust-lang/crates.io-index" 4724 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4725 - 4726 - [[package]] 4727 - name = "security-framework" 4728 - version = "2.9.2" 4729 - source = "registry+https://github.com/rust-lang/crates.io-index" 4730 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 4731 - dependencies = [ 4732 - "bitflags 1.3.2", 4733 - "core-foundation 0.9.4", 4734 - "core-foundation-sys 0.8.6", 4735 - "libc", 4736 - "security-framework-sys", 4737 - ] 4738 - 4739 - [[package]] 4740 - name = "security-framework-sys" 4741 - version = "2.9.1" 4742 - source = "registry+https://github.com/rust-lang/crates.io-index" 4743 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 4744 - dependencies = [ 4745 - "core-foundation-sys 0.8.6", 4746 - "libc", 4747 - ] 4748 - 4749 - [[package]] 4750 - name = "semver" 4751 - version = "0.11.0" 4752 - source = "registry+https://github.com/rust-lang/crates.io-index" 4753 - checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 4754 - dependencies = [ 4755 - "semver-parser", 4756 - ] 4757 - 4758 - [[package]] 4759 - name = "semver" 4760 - version = "1.0.21" 4761 - source = "registry+https://github.com/rust-lang/crates.io-index" 4762 - checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 4763 - 4764 - [[package]] 4765 - name = "semver-parser" 4766 - version = "0.10.2" 4767 - source = "registry+https://github.com/rust-lang/crates.io-index" 4768 - checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 4769 - dependencies = [ 4770 - "pest", 4771 - ] 4772 - 4773 - [[package]] 4774 - name = "serde" 4775 - version = "1.0.196" 4776 - source = "registry+https://github.com/rust-lang/crates.io-index" 4777 - checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 4778 - dependencies = [ 4779 - "serde_derive", 4780 - ] 4781 - 4782 - [[package]] 4783 - name = "serde_cbor" 4784 - version = "0.11.2" 4785 - source = "registry+https://github.com/rust-lang/crates.io-index" 4786 - checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 4787 - dependencies = [ 4788 - "half 1.8.2", 4789 - "serde", 4790 - ] 4791 - 4792 - [[package]] 4793 - name = "serde_derive" 4794 - version = "1.0.196" 4795 - source = "registry+https://github.com/rust-lang/crates.io-index" 4796 - checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 4797 - dependencies = [ 4798 - "proc-macro2", 4799 - "quote", 4800 - "syn 2.0.48", 4801 - ] 4802 - 4803 - [[package]] 4804 - name = "serde_json" 4805 - version = "1.0.113" 4806 - source = "registry+https://github.com/rust-lang/crates.io-index" 4807 - checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 4808 - dependencies = [ 4809 - "itoa", 4810 - "ryu", 4811 - "serde", 4812 - ] 4813 - 4814 - [[package]] 4815 - name = "serde_repr" 4816 - version = "0.1.18" 4817 - source = "registry+https://github.com/rust-lang/crates.io-index" 4818 - checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 4819 - dependencies = [ 4820 - "proc-macro2", 4821 - "quote", 4822 - "syn 2.0.48", 4823 - ] 4824 - 4825 - [[package]] 4826 - name = "serde_spanned" 4827 - version = "0.6.5" 4828 - source = "registry+https://github.com/rust-lang/crates.io-index" 4829 - checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 4830 - dependencies = [ 4831 - "serde", 4832 - ] 4833 - 4834 - [[package]] 4835 - name = "serde_urlencoded" 4836 - version = "0.7.1" 4837 - source = "registry+https://github.com/rust-lang/crates.io-index" 4838 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4839 - dependencies = [ 4840 - "form_urlencoded", 4841 - "itoa", 4842 - "ryu", 4843 - "serde", 4844 - ] 4845 - 4846 - [[package]] 4847 - name = "serde_with" 4848 - version = "2.3.3" 4849 - source = "registry+https://github.com/rust-lang/crates.io-index" 4850 - checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe" 4851 - dependencies = [ 4852 - "base64 0.13.1", 4853 - "chrono", 4854 - "hex", 4855 - "indexmap 1.9.3", 4856 - "serde", 4857 - "serde_json", 4858 - "serde_with_macros", 4859 - "time", 4860 - ] 4861 - 4862 - [[package]] 4863 - name = "serde_with_macros" 4864 - version = "2.3.3" 4865 - source = "registry+https://github.com/rust-lang/crates.io-index" 4866 - checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f" 4867 - dependencies = [ 4868 - "darling", 4869 - "proc-macro2", 4870 - "quote", 4871 - "syn 2.0.48", 4872 - ] 4873 - 4874 - [[package]] 4875 - name = "serde_yaml" 4876 - version = "0.9.31" 4877 - source = "registry+https://github.com/rust-lang/crates.io-index" 4878 - checksum = "adf8a49373e98a4c5f0ceb5d05aa7c648d75f63774981ed95b7c7443bbd50c6e" 4879 - dependencies = [ 4880 - "indexmap 2.2.1", 4881 - "itoa", 4882 - "ryu", 4883 - "serde", 4884 - "unsafe-libyaml", 4885 - ] 4886 - 4887 - [[package]] 4888 - name = "serial" 4889 - version = "0.4.0" 4890 - source = "registry+https://github.com/rust-lang/crates.io-index" 4891 - checksum = "a1237a96570fc377c13baa1b88c7589ab66edced652e43ffb17088f003db3e86" 4892 - dependencies = [ 4893 - "serial-core", 4894 - "serial-unix", 4895 - "serial-windows", 4896 - ] 4897 - 4898 - [[package]] 4899 - name = "serial-core" 4900 - version = "0.4.0" 4901 - source = "registry+https://github.com/rust-lang/crates.io-index" 4902 - checksum = "3f46209b345401737ae2125fe5b19a77acce90cd53e1658cda928e4fe9a64581" 4903 - dependencies = [ 4904 - "libc", 4905 - ] 4906 - 4907 - [[package]] 4908 - name = "serial-unix" 4909 - version = "0.4.0" 4910 - source = "registry+https://github.com/rust-lang/crates.io-index" 4911 - checksum = "f03fbca4c9d866e24a459cbca71283f545a37f8e3e002ad8c70593871453cab7" 4912 - dependencies = [ 4913 - "ioctl-rs", 4914 - "libc", 4915 - "serial-core", 4916 - "termios 0.2.2", 4917 - ] 4918 - 4919 - [[package]] 4920 - name = "serial-windows" 4921 - version = "0.4.0" 4922 - source = "registry+https://github.com/rust-lang/crates.io-index" 4923 - checksum = "15c6d3b776267a75d31bbdfd5d36c0ca051251caafc285827052bc53bcdc8162" 4924 - dependencies = [ 4925 - "libc", 4926 - "serial-core", 4927 - ] 4928 - 4929 - [[package]] 4930 - name = "sha1" 4931 - version = "0.10.6" 4932 - source = "registry+https://github.com/rust-lang/crates.io-index" 4933 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4934 - dependencies = [ 4935 - "cfg-if", 4936 - "cpufeatures", 4937 - "digest", 4938 - ] 4939 - 4940 - [[package]] 4941 - name = "sha2" 4942 - version = "0.10.8" 4943 - source = "registry+https://github.com/rust-lang/crates.io-index" 4944 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 4945 - dependencies = [ 4946 - "cfg-if", 4947 - "cpufeatures", 4948 - "digest", 4949 - ] 4950 - 4951 - [[package]] 4952 - name = "share-data" 4953 - version = "0.1.0" 4954 - dependencies = [ 4955 - "anyhow", 4956 - "config", 4957 - "lazy_static", 4958 - "luahelper", 4959 - "ordered-float", 4960 - "wezterm-dynamic", 4961 - ] 4962 - 4963 - [[package]] 4964 - name = "shared_library" 4965 - version = "0.1.9" 4966 - source = "registry+https://github.com/rust-lang/crates.io-index" 4967 - checksum = "5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11" 4968 - dependencies = [ 4969 - "lazy_static", 4970 - "libc", 4971 - ] 4972 - 4973 - [[package]] 4974 - name = "shell-words" 4975 - version = "1.1.0" 4976 - source = "registry+https://github.com/rust-lang/crates.io-index" 4977 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 4978 - 4979 - [[package]] 4980 - name = "shlex" 4981 - version = "1.3.0" 4982 - source = "registry+https://github.com/rust-lang/crates.io-index" 4983 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4984 - 4985 - [[package]] 4986 - name = "signal-hook" 4987 - version = "0.3.17" 4988 - source = "registry+https://github.com/rust-lang/crates.io-index" 4989 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 4990 - dependencies = [ 4991 - "libc", 4992 - "signal-hook-registry", 4993 - ] 4994 - 4995 - [[package]] 4996 - name = "signal-hook-registry" 4997 - version = "1.4.1" 4998 - source = "registry+https://github.com/rust-lang/crates.io-index" 4999 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 5000 - dependencies = [ 5001 - "libc", 5002 - ] 5003 - 5004 - [[package]] 5005 - name = "simd-adler32" 5006 - version = "0.3.7" 5007 - source = "registry+https://github.com/rust-lang/crates.io-index" 5008 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 5009 - 5010 - [[package]] 5011 - name = "siphasher" 5012 - version = "0.3.11" 5013 - source = "registry+https://github.com/rust-lang/crates.io-index" 5014 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 5015 - 5016 - [[package]] 5017 - name = "slab" 5018 - version = "0.4.9" 5019 - source = "registry+https://github.com/rust-lang/crates.io-index" 5020 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 5021 - dependencies = [ 5022 - "autocfg", 5023 - ] 5024 - 5025 - [[package]] 5026 - name = "slotmap" 5027 - version = "1.0.7" 5028 - source = "registry+https://github.com/rust-lang/crates.io-index" 5029 - checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 5030 - dependencies = [ 5031 - "version_check", 5032 - ] 5033 - 5034 - [[package]] 5035 - name = "smallvec" 5036 - version = "1.13.1" 5037 - source = "registry+https://github.com/rust-lang/crates.io-index" 5038 - checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 5039 - 5040 - [[package]] 5041 - name = "smawk" 5042 - version = "0.3.2" 5043 - source = "registry+https://github.com/rust-lang/crates.io-index" 5044 - checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 5045 - 5046 - [[package]] 5047 - name = "smithay-client-toolkit" 5048 - version = "0.16.1" 5049 - source = "registry+https://github.com/rust-lang/crates.io-index" 5050 - checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9" 5051 - dependencies = [ 5052 - "bitflags 1.3.2", 5053 - "dlib", 5054 - "lazy_static", 5055 - "log", 5056 - "memmap2 0.5.10", 5057 - "nix 0.24.3", 5058 - "pkg-config", 5059 - "wayland-client", 5060 - "wayland-cursor", 5061 - "wayland-protocols", 5062 - ] 5063 - 5064 - [[package]] 5065 - name = "smol" 5066 - version = "1.3.0" 5067 - source = "registry+https://github.com/rust-lang/crates.io-index" 5068 - checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1" 5069 - dependencies = [ 5070 - "async-channel 1.9.0", 5071 - "async-executor", 5072 - "async-fs", 5073 - "async-io 1.13.0", 5074 - "async-lock 2.8.0", 5075 - "async-net", 5076 - "async-process", 5077 - "blocking", 5078 - "futures-lite 1.13.0", 5079 - ] 5080 - 5081 - [[package]] 5082 - name = "smol-potat" 5083 - version = "1.1.2" 5084 - source = "registry+https://github.com/rust-lang/crates.io-index" 5085 - checksum = "894ffa61af5c0fab697c8c29b1ab10cb6ec4978a1ccac4a81b5b312df1ffd88e" 5086 - dependencies = [ 5087 - "async-io 1.13.0", 5088 - "smol-potat-macro", 5089 - ] 5090 - 5091 - [[package]] 5092 - name = "smol-potat-macro" 5093 - version = "0.6.0" 5094 - source = "registry+https://github.com/rust-lang/crates.io-index" 5095 - checksum = "6b7cd8129a18069385b4eadaa81182b1451fab312ad6f58d1d99253082bf3932" 5096 - dependencies = [ 5097 - "proc-macro2", 5098 - "quote", 5099 - "syn 1.0.109", 5100 - ] 5101 - 5102 - [[package]] 5103 - name = "socket2" 5104 - version = "0.4.10" 5105 - source = "registry+https://github.com/rust-lang/crates.io-index" 5106 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 5107 - dependencies = [ 5108 - "libc", 5109 - "winapi", 5110 - ] 5111 - 5112 - [[package]] 5113 - name = "socket2" 5114 - version = "0.5.5" 5115 - source = "registry+https://github.com/rust-lang/crates.io-index" 5116 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 5117 - dependencies = [ 5118 - "libc", 5119 - "windows-sys 0.48.0", 5120 - ] 5121 - 5122 - [[package]] 5123 - name = "spa" 5124 - version = "0.3.1" 5125 - source = "registry+https://github.com/rust-lang/crates.io-index" 5126 - checksum = "ab074195b3f78a133cd7b7998142cf39dfaac71f6e990eaeecd14f5524db009a" 5127 - dependencies = [ 5128 - "chrono", 5129 - ] 5130 - 5131 - [[package]] 5132 - name = "spawn-funcs" 5133 - version = "0.1.0" 5134 - dependencies = [ 5135 - "anyhow", 5136 - "bstr 1.9.0", 5137 - "config", 5138 - "log", 5139 - "luahelper", 5140 - "smol", 5141 - "wezterm-dynamic", 5142 - "wezterm-open-url", 5143 - "winapi", 5144 - ] 5145 - 5146 - [[package]] 5147 - name = "spin" 5148 - version = "0.9.8" 5149 - source = "registry+https://github.com/rust-lang/crates.io-index" 5150 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 5151 - dependencies = [ 5152 - "lock_api", 5153 - ] 5154 - 5155 - [[package]] 5156 - name = "spirv" 5157 - version = "0.2.0+1.5.4" 5158 - source = "registry+https://github.com/rust-lang/crates.io-index" 5159 - checksum = "246bfa38fe3db3f1dfc8ca5a2cdeb7348c78be2112740cc0ec8ef18b6d94f830" 5160 - dependencies = [ 5161 - "bitflags 1.3.2", 5162 - "num-traits", 5163 - ] 5164 - 5165 - [[package]] 5166 - name = "sqlite-cache" 5167 - version = "0.1.3" 5168 - source = "registry+https://github.com/rust-lang/crates.io-index" 5169 - checksum = "012429babedb75518d1b6935abcee30852d1650c05c6eaf4e29ae335ae6e173b" 5170 - dependencies = [ 5171 - "data-encoding", 5172 - "futures", 5173 - "rusqlite", 5174 - "tracing", 5175 - ] 5176 - 5177 - [[package]] 5178 - name = "ssh-funcs" 5179 - version = "0.1.0" 5180 - dependencies = [ 5181 - "anyhow", 5182 - "config", 5183 - "luahelper", 5184 - "wezterm-ssh", 5185 - ] 5186 - 5187 - [[package]] 5188 - name = "ssh2" 5189 - version = "0.9.4" 5190 - source = "registry+https://github.com/rust-lang/crates.io-index" 5191 - checksum = "e7fe461910559f6d5604c3731d00d2aafc4a83d1665922e280f42f9a168d5455" 5192 - dependencies = [ 5193 - "bitflags 1.3.2", 5194 - "libc", 5195 - "libssh2-sys", 5196 - "parking_lot 0.11.2", 5197 - ] 5198 - 5199 - [[package]] 5200 - name = "starship-battery" 5201 - version = "0.7.9" 5202 - source = "registry+https://github.com/rust-lang/crates.io-index" 5203 - checksum = "3336198ad004af4447ae69be4f4e562c26814570f8f0c1e37858405a294e015d" 5204 - dependencies = [ 5205 - "cfg-if", 5206 - "core-foundation 0.7.0", 5207 - "lazycell", 5208 - "libc", 5209 - "mach", 5210 - "nix 0.23.2", 5211 - "num-traits", 5212 - "uom", 5213 - "winapi", 5214 - ] 5215 - 5216 - [[package]] 5217 - name = "static_assertions" 5218 - version = "1.1.0" 5219 - source = "registry+https://github.com/rust-lang/crates.io-index" 5220 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5221 - 5222 - [[package]] 5223 - name = "strict-num" 5224 - version = "0.1.1" 5225 - source = "registry+https://github.com/rust-lang/crates.io-index" 5226 - checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 5227 - 5228 - [[package]] 5229 - name = "strip-ansi-escapes" 5230 - version = "0.1.0" 5231 - dependencies = [ 5232 - "clap 4.4.18", 5233 - "termwiz", 5234 - ] 5235 - 5236 - [[package]] 5237 - name = "strsim" 5238 - version = "0.10.0" 5239 - source = "registry+https://github.com/rust-lang/crates.io-index" 5240 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 5241 - 5242 - [[package]] 5243 - name = "svg_fmt" 5244 - version = "0.4.1" 5245 - source = "registry+https://github.com/rust-lang/crates.io-index" 5246 - checksum = "8fb1df15f412ee2e9dfc1c504260fa695c1c3f10fe9f4a6ee2d2184d7d6450e2" 5247 - 5248 - [[package]] 5249 - name = "syn" 5250 - version = "1.0.109" 5251 - source = "registry+https://github.com/rust-lang/crates.io-index" 5252 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 5253 - dependencies = [ 5254 - "proc-macro2", 5255 - "quote", 5256 - "unicode-ident", 5257 - ] 5258 - 5259 - [[package]] 5260 - name = "syn" 5261 - version = "2.0.48" 5262 - source = "registry+https://github.com/rust-lang/crates.io-index" 5263 - checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 5264 - dependencies = [ 5265 - "proc-macro2", 5266 - "quote", 5267 - "unicode-ident", 5268 - ] 5269 - 5270 - [[package]] 5271 - name = "sync-color-schemes" 5272 - version = "0.1.0" 5273 - dependencies = [ 5274 - "anyhow", 5275 - "color-funcs", 5276 - "config", 5277 - "env_logger 0.11.1", 5278 - "futures", 5279 - "lazy_static", 5280 - "libflate", 5281 - "log", 5282 - "reqwest", 5283 - "rusqlite", 5284 - "serde", 5285 - "serde_json", 5286 - "sqlite-cache", 5287 - "tar", 5288 - "tempfile", 5289 - "tokio", 5290 - "toml 0.8.8", 5291 - "wezterm-dynamic", 5292 - "yaml-rust", 5293 - ] 5294 - 5295 - [[package]] 5296 - name = "system-configuration" 5297 - version = "0.5.1" 5298 - source = "registry+https://github.com/rust-lang/crates.io-index" 5299 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 5300 - dependencies = [ 5301 - "bitflags 1.3.2", 5302 - "core-foundation 0.9.4", 5303 - "system-configuration-sys", 5304 - ] 5305 - 5306 - [[package]] 5307 - name = "system-configuration-sys" 5308 - version = "0.5.0" 5309 - source = "registry+https://github.com/rust-lang/crates.io-index" 5310 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 5311 - dependencies = [ 5312 - "core-foundation-sys 0.8.6", 5313 - "libc", 5314 - ] 5315 - 5316 - [[package]] 5317 - name = "tabout" 5318 - version = "0.3.0" 5319 - dependencies = [ 5320 - "termwiz", 5321 - ] 5322 - 5323 - [[package]] 5324 - name = "takeable-option" 5325 - version = "0.5.0" 5326 - source = "registry+https://github.com/rust-lang/crates.io-index" 5327 - checksum = "36ae8932fcfea38b7d3883ae2ab357b0d57a02caaa18ebb4f5ece08beaec4aa0" 5328 - 5329 - [[package]] 5330 - name = "tar" 5331 - version = "0.4.40" 5332 - source = "registry+https://github.com/rust-lang/crates.io-index" 5333 - checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 5334 - dependencies = [ 5335 - "filetime", 5336 - "libc", 5337 - "xattr", 5338 - ] 5339 - 5340 - [[package]] 5341 - name = "tempfile" 5342 - version = "3.9.0" 5343 - source = "registry+https://github.com/rust-lang/crates.io-index" 5344 - checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 5345 - dependencies = [ 5346 - "cfg-if", 5347 - "fastrand 2.0.1", 5348 - "redox_syscall 0.4.1", 5349 - "rustix 0.38.30", 5350 - "windows-sys 0.52.0", 5351 - ] 5352 - 5353 - [[package]] 5354 - name = "term_size" 5355 - version = "0.3.2" 5356 - source = "registry+https://github.com/rust-lang/crates.io-index" 5357 - checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9" 5358 - dependencies = [ 5359 - "libc", 5360 - "winapi", 5361 - ] 5362 - 5363 - [[package]] 5364 - name = "termcolor" 5365 - version = "1.4.1" 5366 - source = "registry+https://github.com/rust-lang/crates.io-index" 5367 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 5368 - dependencies = [ 5369 - "winapi-util", 5370 - ] 5371 - 5372 - [[package]] 5373 - name = "terminal_size" 5374 - version = "0.2.6" 5375 - source = "registry+https://github.com/rust-lang/crates.io-index" 5376 - checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 5377 - dependencies = [ 5378 - "rustix 0.37.27", 5379 - "windows-sys 0.48.0", 5380 - ] 5381 - 5382 - [[package]] 5383 - name = "terminal_size" 5384 - version = "0.3.0" 5385 - source = "registry+https://github.com/rust-lang/crates.io-index" 5386 - checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 5387 - dependencies = [ 5388 - "rustix 0.38.30", 5389 - "windows-sys 0.48.0", 5390 - ] 5391 - 5392 - [[package]] 5393 - name = "terminfo" 5394 - version = "0.8.0" 5395 - source = "registry+https://github.com/rust-lang/crates.io-index" 5396 - checksum = "666cd3a6681775d22b200409aad3b089c5b99fb11ecdd8a204d9d62f8148498f" 5397 - dependencies = [ 5398 - "dirs", 5399 - "fnv", 5400 - "nom", 5401 - "phf", 5402 - "phf_codegen", 5403 - ] 5404 - 5405 - [[package]] 5406 - name = "termios" 5407 - version = "0.2.2" 5408 - source = "registry+https://github.com/rust-lang/crates.io-index" 5409 - checksum = "d5d9cf598a6d7ce700a4e6a9199da127e6819a61e64b68609683cc9a01b5683a" 5410 - dependencies = [ 5411 - "libc", 5412 - ] 5413 - 5414 - [[package]] 5415 - name = "termios" 5416 - version = "0.3.3" 5417 - source = "registry+https://github.com/rust-lang/crates.io-index" 5418 - checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b" 5419 - dependencies = [ 5420 - "libc", 5421 - ] 5422 - 5423 - [[package]] 5424 - name = "termtree" 5425 - version = "0.4.1" 5426 - source = "registry+https://github.com/rust-lang/crates.io-index" 5427 - checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 5428 - 5429 - [[package]] 5430 - name = "termwiz" 5431 - version = "0.22.0" 5432 - dependencies = [ 5433 - "anyhow", 5434 - "base64 0.21.7", 5435 - "bitflags 2.4.2", 5436 - "cassowary", 5437 - "criterion 0.4.0", 5438 - "env_logger 0.11.1", 5439 - "fancy-regex", 5440 - "filedescriptor", 5441 - "finl_unicode", 5442 - "fixedbitset", 5443 - "fnv", 5444 - "hex", 5445 - "image", 5446 - "k9 0.11.6", 5447 - "lazy_static", 5448 - "libc", 5449 - "log", 5450 - "memmem", 5451 - "nix 0.26.4", 5452 - "num-derive", 5453 - "num-traits", 5454 - "ordered-float", 5455 - "pest", 5456 - "pest_derive", 5457 - "phf", 5458 - "semver 0.11.0", 5459 - "serde", 5460 - "sha2", 5461 - "signal-hook", 5462 - "siphasher", 5463 - "tempfile", 5464 - "terminfo", 5465 - "termios 0.3.3", 5466 - "thiserror", 5467 - "ucd-trie", 5468 - "unicode-segmentation", 5469 - "varbincode", 5470 - "vtparse", 5471 - "wezterm-bidi", 5472 - "wezterm-blob-leases", 5473 - "wezterm-color-types", 5474 - "wezterm-dynamic", 5475 - "wezterm-input-types", 5476 - "winapi", 5477 - ] 5478 - 5479 - [[package]] 5480 - name = "termwiz-funcs" 5481 - version = "0.1.0" 5482 - dependencies = [ 5483 - "anyhow", 5484 - "config", 5485 - "finl_unicode", 5486 - "lazy_static", 5487 - "luahelper", 5488 - "terminfo", 5489 - "termwiz", 5490 - "wezterm-dynamic", 5491 - "wezterm-input-types", 5492 - ] 5493 - 5494 - [[package]] 5495 - name = "textwrap" 5496 - version = "0.11.0" 5497 - source = "registry+https://github.com/rust-lang/crates.io-index" 5498 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 5499 - dependencies = [ 5500 - "unicode-width", 5501 - ] 5502 - 5503 - [[package]] 5504 - name = "textwrap" 5505 - version = "0.16.0" 5506 - source = "registry+https://github.com/rust-lang/crates.io-index" 5507 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 5508 - dependencies = [ 5509 - "smawk", 5510 - "unicode-linebreak", 5511 - "unicode-width", 5512 - ] 5513 - 5514 - [[package]] 5515 - name = "thiserror" 5516 - version = "1.0.56" 5517 - source = "registry+https://github.com/rust-lang/crates.io-index" 5518 - checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 5519 - dependencies = [ 5520 - "thiserror-impl", 5521 - ] 5522 - 5523 - [[package]] 5524 - name = "thiserror-impl" 5525 - version = "1.0.56" 5526 - source = "registry+https://github.com/rust-lang/crates.io-index" 5527 - checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 5528 - dependencies = [ 5529 - "proc-macro2", 5530 - "quote", 5531 - "syn 2.0.48", 5532 - ] 5533 - 5534 - [[package]] 5535 - name = "thousands" 5536 - version = "0.2.0" 5537 - source = "registry+https://github.com/rust-lang/crates.io-index" 5538 - checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" 5539 - 5540 - [[package]] 5541 - name = "thread_local" 5542 - version = "1.1.7" 5543 - source = "registry+https://github.com/rust-lang/crates.io-index" 5544 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 5545 - dependencies = [ 5546 - "cfg-if", 5547 - "once_cell", 5548 - ] 5549 - 5550 - [[package]] 5551 - name = "tiff" 5552 - version = "0.9.1" 5553 - source = "registry+https://github.com/rust-lang/crates.io-index" 5554 - checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 5555 - dependencies = [ 5556 - "flate2", 5557 - "jpeg-decoder", 5558 - "weezl", 5559 - ] 5560 - 5561 - [[package]] 5562 - name = "time" 5563 - version = "0.3.36" 5564 - source = "registry+https://github.com/rust-lang/crates.io-index" 5565 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 5566 - dependencies = [ 5567 - "deranged", 5568 - "itoa", 5569 - "num-conv", 5570 - "powerfmt", 5571 - "serde", 5572 - "time-core", 5573 - "time-macros", 5574 - ] 5575 - 5576 - [[package]] 5577 - name = "time-core" 5578 - version = "0.1.2" 5579 - source = "registry+https://github.com/rust-lang/crates.io-index" 5580 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 5581 - 5582 - [[package]] 5583 - name = "time-funcs" 5584 - version = "0.1.0" 5585 - dependencies = [ 5586 - "anyhow", 5587 - "chrono", 5588 - "config", 5589 - "lazy_static", 5590 - "luahelper", 5591 - "promise", 5592 - "smol", 5593 - "spa", 5594 - "wezterm-dynamic", 5595 - ] 5596 - 5597 - [[package]] 5598 - name = "time-macros" 5599 - version = "0.2.18" 5600 - source = "registry+https://github.com/rust-lang/crates.io-index" 5601 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 5602 - dependencies = [ 5603 - "num-conv", 5604 - "time-core", 5605 - ] 5606 - 5607 - [[package]] 5608 - name = "tiny-skia" 5609 - version = "0.11.3" 5610 - source = "registry+https://github.com/rust-lang/crates.io-index" 5611 - checksum = "b6a067b809476893fce6a254cf285850ff69c847e6cfbade6a20b655b6c7e80d" 5612 - dependencies = [ 5613 - "arrayref", 5614 - "arrayvec", 5615 - "bytemuck", 5616 - "cfg-if", 5617 - "log", 5618 - "png", 5619 - "tiny-skia-path", 5620 - ] 5621 - 5622 - [[package]] 5623 - name = "tiny-skia-path" 5624 - version = "0.11.3" 5625 - source = "registry+https://github.com/rust-lang/crates.io-index" 5626 - checksum = "5de35e8a90052baaaf61f171680ac2f8e925a1e43ea9d2e3a00514772250e541" 5627 - dependencies = [ 5628 - "arrayref", 5629 - "bytemuck", 5630 - "strict-num", 5631 - ] 5632 - 5633 - [[package]] 5634 - name = "tinytemplate" 5635 - version = "1.2.1" 5636 - source = "registry+https://github.com/rust-lang/crates.io-index" 5637 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 5638 - dependencies = [ 5639 - "serde", 5640 - "serde_json", 5641 - ] 5642 - 5643 - [[package]] 5644 - name = "tinyvec" 5645 - version = "1.6.0" 5646 - source = "registry+https://github.com/rust-lang/crates.io-index" 5647 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 5648 - dependencies = [ 5649 - "tinyvec_macros", 5650 - ] 5651 - 5652 - [[package]] 5653 - name = "tinyvec_macros" 5654 - version = "0.1.1" 5655 - source = "registry+https://github.com/rust-lang/crates.io-index" 5656 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5657 - 5658 - [[package]] 5659 - name = "tokio" 5660 - version = "1.35.1" 5661 - source = "registry+https://github.com/rust-lang/crates.io-index" 5662 - checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 5663 - dependencies = [ 5664 - "backtrace", 5665 - "bytes", 5666 - "libc", 5667 - "mio", 5668 - "num_cpus", 5669 - "pin-project-lite", 5670 - "socket2 0.5.5", 5671 - "tokio-macros", 5672 - "windows-sys 0.48.0", 5673 - ] 5674 - 5675 - [[package]] 5676 - name = "tokio-macros" 5677 - version = "2.2.0" 5678 - source = "registry+https://github.com/rust-lang/crates.io-index" 5679 - checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 5680 - dependencies = [ 5681 - "proc-macro2", 5682 - "quote", 5683 - "syn 2.0.48", 5684 - ] 5685 - 5686 - [[package]] 5687 - name = "tokio-native-tls" 5688 - version = "0.3.1" 5689 - source = "registry+https://github.com/rust-lang/crates.io-index" 5690 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 5691 - dependencies = [ 5692 - "native-tls", 5693 - "tokio", 5694 - ] 5695 - 5696 - [[package]] 5697 - name = "tokio-util" 5698 - version = "0.7.10" 5699 - source = "registry+https://github.com/rust-lang/crates.io-index" 5700 - checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 5701 - dependencies = [ 5702 - "bytes", 5703 - "futures-core", 5704 - "futures-sink", 5705 - "pin-project-lite", 5706 - "tokio", 5707 - "tracing", 5708 - ] 5709 - 5710 - [[package]] 5711 - name = "toml" 5712 - version = "0.5.11" 5713 - source = "registry+https://github.com/rust-lang/crates.io-index" 5714 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 5715 - dependencies = [ 5716 - "serde", 5717 - ] 5718 - 5719 - [[package]] 5720 - name = "toml" 5721 - version = "0.8.8" 5722 - source = "registry+https://github.com/rust-lang/crates.io-index" 5723 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 5724 - dependencies = [ 5725 - "serde", 5726 - "serde_spanned", 5727 - "toml_datetime", 5728 - "toml_edit 0.21.0", 5729 - ] 5730 - 5731 - [[package]] 5732 - name = "toml_datetime" 5733 - version = "0.6.5" 5734 - source = "registry+https://github.com/rust-lang/crates.io-index" 5735 - checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 5736 - dependencies = [ 5737 - "serde", 5738 - ] 5739 - 5740 - [[package]] 5741 - name = "toml_edit" 5742 - version = "0.19.15" 5743 - source = "registry+https://github.com/rust-lang/crates.io-index" 5744 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5745 - dependencies = [ 5746 - "indexmap 2.2.1", 5747 - "toml_datetime", 5748 - "winnow", 5749 - ] 5750 - 5751 - [[package]] 5752 - name = "toml_edit" 5753 - version = "0.21.0" 5754 - source = "registry+https://github.com/rust-lang/crates.io-index" 5755 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 5756 - dependencies = [ 5757 - "indexmap 2.2.1", 5758 - "serde", 5759 - "serde_spanned", 5760 - "toml_datetime", 5761 - "winnow", 5762 - ] 5763 - 5764 - [[package]] 5765 - name = "tower-service" 5766 - version = "0.3.2" 5767 - source = "registry+https://github.com/rust-lang/crates.io-index" 5768 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 5769 - 5770 - [[package]] 5771 - name = "tracing" 5772 - version = "0.1.40" 5773 - source = "registry+https://github.com/rust-lang/crates.io-index" 5774 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 5775 - dependencies = [ 5776 - "pin-project-lite", 5777 - "tracing-attributes", 5778 - "tracing-core", 5779 - ] 5780 - 5781 - [[package]] 5782 - name = "tracing-attributes" 5783 - version = "0.1.27" 5784 - source = "registry+https://github.com/rust-lang/crates.io-index" 5785 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 5786 - dependencies = [ 5787 - "proc-macro2", 5788 - "quote", 5789 - "syn 2.0.48", 5790 - ] 5791 - 5792 - [[package]] 5793 - name = "tracing-core" 5794 - version = "0.1.32" 5795 - source = "registry+https://github.com/rust-lang/crates.io-index" 5796 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 5797 - dependencies = [ 5798 - "once_cell", 5799 - ] 5800 - 5801 - [[package]] 5802 - name = "try-lock" 5803 - version = "0.2.5" 5804 - source = "registry+https://github.com/rust-lang/crates.io-index" 5805 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 5806 - 5807 - [[package]] 5808 - name = "typenum" 5809 - version = "1.17.0" 5810 - source = "registry+https://github.com/rust-lang/crates.io-index" 5811 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 5812 - 5813 - [[package]] 5814 - name = "ucd-trie" 5815 - version = "0.1.6" 5816 - source = "registry+https://github.com/rust-lang/crates.io-index" 5817 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 5818 - 5819 - [[package]] 5820 - name = "uds_windows" 5821 - version = "1.1.0" 5822 - source = "registry+https://github.com/rust-lang/crates.io-index" 5823 - checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 5824 - dependencies = [ 5825 - "memoffset 0.9.0", 5826 - "tempfile", 5827 - "winapi", 5828 - ] 5829 - 5830 - [[package]] 5831 - name = "umask" 5832 - version = "0.1.0" 5833 - dependencies = [ 5834 - "lazy_static", 5835 - "libc", 5836 - ] 5837 - 5838 - [[package]] 5839 - name = "unicase" 5840 - version = "2.7.0" 5841 - source = "registry+https://github.com/rust-lang/crates.io-index" 5842 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 5843 - dependencies = [ 5844 - "version_check", 5845 - ] 5846 - 5847 - [[package]] 5848 - name = "unicode-bidi" 5849 - version = "0.3.15" 5850 - source = "registry+https://github.com/rust-lang/crates.io-index" 5851 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 5852 - 5853 - [[package]] 5854 - name = "unicode-ident" 5855 - version = "1.0.12" 5856 - source = "registry+https://github.com/rust-lang/crates.io-index" 5857 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 5858 - 5859 - [[package]] 5860 - name = "unicode-linebreak" 5861 - version = "0.1.5" 5862 - source = "registry+https://github.com/rust-lang/crates.io-index" 5863 - checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 5864 - 5865 - [[package]] 5866 - name = "unicode-normalization" 5867 - version = "0.1.22" 5868 - source = "registry+https://github.com/rust-lang/crates.io-index" 5869 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5870 - dependencies = [ 5871 - "tinyvec", 5872 - ] 5873 - 5874 - [[package]] 5875 - name = "unicode-segmentation" 5876 - version = "1.10.1" 5877 - source = "registry+https://github.com/rust-lang/crates.io-index" 5878 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 5879 - 5880 - [[package]] 5881 - name = "unicode-width" 5882 - version = "0.1.11" 5883 - source = "registry+https://github.com/rust-lang/crates.io-index" 5884 - checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 5885 - 5886 - [[package]] 5887 - name = "unicode-xid" 5888 - version = "0.2.4" 5889 - source = "registry+https://github.com/rust-lang/crates.io-index" 5890 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5891 - 5892 - [[package]] 5893 - name = "unsafe-libyaml" 5894 - version = "0.2.10" 5895 - source = "registry+https://github.com/rust-lang/crates.io-index" 5896 - checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" 5897 - 5898 - [[package]] 5899 - name = "untrusted" 5900 - version = "0.9.0" 5901 - source = "registry+https://github.com/rust-lang/crates.io-index" 5902 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 5903 - 5904 - [[package]] 5905 - name = "uom" 5906 - version = "0.30.0" 5907 - source = "registry+https://github.com/rust-lang/crates.io-index" 5908 - checksum = "e76503e636584f1e10b9b3b9498538279561adcef5412927ba00c2b32c4ce5ed" 5909 - dependencies = [ 5910 - "num-traits", 5911 - "typenum", 5912 - ] 5913 - 5914 - [[package]] 5915 - name = "url" 5916 - version = "2.5.0" 5917 - source = "registry+https://github.com/rust-lang/crates.io-index" 5918 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 5919 - dependencies = [ 5920 - "form_urlencoded", 5921 - "idna", 5922 - "percent-encoding", 5923 - ] 5924 - 5925 - [[package]] 5926 - name = "url-funcs" 5927 - version = "0.1.0" 5928 - dependencies = [ 5929 - "anyhow", 5930 - "config", 5931 - "luahelper", 5932 - "percent-encoding", 5933 - "url", 5934 - "wezterm-dynamic", 5935 - ] 5936 - 5937 - [[package]] 5938 - name = "utf8parse" 5939 - version = "0.2.1" 5940 - source = "registry+https://github.com/rust-lang/crates.io-index" 5941 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5942 - 5943 - [[package]] 5944 - name = "uuid" 5945 - version = "1.7.0" 5946 - source = "registry+https://github.com/rust-lang/crates.io-index" 5947 - checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 5948 - dependencies = [ 5949 - "atomic", 5950 - "getrandom", 5951 - "serde", 5952 - ] 5953 - 5954 - [[package]] 5955 - name = "varbincode" 5956 - version = "0.1.0" 5957 - source = "registry+https://github.com/rust-lang/crates.io-index" 5958 - checksum = "b712fa900b441e2d5226a094ca37ca70c0d26d26b79822a5cf34a853a9e26f9f" 5959 - dependencies = [ 5960 - "byteorder", 5961 - "leb128", 5962 - "serde", 5963 - ] 5964 - 5965 - [[package]] 5966 - name = "vcpkg" 5967 - version = "0.2.15" 5968 - source = "registry+https://github.com/rust-lang/crates.io-index" 5969 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5970 - 5971 - [[package]] 5972 - name = "version_check" 5973 - version = "0.9.4" 5974 - source = "registry+https://github.com/rust-lang/crates.io-index" 5975 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5976 - 5977 - [[package]] 5978 - name = "vswhom" 5979 - version = "0.1.0" 5980 - source = "registry+https://github.com/rust-lang/crates.io-index" 5981 - checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 5982 - dependencies = [ 5983 - "libc", 5984 - "vswhom-sys", 5985 - ] 5986 - 5987 - [[package]] 5988 - name = "vswhom-sys" 5989 - version = "0.1.2" 5990 - source = "registry+https://github.com/rust-lang/crates.io-index" 5991 - checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" 5992 - dependencies = [ 5993 - "cc", 5994 - "libc", 5995 - ] 5996 - 5997 - [[package]] 5998 - name = "vtparse" 5999 - version = "0.6.2" 6000 - dependencies = [ 6001 - "k9 0.11.6", 6002 - "utf8parse", 6003 - ] 6004 - 6005 - [[package]] 6006 - name = "waker-fn" 6007 - version = "1.1.1" 6008 - source = "registry+https://github.com/rust-lang/crates.io-index" 6009 - checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 6010 - 6011 - [[package]] 6012 - name = "walkdir" 6013 - version = "2.4.0" 6014 - source = "registry+https://github.com/rust-lang/crates.io-index" 6015 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 6016 - dependencies = [ 6017 - "same-file", 6018 - "winapi-util", 6019 - ] 6020 - 6021 - [[package]] 6022 - name = "want" 6023 - version = "0.3.1" 6024 - source = "registry+https://github.com/rust-lang/crates.io-index" 6025 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 6026 - dependencies = [ 6027 - "try-lock", 6028 - ] 6029 - 6030 - [[package]] 6031 - name = "wasi" 6032 - version = "0.11.0+wasi-snapshot-preview1" 6033 - source = "registry+https://github.com/rust-lang/crates.io-index" 6034 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 6035 - 6036 - [[package]] 6037 - name = "wasm-bindgen" 6038 - version = "0.2.90" 6039 - source = "registry+https://github.com/rust-lang/crates.io-index" 6040 - checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 6041 - dependencies = [ 6042 - "cfg-if", 6043 - "wasm-bindgen-macro", 6044 - ] 6045 - 6046 - [[package]] 6047 - name = "wasm-bindgen-backend" 6048 - version = "0.2.90" 6049 - source = "registry+https://github.com/rust-lang/crates.io-index" 6050 - checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 6051 - dependencies = [ 6052 - "bumpalo", 6053 - "log", 6054 - "once_cell", 6055 - "proc-macro2", 6056 - "quote", 6057 - "syn 2.0.48", 6058 - "wasm-bindgen-shared", 6059 - ] 6060 - 6061 - [[package]] 6062 - name = "wasm-bindgen-futures" 6063 - version = "0.4.40" 6064 - source = "registry+https://github.com/rust-lang/crates.io-index" 6065 - checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 6066 - dependencies = [ 6067 - "cfg-if", 6068 - "js-sys", 6069 - "wasm-bindgen", 6070 - "web-sys", 6071 - ] 6072 - 6073 - [[package]] 6074 - name = "wasm-bindgen-macro" 6075 - version = "0.2.90" 6076 - source = "registry+https://github.com/rust-lang/crates.io-index" 6077 - checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 6078 - dependencies = [ 6079 - "quote", 6080 - "wasm-bindgen-macro-support", 6081 - ] 6082 - 6083 - [[package]] 6084 - name = "wasm-bindgen-macro-support" 6085 - version = "0.2.90" 6086 - source = "registry+https://github.com/rust-lang/crates.io-index" 6087 - checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 6088 - dependencies = [ 6089 - "proc-macro2", 6090 - "quote", 6091 - "syn 2.0.48", 6092 - "wasm-bindgen-backend", 6093 - "wasm-bindgen-shared", 6094 - ] 6095 - 6096 - [[package]] 6097 - name = "wasm-bindgen-shared" 6098 - version = "0.2.90" 6099 - source = "registry+https://github.com/rust-lang/crates.io-index" 6100 - checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 6101 - 6102 - [[package]] 6103 - name = "wayland-client" 6104 - version = "0.29.5" 6105 - source = "registry+https://github.com/rust-lang/crates.io-index" 6106 - checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" 6107 - dependencies = [ 6108 - "bitflags 1.3.2", 6109 - "downcast-rs", 6110 - "libc", 6111 - "nix 0.24.3", 6112 - "scoped-tls", 6113 - "wayland-commons", 6114 - "wayland-scanner", 6115 - "wayland-sys", 6116 - ] 6117 - 6118 - [[package]] 6119 - name = "wayland-commons" 6120 - version = "0.29.5" 6121 - source = "registry+https://github.com/rust-lang/crates.io-index" 6122 - checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902" 6123 - dependencies = [ 6124 - "nix 0.24.3", 6125 - "once_cell", 6126 - "smallvec", 6127 - "wayland-sys", 6128 - ] 6129 - 6130 - [[package]] 6131 - name = "wayland-cursor" 6132 - version = "0.29.5" 6133 - source = "registry+https://github.com/rust-lang/crates.io-index" 6134 - checksum = "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661" 6135 - dependencies = [ 6136 - "nix 0.24.3", 6137 - "wayland-client", 6138 - "xcursor", 6139 - ] 6140 - 6141 - [[package]] 6142 - name = "wayland-egl" 6143 - version = "0.29.5" 6144 - source = "registry+https://github.com/rust-lang/crates.io-index" 6145 - checksum = "402de949f81a012926d821a2d659f930694257e76dd92b6e0042ceb27be4107d" 6146 - dependencies = [ 6147 - "wayland-client", 6148 - "wayland-sys", 6149 - ] 6150 - 6151 - [[package]] 6152 - name = "wayland-protocols" 6153 - version = "0.29.5" 6154 - source = "registry+https://github.com/rust-lang/crates.io-index" 6155 - checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" 6156 - dependencies = [ 6157 - "bitflags 1.3.2", 6158 - "wayland-client", 6159 - "wayland-commons", 6160 - "wayland-scanner", 6161 - ] 6162 - 6163 - [[package]] 6164 - name = "wayland-scanner" 6165 - version = "0.29.5" 6166 - source = "registry+https://github.com/rust-lang/crates.io-index" 6167 - checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" 6168 - dependencies = [ 6169 - "proc-macro2", 6170 - "quote", 6171 - "xml-rs", 6172 - ] 6173 - 6174 - [[package]] 6175 - name = "wayland-sys" 6176 - version = "0.29.5" 6177 - source = "registry+https://github.com/rust-lang/crates.io-index" 6178 - checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4" 6179 - dependencies = [ 6180 - "dlib", 6181 - "pkg-config", 6182 - ] 6183 - 6184 - [[package]] 6185 - name = "web-sys" 6186 - version = "0.3.64" 6187 - source = "registry+https://github.com/rust-lang/crates.io-index" 6188 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 6189 - dependencies = [ 6190 - "js-sys", 6191 - "wasm-bindgen", 6192 - ] 6193 - 6194 - [[package]] 6195 - name = "weezl" 6196 - version = "0.1.8" 6197 - source = "registry+https://github.com/rust-lang/crates.io-index" 6198 - checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 6199 - 6200 - [[package]] 6201 - name = "wezterm" 6202 - version = "0.1.0" 6203 - dependencies = [ 6204 - "anyhow", 6205 - "cc", 6206 - "chrono", 6207 - "clap 4.4.18", 6208 - "clap_complete", 6209 - "clap_complete_fig", 6210 - "codec", 6211 - "config", 6212 - "embed-resource", 6213 - "env-bootstrap", 6214 - "filedescriptor", 6215 - "hostname", 6216 - "image", 6217 - "libc", 6218 - "log", 6219 - "mux", 6220 - "portable-pty", 6221 - "promise", 6222 - "serde", 6223 - "serde_json", 6224 - "shell-words", 6225 - "smol", 6226 - "tabout", 6227 - "tempfile", 6228 - "termios 0.3.3", 6229 - "termwiz", 6230 - "termwiz-funcs", 6231 - "textwrap 0.16.0", 6232 - "umask", 6233 - "url", 6234 - "wezterm-client", 6235 - "wezterm-gui-subcommands", 6236 - "wezterm-term", 6237 - "winapi", 6238 - ] 6239 - 6240 - [[package]] 6241 - name = "wezterm-bidi" 6242 - version = "0.2.3" 6243 - dependencies = [ 6244 - "env_logger 0.11.1", 6245 - "k9 0.12.0", 6246 - "log", 6247 - "wezterm-dynamic", 6248 - ] 6249 - 6250 - [[package]] 6251 - name = "wezterm-blob-leases" 6252 - version = "0.1.0" 6253 - dependencies = [ 6254 - "getrandom", 6255 - "mac_address", 6256 - "once_cell", 6257 - "serde", 6258 - "sha2", 6259 - "tempfile", 6260 - "thiserror", 6261 - "uuid", 6262 - ] 6263 - 6264 - [[package]] 6265 - name = "wezterm-client" 6266 - version = "0.1.0" 6267 - dependencies = [ 6268 - "anyhow", 6269 - "async-trait", 6270 - "async_ossl", 6271 - "codec", 6272 - "config", 6273 - "filedescriptor", 6274 - "futures", 6275 - "lazy_static", 6276 - "libc", 6277 - "log", 6278 - "lru", 6279 - "metrics", 6280 - "mux", 6281 - "openssl", 6282 - "parking_lot 0.12.1", 6283 - "portable-pty", 6284 - "promise", 6285 - "rangeset", 6286 - "ratelim", 6287 - "smol", 6288 - "termwiz", 6289 - "textwrap 0.16.0", 6290 - "thiserror", 6291 - "uds_windows", 6292 - "umask", 6293 - "url", 6294 - "wezterm-dynamic", 6295 - "wezterm-ssh", 6296 - "wezterm-term", 6297 - "winapi", 6298 - ] 6299 - 6300 - [[package]] 6301 - name = "wezterm-color-types" 6302 - version = "0.3.0" 6303 - dependencies = [ 6304 - "csscolorparser", 6305 - "deltae", 6306 - "lazy_static", 6307 - "serde", 6308 - "wezterm-dynamic", 6309 - ] 6310 - 6311 - [[package]] 6312 - name = "wezterm-config-derive" 6313 - version = "0.1.0" 6314 - dependencies = [ 6315 - "proc-macro2", 6316 - "quote", 6317 - "syn 1.0.109", 6318 - ] 6319 - 6320 - [[package]] 6321 - name = "wezterm-dynamic" 6322 - version = "0.2.0" 6323 - dependencies = [ 6324 - "log", 6325 - "maplit", 6326 - "ordered-float", 6327 - "strsim", 6328 - "thiserror", 6329 - "wezterm-dynamic-derive", 6330 - ] 6331 - 6332 - [[package]] 6333 - name = "wezterm-dynamic-derive" 6334 - version = "0.1.0" 6335 - dependencies = [ 6336 - "proc-macro2", 6337 - "quote", 6338 - "syn 1.0.109", 6339 - ] 6340 - 6341 - [[package]] 6342 - name = "wezterm-font" 6343 - version = "0.1.0" 6344 - dependencies = [ 6345 - "anyhow", 6346 - "cairo-rs", 6347 - "cocoa 0.25.0", 6348 - "config", 6349 - "core-foundation 0.9.4", 6350 - "core-text", 6351 - "dwrote", 6352 - "encoding_rs", 6353 - "enum-display-derive", 6354 - "env_logger 0.11.1", 6355 - "euclid", 6356 - "finl_unicode", 6357 - "fontconfig", 6358 - "freetype", 6359 - "harfbuzz", 6360 - "image", 6361 - "k9 0.11.6", 6362 - "lazy_static", 6363 - "lfucache", 6364 - "log", 6365 - "memmap2 0.2.3", 6366 - "metrics", 6367 - "objc", 6368 - "ordered-float", 6369 - "rangeset", 6370 - "termwiz", 6371 - "thiserror", 6372 - "walkdir", 6373 - "wezterm-bidi", 6374 - "wezterm-color-types", 6375 - "wezterm-input-types", 6376 - "wezterm-term", 6377 - "wezterm-toast-notification", 6378 - "winapi", 6379 - ] 6380 - 6381 - [[package]] 6382 - name = "wezterm-gui" 6383 - version = "0.1.0" 6384 - dependencies = [ 6385 - "anyhow", 6386 - "benchmarking", 6387 - "bitflags 1.3.2", 6388 - "bytemuck", 6389 - "cc", 6390 - "chrono", 6391 - "clap 4.4.18", 6392 - "codec", 6393 - "colorgrad", 6394 - "config", 6395 - "dhat", 6396 - "dirs-next", 6397 - "downcast-rs", 6398 - "embed-resource", 6399 - "emojis", 6400 - "env-bootstrap", 6401 - "env_logger 0.11.1", 6402 - "euclid", 6403 - "fastrand 2.0.1", 6404 - "filedescriptor", 6405 - "finl_unicode", 6406 - "frecency", 6407 - "futures", 6408 - "fuzzy-matcher", 6409 - "hdrhistogram", 6410 - "http_req", 6411 - "image", 6412 - "k9 0.12.0", 6413 - "lazy_static", 6414 - "lfucache", 6415 - "libc", 6416 - "log", 6417 - "luahelper", 6418 - "metrics", 6419 - "mlua", 6420 - "mux", 6421 - "mux-lua", 6422 - "once_cell", 6423 - "ordered-float", 6424 - "parking_lot 0.12.1", 6425 - "portable-pty", 6426 - "promise", 6427 - "pulldown-cmark", 6428 - "rangeset", 6429 - "ratelim", 6430 - "rayon", 6431 - "regex", 6432 - "serde", 6433 - "serde_json", 6434 - "shared_library", 6435 - "shlex", 6436 - "smol", 6437 - "tabout", 6438 - "tempfile", 6439 - "terminfo", 6440 - "termwiz", 6441 - "termwiz-funcs", 6442 - "textwrap 0.16.0", 6443 - "thiserror", 6444 - "tiny-skia", 6445 - "uds_windows", 6446 - "umask", 6447 - "unicode-normalization", 6448 - "unicode-segmentation", 6449 - "unicode-width", 6450 - "url", 6451 - "url-funcs", 6452 - "walkdir", 6453 - "wezterm-bidi", 6454 - "wezterm-blob-leases", 6455 - "wezterm-client", 6456 - "wezterm-dynamic", 6457 - "wezterm-font", 6458 - "wezterm-gui-subcommands", 6459 - "wezterm-mux-server-impl", 6460 - "wezterm-open-url", 6461 - "wezterm-ssh", 6462 - "wezterm-term", 6463 - "wezterm-toast-notification", 6464 - "wgpu", 6465 - "winapi", 6466 - "window", 6467 - "window-funcs", 6468 - "windows 0.33.0", 6469 - ] 6470 - 6471 - [[package]] 6472 - name = "wezterm-gui-subcommands" 6473 - version = "0.1.0" 6474 - dependencies = [ 6475 - "anyhow", 6476 - "clap 4.4.18", 6477 - "config", 6478 - ] 6479 - 6480 - [[package]] 6481 - name = "wezterm-input-types" 6482 - version = "0.1.0" 6483 - dependencies = [ 6484 - "bitflags 1.3.2", 6485 - "euclid", 6486 - "lazy_static", 6487 - "serde", 6488 - "wezterm-dynamic", 6489 - ] 6490 - 6491 - [[package]] 6492 - name = "wezterm-mux-server" 6493 - version = "0.1.0" 6494 - dependencies = [ 6495 - "anyhow", 6496 - "async_ossl", 6497 - "cc", 6498 - "clap 4.4.18", 6499 - "config", 6500 - "embed-resource", 6501 - "env-bootstrap", 6502 - "libc", 6503 - "log", 6504 - "mlua", 6505 - "mux", 6506 - "openssl", 6507 - "portable-pty", 6508 - "promise", 6509 - "umask", 6510 - "wezterm-blob-leases", 6511 - "wezterm-gui-subcommands", 6512 - "wezterm-mux-server-impl", 6513 - "wezterm-term", 6514 - "winapi", 6515 - ] 6516 - 6517 - [[package]] 6518 - name = "wezterm-mux-server-impl" 6519 - version = "0.1.0" 6520 - dependencies = [ 6521 - "anyhow", 6522 - "async_ossl", 6523 - "codec", 6524 - "config", 6525 - "futures", 6526 - "hostname", 6527 - "lazy_static", 6528 - "log", 6529 - "mux", 6530 - "portable-pty", 6531 - "promise", 6532 - "rangeset", 6533 - "rcgen", 6534 - "smol", 6535 - "termwiz", 6536 - "uds_windows", 6537 - "url", 6538 - "wezterm-client", 6539 - "wezterm-term", 6540 - "winapi", 6541 - ] 6542 - 6543 - [[package]] 6544 - name = "wezterm-open-url" 6545 - version = "0.1.0" 6546 - dependencies = [ 6547 - "winapi", 6548 - ] 6549 - 6550 - [[package]] 6551 - name = "wezterm-ssh" 6552 - version = "0.4.0" 6553 - dependencies = [ 6554 - "anyhow", 6555 - "assert_fs", 6556 - "async_ossl", 6557 - "base64 0.21.7", 6558 - "bitflags 1.3.2", 6559 - "camino", 6560 - "clap 4.4.18", 6561 - "dirs-next", 6562 - "env_logger 0.11.1", 6563 - "filedescriptor", 6564 - "filenamegen", 6565 - "gethostname", 6566 - "k9 0.12.0", 6567 - "libc", 6568 - "libssh-rs", 6569 - "log", 6570 - "once_cell", 6571 - "portable-pty", 6572 - "predicates", 6573 - "regex", 6574 - "rstest", 6575 - "shell-words", 6576 - "smol", 6577 - "smol-potat", 6578 - "socket2 0.5.5", 6579 - "ssh2", 6580 - "termwiz", 6581 - "thiserror", 6582 - "whoami", 6583 - ] 6584 - 6585 - [[package]] 6586 - name = "wezterm-term" 6587 - version = "0.1.0" 6588 - dependencies = [ 6589 - "anyhow", 6590 - "bitflags 1.3.2", 6591 - "csscolorparser", 6592 - "downcast-rs", 6593 - "env_logger 0.11.1", 6594 - "finl_unicode", 6595 - "hex", 6596 - "humansize", 6597 - "image", 6598 - "k9 0.11.6", 6599 - "lazy_static", 6600 - "log", 6601 - "lru", 6602 - "miniz_oxide 0.4.4", 6603 - "num-traits", 6604 - "ordered-float", 6605 - "serde", 6606 - "terminfo", 6607 - "termwiz", 6608 - "unicode-normalization", 6609 - "url", 6610 - "wezterm-bidi", 6611 - "wezterm-dynamic", 6612 - ] 6613 - 6614 - [[package]] 6615 - name = "wezterm-toast-notification" 6616 - version = "0.1.0" 6617 - dependencies = [ 6618 - "async-io 1.13.0", 6619 - "cocoa 0.20.2", 6620 - "core-foundation 0.7.0", 6621 - "futures-util", 6622 - "log", 6623 - "objc", 6624 - "serde", 6625 - "wezterm-open-url", 6626 - "windows 0.33.0", 6627 - "xml-rs", 6628 - "zbus", 6629 - "zvariant", 6630 - ] 6631 - 6632 - [[package]] 6633 - name = "wezterm-version" 6634 - version = "0.1.0" 6635 - dependencies = [ 6636 - "git2", 6637 - ] 6638 - 6639 - [[package]] 6640 - name = "wgpu" 6641 - version = "0.18.0" 6642 - source = "registry+https://github.com/rust-lang/crates.io-index" 6643 - checksum = "30e7d227c9f961f2061c26f4cb0fbd4df0ef37e056edd0931783599d6c94ef24" 6644 - dependencies = [ 6645 - "arrayvec", 6646 - "cfg-if", 6647 - "flume 0.11.0", 6648 - "js-sys", 6649 - "log", 6650 - "naga", 6651 - "parking_lot 0.12.1", 6652 - "profiling", 6653 - "raw-window-handle", 6654 - "smallvec", 6655 - "static_assertions", 6656 - "wasm-bindgen", 6657 - "wasm-bindgen-futures", 6658 - "web-sys", 6659 - "wgpu-core", 6660 - "wgpu-hal", 6661 - "wgpu-types", 6662 - ] 6663 - 6664 - [[package]] 6665 - name = "wgpu-core" 6666 - version = "0.18.1" 6667 - source = "registry+https://github.com/rust-lang/crates.io-index" 6668 - checksum = "ef91c1d62d1e9e81c79e600131a258edf75c9531cbdbde09c44a011a47312726" 6669 - dependencies = [ 6670 - "arrayvec", 6671 - "bit-vec", 6672 - "bitflags 2.4.2", 6673 - "codespan-reporting", 6674 - "log", 6675 - "naga", 6676 - "parking_lot 0.12.1", 6677 - "profiling", 6678 - "raw-window-handle", 6679 - "rustc-hash", 6680 - "smallvec", 6681 - "thiserror", 6682 - "web-sys", 6683 - "wgpu-hal", 6684 - "wgpu-types", 6685 - ] 6686 - 6687 - [[package]] 6688 - name = "wgpu-hal" 6689 - version = "0.18.1" 6690 - source = "registry+https://github.com/rust-lang/crates.io-index" 6691 - checksum = "b84ecc802da3eb67b4cf3dd9ea6fe45bbb47ef13e6c49c5c3240868a9cc6cdd9" 6692 - dependencies = [ 6693 - "android_system_properties", 6694 - "arrayvec", 6695 - "ash", 6696 - "bit-set", 6697 - "bitflags 2.4.2", 6698 - "block", 6699 - "core-graphics-types", 6700 - "d3d12", 6701 - "glow", 6702 - "glutin_wgl_sys", 6703 - "gpu-alloc", 6704 - "gpu-allocator", 6705 - "gpu-descriptor", 6706 - "hassle-rs", 6707 - "js-sys", 6708 - "khronos-egl", 6709 - "libc", 6710 - "libloading 0.8.1", 6711 - "log", 6712 - "metal", 6713 - "naga", 6714 - "objc", 6715 - "once_cell", 6716 - "parking_lot 0.12.1", 6717 - "profiling", 6718 - "range-alloc", 6719 - "raw-window-handle", 6720 - "renderdoc-sys", 6721 - "rustc-hash", 6722 - "smallvec", 6723 - "thiserror", 6724 - "wasm-bindgen", 6725 - "web-sys", 6726 - "wgpu-types", 6727 - "winapi", 6728 - ] 6729 - 6730 - [[package]] 6731 - name = "wgpu-types" 6732 - version = "0.18.0" 6733 - source = "registry+https://github.com/rust-lang/crates.io-index" 6734 - checksum = "0d5ed5f0edf0de351fe311c53304986315ce866f394a2e6df0c4b3c70774bcdd" 6735 - dependencies = [ 6736 - "bitflags 2.4.2", 6737 - "js-sys", 6738 - "web-sys", 6739 - ] 6740 - 6741 - [[package]] 6742 - name = "which" 6743 - version = "5.0.0" 6744 - source = "registry+https://github.com/rust-lang/crates.io-index" 6745 - checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14" 6746 - dependencies = [ 6747 - "either", 6748 - "home", 6749 - "once_cell", 6750 - "rustix 0.38.30", 6751 - "windows-sys 0.48.0", 6752 - ] 6753 - 6754 - [[package]] 6755 - name = "whoami" 6756 - version = "1.4.1" 6757 - source = "registry+https://github.com/rust-lang/crates.io-index" 6758 - checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" 6759 - dependencies = [ 6760 - "wasm-bindgen", 6761 - "web-sys", 6762 - ] 6763 - 6764 - [[package]] 6765 - name = "widestring" 6766 - version = "1.0.2" 6767 - source = "registry+https://github.com/rust-lang/crates.io-index" 6768 - checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 6769 - 6770 - [[package]] 6771 - name = "winapi" 6772 - version = "0.3.9" 6773 - source = "registry+https://github.com/rust-lang/crates.io-index" 6774 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 6775 - dependencies = [ 6776 - "winapi-i686-pc-windows-gnu", 6777 - "winapi-x86_64-pc-windows-gnu", 6778 - ] 6779 - 6780 - [[package]] 6781 - name = "winapi-i686-pc-windows-gnu" 6782 - version = "0.4.0" 6783 - source = "registry+https://github.com/rust-lang/crates.io-index" 6784 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 6785 - 6786 - [[package]] 6787 - name = "winapi-util" 6788 - version = "0.1.6" 6789 - source = "registry+https://github.com/rust-lang/crates.io-index" 6790 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 6791 - dependencies = [ 6792 - "winapi", 6793 - ] 6794 - 6795 - [[package]] 6796 - name = "winapi-x86_64-pc-windows-gnu" 6797 - version = "0.4.0" 6798 - source = "registry+https://github.com/rust-lang/crates.io-index" 6799 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 6800 - 6801 - [[package]] 6802 - name = "window" 6803 - version = "0.1.0" 6804 - dependencies = [ 6805 - "anyhow", 6806 - "async-channel 1.9.0", 6807 - "async-io 1.13.0", 6808 - "async-task", 6809 - "async-trait", 6810 - "bitflags 1.3.2", 6811 - "bytes", 6812 - "cgl", 6813 - "clipboard-win", 6814 - "cocoa 0.25.0", 6815 - "config", 6816 - "core-foundation 0.7.0", 6817 - "core-graphics 0.19.2", 6818 - "dirs-next", 6819 - "downcast-rs", 6820 - "euclid", 6821 - "filedescriptor", 6822 - "futures-lite 1.13.0", 6823 - "futures-util", 6824 - "gl_generator", 6825 - "glium", 6826 - "guillotiere", 6827 - "k9 0.11.6", 6828 - "lazy_static", 6829 - "libc", 6830 - "libloading 0.6.7", 6831 - "line_drawing", 6832 - "log", 6833 - "metrics", 6834 - "mio", 6835 - "objc", 6836 - "plist", 6837 - "promise", 6838 - "raw-window-handle", 6839 - "resize", 6840 - "serde", 6841 - "shared_library", 6842 - "shlex", 6843 - "smithay-client-toolkit", 6844 - "thiserror", 6845 - "tiny-skia", 6846 - "url", 6847 - "wayland-client", 6848 - "wayland-egl", 6849 - "wayland-protocols", 6850 - "wezterm-bidi", 6851 - "wezterm-color-types", 6852 - "wezterm-font", 6853 - "wezterm-input-types", 6854 - "winapi", 6855 - "windows 0.33.0", 6856 - "winreg 0.10.1", 6857 - "x11", 6858 - "xcb", 6859 - "xcb-imdkit", 6860 - "xkbcommon", 6861 - "zbus", 6862 - "zvariant", 6863 - ] 6864 - 6865 - [[package]] 6866 - name = "window-funcs" 6867 - version = "0.1.0" 6868 - dependencies = [ 6869 - "anyhow", 6870 - "config", 6871 - "luahelper", 6872 - "wezterm-dynamic", 6873 - "window", 6874 - ] 6875 - 6876 - [[package]] 6877 - name = "windows" 6878 - version = "0.33.0" 6879 - source = "registry+https://github.com/rust-lang/crates.io-index" 6880 - checksum = "0128fa8e65e0616e45033d68dc0b7fbd521080b7844e5cad3a4a4d201c4b2bd2" 6881 - dependencies = [ 6882 - "windows_aarch64_msvc 0.33.0", 6883 - "windows_i686_gnu 0.33.0", 6884 - "windows_i686_msvc 0.33.0", 6885 - "windows_x86_64_gnu 0.33.0", 6886 - "windows_x86_64_msvc 0.33.0", 6887 - ] 6888 - 6889 - [[package]] 6890 - name = "windows" 6891 - version = "0.51.1" 6892 - source = "registry+https://github.com/rust-lang/crates.io-index" 6893 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 6894 - dependencies = [ 6895 - "windows-core 0.51.1", 6896 - "windows-targets 0.48.5", 6897 - ] 6898 - 6899 - [[package]] 6900 - name = "windows-core" 6901 - version = "0.51.1" 6902 - source = "registry+https://github.com/rust-lang/crates.io-index" 6903 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 6904 - dependencies = [ 6905 - "windows-targets 0.48.5", 6906 - ] 6907 - 6908 - [[package]] 6909 - name = "windows-core" 6910 - version = "0.52.0" 6911 - source = "registry+https://github.com/rust-lang/crates.io-index" 6912 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 6913 - dependencies = [ 6914 - "windows-targets 0.52.0", 6915 - ] 6916 - 6917 - [[package]] 6918 - name = "windows-sys" 6919 - version = "0.45.0" 6920 - source = "registry+https://github.com/rust-lang/crates.io-index" 6921 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 6922 - dependencies = [ 6923 - "windows-targets 0.42.2", 6924 - ] 6925 - 6926 - [[package]] 6927 - name = "windows-sys" 6928 - version = "0.48.0" 6929 - source = "registry+https://github.com/rust-lang/crates.io-index" 6930 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6931 - dependencies = [ 6932 - "windows-targets 0.48.5", 6933 - ] 6934 - 6935 - [[package]] 6936 - name = "windows-sys" 6937 - version = "0.52.0" 6938 - source = "registry+https://github.com/rust-lang/crates.io-index" 6939 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6940 - dependencies = [ 6941 - "windows-targets 0.52.0", 6942 - ] 6943 - 6944 - [[package]] 6945 - name = "windows-targets" 6946 - version = "0.42.2" 6947 - source = "registry+https://github.com/rust-lang/crates.io-index" 6948 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 6949 - dependencies = [ 6950 - "windows_aarch64_gnullvm 0.42.2", 6951 - "windows_aarch64_msvc 0.42.2", 6952 - "windows_i686_gnu 0.42.2", 6953 - "windows_i686_msvc 0.42.2", 6954 - "windows_x86_64_gnu 0.42.2", 6955 - "windows_x86_64_gnullvm 0.42.2", 6956 - "windows_x86_64_msvc 0.42.2", 6957 - ] 6958 - 6959 - [[package]] 6960 - name = "windows-targets" 6961 - version = "0.48.5" 6962 - source = "registry+https://github.com/rust-lang/crates.io-index" 6963 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 6964 - dependencies = [ 6965 - "windows_aarch64_gnullvm 0.48.5", 6966 - "windows_aarch64_msvc 0.48.5", 6967 - "windows_i686_gnu 0.48.5", 6968 - "windows_i686_msvc 0.48.5", 6969 - "windows_x86_64_gnu 0.48.5", 6970 - "windows_x86_64_gnullvm 0.48.5", 6971 - "windows_x86_64_msvc 0.48.5", 6972 - ] 6973 - 6974 - [[package]] 6975 - name = "windows-targets" 6976 - version = "0.52.0" 6977 - source = "registry+https://github.com/rust-lang/crates.io-index" 6978 - checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 6979 - dependencies = [ 6980 - "windows_aarch64_gnullvm 0.52.0", 6981 - "windows_aarch64_msvc 0.52.0", 6982 - "windows_i686_gnu 0.52.0", 6983 - "windows_i686_msvc 0.52.0", 6984 - "windows_x86_64_gnu 0.52.0", 6985 - "windows_x86_64_gnullvm 0.52.0", 6986 - "windows_x86_64_msvc 0.52.0", 6987 - ] 6988 - 6989 - [[package]] 6990 - name = "windows_aarch64_gnullvm" 6991 - version = "0.42.2" 6992 - source = "registry+https://github.com/rust-lang/crates.io-index" 6993 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 6994 - 6995 - [[package]] 6996 - name = "windows_aarch64_gnullvm" 6997 - version = "0.48.5" 6998 - source = "registry+https://github.com/rust-lang/crates.io-index" 6999 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 7000 - 7001 - [[package]] 7002 - name = "windows_aarch64_gnullvm" 7003 - version = "0.52.0" 7004 - source = "registry+https://github.com/rust-lang/crates.io-index" 7005 - checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 7006 - 7007 - [[package]] 7008 - name = "windows_aarch64_msvc" 7009 - version = "0.33.0" 7010 - source = "registry+https://github.com/rust-lang/crates.io-index" 7011 - checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807" 7012 - 7013 - [[package]] 7014 - name = "windows_aarch64_msvc" 7015 - version = "0.42.2" 7016 - source = "registry+https://github.com/rust-lang/crates.io-index" 7017 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 7018 - 7019 - [[package]] 7020 - name = "windows_aarch64_msvc" 7021 - version = "0.48.5" 7022 - source = "registry+https://github.com/rust-lang/crates.io-index" 7023 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 7024 - 7025 - [[package]] 7026 - name = "windows_aarch64_msvc" 7027 - version = "0.52.0" 7028 - source = "registry+https://github.com/rust-lang/crates.io-index" 7029 - checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 7030 - 7031 - [[package]] 7032 - name = "windows_i686_gnu" 7033 - version = "0.33.0" 7034 - source = "registry+https://github.com/rust-lang/crates.io-index" 7035 - checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e" 7036 - 7037 - [[package]] 7038 - name = "windows_i686_gnu" 7039 - version = "0.42.2" 7040 - source = "registry+https://github.com/rust-lang/crates.io-index" 7041 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 7042 - 7043 - [[package]] 7044 - name = "windows_i686_gnu" 7045 - version = "0.48.5" 7046 - source = "registry+https://github.com/rust-lang/crates.io-index" 7047 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 7048 - 7049 - [[package]] 7050 - name = "windows_i686_gnu" 7051 - version = "0.52.0" 7052 - source = "registry+https://github.com/rust-lang/crates.io-index" 7053 - checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 7054 - 7055 - [[package]] 7056 - name = "windows_i686_msvc" 7057 - version = "0.33.0" 7058 - source = "registry+https://github.com/rust-lang/crates.io-index" 7059 - checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0" 7060 - 7061 - [[package]] 7062 - name = "windows_i686_msvc" 7063 - version = "0.42.2" 7064 - source = "registry+https://github.com/rust-lang/crates.io-index" 7065 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 7066 - 7067 - [[package]] 7068 - name = "windows_i686_msvc" 7069 - version = "0.48.5" 7070 - source = "registry+https://github.com/rust-lang/crates.io-index" 7071 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 7072 - 7073 - [[package]] 7074 - name = "windows_i686_msvc" 7075 - version = "0.52.0" 7076 - source = "registry+https://github.com/rust-lang/crates.io-index" 7077 - checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 7078 - 7079 - [[package]] 7080 - name = "windows_x86_64_gnu" 7081 - version = "0.33.0" 7082 - source = "registry+https://github.com/rust-lang/crates.io-index" 7083 - checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784" 7084 - 7085 - [[package]] 7086 - name = "windows_x86_64_gnu" 7087 - version = "0.42.2" 7088 - source = "registry+https://github.com/rust-lang/crates.io-index" 7089 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 7090 - 7091 - [[package]] 7092 - name = "windows_x86_64_gnu" 7093 - version = "0.48.5" 7094 - source = "registry+https://github.com/rust-lang/crates.io-index" 7095 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 7096 - 7097 - [[package]] 7098 - name = "windows_x86_64_gnu" 7099 - version = "0.52.0" 7100 - source = "registry+https://github.com/rust-lang/crates.io-index" 7101 - checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 7102 - 7103 - [[package]] 7104 - name = "windows_x86_64_gnullvm" 7105 - version = "0.42.2" 7106 - source = "registry+https://github.com/rust-lang/crates.io-index" 7107 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 7108 - 7109 - [[package]] 7110 - name = "windows_x86_64_gnullvm" 7111 - version = "0.48.5" 7112 - source = "registry+https://github.com/rust-lang/crates.io-index" 7113 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 7114 - 7115 - [[package]] 7116 - name = "windows_x86_64_gnullvm" 7117 - version = "0.52.0" 7118 - source = "registry+https://github.com/rust-lang/crates.io-index" 7119 - checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 7120 - 7121 - [[package]] 7122 - name = "windows_x86_64_msvc" 7123 - version = "0.33.0" 7124 - source = "registry+https://github.com/rust-lang/crates.io-index" 7125 - checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa" 7126 - 7127 - [[package]] 7128 - name = "windows_x86_64_msvc" 7129 - version = "0.42.2" 7130 - source = "registry+https://github.com/rust-lang/crates.io-index" 7131 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 7132 - 7133 - [[package]] 7134 - name = "windows_x86_64_msvc" 7135 - version = "0.48.5" 7136 - source = "registry+https://github.com/rust-lang/crates.io-index" 7137 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 7138 - 7139 - [[package]] 7140 - name = "windows_x86_64_msvc" 7141 - version = "0.52.0" 7142 - source = "registry+https://github.com/rust-lang/crates.io-index" 7143 - checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 7144 - 7145 - [[package]] 7146 - name = "winnow" 7147 - version = "0.5.35" 7148 - source = "registry+https://github.com/rust-lang/crates.io-index" 7149 - checksum = "1931d78a9c73861da0134f453bb1f790ce49b2e30eba8410b4b79bac72b46a2d" 7150 - dependencies = [ 7151 - "memchr", 7152 - ] 7153 - 7154 - [[package]] 7155 - name = "winreg" 7156 - version = "0.10.1" 7157 - source = "registry+https://github.com/rust-lang/crates.io-index" 7158 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 7159 - dependencies = [ 7160 - "winapi", 7161 - ] 7162 - 7163 - [[package]] 7164 - name = "winreg" 7165 - version = "0.50.0" 7166 - source = "registry+https://github.com/rust-lang/crates.io-index" 7167 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 7168 - dependencies = [ 7169 - "cfg-if", 7170 - "windows-sys 0.48.0", 7171 - ] 7172 - 7173 - [[package]] 7174 - name = "wio" 7175 - version = "0.2.2" 7176 - source = "registry+https://github.com/rust-lang/crates.io-index" 7177 - checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5" 7178 - dependencies = [ 7179 - "winapi", 7180 - ] 7181 - 7182 - [[package]] 7183 - name = "x11" 7184 - version = "2.21.0" 7185 - source = "registry+https://github.com/rust-lang/crates.io-index" 7186 - checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 7187 - dependencies = [ 7188 - "libc", 7189 - "pkg-config", 7190 - ] 7191 - 7192 - [[package]] 7193 - name = "xattr" 7194 - version = "1.3.1" 7195 - source = "registry+https://github.com/rust-lang/crates.io-index" 7196 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 7197 - dependencies = [ 7198 - "libc", 7199 - "linux-raw-sys 0.4.13", 7200 - "rustix 0.38.30", 7201 - ] 7202 - 7203 - [[package]] 7204 - name = "xcb" 7205 - version = "1.3.0" 7206 - source = "registry+https://github.com/rust-lang/crates.io-index" 7207 - checksum = "5d27b37e69b8c05bfadcd968eb1a4fe27c9c52565b727f88512f43b89567e262" 7208 - dependencies = [ 7209 - "as-raw-xcb-connection", 7210 - "bitflags 1.3.2", 7211 - "libc", 7212 - "quick-xml 0.30.0", 7213 - "x11", 7214 - ] 7215 - 7216 - [[package]] 7217 - name = "xcb-imdkit" 7218 - version = "0.3.0" 7219 - source = "git+https://github.com/wez/xcb-imdkit-rs.git?rev=215ce4b08ac9c4822e541efd4f4ffb1062806051#215ce4b08ac9c4822e541efd4f4ffb1062806051" 7220 - dependencies = [ 7221 - "bitflags 1.3.2", 7222 - "cc", 7223 - "lazy_static", 7224 - "pkg-config", 7225 - "xcb", 7226 - ] 7227 - 7228 - [[package]] 7229 - name = "xcursor" 7230 - version = "0.3.5" 7231 - source = "registry+https://github.com/rust-lang/crates.io-index" 7232 - checksum = "6a0ccd7b4a5345edfcd0c3535718a4e9ff7798ffc536bb5b5a0e26ff84732911" 7233 - 7234 - [[package]] 7235 - name = "xdg-home" 7236 - version = "1.0.0" 7237 - source = "registry+https://github.com/rust-lang/crates.io-index" 7238 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 7239 - dependencies = [ 7240 - "nix 0.26.4", 7241 - "winapi", 7242 - ] 7243 - 7244 - [[package]] 7245 - name = "xkbcommon" 7246 - version = "0.7.0" 7247 - source = "registry+https://github.com/rust-lang/crates.io-index" 7248 - checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" 7249 - dependencies = [ 7250 - "as-raw-xcb-connection", 7251 - "libc", 7252 - "memmap2 0.8.0", 7253 - "xkeysym", 7254 - ] 7255 - 7256 - [[package]] 7257 - name = "xkeysym" 7258 - version = "0.2.0" 7259 - source = "registry+https://github.com/rust-lang/crates.io-index" 7260 - checksum = "054a8e68b76250b253f671d1268cb7f1ae089ec35e195b2efb2a4e9a836d0621" 7261 - 7262 - [[package]] 7263 - name = "xml-rs" 7264 - version = "0.8.19" 7265 - source = "registry+https://github.com/rust-lang/crates.io-index" 7266 - checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 7267 - 7268 - [[package]] 7269 - name = "yaml-rust" 7270 - version = "0.4.5" 7271 - source = "registry+https://github.com/rust-lang/crates.io-index" 7272 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 7273 - dependencies = [ 7274 - "linked-hash-map", 7275 - ] 7276 - 7277 - [[package]] 7278 - name = "yasna" 7279 - version = "0.5.2" 7280 - source = "registry+https://github.com/rust-lang/crates.io-index" 7281 - checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 7282 - dependencies = [ 7283 - "time", 7284 - ] 7285 - 7286 - [[package]] 7287 - name = "zbus" 7288 - version = "3.14.1" 7289 - source = "registry+https://github.com/rust-lang/crates.io-index" 7290 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 7291 - dependencies = [ 7292 - "async-broadcast", 7293 - "async-executor", 7294 - "async-fs", 7295 - "async-io 1.13.0", 7296 - "async-lock 2.8.0", 7297 - "async-process", 7298 - "async-recursion", 7299 - "async-task", 7300 - "async-trait", 7301 - "blocking", 7302 - "byteorder", 7303 - "derivative", 7304 - "enumflags2", 7305 - "event-listener 2.5.3", 7306 - "futures-core", 7307 - "futures-sink", 7308 - "futures-util", 7309 - "hex", 7310 - "nix 0.26.4", 7311 - "once_cell", 7312 - "ordered-stream", 7313 - "rand", 7314 - "serde", 7315 - "serde_repr", 7316 - "sha1", 7317 - "static_assertions", 7318 - "tracing", 7319 - "uds_windows", 7320 - "winapi", 7321 - "xdg-home", 7322 - "zbus_macros", 7323 - "zbus_names", 7324 - "zvariant", 7325 - ] 7326 - 7327 - [[package]] 7328 - name = "zbus_macros" 7329 - version = "3.14.1" 7330 - source = "registry+https://github.com/rust-lang/crates.io-index" 7331 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 7332 - dependencies = [ 7333 - "proc-macro-crate", 7334 - "proc-macro2", 7335 - "quote", 7336 - "regex", 7337 - "syn 1.0.109", 7338 - "zvariant_utils", 7339 - ] 7340 - 7341 - [[package]] 7342 - name = "zbus_names" 7343 - version = "2.6.0" 7344 - source = "registry+https://github.com/rust-lang/crates.io-index" 7345 - checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 7346 - dependencies = [ 7347 - "serde", 7348 - "static_assertions", 7349 - "zvariant", 7350 - ] 7351 - 7352 - [[package]] 7353 - name = "zerocopy" 7354 - version = "0.7.32" 7355 - source = "registry+https://github.com/rust-lang/crates.io-index" 7356 - checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 7357 - dependencies = [ 7358 - "zerocopy-derive", 7359 - ] 7360 - 7361 - [[package]] 7362 - name = "zerocopy-derive" 7363 - version = "0.7.32" 7364 - source = "registry+https://github.com/rust-lang/crates.io-index" 7365 - checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 7366 - dependencies = [ 7367 - "proc-macro2", 7368 - "quote", 7369 - "syn 2.0.48", 7370 - ] 7371 - 7372 - [[package]] 7373 - name = "zstd" 7374 - version = "0.11.2+zstd.1.5.2" 7375 - source = "registry+https://github.com/rust-lang/crates.io-index" 7376 - checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 7377 - dependencies = [ 7378 - "zstd-safe", 7379 - ] 7380 - 7381 - [[package]] 7382 - name = "zstd-safe" 7383 - version = "5.0.2+zstd.1.5.2" 7384 - source = "registry+https://github.com/rust-lang/crates.io-index" 7385 - checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 7386 - dependencies = [ 7387 - "libc", 7388 - "zstd-sys", 7389 - ] 7390 - 7391 - [[package]] 7392 - name = "zstd-sys" 7393 - version = "2.0.9+zstd.1.5.5" 7394 - source = "registry+https://github.com/rust-lang/crates.io-index" 7395 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 7396 - dependencies = [ 7397 - "cc", 7398 - "pkg-config", 7399 - ] 7400 - 7401 - [[package]] 7402 - name = "zune-inflate" 7403 - version = "0.2.54" 7404 - source = "registry+https://github.com/rust-lang/crates.io-index" 7405 - checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 7406 - dependencies = [ 7407 - "simd-adler32", 7408 - ] 7409 - 7410 - [[package]] 7411 - name = "zvariant" 7412 - version = "3.15.0" 7413 - source = "registry+https://github.com/rust-lang/crates.io-index" 7414 - checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 7415 - dependencies = [ 7416 - "byteorder", 7417 - "enumflags2", 7418 - "libc", 7419 - "serde", 7420 - "static_assertions", 7421 - "zvariant_derive", 7422 - ] 7423 - 7424 - [[package]] 7425 - name = "zvariant_derive" 7426 - version = "3.15.0" 7427 - source = "registry+https://github.com/rust-lang/crates.io-index" 7428 - checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 7429 - dependencies = [ 7430 - "proc-macro-crate", 7431 - "proc-macro2", 7432 - "quote", 7433 - "syn 1.0.109", 7434 - "zvariant_utils", 7435 - ] 7436 - 7437 - [[package]] 7438 - name = "zvariant_utils" 7439 - version = "1.0.1" 7440 - source = "registry+https://github.com/rust-lang/crates.io-index" 7441 - checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 7442 - dependencies = [ 7443 - "proc-macro2", 7444 - "quote", 7445 - "syn 1.0.109", 7446 - ]
+30 -64
pkgs/applications/terminal-emulators/wezterm/default.nix pkgs/by-name/we/wezterm/package.nix
··· 1 1 { 2 + lib, 2 3 stdenv, 3 - rustPlatform, 4 - lib, 5 4 fetchFromGitHub, 6 - ncurses, 7 - perl, 8 - pkg-config, 9 - python3, 10 5 fontconfig, 11 6 installShellFiles, 12 - openssl, 13 7 libGL, 14 8 libX11, 15 9 libxcb, 16 10 libxkbcommon, 11 + ncurses, 12 + nixosTests, 13 + openssl, 14 + perl, 15 + pkg-config, 16 + python3, 17 + runCommand, 18 + rustPlatform, 19 + unstableGitUpdater, 20 + vulkan-loader, 21 + wayland, 22 + wezterm, 17 23 xcbutil, 18 24 xcbutilimage, 19 25 xcbutilkeysyms, 20 26 xcbutilwm, 21 - wayland, 22 27 zlib, 23 - nixosTests, 24 - runCommand, 25 - vulkan-loader, 26 - fetchpatch2, 27 28 }: 28 29 29 30 rustPlatform.buildRustPackage rec { 30 31 pname = "wezterm"; 31 - version = "20240203-110809-5046fc22"; 32 + version = "0-unstable-2025-01-03"; 32 33 33 34 src = fetchFromGitHub { 34 35 owner = "wez"; 35 36 repo = "wezterm"; 36 - rev = version; 37 + rev = "8e9cf912e66f704f300fac6107206a75036de1e7"; 37 38 fetchSubmodules = true; 38 - hash = "sha256-Az+HlnK/lRJpUSGm5UKyma1l2PaBKNCGFiaYnLECMX8="; 39 + hash = "sha256-JkAovAeoVrH2QlHzzcciraebfsSQPBQPsA3fUKEjRm8="; 39 40 }; 40 41 41 - patches = [ 42 - # Remove unused `fdopen` in vendored zlib, which causes compilation failures with clang 19 on Darwin. 43 - # Ref: https://github.com/madler/zlib/commit/4bd9a71f3539b5ce47f0c67ab5e01f3196dc8ef9 44 - ./zlib-fdopen.patch 45 - 46 - # Fix platform check in vendored libpng with clang 19 on Darwin. 47 - (fetchpatch2 { 48 - url = "https://github.com/pnggroup/libpng/commit/893b8113f04d408cc6177c6de19c9889a48faa24.patch?full_index=1"; 49 - extraPrefix = "deps/freetype/libpng/"; 50 - stripLen = 1; 51 - excludes = [ "deps/freetype/libpng/AUTHORS" ]; 52 - hash = "sha256-zW/oUo2EGcnsxAfbbbhTKGui/lwCqovyrvUnylfRQzc="; 53 - }) 54 - ]; 55 - 56 42 postPatch = '' 57 - cp ${./Cargo.lock} Cargo.lock 58 - 59 43 echo ${version} > .tag 60 44 61 45 # tests are failing with: Unable to exchange encryption keys ··· 69 53 --replace-fail 'hash hostnamectl 2>/dev/null' 'command type -P hostnamectl &>/dev/null' 70 54 ''; 71 55 72 - cargoLock = { 73 - lockFile = ./Cargo.lock; 74 - outputHashes = { 75 - "xcb-imdkit-0.3.0" = "sha256-fTpJ6uNhjmCWv7dZqVgYuS2Uic36XNYTbqlaly5QBjI="; 76 - }; 77 - }; 56 + cargoHash = "sha256-UagPKPH/PRXk3EFe+rDbkSTSnHdi/Apz0Qek8YlNMxo="; 57 + useFetchCargoVendor = true; 78 58 79 59 nativeBuildInputs = [ 80 60 installShellFiles ··· 137 117 138 118 passthru = { 139 119 # the headless variant is useful when deploying wezterm's mux server on remote severs 140 - headless = rustPlatform.buildRustPackage { 141 - pname = "${pname}-headless"; 120 + headless = import ./headless.nix { 142 121 inherit 143 - version 144 - src 145 - postPatch 146 - cargoLock 147 - meta 122 + openssl 123 + pkg-config 124 + rustPlatform 125 + wezterm 148 126 ; 149 - 150 - nativeBuildInputs = [ pkg-config ]; 151 - 152 - buildInputs = [ openssl ]; 153 - 154 - cargoBuildFlags = [ 155 - "--package" 156 - "wezterm" 157 - "--package" 158 - "wezterm-mux-server" 159 - ]; 160 - 161 - doCheck = false; 162 - 163 - postInstall = '' 164 - install -Dm644 assets/shell-integration/wezterm.sh -t $out/etc/profile.d 165 - install -Dm644 ${passthru.terminfo}/share/terminfo/w/wezterm -t $out/share/terminfo/w 166 - ''; 167 127 }; 168 128 169 129 terminfo = ··· 181 141 # the test is commented out in nixos/tests/terminal-emulators.nix 182 142 #terminal-emulators = nixosTests.terminal-emulators.wezterm; 183 143 }; 144 + 145 + # upstream tags are composed with timestamp+commit, e.g.: 146 + # 20240203-110809-5046fc22 147 + # doesn't make much sense if we are following unstable 148 + updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 184 149 }; 185 150 186 151 meta = with lib; { ··· 189 154 license = licenses.mit; 190 155 mainProgram = "wezterm"; 191 156 maintainers = with maintainers; [ 157 + mimame 192 158 SuperSandro2000 193 - mimame 159 + thiagokokada 194 160 ]; 195 161 }; 196 162 }
-24
pkgs/applications/terminal-emulators/wezterm/zlib-fdopen.patch
··· 1 - Submodule deps/freetype/zlib contains modified content 2 - diff --git a/deps/freetype/zlib/zutil.h b/deps/freetype/zlib/zutil.h 3 - index b079ea6..4e94f2f 100644 4 - --- a/deps/freetype/zlib/zutil.h 5 - +++ b/deps/freetype/zlib/zutil.h 6 - @@ -130,17 +130,8 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ 7 - # endif 8 - #endif 9 - 10 - -#if defined(MACOS) || defined(TARGET_OS_MAC) 11 - +#if defined(MACOS) 12 - # define OS_CODE 7 13 - -# ifndef Z_SOLO 14 - -# if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os 15 - -# include <unix.h> /* for fdopen */ 16 - -# else 17 - -# ifndef fdopen 18 - -# define fdopen(fd,mode) NULL /* No fdopen() */ 19 - -# endif 20 - -# endif 21 - -# endif 22 - #endif 23 - 24 - #ifdef __acorn
+3 -3
pkgs/by-name/ac/act/package.nix
··· 8 8 }: 9 9 10 10 let 11 - version = "0.2.70"; 11 + version = "0.2.71"; 12 12 in 13 13 buildGoModule { 14 14 pname = "act"; ··· 18 18 owner = "nektos"; 19 19 repo = "act"; 20 20 tag = "v${version}"; 21 - hash = "sha256-7e2ehUM3d5hcFtaahW/hrhVkpy74ufMdYwdnbsUA+WM="; 21 + hash = "sha256-ykZ6n9v56G5PZNTYdkGp8xveA7gzYhICkBoCCx3s0ew="; 22 22 }; 23 23 24 - vendorHash = "sha256-2fHNiquFg6I0JefqXfXRrnXxKPkNQOtQB7fznldO3GE="; 24 + vendorHash = "sha256-zCiqIl08s00U/DQkUhbb/qrjWof9xzBf4EznuvE4rlE="; 25 25 26 26 doCheck = false; 27 27
+3 -3
pkgs/by-name/ai/aichat/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "aichat"; 12 - version = "0.25.0"; 12 + version = "0.26.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "sigoden"; 16 16 repo = "aichat"; 17 17 rev = "v${version}"; 18 - hash = "sha256-tjKgZg8bjRHuifhq0ZEC+Vv3yyUwCoy2X4PNEIYzLfk="; 18 + hash = "sha256-Hqrwko/HZTHlKzXuqm835fpygOO9wsQx1XkJddH/EUc="; 19 19 }; 20 20 21 - cargoHash = "sha256-Q/k6h9ceEbG3TLMuoXJgNz4ofR0j7YXPvhgmbp4dE2I="; 21 + cargoHash = "sha256-4CcwzaPIO+upISizpXHGYfKh9YD4foJAqx7TGgLCHZI="; 22 22 23 23 nativeBuildInputs = [ 24 24 pkg-config
+2 -2
pkgs/by-name/ar/argocd/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "argocd"; 11 - version = "2.13.2"; 11 + version = "2.13.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "argoproj"; 15 15 repo = "argo-cd"; 16 16 rev = "v${version}"; 17 - hash = "sha256-G74chKEh/zXfImvmXAWIf+Ny7obJ+YiXpNVVs3uJRoU="; 17 + hash = "sha256-1z3tTXHVJ3e3g+DAoEGb8P6e4iEe1tiaM+7IPyuQp7U="; 18 18 }; 19 19 20 20 proxyVendor = true; # darwin/linux hash mismatch
+3 -3
pkgs/by-name/as/ast-grep/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "ast-grep"; 11 - version = "0.32.2"; 11 + version = "0.32.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ast-grep"; 15 15 repo = "ast-grep"; 16 16 rev = version; 17 - hash = "sha256-es/CnKtB1oUoYFOWR1xVzAo1Vwm5eb9VVmZWPZAAAaA="; 17 + hash = "sha256-DJrcXykSYArG5cP3Nm3JEeBpu9a4Mbben4/DApIKZN4="; 18 18 }; 19 19 20 - cargoHash = "sha256-tFFx7nPY1eSdHWp+EovqCaybfVVgHt6ZF2KNaGSovyg="; 20 + cargoHash = "sha256-frAoaoKOoFRfb9qtjPehtUSqKU25+pbMff4iRPXS/Qo="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
+3 -3
pkgs/by-name/au/auth0-cli/package.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "auth0-cli"; 8 - version = "1.6.1"; 8 + version = "1.7.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "auth0"; 12 12 repo = "auth0-cli"; 13 13 tag = "v${version}"; 14 - hash = "sha256-IuL/x7gcZj7RVRI3RhnsYgFo1XJ0CRF7sNvgMlLsPd0="; 14 + hash = "sha256-9/Jjsg6E8+gkN5eGZsxmTBwVoD/eO7euidY6ds7skpA="; 15 15 }; 16 16 17 - vendorHash = "sha256-Yxjpc/DBt8TQF92RcfMa0IPDlWT9K2fw2cPEfsMOVfw="; 17 + vendorHash = "sha256-XXCmIASYQD21h1h8HOcAl8HK5QUvgfqRpauq93tUNZ8="; 18 18 19 19 ldflags = [ 20 20 "-s"
+2 -2
pkgs/by-name/ba/bazarr/package.nix
··· 17 17 in 18 18 stdenv.mkDerivation rec { 19 19 pname = "bazarr"; 20 - version = "1.5.0"; 20 + version = "1.5.1"; 21 21 22 22 src = fetchzip { 23 23 url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip"; 24 - hash = "sha256-Q/KlqvVWhegSxkxHls0WwCClaQwkmLAfuzfi3X4xgAY="; 24 + hash = "sha256-G/vYVBlwFsRbIgCNfsb8sh1a07Ldo3Z0M7XQ/bcbhTw="; 25 25 stripRoot = false; 26 26 }; 27 27
+47
pkgs/by-name/be/beanprice/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3Packages, 5 + }: 6 + 7 + python3Packages.buildPythonApplication rec { 8 + pname = "beanprice"; 9 + version = "1.2.1-unstable-2024-06-19"; 10 + pyproject = true; 11 + 12 + src = fetchFromGitHub { 13 + owner = "beancount"; 14 + repo = "beanprice"; 15 + rev = "e894c9182f4d16f9a46ccb87bdaeca1a7dede040"; 16 + hash = "sha256-l96W77gldE06Za8fj84LADGCqlYeWlHKvWQO+oLy1gI="; 17 + }; 18 + 19 + build-system = with python3Packages; [ setuptools ]; 20 + 21 + dependencies = with python3Packages; [ 22 + beancount 23 + python-dateutil 24 + regex 25 + requests 26 + ]; 27 + 28 + nativeCheckInputs = with python3Packages; [ 29 + click 30 + pytestCheckHook 31 + regex 32 + ]; 33 + 34 + pythonImportsCheck = [ "beancount" ]; 35 + 36 + meta = { 37 + homepage = "https://github.com/beancount/beanprice"; 38 + description = "Price quotes fetcher for Beancount"; 39 + longDescription = '' 40 + A script to fetch market data prices from various sources on the internet 41 + and render them for plain text accounting price syntax (and Beancount). 42 + ''; 43 + license = lib.licenses.gpl2Only; 44 + maintainers = with lib.maintainers; [ alapshin ]; 45 + mainProgram = "bean-price"; 46 + }; 47 + }
+1 -1
pkgs/by-name/be/belle-sip/package.nix
··· 51 51 ]; 52 52 53 53 meta = with lib; { 54 - homepage = "https://linphone.org/technical-corner/belle-sip"; 54 + homepage = "https://gitlab.linphone.org/BC/public/belle-sip"; 55 55 description = "Modern library implementing SIP (RFC 3261) transport, transaction and dialog layers. Part of the Linphone project"; 56 56 mainProgram = "belle_sip_tester"; 57 57 license = licenses.gpl3Plus;
+3 -3
pkgs/by-name/bu/buildkite-agent-metrics/package.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "buildkite-agent-metrics"; 8 - version = "5.9.11"; 8 + version = "5.9.12"; 9 9 10 10 outputs = [ 11 11 "out" ··· 16 16 owner = "buildkite"; 17 17 repo = "buildkite-agent-metrics"; 18 18 rev = "v${version}"; 19 - hash = "sha256-eAV/2ZflCtgeP5/7RTVBEFuHWYWNiWXzGxBO1fiCdRo="; 19 + hash = "sha256-5k7njo8J96hb/RUdIRcP4KfwEH5Z2S4AyDyazcFlN0s="; 20 20 }; 21 21 22 - vendorHash = "sha256-YefdOc56TBKQZ6Ra4SpQwLTJYTZ2KuxRhRslaXIpucQ="; 22 + vendorHash = "sha256-zb+z1neus1mnJWeuI5DSc73cXMGWme0mz/PU2Z/Zam8="; 23 23 24 24 postInstall = '' 25 25 mkdir -p $lambda/bin
+3 -3
pkgs/by-name/bu/buildkite-cli/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "buildkite-cli"; 9 - version = "3.4.1"; 9 + version = "3.4.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "buildkite"; 13 13 repo = "cli"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-4gg0x0Brw1BQLVZ9S3WRXnvOiwvuedj47OBhfSiRMyQ="; 15 + sha256 = "sha256-Tb9Hyhyf+ib/tLUHc+gUccZ7TuXltxxjaIpCfvnoVkA="; 16 16 }; 17 17 18 - vendorHash = "sha256-xSueBahhzD6sIFyRwvsu5ACgC9kHthDqGJ4qdNTZfPU="; 18 + vendorHash = "sha256-1QXcRykXoNGYCR8+6ut1eU8TVNtx8b2O2MIjmL8rfQk="; 19 19 20 20 doCheck = false; 21 21
+3 -3
pkgs/by-name/ca/cargo-binstall/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "cargo-binstall"; 15 - version = "1.10.17"; 15 + version = "1.10.18"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "cargo-bins"; 19 19 repo = "cargo-binstall"; 20 20 rev = "v${version}"; 21 - hash = "sha256-MJMJWP3tISmlO4iUgkQf9veAJfLBCt2nS7LfZTicH/I="; 21 + hash = "sha256-EFDaKxAUDgMwkURKcupL2s9TS/oSYviqA38qa8Jo1Ek="; 22 22 }; 23 23 24 - cargoHash = "sha256-zliUrsRt+ObcpswRl+qKoUxSMpgRqR5ltj905xx54KI="; 24 + cargoHash = "sha256-td47+/LYCJy9ED/2VJDE9P9bXcr+SEgRY1N4LAi2C7s="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+3 -3
pkgs/by-name/ca/cargo-expand/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-expand"; 9 - version = "1.0.95"; 9 + version = "1.0.96"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dtolnay"; 13 13 repo = pname; 14 14 rev = version; 15 - hash = "sha256-VEjgSmZcy/CZ8EO/mJ2nBOpQviF4A/QQ8SpLLF/9x4c="; 15 + hash = "sha256-uLJ7XD1m4KreIue+p6Duoa8+DYjhaHagDMmPKcvHZ0I="; 16 16 }; 17 17 18 - cargoHash = "sha256-m/F6fI1d8i5lVyURti86FWAs/U14TXpgg/nemLAv4NI="; 18 + cargoHash = "sha256-XAkEcd/QDw1SyrPuuk5ojqlKHiG28DgdipbKtnlWsGg="; 19 19 20 20 meta = with lib; { 21 21 description = "Cargo subcommand to show result of macro expansion";
+3 -3
pkgs/by-name/ca/cargo-xwin/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-xwin"; 9 - version = "0.18.2"; 9 + version = "0.18.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rust-cross"; 13 13 repo = "cargo-xwin"; 14 14 rev = "v${version}"; 15 - hash = "sha256-bK0bEaJaPTXpwLeDCS4kwf4S0mLP6MrI8BxzOM9ha8M="; 15 + hash = "sha256-JwN0eUtj2qa5Hdl4aeDr9FtEpTB/Y36/q8ValfuvN/A="; 16 16 }; 17 17 18 - cargoHash = "sha256-bDnkSN3rt23j3EZRJdPLtYzltSvRGyYV+rlVAZPzjS4="; 18 + cargoHash = "sha256-pHy5sImtaN5MzkewygFbPK1yFLRmHrzPDa7NOoUoA5M="; 19 19 20 20 meta = with lib; { 21 21 description = "Cross compile Cargo project to Windows MSVC target with ease";
+3 -3
pkgs/by-name/cl/clusterctl/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "clusterctl"; 12 - version = "1.9.2"; 12 + version = "1.9.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kubernetes-sigs"; 16 16 repo = "cluster-api"; 17 17 rev = "v${version}"; 18 - hash = "sha256-H86EkdGmzvQDGC/a+J6ISB0aYkJabBjE2P6Ab5FRlv4="; 18 + hash = "sha256-au62bMELa27diNeQKTwgaGv9r80eO9pWv68F/WoYfGo="; 19 19 }; 20 20 21 - vendorHash = "sha256-JSWk6FgjWnDcVmp/9+M0x7QsiX08QtIOn5RRifjs2mI="; 21 + vendorHash = "sha256-luq42qdNb9vqNXMNkYQeNH+KeYwrehwtrDkNNx7P9Y8="; 22 22 23 23 subPackages = [ "cmd/clusterctl" ]; 24 24
+1 -1
pkgs/by-name/co/codebuff/package.nix
··· 25 25 26 26 meta = { 27 27 description = "Use natural language to edit your codebase and run commands from your terminal faster"; 28 - homepage = "https://codebuff.ai"; 28 + homepage = "https://www.codebuff.com/"; 29 29 downloadPage = "https://www.npmjs.com/package/codebuff"; 30 30 license = lib.licenses.mit; 31 31 maintainers = [ lib.maintainers.malo ];
+2 -2
pkgs/by-name/co/coroot/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "coroot"; 14 - version = "1.6.7"; 14 + version = "1.6.8"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "coroot"; 18 18 repo = "coroot"; 19 19 rev = "v${version}"; 20 - hash = "sha256-Ui+1C1+aPnBly4rMZzeRjALJyw61Fi0nwspv3NIjaNo="; 20 + hash = "sha256-ndzn0ZcuzdmCXnijUr6jq3KSFqSdF2FYd/2qi5Huk5Y="; 21 21 }; 22 22 23 23 vendorHash = "sha256-wyxNT8g5TUCjlxauL7NmCf4HZ91V2nD64L1L/rYH864=";
+2 -2
pkgs/by-name/cr/credhub-cli/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "credhub-cli"; 5 - version = "2.9.40"; 5 + version = "2.9.41"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudfoundry-incubator"; 9 9 repo = "credhub-cli"; 10 10 rev = version; 11 - sha256 = "sha256-9W/rn56RM+ooq18jCH/5m54bxAQWzcDsjx7V6T0J/yU="; 11 + sha256 = "sha256-BALeQbc4RCIh4b7kLZYEWe+dtSvP0WkkbRqoRbGSGZE="; 12 12 }; 13 13 14 14 # these tests require network access that we're not going to give them
+3 -3
pkgs/by-name/cr/croc/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "croc"; 11 - version = "10.1.3"; 11 + version = "10.2.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "schollz"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-Zem1m2VU0Uc7TkG+BuHcW4hwWHB6FU9e905ZUjjwpK4="; 17 + hash = "sha256-T75RyUjni7pNOxSe90xYW8426g3XjtI7YN0z8WADusQ="; 18 18 }; 19 19 20 - vendorHash = "sha256-lGKuJocZDYj4NSaf1Q0+tQ4ORZEpsdwpuztXPDCfPIA="; 20 + vendorHash = "sha256-IL2nKlxJ08xBCW9mnHlPlOccgjHSeLt6ISpMMiBf7J8="; 21 21 22 22 subPackages = [ "." ]; 23 23
+2 -2
pkgs/by-name/ct/ctrtool/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "ctrtool"; 10 - version = "1.2.0"; 10 + version = "1.2.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "jakcron"; 14 14 repo = "Project_CTR"; 15 15 rev = "ctrtool-v${version}"; 16 - sha256 = "wjU/DJHrAHE3MSB7vy+swUDVPzw0Jrv4ymOjhfr0BBk="; 16 + sha256 = "HqqeQCEUof4EBUhuUAdTruMFgYIoXhtAN3yuWW6tD+Y="; 17 17 }; 18 18 19 19 sourceRoot = "${src.name}/ctrtool";
+3 -3
pkgs/by-name/da/davinci-resolve/package.nix
··· 35 35 davinci = ( 36 36 stdenv.mkDerivation rec { 37 37 pname = "davinci-resolve${lib.optionalString studioVariant "-studio"}"; 38 - version = "19.1.1"; 38 + version = "19.1.2"; 39 39 40 40 nativeBuildInputs = [ 41 41 (appimage-run.override { buildFHSEnv = buildFHSEnvChroot; }) ··· 57 57 outputHashAlgo = "sha256"; 58 58 outputHash = 59 59 if studioVariant then 60 - "sha256-yDkw7L9iTzE5g2XAw910nqtTyXcgcb6u+kP2sKtNcJ8=" 60 + "sha256-yLlvl/zm/epNs1e4sSDrfHNApcpPQV2fMF3Y09ml7is=" 61 61 else 62 - "sha256-8oq5Nj8GrdHAmbM6Z5q98a0Lazjymk3dOCITkKiTJvQ="; 62 + "sha256-ssX1ffB7ZSJObETQa2r5R4oHddAccC4GB14jaLs8bGg="; 63 63 64 64 impureEnvVars = lib.fetchers.proxyImpureEnvVars; 65 65
+2 -2
pkgs/by-name/db/dbvisualizer/package.nix
··· 13 13 in 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 inherit pname; 16 - version = "24.2.4"; 16 + version = "24.3.2"; 17 17 18 18 src = 19 19 let ··· 21 21 in 22 22 fetchurl { 23 23 url = "https://www.dbvis.com/product_download/dbvis-${finalAttrs.version}/media/dbvis_linux_${underscoreVersion}.tar.gz"; 24 - hash = "sha256-vZm8rLkNpnWbKFrH/Q7yMhVhq+zfb0I00hJNT6JaPrw="; 24 + hash = "sha256-oZxOGudRGFfbVz7n5eeKxr/7lxUhYAHjD0wsHw6G8OI="; 25 25 }; 26 26 27 27 strictDeps = true;
+2 -2
pkgs/by-name/de/dep-tree/package.nix
··· 32 32 }; 33 33 }; 34 34 pname = "dep-tree"; 35 - version = "0.23.1"; 35 + version = "0.23.3"; 36 36 in 37 37 buildGoModule { 38 38 inherit pname version; ··· 41 41 owner = "gabotechs"; 42 42 repo = pname; 43 43 rev = "v${version}"; 44 - hash = "sha256-Y+zNx+p8xmM0L4C5IELtepm7TQDhpxOVzgc1HxdFa0w="; 44 + hash = "sha256-xS/8ech4ZhkMMyXbMQmCg+4oKg/jULhqgiNooYf5y8k="; 45 45 }; 46 46 47 47 vendorHash = "sha256-KoVOjZq+RrJ2gzLnANHPPtbEY1ztC0rIXWD9AXAxqMg=";
+2 -2
pkgs/by-name/do/docker-init/package.nix
··· 11 11 12 12 src = fetchurl { 13 13 url = "https://desktop.docker.com/linux/main/amd64/${finalAttrs.tag}/docker-desktop-x86_64.pkg.tar.zst"; 14 - hash = "sha256-ysZorPBmoUvTJFFKDbZgQxPamONJKcXezmMrpZSVpwY="; 14 + hash = "sha256-pxxlSN2sQqlPUzUPufcK8T+pvdr0cK+9hWTYzwMJv5I="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ ··· 36 36 meta = { 37 37 description = "Creates Docker-related starter files for your project"; 38 38 homepage = "https://docs.docker.com/reference/cli/docker/init"; 39 - downloadPage = "https://docs.docker.com/desktop/release-notes/#4320"; 39 + downloadPage = "https://docs.docker.com/desktop/release-notes"; 40 40 mainProgram = "docker-init"; 41 41 license = lib.licenses.unfree; 42 42 platforms = [ "x86_64-linux" ];
+2 -2
pkgs/by-name/dr/drogon/package.nix
··· 24 24 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "drogon"; 27 - version = "1.9.8"; 27 + version = "1.9.9"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "drogonframework"; 31 31 repo = "drogon"; 32 32 rev = "v${finalAttrs.version}"; 33 - hash = "sha256-vQ9d3l++waYTYt+bvt/ShatBVxTfA7LmYIXV5VSraNQ="; 33 + hash = "sha256-5nJwWlXy0e0ThnTGV9MamdAJ+FqB597gsDz28p8DrQA="; 34 34 fetchSubmodules = true; 35 35 }; 36 36
+48 -7
pkgs/by-name/ep/epson-escpr/package.nix
··· 1 - { lib, stdenv, fetchurl, cups }: 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + cups, 6 + fetchpatch, 7 + dos2unix, 8 + automake115x, 9 + autoconf, 10 + }: 2 11 3 - let version = "1.7.20"; 4 - in stdenv.mkDerivation { 12 + let 13 + version = "1.8.6-1"; 14 + in 15 + stdenv.mkDerivation { 5 16 pname = "epson-escpr"; 6 17 inherit version; 7 18 ··· 12 23 # version. 13 24 # NOTE: Don't forget to update the webarchive link too! 14 25 urls = [ 15 - "https://download3.ebz.epson.net/dsc/f/03/00/13/76/45/5ac2ea8f9cf94a48abd64afd0f967f98c4fc24aa/epson-inkjet-printer-escpr-${version}-1lsb3.2.tar.gz" 26 + "https://download3.ebz.epson.net/dsc/f/03/00/16/21/81/74d098a47c3a616713079c9cd5904b468bb33dea/epson-inkjet-printer-escpr-${version}.tar.gz" 16 27 17 - "https://web.archive.org/web/https://download3.ebz.epson.net/dsc/f/03/00/13/76/45/5ac2ea8f9cf94a48abd64afd0f967f98c4fc24aa/epson-inkjet-printer-escpr-${version}-1lsb3.2.tar.gz" 28 + "https://web.archive.org/web/https://download3.ebz.epson.net/dsc/f/03/00/16/21/81/74d098a47c3a616713079c9cd5904b468bb33dea/epson-inkjet-printer-escpr-${version}.tar.gz" 18 29 ]; 19 - sha256 = "sha256:09rscpm557dgaflylr93wcwmyn6fnvr8nc77abwnq97r6hxwrkhk"; 30 + sha256 = "sha256-hVbX4OXPe4y37Szju3uVdXlVdjX4DFSN/A2Emz3eCcQ="; 20 31 }; 32 + # DOS Line Endings in /lib directory and UNIX Line endings in /src directory. 33 + # So convert everything to UNIX style line endings. 34 + # Since the files are modified, autoconf and automake is required 35 + postUnpack = '' 36 + dir=''${src%-*} 37 + cd ''${dir#*-} 38 + local f 39 + for f in $(find ./ -type f || die); do 40 + ${dos2unix}/bin/dos2unix $f 41 + done 42 + cd .. 43 + ''; 21 44 22 - patches = [ ./cups-filter-ppd-dirs.patch ]; 45 + patches = [ 46 + ./cups-filter-ppd-dirs.patch 47 + (fetchpatch { 48 + url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.8-missing-include.patch"; 49 + hash = "sha256-L4WhaxPQnJYyqCH00wiKIlFNMmCEXoGe5d7hJ5TMyEI="; 50 + }) 51 + (fetchpatch { 52 + url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/net-print/epson-inkjet-printer-escpr/files/1.8.6-warnings.patch"; 53 + hash = "sha256-wSY0LZv2b+1kF7TfPolt554g79y2Ce6N/JqgjJyd3Ag="; 54 + }) 55 + ]; 23 56 57 + # To suppress error (Stripping trailing CRs from patch; use --binary to disable.) 58 + patchFlags = [ 59 + "-p1" 60 + ]; 24 61 buildInputs = [ cups ]; 62 + nativeBuildInputs = [ 63 + automake115x 64 + autoconf 65 + ]; 25 66 26 67 meta = with lib; { 27 68 homepage = "http://download.ebz.epson.net/dsc/search/01/search/";
+2 -2
pkgs/by-name/fa/faudio/package.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "faudio"; 13 - version = "24.12"; 13 + version = "25.01"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "FNA-XNA"; 17 17 repo = "FAudio"; 18 18 rev = version; 19 - sha256 = "sha256-hzU4MabTzpbyMMoUQ3tSwjulm6jJSxQUvVXOY3Y84yI="; 19 + sha256 = "sha256-k/cu8yqrwohpr37oZNBi7+Ln+Fj0TGXkl5VmdcjZB1o="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/fl/flarectl/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "flarectl"; 9 - version = "0.112.0"; 9 + version = "0.113.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "cloudflare"; 13 13 repo = "cloudflare-go"; 14 14 rev = "v${version}"; 15 - hash = "sha256-HdbeGlkOFV1ebP0zylFttfREXECJhUDpta3FTQXtYCE="; 15 + hash = "sha256-3luHcmMa2iCsgtg1wNkBcScH/iO1+DUHXpwpaIR6IFI="; 16 16 }; 17 17 18 - vendorHash = "sha256-TMQCJmCh0UuDdd8aenA9v2VnEISb2JX2LBUgTk0n98w="; 18 + vendorHash = "sha256-SnkIVGrB7McwdfFfI4yMDviQ+mpl4udu2COS3AEMS3o="; 19 19 20 20 subPackages = [ "cmd/flarectl" ]; 21 21
+3 -3
pkgs/by-name/gi/ginkgo/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "ginkgo"; 11 - version = "2.22.1"; 11 + version = "2.22.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "onsi"; 15 15 repo = "ginkgo"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-/AE3LSwX6Cl3Nsa8zUz3ncvuiu+7S4kNRFocQZn1BHs="; 17 + sha256 = "sha256-mm6ZP+NtXp/BfiQuvBOk9VBDiFPfJ636EoAklnsRGSs="; 18 18 }; 19 - vendorHash = "sha256-860KUrUc+YJv3xANdR1mT9loZErlCfwYBb6HUxoehMc="; 19 + vendorHash = "sha256-lX/rt2XWAojWBBwGHQk9ZzE6sZU5TZke5pRmOiD3rLw="; 20 20 21 21 # integration tests expect more file changes 22 22 # types tests are missing CodeLocation
-1
pkgs/by-name/gi/gitea/package.nix
··· 112 112 homepage = "https://about.gitea.com"; 113 113 license = licenses.mit; 114 114 maintainers = with maintainers; [ 115 - ma27 116 115 techknowlogick 117 116 SuperSandro2000 118 117 ];
+67
pkgs/by-name/gn/gnome-pass-search-provider/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + python3Packages, 6 + wrapGAppsHook3, 7 + gtk3, 8 + gobject-introspection, 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "gnome-pass-search-provider"; 13 + version = "1.4.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "jle64"; 17 + repo = "gnome-pass-search-provider"; 18 + rev = finalAttrs.version; 19 + hash = "sha256-PDR8fbDoT8IkHiTopQp0zd4DQg7JlacA6NdKYKYmrWw="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + python3Packages.wrapPython 24 + wrapGAppsHook3 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + python3Packages.dbus-python 29 + python3Packages.pygobject3 30 + python3Packages.fuzzywuzzy 31 + python3Packages.levenshtein 32 + 33 + gtk3 34 + gobject-introspection 35 + ]; 36 + 37 + env = { 38 + LIBDIR = placeholder "out" + "/lib"; 39 + DATADIR = placeholder "out" + "/share"; 40 + }; 41 + 42 + postPatch = '' 43 + substituteInPlace conf/org.gnome.Pass.SearchProvider.service.{dbus,systemd} \ 44 + --replace-fail "/usr/lib" "$LIBDIR" 45 + ''; 46 + 47 + installPhase = '' 48 + runHook preInstall 49 + 50 + bash ./install.sh 51 + 52 + runHook postInstall 53 + ''; 54 + 55 + postFixup = '' 56 + makeWrapperArgs=( "''${gappsWrapperArgs[@]}" ) 57 + wrapPythonProgramsIn "$out/lib" "$out $propagatedBuildInputs" 58 + ''; 59 + 60 + meta = { 61 + description = "Pass password manager search provider for gnome-shell"; 62 + homepage = "https://github.com/jle64/gnome-pass-search-provider"; 63 + license = lib.licenses.gpl3Plus; 64 + maintainers = with lib.maintainers; [ lelgenio ]; 65 + platforms = lib.platforms.linux; 66 + }; 67 + })
+3 -3
pkgs/by-name/go/goat-cli/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "goat-cli"; 10 - version = "1.1.0"; 10 + version = "1.3.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 repo = "goat"; 14 14 owner = "studio-b12"; 15 15 rev = "v${version}"; 16 - hash = "sha256-H7ea3XOBfQ7bIX5SbxPd+fcSlMurSWXGXe+/LsqSc0A="; 16 + hash = "sha256-g5iS0XCRv97uX45BMqyFNodjjZ3Q9OeMJXAdsPwLCEg="; 17 17 }; 18 18 19 - vendorHash = "sha256-DtEXgGYSkWO876so6LEOkhVwDt/zrflDZdY4O2lz1mw="; 19 + vendorHash = "sha256-MOsxM8CSjK5j/guEwRFWHZ4+gdAHa5txVXw67jzwyLQ="; 20 20 21 21 ldflags = [ 22 22 "-s"
+2 -2
pkgs/by-name/go/gobgp/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gobgp"; 9 - version = "3.32.0"; 9 + version = "3.33.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "osrg"; 13 13 repo = "gobgp"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-DIOii1jFVK3jwDLaLFWBbbQPC9eQnTwLYwI8uC8G8ig="; 15 + sha256 = "sha256-Q1wwRCxFe3bX3EMiDExxKSafJkLptbX69ZMW0faK8Bg="; 16 16 }; 17 17 18 18 vendorHash = "sha256-FYLH1Ej8Bm0+tS5Ikj1CPF+1t5opmzee8iHRZSW94Yk=";
+60
pkgs/by-name/go/google-lighthouse/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + chromium, # Can be overwritten to be (potentially) any Chromium implementation 5 + fetchFromGitHub, 6 + fetchYarnDeps, 7 + yarnConfigHook, 8 + yarnBuildHook, 9 + yarnInstallHook, 10 + nodejs, 11 + makeWrapper, 12 + }: 13 + stdenv.mkDerivation rec { 14 + pname = "google-lighthouse"; 15 + version = "12.3.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "GoogleChrome"; 19 + repo = "lighthouse"; 20 + tag = "v${version}"; 21 + hash = "sha256-q/5P/b47RpIwaNCLT30NXg7S8W56v9Z/QDOzJMDgQOo="; 22 + }; 23 + 24 + yarnOfflineCache = fetchYarnDeps { 25 + yarnLock = "${src}/yarn.lock"; 26 + hash = "sha256-a4LLrxg0TpQ3QNaMg3OVFTukdCmlOCJjTUt3paddaTM="; 27 + }; 28 + 29 + yarnBuildScript = "build-report"; 30 + 31 + nativeBuildInputs = [ makeWrapper ]; 32 + buildInputs = [ 33 + yarnConfigHook 34 + yarnBuildHook 35 + yarnInstallHook 36 + chromium 37 + nodejs 38 + ]; 39 + 40 + postCheck = '' 41 + yarn unit 42 + yarn test-clients 43 + yarn test-docs 44 + yarn test-treemap 45 + ''; 46 + 47 + postInstall = '' 48 + wrapProgram "$out/bin/lighthouse" \ 49 + --set CHROME_PATH ${lib.getExe chromium} 50 + ''; 51 + 52 + doDist = false; 53 + meta = { 54 + description = "Automated auditing, performance metrics, and best practices for the web"; 55 + homepage = "https://developer.chrome.com/docs/lighthouse/overview"; 56 + license = lib.licenses.asl20; 57 + mainProgram = "lighthouse"; 58 + maintainers = with lib.maintainers; [ theCapypara ]; 59 + }; 60 + }
+3 -3
pkgs/by-name/gr/grpc-client-cli/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "grpc-client-cli"; 9 - version = "1.21.1"; 9 + version = "1.21.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "vadimi"; 13 13 repo = "grpc-client-cli"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-fz0O/tBWTxtVbjSND0b2O+xic27zXMNhIkyF3G+Jra4="; 15 + sha256 = "sha256-v7LqYA/IW9SHWlXQHl0E7aNxSOWc7zmTMzTEKYjRUl8="; 16 16 }; 17 17 18 - vendorHash = "sha256-M/x6Dinnja43ggcx8LD/gdIZnbdo5wJqxub2JnudSqs="; 18 + vendorHash = "sha256-NQUoAwrLMexDs0iRzGnuQ8E0hWVJBwtBUA9NI6/+AFU="; 19 19 20 20 meta = with lib; { 21 21 description = "generic gRPC command line client";
+2 -2
pkgs/by-name/ha/halo/package.nix
··· 8 8 }: 9 9 stdenv.mkDerivation rec { 10 10 pname = "halo"; 11 - version = "2.20.12"; 11 + version = "2.20.13"; 12 12 src = fetchurl { 13 13 url = "https://github.com/halo-dev/halo/releases/download/v${version}/halo-${version}.jar"; 14 - hash = "sha256-BixJ36qlUnifIK7xWCZeY2nOGBAy2p6zL2CQvlgSMj8="; 14 + hash = "sha256-BcI5LHAKDpd68w/D7TKOS3ChthsiWislm3yKyd0cSkM="; 15 15 }; 16 16 17 17 nativeBuildInputs = [
+21 -13
pkgs/by-name/ha/harlequin/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 python3Packages, 4 5 fetchFromGitHub, 5 - harlequin, 6 - testers, 7 6 nix-update-script, 8 - versionCheckHook, 9 7 glibcLocales, 10 8 withPostgresAdapter ? true, 11 9 withBigQueryAdapter ? true, 12 10 }: 13 11 python3Packages.buildPythonApplication rec { 14 12 pname = "harlequin"; 15 - version = "1.25.2"; 13 + version = "1.25.2-unstable-2024-12-30"; 16 14 pyproject = true; 17 15 18 16 src = fetchFromGitHub { 19 17 owner = "tconbeer"; 20 18 repo = "harlequin"; 21 - tag = "v${version}"; 22 - hash = "sha256-ov9pMvFzJAMfOM7JeSgnp6dZ424GiRaH7W5OCKin9Jk="; 19 + rev = "7ef5327157c7617c1032c9128b487b32d1c91fea"; 20 + hash = "sha256-QoIjEfQgN6YWDDor4PxfeFkkFGAidUC0ZvHy+PqgnWs="; 23 21 }; 24 22 25 - pythonRelaxDeps = [ "textual" ]; 23 + pythonRelaxDeps = [ 24 + "numpy" 25 + "pyarrow" 26 + "textual" 27 + ]; 26 28 27 29 build-system = with python3Packages; [ poetry-core ]; 28 30 ··· 65 67 66 68 nativeCheckInputs = 67 69 [ 68 - versionCheckHook 70 + # FIX: restore on next release 71 + # versionCheckHook 69 72 ] 70 73 ++ (with python3Packages; [ 71 74 pytest-asyncio 72 75 pytestCheckHook 73 76 ]); 74 77 75 - disabledTests = [ 76 - # Tests require network access 77 - "test_connect_extensions" 78 - "test_connect_prql" 79 - ]; 78 + disabledTests = 79 + [ 80 + # Tests require network access 81 + "test_connect_extensions" 82 + "test_connect_prql" 83 + ] 84 + ++ lib.optionals (stdenv.hostPlatform.system == "aarch64-darwin") [ 85 + # Test incorrectly tries to load a dylib compiled for x86_64 86 + "test_load_extension" 87 + ]; 80 88 81 89 disabledTestPaths = [ 82 90 # Tests requires more setup
+11 -9
pkgs/by-name/ha/hatsu/package.nix
··· 1 1 { 2 - fetchFromGitHub, 3 - gitUpdater, 4 2 lib, 5 3 rustPlatform, 4 + fetchFromGitHub, 5 + versionCheckHook, 6 + nix-update-script, 6 7 }: 7 8 rustPlatform.buildRustPackage rec { 8 9 pname = "hatsu"; 9 - version = "0.3.0"; 10 + version = "0.3.2"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "importantimport"; 13 14 repo = "hatsu"; 14 15 tag = "v${version}"; 15 - hash = "sha256-K+8X/bNPdjxBSJdlFIXUUOXlTq7Cgol3fFToj5KzbeE="; 16 + hash = "sha256-lIuaG7xfBQ1r3SkgSsXj1Ph9apxwP3oI42uunMh+ijU="; 16 17 }; 17 18 18 - cargoHash = "sha256-+fNFy3WnQKtDjpNU3veoR2JrBNHj6/Wz2MQP38SR23I="; 19 + cargoHash = "sha256-0pZ7g0HxceIYlflxeGnAs+SFSaSVNySbZxwK/ihRIAg="; 19 20 20 - passthru.updateScript = gitUpdater { 21 - rev-prefix = "v"; 22 - ignoredVersions = "beta"; 23 - }; 21 + nativeInstallCheckInputs = [ versionCheckHook ]; 22 + versionCheckProgramArg = [ "--version" ]; 23 + doInstallCheck = true; 24 + 25 + passthru.updateScript = nix-update-script { }; 24 26 25 27 meta = { 26 28 description = "Self-hosted and fully-automated ActivityPub bridge for static sites";
+2 -2
pkgs/by-name/he/health-check/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "health-check"; 11 - version = "0.04.00"; 11 + version = "0.04.01"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ColinIanKing"; 15 15 repo = pname; 16 16 rev = "V${version}"; 17 - hash = "sha256-CPKXpPpdagq3UnTk8Z58WtSPek8L79totKX+Uh6foVg="; 17 + hash = "sha256-sBhFH9BNRQ684ydqh8p4TtFwO+Aygu4Ke4+/nNMlZ/E="; 18 18 }; 19 19 20 20 buildInputs = [
+3 -3
pkgs/by-name/hs/hsd/package.nix
··· 9 9 10 10 buildNpmPackage rec { 11 11 pname = "hsd"; 12 - version = "7.0.0"; 12 + version = "7.0.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "handshake-org"; 16 16 repo = "hsd"; 17 17 rev = "v${version}"; 18 - hash = "sha256-Rsa4LTf5lImvCwwuu0FKbBb/QLLAbR8Vce/pWEQLhS0="; 18 + hash = "sha256-bmvoykpaYQDWLYKOwgKZ1V6ivzDJFM1Yo+ATkzKTP2s="; 19 19 }; 20 20 21 - npmDepsHash = "sha256-7zD0noREaq/VNQrf/9dOFXVOngcS6G4mHZAkyQLs/1Q="; 21 + npmDepsHash = "sha256-qM1oPTKffJHlHWhF5huCBPmBSajiYstjhC2GB/iMQ7E="; 22 22 23 23 nativeBuildInputs = [ 24 24 python3
+15 -5
pkgs/by-name/in/invoiceplane/package.nix
··· 13 13 pkg-config, 14 14 libsass, 15 15 stdenv, 16 + fetchzip, 16 17 }: 17 - 18 + let 19 + version = "1.6.2"; 20 + # Fetch release tarball which contains language files 21 + # https://github.com/InvoicePlane/InvoicePlane/issues/1170 22 + languages = fetchzip { 23 + url = "https://github.com/InvoicePlane/InvoicePlane/releases/download/v${version}/v${version}.zip"; 24 + hash = "sha256-ME8ornP2uevvH8DzuI25Z8OV0EP98CBgbunvb2Hbr9M="; 25 + }; 26 + in 18 27 php.buildComposerProject (finalAttrs: { 19 28 pname = "invoiceplane"; 20 - version = "1.6.2"; 29 + inherit version; 21 30 22 31 src = fetchFromGitHub { 23 32 owner = "InvoicePlane"; 24 33 repo = "InvoicePlane"; 25 - tag = "v${finalAttrs.version}"; 34 + rev = "refs/tags/v${version}"; 26 35 hash = "sha256-E2TZ/FhlVKZpGuczXb/QLn27gGiO7YYlAkPSolTEoeQ="; 27 36 }; 28 37 ··· 64 73 grunt build 65 74 ''; 66 75 67 - # Cleanup 76 + # Cleanup and language files 68 77 postInstall = '' 69 78 mv $out/share/php/invoiceplane/* $out/ 79 + cp -r ${languages}/application/language $out/application/ 70 80 rm -r $out/{composer.json,composer.lock,CONTRIBUTING.md,docker-compose.yml,Gruntfile.js,package.json,node_modules,yarn.lock,share} 71 81 ''; 72 82 ··· 76 86 77 87 meta = { 78 88 description = "Self-hosted open source application for managing your invoices, clients and payments"; 79 - changelog = "https://github.com/InvoicePlane/InvoicePlane/releases/tag/v${finalAttrs.version}"; 89 + changelog = "https://github.com/InvoicePlane/InvoicePlane/releases/tag/v${version}"; 80 90 homepage = "https://www.invoiceplane.com"; 81 91 license = lib.licenses.mit; 82 92 platforms = lib.platforms.all;
+3 -3
pkgs/by-name/kc/kcl/package.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "kcl"; 15 - version = "0.10.10"; 15 + version = "0.11.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "kcl-lang"; 19 19 repo = "cli"; 20 20 rev = "v${version}"; 21 - hash = "sha256-zv1YH/0JmNcWbyx9RLhyWykPbL34jnUbdy1HSZiYz3s="; 21 + hash = "sha256-72h/uv22ksiUD3zHmilDZVfgE/3CiBwAD27cggjVNOs="; 22 22 }; 23 23 24 - vendorHash = "sha256-y8KWiy6onZmYdpanXcSQDmYv51pLfo1NTdg+EaR6p0E="; 24 + vendorHash = "sha256-ke1cBBgQJ/YWAhf47IsFRV0MmlLe8J5Z1Z7+xoSjhjE="; 25 25 26 26 subPackages = [ "cmd/kcl" ]; 27 27
+3 -3
pkgs/by-name/ku/kubecm/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kubecm"; 9 - version = "0.32.0"; 9 + version = "0.32.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "sunny0826"; 13 13 repo = "kubecm"; 14 14 rev = "v${version}"; 15 - hash = "sha256-wwAJha576P5Gt70Ys83IS4Pe1qAKvq46ucnjAcRKEKA="; 15 + hash = "sha256-qB3Xzw6nWViBd2QMa3gBLrYhflalkjyLqeyl+7ICoSA="; 16 16 }; 17 17 18 - vendorHash = "sha256-7NW6j5GzOCP0Eb6IVeC9NRtMJl4ujXPWoWu/NvkMxYA="; 18 + vendorHash = "sha256-Fr31wLvzIoN2wIU2EmUrsqiMcPpdJpQI3ZfB//JYIXE="; 19 19 ldflags = [ 20 20 "-s" 21 21 "-w"
+3 -3
pkgs/by-name/ku/kubernetes-controller-tools/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "controller-tools"; 9 - version = "0.16.5"; 9 + version = "0.17.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kubernetes-sigs"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-6It4C8TWA8V0YwUHoSoJK8IbjZ8yfBzR5iX9lzenIY0="; 15 + sha256 = "sha256-ybm20A8VCbLZdS190O0VnzCKxasRg6zX2S8rEtB+igA="; 16 16 }; 17 17 18 - vendorHash = "sha256-wS1+cUXZzfDz5BRHcqV8T050z54VrJB4FcWqRzwsYrc="; 18 + vendorHash = "sha256-QCl0IOWJzk1ddr8yS94Jh/RuGruK/0BLbFnIxbwV9pE="; 19 19 20 20 ldflags = [ 21 21 "-s"
+3 -3
pkgs/by-name/ku/kubernetes-polaris/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "kubernetes-polaris"; 10 - version = "9.6.0"; 10 + version = "9.6.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "FairwindsOps"; 14 14 repo = "polaris"; 15 15 rev = version; 16 - sha256 = "sha256-DhILArArPOZvvywU9vyDmKfvPf49dbfNcBW3OjDdyP4="; 16 + sha256 = "sha256-/pj52K33IimsnrSoSRhHy+WgzzRwGZQiBsNf1+L1B3c="; 17 17 }; 18 18 19 - vendorHash = "sha256-wrdKhDLTebYWWpYE/zLPvjtpXXrrA3LWJHlEvuW4BwM="; 19 + vendorHash = "sha256-l6RCHi4QLPLoF6+Wgcc/lvtBnQDQo0Gncc8VVkcnFBY="; 20 20 21 21 nativeBuildInputs = [ installShellFiles ]; 22 22
+3 -3
pkgs/by-name/la/labwc-tweaks-gtk/package.nix
··· 14 14 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "labwc-tweaks-gtk"; 17 - version = "0-unstable-2024-11-25"; 17 + version = "0-unstable-2025-01-03"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "labwc"; 21 21 repo = "labwc-tweaks-gtk"; 22 - rev = "2613cd87e148b74d57dcda590b6de534fd86f4ac"; 23 - hash = "sha256-IBHQ47gCkX2pRfq39PmAas+JThdjU/WDqY3G69o7Tc4="; 22 + rev = "ac8623a24d7490bbdbe7850adc8d242c1aca92fe"; 23 + hash = "sha256-yAH+iq/YtUOnrS0ydxz0gQuGXue6zQWfpx3FIAUYEDA="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+30
pkgs/by-name/lc/lcalc/libcxx-compat.patch
··· 1 + diff --git a/src/libLfunction/Lcomplex.h b/src/libLfunction/Lcomplex.h 2 + index 363bbf4..ffecd70 100644 3 + --- a/src/libLfunction/Lcomplex.h 4 + +++ b/src/libLfunction/Lcomplex.h 5 + @@ -56,8 +56,11 @@ 6 + #include <cmath> 7 + #include <sstream> 8 + 9 + -namespace std 10 + -{ 11 + +#ifdef _LIBCPP_VERSION 12 + +_LIBCPP_BEGIN_NAMESPACE_STD 13 + +#else 14 + +namespace std { 15 + +#endif 16 + // Forward declarations 17 + template<typename _Tp> class complex; 18 + template<> class complex<float>; 19 + @@ -1193,6 +1196,10 @@ namespace std 20 + inline 21 + complex<long double>::complex(const complex<double>& __z) 22 + : _M_value(_ComplexT(__z._M_value)) { } 23 + -} // namespace std 24 + +#ifdef _LIBCPP_VERSION 25 + +_LIBCPP_END_NAMESPACE_STD 26 + +#else 27 + +} 28 + +#endif 29 + 30 + #endif /* _CPP_COMPLEX */
+2 -6
pkgs/by-name/lc/lcalc/package.nix
··· 19 19 hash = "sha256-RxWZ7T0I9zV7jUVnL6jV/PxEoU32KY7Q1UsOL5Lonuc="; 20 20 }; 21 21 22 - # workaround for vendored GCC 3.5 <complex> 22 + # workaround for vendored GCC <complex> on libc++ 23 23 # https://gitlab.com/sagemath/lcalc/-/issues/16 24 - env.NIX_CFLAGS_COMPILE = toString [ 25 - "-D_GLIBCXX_COMPLEX" 26 - "-D_LIBCPP_COMPLEX" 27 - "-D_LIBCPP___FWD_COMPLEX_H" 28 - ]; 24 + patches = [ ./libcxx-compat.patch ]; 29 25 30 26 nativeBuildInputs = [ 31 27 autoreconfHook
+11 -3
pkgs/by-name/li/libmediainfo/package.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, pkg-config, libzen, zlib }: 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, libzen, zlib 2 + 3 + # Whether to enable resolving URLs via libcurl 4 + , curlSupport ? true, curl 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "libmediainfo"; ··· 10 14 }; 11 15 12 16 nativeBuildInputs = [ autoreconfHook pkg-config ]; 13 - buildInputs = [ zlib ]; 17 + buildInputs = [ zlib ] ++ lib.optionals curlSupport [ curl ]; 14 18 propagatedBuildInputs = [ libzen ]; 15 19 16 20 sourceRoot = "MediaInfoLib/Project/GNU/Library"; ··· 20 24 --replace "pkg-config " "${stdenv.cc.targetPrefix}pkg-config " 21 25 ''; 22 26 23 - configureFlags = [ "--enable-shared" ]; 27 + configureFlags = [ 28 + "--enable-shared" 29 + ] ++ lib.optionals curlSupport [ 30 + "--with-libcurl" 31 + ]; 24 32 25 33 enableParallelBuilding = true; 26 34
+2 -2
pkgs/by-name/li/libnats-c/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "libnats"; 14 - version = "3.9.1"; 14 + version = "3.9.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "nats-io"; 18 18 repo = "nats.c"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-n6DKkUDNoxTJedrDc/i93Nw0Nq6PXWnFCcUQFL2BI30="; 20 + sha256 = "sha256-cNa+Vf9Pbe+XCHMWy0aQBPWLQBhd2PUmg19jr1tLb7E="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/li/libui-ng/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "libui-ng"; 16 - version = "4.1-unstable-2024-12-08"; 16 + version = "4.1-unstable-2024-12-14"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "libui-ng"; 20 20 repo = "libui-ng"; 21 - rev = "ba11e53d6afd0a12831f988f350c376de50a8841"; 22 - hash = "sha256-edzQhuQsLJkfJsmyioLrI+YTG1qyd6ZGPtPRtSgxvuw="; 21 + rev = "533953b82c8510b447fe52a89ee0a3ae6d60921b"; 22 + hash = "sha256-NrDY1EjHcSA0w/WR2UIAQQa6mbPSkVjp41h7uQzz838="; 23 23 }; 24 24 25 25 postPatch = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) ''
+3 -3
pkgs/by-name/li/limbo/package.nix
··· 7 7 }: 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "limbo"; 10 - version = "0.0.10"; 10 + version = "0.0.11"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "tursodatabase"; 14 14 repo = "limbo"; 15 15 tag = "v${version}"; 16 - hash = "sha256-RTX/CRfUKvMSZhULhZD+PcYcc+a1gxANMxm+GmNyb3M="; 16 + hash = "sha256-bX56aiL7Eqa3jLd1u9h6u583q0S9VZfJ+cVPB+8R1eU="; 17 17 }; 18 18 19 - cargoHash = "sha256-BzVPaT7eGOQKRkZe2ZK4rWjHQ2WM7YVMo2siUhpGfOM="; 19 + cargoHash = "sha256-GspyWOxwAQvjNzN0yZvj3WpADR3VUO0MjSKiq9wbLOw="; 20 20 21 21 cargoBuildFlags = [ 22 22 "-p"
+3 -3
pkgs/by-name/ma/marp-cli/package.nix
··· 7 7 8 8 buildNpmPackage rec { 9 9 pname = "marp-cli"; 10 - version = "4.0.3"; 10 + version = "4.0.4"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "marp-team"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - hash = "sha256-HiLhFRQBCrDqMDX04gI7KolphA1ogTxdj1ehpL1D9e4="; 16 + hash = "sha256-gi9jkWuL63RRKR/X8yI3VBLdMaxWfYVDh0gAtuVHVv4="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-8IN3MJBtq3Nu4T/WMcvg9QnckyigYhItBoGoSYOImTY="; 19 + npmDepsHash = "sha256-ZThE92ZcIJToPuTU/7+uOeixLLx+C4jXMzmemSFjPh8="; 20 20 npmPackFlags = [ "--ignore-scripts" ]; 21 21 makeCacheWritable = true; 22 22
+11 -11
pkgs/by-name/ne/neovide/package.nix
··· 26 26 27 27 rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } rec { 28 28 pname = "neovide"; 29 - version = "0.13.3"; 29 + version = "0.14.0"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "neovide"; 33 33 repo = "neovide"; 34 34 rev = version; 35 - hash = "sha256-u10JxMvXC/FIobeolWJElBZuCiJ3xIUg4F0vLom7/S0="; 35 + hash = "sha256-4fdC/wChsCICLd69ZjK7IaCH7gDmXvfKllCnRNsdqYI="; 36 36 }; 37 37 38 - cargoHash = "sha256-j8++watC7RBc1zn8m7Jg0Zl/iKXSrld+q62GiaLxGCo="; 38 + cargoHash = "sha256-CqnT9FEDzEMSais4dJg7zYVoSPNvIA09hmI0JE2YZIg="; 39 39 40 40 SKIA_SOURCE_DIR = 41 41 let ··· 43 43 owner = "rust-skia"; 44 44 repo = "skia"; 45 45 # see rust-skia:skia-bindings/Cargo.toml#package.metadata skia 46 - rev = "m126-0.74.2"; 47 - hash = "sha256-4l6ekAJy+pG27hBGT6A6LLRwbsyKinJf6PP6mMHwaAs="; 46 + rev = "m131-0.79.1"; 47 + hash = "sha256-XqXfKNYSiECbN96WVWA67Vy4sPuVvg6KqHESjA8gFJM="; 48 48 }; 49 49 # The externals for skia are taken from skia/DEPS 50 50 externals = linkFarm "skia-externals" ( ··· 122 122 123 123 disallowedReferences = [ SKIA_SOURCE_DIR ]; 124 124 125 - meta = with lib; { 126 - description = "This is a simple graphical user interface for Neovim"; 125 + meta = { 126 + description = "Neovide is a simple, no-nonsense, cross-platform graphical user interface for Neovim"; 127 127 mainProgram = "neovide"; 128 - homepage = "https://github.com/neovide/neovide"; 128 + homepage = "https://neovide.dev/"; 129 129 changelog = "https://github.com/neovide/neovide/releases/tag/${version}"; 130 - license = with licenses; [ mit ]; 131 - maintainers = with maintainers; [ ck3d ]; 132 - platforms = platforms.unix; 130 + license = with lib.licenses; [ mit ]; 131 + maintainers = with lib.maintainers; [ ck3d ]; 132 + platforms = lib.platforms.unix; 133 133 }; 134 134 }
+6 -6
pkgs/by-name/ne/neovide/skia-externals.json
··· 1 1 { 2 2 "expat": { 3 3 "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git", 4 - "rev": "441f98d02deafd9b090aea568282b28f66a50e36", 5 - "sha256": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=" 4 + "rev": "624da0f593bb8d7e146b9f42b06d8e6c80d032a3", 5 + "sha256": "sha256-Iwu9+i/0vsPyu6pOWFxjNNblVxMl6bTPW5eWyaju4Mg=" 6 6 }, 7 7 "libjpeg-turbo": { 8 8 "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git", 9 - "rev": "ed683925e4897a84b3bffc5c1414c85b97a129a3", 10 - "sha256": "sha256-DYJP3phe4OzCtRN2pMc07ITTWR8MuIlOWWg9PBsQAVw=" 9 + "rev": "ccfbe1c82a3b6dbe8647ceb36a3f9ee711fba3cf", 10 + "sha256": "sha256-UhDKDfAgcCS92R2EvxKpoiJMvakUDQgyHu2k/xeE7do=" 11 11 }, 12 12 "icu": { 13 13 "url": "https://chromium.googlesource.com/chromium/deps/icu.git", ··· 21 21 }, 22 22 "harfbuzz": { 23 23 "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git", 24 - "rev": "b74a7ecc93e283d059df51ee4f46961a782bcdb8", 25 - "sha256": "sha256-/ZYsusWvLzBk5fym3ndVVEplyAdWFf7d4twBvwQVioY=" 24 + "rev": "a070f9ebbe88dc71b248af9731dd49ec93f4e6e6", 25 + "sha256": "sha256-DSjzCLqMmlYCz2agrrY2iwr+VdpxukE/QbhzXmVOVpw=" 26 26 }, 27 27 "wuffs": { 28 28 "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",
+9 -9
pkgs/by-name/ne/net-news-wire/package.nix
··· 1 - { lib 2 - , stdenvNoCC 3 - , fetchurl 4 - , unzip 5 - , nix-update-script 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + unzip, 6 + nix-update-script, 6 7 }: 7 8 8 9 stdenvNoCC.mkDerivation rec { 9 10 pname = "net-news-wire"; 10 - version = "6.1.5"; 11 + version = "6.1.8"; 11 12 12 13 src = fetchurl { 13 14 url = "https://github.com/Ranchero-Software/NetNewsWire/releases/download/mac-${version}/NetNewsWire${version}.zip"; 14 - hash = "sha256-92hsVSEpa661qhebeSd5lxt8MtIJRn7YZyKlMs0vle0="; 15 + hash = "sha256-/xhy0gF2YHYBVPUAlwySH0/yIelMNeFlU7Ya/ADx1NI="; 15 16 }; 16 17 17 18 sourceRoot = "."; ··· 34 35 NetNewsWire shows you articles from your favorite blogs and news sites and keeps track of what you've read. 35 36 ''; 36 37 homepage = "https://github.com/Ranchero-Software/NetNewsWire"; 37 - changelog = 38 - "https://github.com/Ranchero-Software/NetNewsWire/releases/tag/mac-${version}"; 38 + changelog = "https://github.com/Ranchero-Software/NetNewsWire/releases/tag/mac-${version}"; 39 39 license = licenses.mit; 40 40 platforms = platforms.darwin; 41 41 maintainers = with maintainers; [ jakuzure ];
+2 -2
pkgs/by-name/ng/nginx-config-formatter/package.nix
··· 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { 9 - version = "1.2.2"; 9 + version = "1.2.3"; 10 10 pname = "nginx-config-formatter"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "slomkowski"; 14 14 repo = "nginx-config-formatter"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-EUoOfkoVsNpIAwDaQ4NH8MkRIJZI8qeuuHUDE6LuLiI="; 16 + sha256 = "sha256-nYaBdVsq7aLE9P1bQlJlQkrk/cq7C1hxM5XtCGyEzC0="; 17 17 }; 18 18 19 19 buildInputs = [ python3 ];
+2 -2
pkgs/by-name/ni/nimdow/package.nix
··· 9 9 buildNimPackage (finalAttrs: { 10 10 pname = "nimdow"; 11 11 12 - version = "0.7.40"; 12 + version = "0.7.41"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "avahe-kellenberger"; 16 16 repo = "nimdow"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-Q+oUmQ2ABl2nOSnHJYCrqN7dees4JBZgkb9OF4XFr5M="; 18 + hash = "sha256-oosoiJVlP3XyUeardoyRFladAIKdH3PQvWcNo5XnnOI="; 19 19 }; 20 20 21 21 lockFile = ./lock.json;
+2 -1
pkgs/by-name/ni/nixos-firewall-tool/package.nix
··· 14 14 strictDeps = true; 15 15 buildInputs = [ bash ]; 16 16 nativeBuildInputs = [ installShellFiles ]; 17 + nativeCheckInputs = [ shellcheck-minimal ]; 17 18 18 19 postPatch = '' 19 20 patchShebangs --host nixos-firewall-tool ··· 30 31 lib.meta.availableOn stdenvNoCC.buildPlatform shellcheck-minimal.compiler 31 32 && (builtins.tryEval shellcheck-minimal.compiler.outPath).success; 32 33 checkPhase = '' 33 - ${lib.getExe shellcheck-minimal} nixos-firewall-tool 34 + shellcheck nixos-firewall-tool 34 35 ''; 35 36 36 37 meta = with lib; {
+3 -3
pkgs/by-name/nu/nu_scripts/package.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "nu_scripts"; 9 - version = "0-unstable-2024-12-18"; 9 + version = "0-unstable-2024-12-27"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "nushell"; 13 13 repo = pname; 14 - rev = "be6411ef4a8775d1db61b6c04cf9225b0322c899"; 15 - hash = "sha256-yFmijPQ6enQDep020ZFVNrRa/Ze0+cmMSkOlmNlPCOA="; 14 + rev = "a83a40dff05e91daf90bb42e7a23c5e70c85a759"; 15 + hash = "sha256-SstIYp97dUX0+R3wN1yufDNHpKzppuCOlGUp6u503Ws="; 16 16 }; 17 17 18 18 installPhase = ''
+3 -3
pkgs/by-name/op/openfga/package.nix
··· 7 7 8 8 let 9 9 pname = "openfga"; 10 - version = "1.8.1"; 10 + version = "1.8.2"; 11 11 in 12 12 13 13 buildGoModule { ··· 17 17 owner = "openfga"; 18 18 repo = "openfga"; 19 19 rev = "v${version}"; 20 - hash = "sha256-AzKlvBb0r7yu6FnRWNlN/3ZGYmly7gmQ5H/lv5pfSac="; 20 + hash = "sha256-Vh2oUEXCN6w7O3JU99KL6HBmNgcW4FSf/v5Qe4MayrQ="; 21 21 }; 22 22 23 - vendorHash = "sha256-WZNjGoMDYcwhkwJAzew7jRHCcPzUq34g1MydAad6Oek="; 23 + vendorHash = "sha256-EAw5UjLyjoow1ZhUy98Ok2OtwXDqubgqy6LqEk8ORl8="; 24 24 25 25 nativeBuildInputs = [ installShellFiles ]; 26 26
+3 -3
pkgs/by-name/op/opensnitch-ui/package.nix
··· 8 8 9 9 python311Packages.buildPythonApplication rec { 10 10 pname = "opensnitch-ui"; 11 - version = "1.6.6"; 11 + version = "1.6.7"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "evilsocket"; 15 15 repo = "opensnitch"; 16 - tag = "v${version}"; 17 - hash = "sha256-pJPpkXRp7cby6Mvc7IzxH9u6MY4PcrRPkimTw3je6iI="; 16 + rev = "refs/tags/v${version}"; 17 + hash = "sha256-2BwFCRbVvs7pAM5SnhynWws2+QthB/F9V6DYPViDICU="; 18 18 }; 19 19 20 20 postPatch = ''
+2 -2
pkgs/by-name/pl/plfit/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "plfit"; 13 - version = "1.0.0"; 13 + version = "1.0.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "ntamas"; 17 17 repo = "plfit"; 18 18 rev = finalAttrs.version; 19 - hash = "sha256-ur+ai0in7PaoDZcPzuUzQTrZ3nB0H5FDSfPBpl1e9ug="; 19 + hash = "sha256-0JrPAq/4yzr7XbxvcnFj8CKmMyZT05PkSdGprNdAsJA="; 20 20 }; 21 21 22 22 postPatch = lib.optionalString (python != null) ''
+3 -3
pkgs/by-name/po/popeye/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "popeye"; 10 - version = "0.21.5"; 10 + version = "0.21.6"; 11 11 12 12 src = fetchFromGitHub { 13 13 rev = "v${version}"; 14 14 owner = "derailed"; 15 15 repo = "popeye"; 16 - sha256 = "sha256-2Ooh8yk6sD0VuHHxgkyIwqbJ9ynEUFDW3ti9ZzBOPX0="; 16 + sha256 = "sha256-CX30/AzHFtHhctvLIgRNDBvrXuNUXfz2xLoBY5zIWPo="; 17 17 }; 18 18 19 19 ldflags = [ ··· 23 23 "-X github.com/derailed/popeye/cmd.commit=${version}" 24 24 ]; 25 25 26 - vendorHash = "sha256-uTuDI9cQFE5Fdf5wcCAwjO1p/niSNHnXmWF6QhLkDUk="; 26 + vendorHash = "sha256-YvIINp81XPMbSLCDhK9i+I4hfVXPWH19EeVXYhEXbs8="; 27 27 28 28 nativeBuildInputs = [ installShellFiles ]; 29 29
+7
pkgs/by-name/pr/pretix/package.nix
··· 3 3 buildNpmPackage, 4 4 fetchFromGitHub, 5 5 fetchPypi, 6 + fetchpatch2, 6 7 nodejs, 7 8 python3, 8 9 gettext, ··· 78 79 # Discover pretix.plugin entrypoints during build and add them into 79 80 # INSTALLED_APPS, so that their static files are collected. 80 81 ./plugin-build.patch 82 + 83 + (fetchpatch2 { 84 + # fix tests after 2025-01-01 85 + url = "https://github.com/pretix/pretix/commit/5a5a551c21461d9ef36337480c9874d65a9fdba9.patch"; 86 + hash = "sha256-ZtSVI6nVlJtNrnBZ9ktIqFGtNf+oWtvNsgCWwOUwVug="; 87 + }) 81 88 ]; 82 89 83 90 pythonRelaxDeps = [
+2 -2
pkgs/by-name/pr/protoc-gen-go/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "protoc-gen-go"; 9 - version = "1.36.0"; 9 + version = "1.36.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "protocolbuffers"; 13 13 repo = "protobuf-go"; 14 14 rev = "v${version}"; 15 - hash = "sha256-tJlOIOlYXz6mjxRQphwbpbpkv5bcIJtc4kf9UNlP1Kg="; 15 + hash = "sha256-+OFG7dUrxQveG+UmR9gKXxHUJYtVYb/FH1bWxgxwiOw="; 16 16 }; 17 17 18 18 vendorHash = "sha256-nGI/Bd6eMEoY0sBwWEtyhFowHVvwLKjbT4yfzFz6Z3E=";
+36
pkgs/by-name/pt/ptext/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + }: 6 + 7 + stdenv.mkDerivation { 8 + pname = "ptext"; 9 + version = "0-unstable-2024-08-19"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "proh14"; 13 + repo = "ptext"; 14 + rev = "86cc1a165f398bd1f08fc45f2db93d4a9701ab0e"; 15 + hash = "sha256-bmqQslC/T7dFJwg/ZCevQRpmkVJHRQ++0EV4b88xF6k="; 16 + }; 17 + 18 + enableParallelBuilding = true; 19 + hardeningDisable = [ "fortify" ]; 20 + 21 + makeFlags = [ 22 + "INSTALL_DIR=${placeholder "out"}/bin" 23 + "MANPAGE_INSTALL_DIR=${placeholder "out"}/share/man/man1" 24 + ]; 25 + 26 + preInstall = "mkdir -p $out/{bin,share/man/man1}"; 27 + 28 + meta = { 29 + description = "Nano like text editor built with pure C"; 30 + homepage = "https://github.com/proh14/ptext"; 31 + license = lib.licenses.bsd2; 32 + maintainers = with lib.maintainers; [ sigmanificient ]; 33 + platforms = lib.platforms.linux; 34 + mainProgram = "ptext"; 35 + }; 36 + }
+2 -2
pkgs/by-name/pu/pulsarctl/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "pulsarctl"; 14 - version = "4.0.0.10"; 14 + version = "4.0.1.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "streamnative"; 18 18 repo = "pulsarctl"; 19 19 rev = "v${version}"; 20 - hash = "sha256-yV9WfttBoUTFgCj1CFDLPf+CCJLNzduIkZprSAJuOC0="; 20 + hash = "sha256-AwV+B4B/Jsa1UAWy90FzTwTdpA5GZvnsAk+F+Kxx5Xk="; 21 21 }; 22 22 23 23 vendorHash = "sha256-wNUTJn7Ar+GlePEhdr6xeolAiltJdAoIs5o5uDo8Ibs=";
+2 -2
pkgs/by-name/ra/rain-bittorrent/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "rain"; 9 - version = "2.0.0"; 9 + version = "2.1.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "cenkalti"; 13 13 repo = "rain"; 14 14 tag = "v${version}"; 15 - hash = "sha256-bn1LblXwYqZxfCuOmnmWo4Q8Ltt7ARnDCyEI7iNuYHU="; 15 + hash = "sha256-6Y+q7up6JyzBM4qov3k4l/ZUP7XsGVXvG0C6VKA/42g="; 16 16 }; 17 17 18 18 vendorHash = "sha256-SX686l6fsr3Gm+gyzNUZUSGXwAnxaTvUo/J57N10fmU=";
+2 -2
pkgs/by-name/ra/rare-regex/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "rare"; 14 - version = "0.3.4"; 14 + version = "0.4.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "zix99"; 18 18 repo = "rare"; 19 19 rev = version; 20 - hash = "sha256-T27RBIrIXlhFBjzNgN6B49qgTHcek8MajXlbRC5DTMs="; 20 + hash = "sha256-UKxgzLXAXgedR0i3dREjrCNhtksg4LNO6ZM25+8EE7g="; 21 21 }; 22 22 23 23 vendorHash = "sha256-wUOtxNjL/4MosACCzPTWKWrnMZhxINfN1ppkRsqDh9M=";
+4 -4
pkgs/by-name/re/restic-integrity/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "restic-integrity"; 9 - version = "1.3.1"; 9 + version = "1.4.0"; 10 10 11 11 src = fetchFromGitea { 12 12 domain = "git.nwex.de"; 13 13 owner = "networkException"; 14 14 repo = "restic-integrity"; 15 - rev = version; 16 - hash = "sha256-5F2nFSyqrT4JEzUb1NVk0g2LqgwRix3rfflXJ3pttvo="; 15 + tag = version; 16 + hash = "sha256-Nii+rdz51+Acd+lZVpBispeFfVE8buxEGHvK2zMKbOM="; 17 17 }; 18 18 19 - cargoHash = "sha256-97M7dqgTzl2ysegavwzf6xtYKum/s9cq4vgaIQR7IA0="; 19 + cargoHash = "sha256-ua2YQdevf1MalqeNvAAgtlESwN5gA+N3FCQUiKd0wMM="; 20 20 21 21 meta = with lib; { 22 22 description = "CLI tool to check the integrity of a restic repository without unlocking it";
+3 -3
pkgs/by-name/rq/rqlite/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "rqlite"; 9 - version = "8.36.1"; 9 + version = "8.36.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rqlite"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-7/Y1mdwOPugMmh2n7QFoeH9hOSHPRHDq1RnxfwOkVs0="; 15 + sha256 = "sha256-Q5taKIs3kjB1KrIxRO27/sbhamta9ljO+btghJ+M5zE="; 16 16 }; 17 17 18 - vendorHash = "sha256-bPEt7ow7KJQSRA/Y8S8neXd8Q2a08zfyn6M3ldoddZM="; 18 + vendorHash = "sha256-lMDE8M8O6HIJE585OaI1islvffVHncr5CwLoVVSCOh4="; 19 19 20 20 subPackages = [ 21 21 "cmd/rqlite"
+6
pkgs/by-name/ru/rush/package.nix
··· 12 12 strictDeps = true; 13 13 buildInputs = [ bash ]; 14 14 15 + # Make sure that Rush looks for rush.rc in a directory that users can 16 + # modify easily. 17 + configureFlags = [ "--sysconfdir=/etc" ]; 18 + # Prevent “make install” from trying to copy something to 19 + # /etc/rush.rc. 20 + installFlags = [ "sysconfdir=$(out)/etc" ]; 15 21 postInstall = '' 16 22 substituteInPlace $out/bin/rush-po \ 17 23 --replace "exec perl" "exec ${lib.getExe perl}"
+3 -3
pkgs/by-name/se/semantic-release/package.nix
··· 9 9 10 10 buildNpmPackage rec { 11 11 pname = "semantic-release"; 12 - version = "24.2.0"; 12 + version = "24.2.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "semantic-release"; 16 16 repo = "semantic-release"; 17 17 rev = "v${version}"; 18 - hash = "sha256-0FQtTzU7sC9rIVGMyPPK0CP9/LPrCwZcmHV6/rJ7ukU="; 18 + hash = "sha256-E2OgtGVkACa7YWbS+lhWR/nBP9ED7FjFJsK37ntPPo4="; 19 19 }; 20 20 21 - npmDepsHash = "sha256-B7QHYLupai0Av8M7UwUrw1eBBhsYrYBtevTwMI27abo="; 21 + npmDepsHash = "sha256-P6rxNaI125EqgXvZtMrcx38x6l0wOHQno7ojV+VFOkQ="; 22 22 23 23 dontNpmBuild = true; 24 24
+2 -2
pkgs/by-name/sh/shiori/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "shiori"; 12 - version = "1.7.2"; 12 + version = "1.7.3"; 13 13 14 14 vendorHash = "sha256-RTnaDAl79LScbeKKAGJOI/YOiHEwwlxS2CmNhw80KL0="; 15 15 ··· 19 19 owner = "go-shiori"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-QNcMPeLq5L7Q+nmADWZnl4wV5oM6v+NZbAFsba2fKCk="; 22 + sha256 = "sha256-e60eeP0vgQ2/ZE/kO3LcG50EITeF1eN7m1/Md23/HwU="; 23 23 }; 24 24 25 25 ldflags = [
+2 -2
pkgs/by-name/si/signalbackup-tools/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "signalbackup-tools"; 16 - version = "20241218"; 16 + version = "20241220"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "bepaald"; 20 20 repo = "signalbackup-tools"; 21 21 rev = version; 22 - hash = "sha256-51tjKKpcAF8zsIy5clllOBXQabFh4Lcaa1IUic9CmJA="; 22 + hash = "sha256-uAkoPY42pf3v0yA1oXUf+sAX08cT9/13B17XF89phaI="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -3
pkgs/by-name/si/sing-box/package.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "sing-box"; 15 - version = "1.10.5"; 15 + version = "1.10.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "SagerNet"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - hash = "sha256-gVbOJsGY8s2fVugd7Tha1dAhS9rxZbN6m3FVza0WUdc="; 21 + hash = "sha256-EUH0SoAAAaepyjGasUGRtIr5VXboYPTO3/kaW2hG0xc="; 22 22 }; 23 23 24 - vendorHash = "sha256-b0SPUVGL1ESeseWn27xQ2YFFIxJeBAfukZG6lynAIik="; 24 + vendorHash = "sha256-8pkg/tAAKagVsq+EjzzdqeaUiZYVc7MkVdd7zr4b7xY="; 25 25 26 26 tags = [ 27 27 "with_quic"
+3 -3
pkgs/by-name/sq/sqldef/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "sqldef"; 9 - version = "0.17.24"; 9 + version = "0.17.25"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "sqldef"; 13 13 repo = "sqldef"; 14 14 rev = "v${version}"; 15 - hash = "sha256-hX7qQMmrRmIcVCsNysb+Aj1SV+PEI4ezAlt1OucN8VE="; 15 + hash = "sha256-lJZbSAh5wjC51EhXc1v0flxQmBGrAQkpBbYNApxeDMo="; 16 16 }; 17 17 18 18 proxyVendor = true; 19 19 20 - vendorHash = "sha256-R4PTgqx8PmW5WJxt5Hdc7JfYD+93J6MPFGRddZxp2dg="; 20 + vendorHash = "sha256-0dE90AjGmM0cUC0YUMLHqGnoxTzWchH96nhDYpdXxMw="; 21 21 22 22 ldflags = [ 23 23 "-s"
+3 -3
pkgs/by-name/sr/src-cli/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "src-cli"; 14 - version = "5.10.0"; 14 + version = "5.11.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "sourcegraph"; 18 18 repo = "src-cli"; 19 19 rev = version; 20 - hash = "sha256-7CjvnPWc7gxxreo4Vw/5oz2EkKIjPk/G3FSiTsKN+ps="; 20 + hash = "sha256-e0i9qhdDb2DShimcBj0zR5wv3iklWYAhfG62S9f02O0="; 21 21 }; 22 22 23 - vendorHash = "sha256-4Tn71Zk6Rd2teOlMo9MUMMHw5tq9tgwfShgiMjMFSCQ="; 23 + vendorHash = "sha256-nMIRu2MiSCbdkuDEhigX9TSS2OWCXSDI8YH+u2ifIBg="; 24 24 25 25 subPackages = [ 26 26 "cmd/src"
+3 -3
pkgs/by-name/st/starlark/package.nix
··· 6 6 }: 7 7 buildGoModule { 8 8 pname = "starlark"; 9 - version = "0-unstable-2024-11-25"; 9 + version = "0-unstable-2024-12-26"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "google"; 13 13 repo = "starlark-go"; 14 - rev = "c05ff208a98f05d326de87fb6d0921db2c0f926f"; 15 - hash = "sha256-OIs6d/ZCEJDTV2+4gqVgtFmHk+M9xxd6lS9maoXcjOs="; 14 + rev = "8dfa5b98479f2a537a9cd1289348fb6c2878bf41"; 15 + hash = "sha256-cZqjyrraD3nzK/pCVjT9yPX6Ysyh5ZN0Axv+X87hzOg="; 16 16 }; 17 17 18 18 vendorHash = "sha256-8drlCBy+KROyqXzm/c+HBe/bMVOyvwRoLHxOApJhMfo=";
+9 -9
pkgs/by-name/st/starpls/manifest.json
··· 1 1 { 2 - "version": "0.1.20", 2 + "version": "0.1.21", 3 3 "assets": { 4 4 "x86_64-linux": { 5 - "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.20/starpls-linux-amd64", 6 - "hash": "sha256-oImI2aWIGPKJiu/eDwT2ExP0UNz6kj8ZWjZNPUkT5Dc=" 5 + "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.21/starpls-linux-amd64", 6 + "hash": "sha256-RWkuy52UoZoVseeyQKzf9XAveM0iGI2sQeGHnLi9zc8=" 7 7 }, 8 8 "aarch64-linux": { 9 - "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.20/starpls-linux-aarch64", 10 - "hash": "sha256-z6KY//iMcXXtTRn+9DuXAYZRsakyNOjiGpLztC0g6a4=" 9 + "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.21/starpls-linux-aarch64", 10 + "hash": "sha256-SIyHNl0O4HrNtA3561Np4ROtfZbA+OwS/qjIDp4S54E=" 11 11 }, 12 12 "x86_64-darwin": { 13 - "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.20/starpls-darwin-amd64", 14 - "hash": "sha256-hTD+DE6Ih10+Jr2sATDAedpRQOnW9BCrEcAcuvd/u50=" 13 + "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.21/starpls-darwin-amd64", 14 + "hash": "sha256-cfAITd3t1Z9EUbgf6jyMl9xRpIUpKTN4C+zJL315AjQ=" 15 15 }, 16 16 "aarch64-darwin": { 17 - "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.20/starpls-darwin-arm64", 18 - "hash": "sha256-tOk/w+g8xI7uGKPUc8Ff5QQ6/brmy6TcfzH8dCjlU2w=" 17 + "url": "https://github.com/withered-magic/starpls/releases/download/v0.1.21/starpls-darwin-arm64", 18 + "hash": "sha256-gtcb9sFQOKHGQtzVsm0iUCcoMA5B9ZrwZDzQdiXhakc=" 19 19 } 20 20 } 21 21 }
+2 -2
pkgs/by-name/su/subtitlecomposer/package.nix
··· 3 3 fetchFromGitLab, 4 4 cmake, 5 5 extra-cmake-modules, 6 - ffmpeg, 6 + ffmpeg_6, 7 7 openal, 8 8 stdenv, 9 9 libsForQt5, ··· 28 28 ]; 29 29 buildInputs = 30 30 [ 31 - ffmpeg 31 + ffmpeg_6 32 32 openal 33 33 ] 34 34 ++ (with libsForQt5; [
+10
pkgs/by-name/sw/switch-to-configuration-ng/src/src/main.rs
··· 74 74 // `stopIfChanged = true` is ignored, switch-to-configuration will handle `restartIfChanged = 75 75 // false` and `reloadIfChanged = true`. This is the same as specifying a restart trigger in the 76 76 // NixOS module. 77 + // In addition, switch-to-configuration will handle notSocketActivated=true to disable treatment 78 + // of units as "socket-activated" even though they might have any associated sockets. 77 79 // 78 80 // The reload file asks this program to reload a unit. This is the same as specifying a reload 79 81 // trigger in the NixOS module and can be ignored if the unit is restarted in this activation. ··· 613 615 } else { 614 616 // If this unit is socket-activated, then stop the socket unit(s) as well, and 615 617 // restart the socket(s) instead of the service. 618 + // We count as "socket-activated" any unit that doesn't declare itself not so 619 + // via X-NotSocketActivated, that has any associated .socket units. 616 620 let mut socket_activated = false; 617 621 if unit.ends_with(".service") { 618 622 let mut sockets = if let Some(Some(Some(sockets))) = new_unit_info.map(|info| { ··· 662 666 } 663 667 } 664 668 } 669 + } 670 + if parse_systemd_bool(new_unit_info, "Service", "X-NotSocketActivated", false) { 671 + // If the unit explicitly opts out of socket 672 + // activation, restart it as if it weren't (but do 673 + // restart its sockets, that's fine): 674 + socket_activated = false; 665 675 } 666 676 667 677 // If the unit is not socket-activated, record that this unit needs to be started
+3 -3
pkgs/by-name/tu/tuckr/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "tuckr"; 9 - version = "0.10.0"; 9 + version = "0.10.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "RaphGL"; 13 13 repo = "Tuckr"; 14 14 rev = version; 15 - hash = "sha256-JxXFz7ijCQktpYrwBA8ajvZj3gRloO/cAOo4wskF70o="; 15 + hash = "sha256-1hF8zZYkvNYA0bDgvu+zsfcT/8MF8HTiTHpYfOxXljA="; 16 16 }; 17 17 18 - cargoHash = "sha256-mGBsQd3yiwuAH3KHtAsLx0ai3ui2EUaf9SW+czvo9vE="; 18 + cargoHash = "sha256-QRZsP9OW0oj4PuQNZ1wzvhp9guZ5K3k6WolxzEPUQKw="; 19 19 20 20 doCheck = false; # test result: FAILED. 5 passed; 3 failed; 21 21
+44
pkgs/by-name/tw/twilight-kde/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + lib, 4 + stdenvNoCC, 5 + unstableGitUpdater, 6 + }: 7 + 8 + stdenvNoCC.mkDerivation rec { 9 + pname = "twilight-kde"; 10 + version = "0-unstable-2023-03-09"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "yeyushengfan258"; 14 + repo = "Twilight-kde"; 15 + rev = "a5fc50a040693a53472d83d2d47e964d2cf2bcd3"; 16 + hash = "sha256-b9//jWOD9TPOBPIDl/66j6wsWvo82h6wsee0JoQcBD0="; 17 + }; 18 + 19 + postPatch = '' 20 + patchShebangs install.sh 21 + 22 + substituteInPlace install.sh \ 23 + --replace '$HOME/.local' $out \ 24 + --replace '$HOME/.config' $out/share 25 + ''; 26 + 27 + installPhase = '' 28 + runHook preInstall 29 + 30 + bash ./install.sh 31 + 32 + runHook postInstall 33 + ''; 34 + 35 + passthru.updateScript = unstableGitUpdater { }; 36 + 37 + meta = { 38 + description = "Light, clean theme for KDE Plasma desktop"; 39 + homepage = "https://github.com/yeyushengfan258/Twilight-kde"; 40 + license = lib.licenses.gpl3Plus; 41 + platforms = lib.platforms.linux; 42 + maintainers = with lib.maintainers; [ dretyuiop ]; 43 + }; 44 + }
+2 -2
pkgs/by-name/tw/twitch-dl/package.nix
··· 9 9 10 10 python3Packages.buildPythonApplication rec { 11 11 pname = "twitch-dl"; 12 - version = "2.9.2"; 12 + version = "2.9.3"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "ihabunek"; 17 17 repo = "twitch-dl"; 18 18 tag = version; 19 - hash = "sha256-BIE3+SDmc5ggF9P+qeloI1JYYrEtOJQ/8oDR76i0t6c="; 19 + hash = "sha256-kkSCkSFY6UQWtzKOTJ187SDQsb+O5VRR2PRjazC83i0="; 20 20 }; 21 21 22 22 pythonRelaxDeps = [
+2 -2
pkgs/by-name/up/updatecli/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "updatecli"; 14 - version = "0.90.0"; 14 + version = "0.91.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "updatecli"; 18 18 repo = "updatecli"; 19 19 rev = "v${version}"; 20 - hash = "sha256-O7NG6KGEiUGieAS2nEfpvCWnE1SYe5pbwD87q2/uBkA="; 20 + hash = "sha256-r/8QPVJHrvHbDZZ7RFgKBB7isy/P5hTBe84xFcevEH4="; 21 21 }; 22 22 23 23 vendorHash = "sha256-Y1klBZZvDtCootNXQOlScSgDpaw1/owzBX9ykCD6NCw=";
+3 -3
pkgs/by-name/ve/velero/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "velero"; 11 - version = "1.15.0"; 11 + version = "1.15.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "vmware-tanzu"; 15 15 repo = "velero"; 16 16 rev = "v${version}"; 17 - hash = "sha256-Ba5Bjock3NmNI6XdnX7UOW35ytgnHzYAjX9Cu6iGILo="; 17 + hash = "sha256-ypNpIEj6hw77cjXkYJ9zsKY0bFP7Nwa2skd1wdONsJY="; 18 18 }; 19 19 20 20 ldflags = [ ··· 26 26 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.GitSHA=none" 27 27 ]; 28 28 29 - vendorHash = "sha256-FcyqCnOZSdoyOjBIrEC1AKM5KqWSkNxbgvXeG3Y0CO4="; 29 + vendorHash = "sha256-Q3h39o78V5Lqzols3RmSDL9d5WevMnTt4bv4qBscnGs="; 30 30 31 31 excludedPackages = [ 32 32 "issue-template-gen"
+3 -3
pkgs/by-name/vg/vgm2x/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "vgm2x"; 13 - version = "0-unstable-2024-12-11"; 13 + version = "0-unstable-2024-12-13"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "vampirefrog"; 17 17 repo = "vgm2x"; 18 - rev = "b13c50806d2c0d67afab69e428bb43bde64d26a1"; 18 + rev = "ae37e3a8a2d563733c89e00597a18b5deac80b4f"; 19 19 fetchSubmodules = true; 20 - hash = "sha256-5zuCemXz65giPqdjU1tIboajh8tNpkxCglreT/fbvgA="; 20 + hash = "sha256-wRwfRlABy5Ojyjohs68Uqvq0otMbvBCexLpGPmx6sds="; 21 21 }; 22 22 23 23 postPatch = ''
+1 -1
pkgs/by-name/vo/volumeicon/package.nix
··· 33 33 34 34 meta = with lib; { 35 35 description = "Lightweight volume control that sits in your systray"; 36 - homepage = "http://nullwise.com/volumeicon.html"; 36 + homepage = "https://nullwise.com/pages/volumeicon/volumeicon.html"; 37 37 platforms = platforms.linux; 38 38 maintainers = with maintainers; [ bobvanderlinden ]; 39 39 license = licenses.gpl3;
+2 -2
pkgs/by-name/vt/vtm/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "vtm"; 10 - version = "0.9.99.57"; 10 + version = "0.9.99.61"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "netxs-group"; 14 14 repo = "vtm"; 15 15 rev = "v${finalAttrs.version}"; 16 - hash = "sha256-T7wmMBMFU8FBmdRKzoSVbFnPkRFwE/RnRZr1AfDBcWw="; 16 + hash = "sha256-IlJbJw2c2Zgl+W5Jh01Iga8duiLgl/GurT620IhPh68="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+36
pkgs/by-name/we/wezterm/headless.nix
··· 1 + { 2 + openssl, 3 + pkg-config, 4 + rustPlatform, 5 + wezterm, 6 + }: 7 + 8 + rustPlatform.buildRustPackage { 9 + pname = "wezterm-headless"; 10 + inherit (wezterm) 11 + version 12 + src 13 + postPatch 14 + cargoHash 15 + useFetchCargoVendor 16 + meta 17 + ; 18 + 19 + nativeBuildInputs = [ pkg-config ]; 20 + 21 + buildInputs = [ openssl ]; 22 + 23 + cargoBuildFlags = [ 24 + "--package" 25 + "wezterm" 26 + "--package" 27 + "wezterm-mux-server" 28 + ]; 29 + 30 + doCheck = false; 31 + 32 + postInstall = '' 33 + install -Dm644 assets/shell-integration/wezterm.sh -t $out/etc/profile.d 34 + install -Dm644 ${wezterm.passthru.terminfo}/share/terminfo/w/wezterm -t $out/share/terminfo/w 35 + ''; 36 + }
+3 -3
pkgs/by-name/wh/whistle/package.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "whistle"; 5 - version = "2.9.90"; 5 + version = "2.9.92"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "avwo"; 9 9 repo = "whistle"; 10 10 rev = "v${version}"; 11 - hash = "sha256-7IqcwSLuiWO4BDxtqhveBdz96+fdlNehKlDpIWxrP4g="; 11 + hash = "sha256-pIOVVCoyC6j8QeNDlls9EpDwKUpBLbFuxL2bMpSog5A="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-2es+CpiQ/JfisTkg14nU/8MK1tV7xM9TPBVWn19z8vU="; 14 + npmDepsHash = "sha256-z4w5JQdGuWu7z3rWYLO83uCrrSjt2wKbhRUGgrduoOc="; 15 15 16 16 dontNpmBuild = true; 17 17
+3 -3
pkgs/by-name/wl/wlr-which-key/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "wlr-which-key"; 14 - version = "1.0.1"; 14 + version = "1.1.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "MaxVerevkin"; 18 18 repo = "wlr-which-key"; 19 19 rev = "v${version}"; 20 - hash = "sha256-+LOu1iJ4ciqJMemNKV0cNpAxn857izu9j8pu+3Z0msk="; 20 + hash = "sha256-BEf1qpy0bVPi5nmu3UUiv8k0bJvE5VFB5Zqb5lS0+t4="; 21 21 }; 22 22 23 - cargoHash = "sha256-4aVBaKwvGSpePw64UwrqHhDYcSvM8zADrXAK5SBEfm0="; 23 + cargoHash = "sha256-QWYqZT6ptxGkDqRAXnT1pWXiuk7j/6KVBBzuFJOB81M="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+3 -3
pkgs/by-name/xr/xray/package.nix
··· 15 15 16 16 buildGoModule rec { 17 17 pname = "xray"; 18 - version = "24.12.18"; 18 + version = "25.1.1"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "XTLS"; 22 22 repo = "Xray-core"; 23 23 rev = "v${version}"; 24 - hash = "sha256-Sj4XCA3WZBWp53mXji5d82jLLyKjfKgNKX+IPPfsH/M="; 24 + hash = "sha256-6Ybo8jYDdYlnrLkYV4Wo9T/3lHYByNJN2G0A+YGe504="; 25 25 }; 26 26 27 - vendorHash = "sha256-MDSVm0WKuYRj3Y83vOqjEXrE8OGfoSh68DDh484ZXXo="; 27 + vendorHash = "sha256-f61PmgSojDq6TAfWEd+q0WZ9fvmABdll+Ta3q8fHtEU="; 28 28 29 29 nativeBuildInputs = [ makeWrapper ]; 30 30
+3 -3
pkgs/desktops/gnome/extensions/valent/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "gnome-shell-extension-valent"; 10 - version = "unstable-2023-11-10"; 10 + version = "1.0.0.alpha.46"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "andyholmes"; 14 14 repo = "gnome-shell-extension-valent"; 15 - rev = "c0fad083db3c23382efca623488834054bbbd5cd"; 16 - hash = "sha256-H0EjR7sYK0mepT59PoHgecbk4ksQN8Vyisf6Y+2vT8g="; 15 + rev = "v${version}"; 16 + hash = "sha256-OY0fxO6IYg7xukYYuK0QM9YriaEAlM2dH6t8Wv3XKIs="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libqofono/default.nix
··· 12 12 13 13 mkDerivation rec { 14 14 pname = "libqofono"; 15 - version = "0.123"; 15 + version = "0.124"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "sailfishos"; 19 19 repo = "libqofono"; 20 20 rev = version; 21 - hash = "sha256-Ml86wHejSDyR2ibamuzg14GZ5S7zHBgPC9K5G+sgtC0="; 21 + hash = "sha256-fI7RS0V8wrsJ2AZAyjVgHmG+c13DXdo6xTjIlGbOHI8="; 22 22 }; 23 23 24 24 patches = [
+2 -2
pkgs/development/libraries/python-qt/default.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "python-qt"; 14 - version = "3.5.6"; 14 + version = "3.5.7"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "MeVisLab"; 18 18 repo = "pythonqt"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-+cmwTTNmy87yuHukesA+nukM2RjMTHsvIbeG7J7X8ig="; 20 + hash = "sha256-UE0UNp9ArXNFga4MGb80fAQWeq1US5kk7FEZ8tS94OU="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+5 -5
pkgs/development/lua-modules/generated-packages.nix
··· 2542 2542 lz-n = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 2543 2543 buildLuarocksPackage { 2544 2544 pname = "lz.n"; 2545 - version = "2.9.2-1"; 2545 + version = "2.10.0-1"; 2546 2546 knownRockspec = (fetchurl { 2547 - url = "mirror://luarocks/lz.n-2.9.2-1.rockspec"; 2548 - sha256 = "08xn5r8ghimnbn92ngsvg4d1924xy1vlj9vyghzbgfidg7802h8j"; 2547 + url = "mirror://luarocks/lz.n-2.10.0-1.rockspec"; 2548 + sha256 = "00f45x1c55zrvpa8ddn6nma90m949z5vh8yc165fqzqgnr7hdrg7"; 2549 2549 }).outPath; 2550 2550 src = fetchzip { 2551 - url = "https://github.com/nvim-neorocks/lz.n/archive/v2.9.2.zip"; 2552 - sha256 = "0h4s192mvmyd7isjkjjpy7xv9srry830gm0jg3iw61iwxv6qplpr"; 2551 + url = "https://github.com/nvim-neorocks/lz.n/archive/v2.10.0.zip"; 2552 + sha256 = "10b6ldmxndprwpc7xawm0cvq68cp301ayp7zxpjkrsmrihzzs2jf"; 2553 2553 }; 2554 2554 2555 2555 disabled = luaOlder "5.1";
+2 -2
pkgs/development/python-modules/ducc0/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "ducc0"; 14 - version = "0.35.0"; 14 + version = "0.36.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 21 21 owner = "mtr"; 22 22 repo = "ducc"; 23 23 rev = "ducc0_${lib.replaceStrings [ "." ] [ "_" ] version}"; 24 - hash = "sha256-LfN+rwJp5euVpR/5sUBG3XqBhF7/KbgW/485eufJtMQ="; 24 + hash = "sha256-S/H3+EykNxqbs8Tca3T95SK3Hzst49hOPkO0ocs80t0="; 25 25 }; 26 26 27 27 buildInputs = [ pybind11 ];
+6
pkgs/development/python-modules/pympler/default.nix
··· 45 45 "test_findgarbage" 46 46 "test_get_tree" 47 47 "test_prune" 48 + ] 49 + ++ lib.optionals (pythonAtLeast "3.13") [ 50 + # https://github.com/pympler/pympler/issues/163 51 + "test_edges_new" 52 + "test_edges_old" 53 + "test_split" 48 54 ]; 49 55 50 56 doCheck = stdenv.hostPlatform.isLinux;
+1 -1
pkgs/development/python-modules/pysensors/default.nix
··· 34 34 meta = with lib; { 35 35 maintainers = with maintainers; [ guibou ]; 36 36 description = "Easy hardware health monitoring in Python for Linux systems"; 37 - homepage = "https://pysensors.readthedocs.org"; 37 + homepage = "https://bastienleonard.github.io/pysensors/"; 38 38 license = licenses.bsd2; 39 39 platforms = platforms.linux; 40 40 };
+10 -1
pkgs/development/python-modules/triton/default.nix
··· 53 53 } 54 54 // lib.optionalAttrs rocmSupport { libhipDir = "${lib.getLib rocmPackages.clr}/lib"; } 55 55 // lib.optionalAttrs cudaSupport { 56 - libcudaStubsDir = "${lib.getLib cudaPackages.cuda_cudart}/lib/stubs"; 56 + libcudaStubsDir = "${lib.getOutput "stubs" cudaPackages.cuda_cudart}/lib/stubs"; 57 57 ccCmdExtraFlags = "-Wl,-rpath,${addDriverRunpath.driverLink}/lib"; 58 58 } 59 59 )) ··· 82 82 substituteInPlace unittest/CMakeLists.txt \ 83 83 --replace-fail "include (\''${CMAKE_CURRENT_SOURCE_DIR}/googletest.cmake)" ""\ 84 84 --replace-fail "include(GoogleTest)" "find_package(GTest REQUIRED)" 85 + 86 + # Patch the source code to make sure it doesn't specify a non-existent PTXAS version. 87 + # CUDA 12.6 (the current default/max) tops out at PTXAS version 8.5. 88 + # NOTE: This is fixed in `master`: 89 + # https://github.com/triton-lang/triton/commit/f48dbc1b106c93144c198fbf3c4f30b2aab9d242 90 + substituteInPlace "$NIX_BUILD_TOP/$sourceRoot/third_party/nvidia/backend/compiler.py" \ 91 + --replace-fail \ 92 + 'return 80 + minor' \ 93 + 'return 80 + min(minor, 5)' 85 94 ''; 86 95 87 96 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/tubeup/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "tubeup"; 14 - version = "2024.11.13"; 14 + version = "2024.12.21"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.9"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-BPkcz+y90NVDX2jjwOZ/9F/Oedg+LXc34Tee6ZfJ1vQ="; 21 + hash = "sha256-ZQMok8os+EIv65FJzErZkS7fjkzBf9KBPWbyWq3HO5k="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+3 -3
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "cargo-tarpaulin"; 14 - version = "0.31.3"; 14 + version = "0.31.4"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "xd009642"; 18 18 repo = "tarpaulin"; 19 19 rev = version; 20 - hash = "sha256-ROsoTXkNB6qlcKFXgylZYuKp+WTFcbcDfw6L5ZqiRiA="; 20 + hash = "sha256-OMGqahssvzTGBk4HoMNnF0EtDi00xJFg6x83Qt54QME="; 21 21 }; 22 22 23 - cargoHash = "sha256-1ZyAyJvHJtf8qEW7VmrZLL8WeVjD+w5vkVUld6keL+s="; 23 + cargoHash = "sha256-TNZDbuG97rHaBkMRXEFz+02RpYMznRhHdAF4Z4Vsggc="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+2 -2
pkgs/development/tools/analysis/ikos/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "ikos"; 23 - version = "3.4"; 23 + version = "3.5"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "NASA-SW-VnV"; 27 27 repo = "ikos"; 28 28 rev = "v${version}"; 29 - hash = "sha256-xJuSpQHShggDqLVQaj0a0fEPOWUFIrbGmxazu4FKISs="; 29 + hash = "sha256-kqgGD0plTW0N30kD7Y8xOvGODplJbi37Wh6yYAkzNKI="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+3 -3
pkgs/development/tools/gauge/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gauge"; 9 - version = "1.6.10"; 9 + version = "1.6.11"; 10 10 11 11 patches = [ 12 12 # adds a check which adds an error message when trying to ··· 18 18 owner = "getgauge"; 19 19 repo = "gauge"; 20 20 rev = "v${version}"; 21 - hash = "sha256-D0x+87bKVtZPHJcwZUJ49JXp2o32ieOw/etnE69c8CI="; 21 + hash = "sha256-4Fjh2wVl5k01YH1bNW8tAn6J44cWvwUnBqu2dE63wKY="; 22 22 }; 23 23 24 - vendorHash = "sha256-2oEIBIr8oc1ku/k9mlLSg6Q6BbUleufvlmWOaV6wPfU="; 24 + vendorHash = "sha256-xxWcniT9aaLw3rX7uHTRmIVw4BVR1MDIpvF21pfMtDk="; 25 25 26 26 excludedPackages = [ 27 27 "build"
+2 -2
pkgs/servers/metabase/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "metabase"; 5 - version = "0.52.3"; 5 + version = "0.52.4"; 6 6 7 7 src = fetchurl { 8 8 url = "https://downloads.metabase.com/v${version}/metabase.jar"; 9 - hash = "sha256-xtxhiC9QNHiN99iQVtOlovqIDtKcYZr3geSDbSBEKWw="; 9 + hash = "sha256-sDlh82h7LeqYKxG0gi1cR4ZCMDic5J1nPwBPQ958SLY="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/sickbeard/sickgear.nix
··· 17 17 in 18 18 stdenv.mkDerivation rec { 19 19 pname = "sickgear"; 20 - version = "3.32.13"; 20 + version = "3.32.14"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "SickGear"; 24 24 repo = "SickGear"; 25 25 rev = "release_${version}"; 26 - hash = "sha256-eEkO1LjKeCzyMQL5lhH3GkQ+dutAjYlYE3dPADoXZEM="; 26 + hash = "sha256-EcIxY1MLKNiHCMPMwytSb+azzn0jaBdPEPoAFsA99T4="; 27 27 }; 28 28 29 29 patches = [
-2
pkgs/top-level/all-packages.nix
··· 1574 1574 }; 1575 1575 termite-unwrapped = callPackage ../applications/terminal-emulators/termite { }; 1576 1576 1577 - wezterm = callPackage ../applications/terminal-emulators/wezterm { }; 1578 - 1579 1577 twine = with python3Packages; toPythonApplication twine; 1580 1578 1581 1579 amazon-qldb-shell = callPackage ../development/tools/amazon-qldb-shell {
+1 -1
pkgs/top-level/perl-packages.nix
··· 27264 27264 }; 27265 27265 meta = { 27266 27266 description = "Handy utf8 tests"; 27267 - homepage = "https://github.com/2shortplanks/Test-utf8/tree"; 27267 + homepage = "https://github.com/2shortplanks/Test-utf8"; 27268 27268 license = with lib.licenses; [ artistic1 gpl1Plus ]; 27269 27269 }; 27270 27270 };