Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
dc5152a1 9063c6d7

+1043 -20733
+6
maintainers/maintainer-list.nix
··· 11705 11705 github = "jonochang"; 11706 11706 githubId = 13179; 11707 11707 }; 11708 + jonocodes = { 11709 + name = "Jono Finger"; 11710 + email = "jono@foodnotblogs.com"; 11711 + github = "jonocodes"; 11712 + githubId = 1310468; 11713 + }; 11708 11714 jopejoe1 = { 11709 11715 email = "nixpkgs@missing.ninja"; 11710 11716 matrix = "@jopejoe1:matrix.org";
+1
maintainers/team-list.nix
··· 218 218 cuda = { 219 219 members = [ 220 220 connorbaker 221 + prusnak 221 222 samuela 222 223 SomeoneSerge 223 224 ];
+2 -2
nixos/doc/manual/development/writing-documentation.chapter.md
··· 11 11 [`nixos/doc/manual`](https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual) 12 12 subdirectory of the Nixpkgs repository. 13 13 14 - You can quickly validate your edits with `make`: 14 + You can quickly validate your edits with `devmode`: 15 15 16 16 ```ShellSession 17 17 $ cd /path/to/nixpkgs/nixos/doc/manual 18 18 $ nix-shell 19 - nix-shell$ devmode 19 + [nix-shell:~]$ devmode 20 20 ``` 21 21 22 22 Once you are done making modifications to the manual, it's important to
+1
nixos/modules/services/home-automation/ebusd.nix
··· 73 73 "main" 74 74 "network" 75 75 "bus" 76 + "device" 76 77 "update" 77 78 "other" 78 79 ];
+23 -9
nixos/modules/services/web-servers/caddy/default.nix
··· 45 45 settingsFormat.generate "caddy.json" cfg.settings 46 46 else 47 47 let 48 - Caddyfile = pkgs.writeTextDir "Caddyfile" '' 48 + writeCaddyfile = 49 + text: 50 + pkgs.runCommandLocal "Caddyfile" 51 + { 52 + inherit text; 53 + passAsFile = [ "text" ]; 54 + } 55 + '' 56 + mkdir -p $out 57 + cp "$textPath" $out/Caddyfile 58 + 59 + # 'validate' cannot be used for validation, due to log location access 60 + # See https://github.com/caddyserver/caddy/issues/6788 61 + ${lib.getExe cfg.package} adapt --config $out/Caddyfile 62 + ''; 63 + 64 + Caddyfile = writeCaddyfile '' 49 65 { 50 66 ${cfg.globalConfig} 51 67 } ··· 53 69 ${concatMapStringsSep "\n" mkVHostConf virtualHosts} 54 70 ''; 55 71 56 - Caddyfile-formatted = 57 - pkgs.runCommand "Caddyfile-formatted" { nativeBuildInputs = [ cfg.package ]; } 58 - '' 59 - mkdir -p $out 60 - cp --no-preserve=mode ${Caddyfile}/Caddyfile $out/Caddyfile 61 - caddy fmt --overwrite $out/Caddyfile 62 - ''; 72 + Caddyfile-formatted = pkgs.runCommand "Caddyfile-formatted" { } '' 73 + mkdir -p $out 74 + cp --no-preserve=mode ${Caddyfile}/Caddyfile $out/Caddyfile 75 + ${lib.getExe cfg.package} fmt --overwrite $out/Caddyfile 76 + ''; 63 77 in 64 78 "${ 65 79 if pkgs.stdenv.buildPlatform == pkgs.stdenv.hostPlatform then Caddyfile-formatted else Caddyfile ··· 437 451 # If the empty string is assigned to this option, the list of commands to start is reset, prior assignments of this option will have no effect. 438 452 ExecStart = [ 439 453 "" 440 - ''${cfg.package}/bin/caddy run ${runOptions} ${optionalString cfg.resume "--resume"}'' 454 + ''${lib.getExe cfg.package} run ${runOptions} ${optionalString cfg.resume "--resume"}'' 441 455 ]; 442 456 # Validating the configuration before applying it ensures we’ll get a proper error that will be reported when switching to the configuration 443 457 ExecReload = [
+6
pkgs/applications/editors/jupyter-kernels/xeus-cling/default.nix
··· 1 1 { 2 + lib, 2 3 callPackage, 3 4 cling, 4 5 fetchurl, ··· 66 67 passthru = (oldAttrs.passthru or { }) // { 67 68 unwrapped = xeus-cling-unwrapped; 68 69 }; 70 + 71 + meta.badPlatforms = [ 72 + # fatal error: 'stdlib.h' file not found 73 + lib.systems.inspect.patterns.isDarwin 74 + ]; 69 75 }); 70 76 71 77 mkKernelSpec = std: {
+9 -3
pkgs/applications/editors/vim/plugins/default.nix
··· 33 33 34 34 nonGeneratedPlugins = 35 35 self: super: 36 - lib.mapAttrs (name: _: callPackage (./non-generated + "/${name}") { }) ( 37 - lib.filterAttrs (name: type: type == "directory") (builtins.readDir ./non-generated) 38 - ); 36 + let 37 + root = ./non-generated; 38 + call = name: callPackage (root + "/${name}") { }; 39 + in 40 + lib.pipe root [ 41 + builtins.readDir 42 + (lib.filterAttrs (_: type: type == "directory")) 43 + (builtins.mapAttrs (name: _: call name)) 44 + ]; 39 45 40 46 plugins = callPackage ./generated.nix { 41 47 inherit buildVimPlugin;
+17 -17
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 317 317 "vendorHash": "sha256-ZCMSmOCPEMxCSpl3DjIUGPj1W/KNJgyjtHpmQ19JquA=" 318 318 }, 319 319 "datadog": { 320 - "hash": "sha256-19ziZNNe0wQcJMy6s6EPTaeA+iI5NTHcwXZz5ldX3W0=", 320 + "hash": "sha256-nevuczChWR4HPDefChJnSAVI53TFuPFdyDwKsHM3SW8=", 321 321 "homepage": "https://registry.terraform.io/providers/DataDog/datadog", 322 322 "owner": "DataDog", 323 323 "repo": "terraform-provider-datadog", 324 - "rev": "v3.57.0", 324 + "rev": "v3.58.0", 325 325 "spdx": "MPL-2.0", 326 - "vendorHash": "sha256-DQQ/wcRW7b2SQm4iYZApjCVjYCU1C+KXiXjX2+aICjs=" 326 + "vendorHash": "sha256-tf0lVgueRNVXfttzrCyy0TSiQAVGcWIUCoDLyOWfW7s=" 327 327 }, 328 328 "deno": { 329 329 "hash": "sha256-7IvJrhXMeAmf8e21QBdYNSJyVMEzLpat4Tm4zHWglW8=", ··· 516 516 "vendorHash": "sha256-kzugr8EaPROHy/3IVOsGkitpTixuiOw8R6kYedIrIuw=" 517 517 }, 518 518 "google-beta": { 519 - "hash": "sha256-1lrov28rU1K4QEiTuRqzaTLMzL+sZVsOLfgj3KNNJsw=", 519 + "hash": "sha256-FybWpnUBQCxY1XQNSCk4slUg6vF8XDW1uQwgF0a2PgQ=", 520 520 "homepage": "https://registry.terraform.io/providers/hashicorp/google-beta", 521 521 "owner": "hashicorp", 522 522 "repo": "terraform-provider-google-beta", 523 - "rev": "v6.25.0", 523 + "rev": "v6.26.0", 524 524 "spdx": "MPL-2.0", 525 - "vendorHash": "sha256-Vr6nFT+MDC8MNZU7zqH0aeQUCUIR338QYGGKPb1GSW0=" 525 + "vendorHash": "sha256-AQKukbsW+EYndMxUpUHIWPh3taaJINs6qY9xhkP/N54=" 526 526 }, 527 527 "googleworkspace": { 528 528 "hash": "sha256-dedYnsKHizxJZibuvJOMbJoux0W6zgKaK5fxIofKqCY=", ··· 615 615 "vendorHash": "sha256-GoOKTT+EOhaPhpbgSW3SycYsE8LEQP0v4eQfiTEnPy8=" 616 616 }, 617 617 "huaweicloud": { 618 - "hash": "sha256-TwL7b9BqoE5/pmdFgkdGBCZq3r9/ytl9NJHneA6MA/A=", 618 + "hash": "sha256-VSnjbjfE551IfZNsJh24pye3MaznTB1GQlmbM4IsJK4=", 619 619 "homepage": "https://registry.terraform.io/providers/huaweicloud/huaweicloud", 620 620 "owner": "huaweicloud", 621 621 "repo": "terraform-provider-huaweicloud", 622 - "rev": "v1.73.1", 622 + "rev": "v1.73.3", 623 623 "spdx": "MPL-2.0", 624 624 "vendorHash": null 625 625 }, ··· 813 813 "vendorHash": "sha256-QxbZv6YMa5/I4bTeQBNdmG3EKtLEmstnH7HMiZzFJrI=" 814 814 }, 815 815 "migadu": { 816 - "hash": "sha256-W7P3grg0ZZ9irmzFEODr1G8gXytA8Q1Q58ZX16xeVs0=", 816 + "hash": "sha256-80ke9CIl7kBUF3JRgydikXow2G3XhSVX8EZK7sd8xzA=", 817 817 "homepage": "https://registry.terraform.io/providers/metio/migadu", 818 818 "owner": "metio", 819 819 "repo": "terraform-provider-migadu", 820 - "rev": "2025.3.13", 820 + "rev": "2025.3.20", 821 821 "spdx": "0BSD", 822 - "vendorHash": "sha256-JBjydLqwSzsUKRNz8s0xg/JZWSajPkin6Fff9ymQRlA=" 822 + "vendorHash": "sha256-xORnddTfzbQ1ZwINLF2/Fwi/rJ1KyxPzBKfNkQKNg0w=" 823 823 }, 824 824 "minio": { 825 825 "hash": "sha256-OIdXZIy+W8yO3y7z/1JzG7QegJmMLTFSoC7FmioscmA=", ··· 1102 1102 "vendorHash": "sha256-lkooWo0DbpL4zjNQ20TRw+hsHXWZP9u7u95n1WyzTQk=" 1103 1103 }, 1104 1104 "rootly": { 1105 - "hash": "sha256-AMLBqOyyO3Wek6x5AjfeWQvpi/V3RSnqe6Qk1yidauY=", 1105 + "hash": "sha256-KAeTOvh67bEpLVV/9jr1GI78wTA3Wu6zl69GlLKkPaA=", 1106 1106 "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", 1107 1107 "owner": "rootlyhq", 1108 1108 "repo": "terraform-provider-rootly", 1109 - "rev": "v2.21.2", 1109 + "rev": "v2.24.2", 1110 1110 "spdx": "MPL-2.0", 1111 - "vendorHash": "sha256-7fo6JV2y/eEo2kcx7SyV6WdVcgDrC+Cj6CH8KwAokcE=" 1111 + "vendorHash": "sha256-iq/Skuegzn9bz7aF6COYeoXQpXmKDkvKJJ/fnJqyJFg=" 1112 1112 }, 1113 1113 "rundeck": { 1114 1114 "hash": "sha256-OyXIuQu0/NLPIZUzOdnTq2M5Qg6AwOdYG2WozWDmOoQ=", ··· 1463 1463 "vendorHash": "sha256-3RylkFRnCG5Z9G/4iV8YJgBnNKYS4T3AhA2JdI+1FEY=" 1464 1464 }, 1465 1465 "vultr": { 1466 - "hash": "sha256-vgeTK5fGHYzHCBdxq1JN9agK6+jYGkCkFnAWrkIz/gM=", 1466 + "hash": "sha256-yR8zNnkxzOa3h7W9nWGBk2zgVXIaD3imZSAJakJ3994=", 1467 1467 "homepage": "https://registry.terraform.io/providers/vultr/vultr", 1468 1468 "owner": "vultr", 1469 1469 "repo": "terraform-provider-vultr", 1470 - "rev": "v2.23.1", 1470 + "rev": "v2.25.0", 1471 1471 "spdx": "MPL-2.0", 1472 - "vendorHash": "sha256-UW9/XEG+yTgMEttWFRMeneni0i/ZEcsrniT5vbhtRf8=" 1472 + "vendorHash": "sha256-iHChyx/h7zyrL5/isZCpHQdAe8P1na187EF+na0TkpU=" 1473 1473 }, 1474 1474 "wavefront": { 1475 1475 "hash": "sha256-yNNtOkodzwxKvHQq9GZlUicezGW6u2ih6ry/cOtJQGM=",
+5 -2
pkgs/build-support/dotnet/fetchnuget/default.nix
··· 1 1 { 2 + lib, 2 3 fetchurl, 3 4 buildDotnetPackage, 4 5 unzip, ··· 14 15 ... 15 16 }: 16 17 if md5 != "" then 17 - throw "fetchnuget does not support md5 anymore, please use 'hash' attribute with SRI hash" 18 + throw "fetchnuget does not support md5 anymore, please use 'hash' attribute with SRI hash: ${ 19 + lib.generators.toPretty { } attrs 20 + }" 18 21 # This is also detected in fetchurl, but we just throw here to avoid confusion 19 22 else if (sha256 != "" && hash != "") then 20 - throw "multiple hashes passed to fetchNuGet" 23 + throw "multiple hashes passed to fetchNuGet: ${lib.generators.toPretty { } url}" 21 24 else 22 25 buildDotnetPackage ( 23 26 {
+14 -7
pkgs/build-support/fetchurl/default.nix
··· 119 119 120 120 # Additional packages needed as part of a fetch 121 121 nativeBuildInputs ? [ ], 122 - }: 122 + }@args: 123 123 124 124 let 125 125 urls_ = 126 126 if urls != [ ] && url == "" then 127 - (if lib.isList urls then urls else throw "`urls` is not a list") 127 + ( 128 + if lib.isList urls then urls else throw "`urls` is not a list: ${lib.generators.toPretty { } urls}" 129 + ) 128 130 else if urls == [ ] && url != "" then 129 - (if lib.isString url then [ url ] else throw "`url` is not a string") 131 + ( 132 + if lib.isString url then 133 + [ url ] 134 + else 135 + throw "`url` is not a string: ${lib.generators.toPretty { } urls}" 136 + ) 130 137 else 131 - throw "fetchurl requires either `url` or `urls` to be set"; 138 + throw "fetchurl requires either `url` or `urls` to be set: ${lib.generators.toPretty { } args}"; 132 139 133 140 hash_ = 134 141 if ··· 143 150 ] 144 151 ) > 1 145 152 then 146 - throw "multiple hashes passed to fetchurl" 153 + throw "multiple hashes passed to fetchurl: ${lib.generators.toPretty { } urls_}" 147 154 else 148 155 149 156 if hash != "" then ··· 155 162 if outputHashAlgo != "" then 156 163 { inherit outputHashAlgo outputHash; } 157 164 else 158 - throw "fetchurl was passed outputHash without outputHashAlgo" 165 + throw "fetchurl was passed outputHash without outputHashAlgo: ${lib.generators.toPretty { } urls_}" 159 166 else if sha512 != "" then 160 167 { 161 168 outputHashAlgo = "sha512"; ··· 177 184 outputHash = ""; 178 185 } 179 186 else 180 - throw "fetchurl requires a hash for fixed-output derivation: ${lib.concatStringsSep ", " urls_}"; 187 + throw "fetchurl requires a hash for fixed-output derivation: ${lib.generators.toPretty urls_}"; 181 188 in 182 189 183 190 assert
+3 -3
pkgs/by-name/an/ankama-launcher/package.nix
··· 5 5 }: 6 6 let 7 7 pname = "ankama-launcher"; 8 - version = "3.12.35"; 8 + version = "3.12.38"; 9 9 10 10 # The original URL for the launcher is: 11 11 # https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup-x86_64.AppImage 12 12 # As it does not encode the version, we use the wayback machine (web.archive.org) to get a fixed URL. 13 13 # To update the client, head to web.archive.org and create a new snapshot of the download page. 14 14 src = fetchurl { 15 - url = "https://web.archive.org/web/20250217184754/https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup-x86_64.AppImage"; 16 - hash = "sha256-/M5Wymahq0JWRgATRWoFoFFJ4qxu/cJvSqoz81/euug="; 15 + url = "https://web.archive.org/web/20250325223011/https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup-x86_64.AppImage"; 16 + hash = "sha256-psN7aJQ19s4dYI1s/o6mma32g9++wKZyINDpNo3/q+U="; 17 17 }; 18 18 19 19 appimageContents = appimageTools.extract { inherit pname version src; };
+54 -144
pkgs/by-name/az/azure-functions-core-tools/deps.json
··· 115 115 "hash": "sha256-B9EPqIB67GDwTeSR/XZ8/16JbXsqRodCgVG29GWMh8s=" 116 116 }, 117 117 { 118 - "pname": "DotNetZip", 119 - "version": "1.16.0", 120 - "hash": "sha256-RlzHkO7DxCvRkr+gpM8Abs34XbovmBTmXfO7LtnE75E=" 121 - }, 122 - { 123 118 "pname": "Dynamitey", 124 119 "version": "2.0.9.136", 125 120 "hash": "sha256-wRvKTW4WisziZmglLOqbUXVv9pPh9MmF7HS/hcoj7fM=" ··· 531 526 }, 532 527 { 533 528 "pname": "Microsoft.Azure.AppService.Middleware", 534 - "version": "1.5.4", 535 - "hash": "sha256-ZYgbg4BSmNgt++d5Gl8NAZsQ2DN4+s3WT5/JqKu1aiE=", 536 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware/1.5.4/microsoft.azure.appservice.middleware.1.5.4.nupkg" 529 + "version": "1.5.5", 530 + "hash": "sha256-bzmxhapBp4CbEvdcz4l0M7XpT2fVYJY+7MA2Y7vRFs0=", 531 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware/1.5.5/microsoft.azure.appservice.middleware.1.5.5.nupkg" 537 532 }, 538 533 { 539 534 "pname": "Microsoft.Azure.AppService.Middleware.Functions", 540 - "version": "1.5.4", 541 - "hash": "sha256-hzVAX+ehB112dlyJQZjPGFz6Snc8RMr8uTw0O8KmxZw=", 542 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware.functions/1.5.4/microsoft.azure.appservice.middleware.functions.1.5.4.nupkg" 535 + "version": "1.5.5", 536 + "hash": "sha256-cXpg7Z2ZpKd/mKjKLtchap2xWJHlAlL+5Oa5xtI5bIo=", 537 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware.functions/1.5.5/microsoft.azure.appservice.middleware.functions.1.5.5.nupkg" 543 538 }, 544 539 { 545 540 "pname": "Microsoft.Azure.AppService.Middleware.Modules", 546 - "version": "1.5.4", 547 - "hash": "sha256-bkhikrpCSJXvtzxMa/pBtSOSRAM1YocbkgPktmO7LZ4=", 548 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware.modules/1.5.4/microsoft.azure.appservice.middleware.modules.1.5.4.nupkg" 541 + "version": "1.5.5", 542 + "hash": "sha256-qswmhpHYanxIC/1Ox5NeZUqyKR9hkEPY77XN1M4ar7o=", 543 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware.modules/1.5.5/microsoft.azure.appservice.middleware.modules.1.5.5.nupkg" 549 544 }, 550 545 { 551 546 "pname": "Microsoft.Azure.AppService.Middleware.NetCore", 552 - "version": "1.5.4", 553 - "hash": "sha256-mx2JdJh7f4yqB/PVQtg/TddZwhwB1coghYscFPGxt0w=", 554 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware.netcore/1.5.4/microsoft.azure.appservice.middleware.netcore.1.5.4.nupkg" 547 + "version": "1.5.5", 548 + "hash": "sha256-B6W76F4cw5mSHQmn6/+6Q3OSu7ehvA1CyARPEjkn8/w=", 549 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/21e57804-e42a-44f4-a801-493faaf56251/nuget/v3/flat2/microsoft.azure.appservice.middleware.netcore/1.5.5/microsoft.azure.appservice.middleware.netcore.1.5.5.nupkg" 555 550 }, 556 551 { 557 552 "pname": "Microsoft.Azure.AppService.Proxy.Client", ··· 572 567 "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.appservice.proxy.runtime/2.3.20240307.67/microsoft.azure.appservice.proxy.runtime.2.3.20240307.67.nupkg" 573 568 }, 574 569 { 575 - "pname": "Microsoft.Azure.Cosmos.Table", 576 - "version": "1.0.8", 577 - "hash": "sha256-6atLchLTOfj4x9UqJ/antTd1GBiSiQWCyLiRqH8HqfQ=" 578 - }, 579 - { 580 - "pname": "Microsoft.Azure.DocumentDB.Core", 581 - "version": "2.11.2", 582 - "hash": "sha256-6f3oLbUwy30+IekcY6G61On61XmfCmN4n32LV5jTkz8=" 583 - }, 584 - { 585 570 "pname": "Microsoft.Azure.DurableTask.AzureStorage.Internal", 586 571 "version": "1.4.0", 587 572 "hash": "sha256-bO+9aoYNL0W7flyAuZBpEBeiaFnhvoXJseBTTcM8Hl8=", ··· 601 586 }, 602 587 { 603 588 "pname": "Microsoft.Azure.Functions.JavaWorker", 604 - "version": "2.16.0", 605 - "hash": "sha256-nfRIOt1nLZq+nEDQBig+aXqtgwI7vq+c/9Ez5OygK3M=", 606 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.functions.javaworker/2.16.0/microsoft.azure.functions.javaworker.2.16.0.nupkg" 589 + "version": "2.17.0", 590 + "hash": "sha256-O+3f7Tbv+uGQB328wG6jeTDSnCs0m7z4T9qV9hCT1mI=", 591 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.functions.javaworker/2.17.0/microsoft.azure.functions.javaworker.2.17.0.nupkg" 607 592 }, 608 593 { 609 594 "pname": "Microsoft.Azure.Functions.NodeJsWorker", 610 - "version": "3.10.0", 611 - "hash": "sha256-XBofh2a5Z4imx1XADJxvjI0tidNLsaVT1Q1NMPpuvPo=", 612 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/f37f760c-aebd-443e-9714-ce725cd427df/nuget/v3/flat2/microsoft.azure.functions.nodejsworker/3.10.0/microsoft.azure.functions.nodejsworker.3.10.0.nupkg" 595 + "version": "3.10.1", 596 + "hash": "sha256-/+Yu4T38FyHl1j0KFjG79w8jIrTlUJR9qOQ1FMxifuc=", 597 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.functions.nodejsworker/3.10.1/microsoft.azure.functions.nodejsworker.3.10.1.nupkg" 613 598 }, 614 599 { 615 600 "pname": "Microsoft.Azure.Functions.PowerShellWorker.PS7.0", ··· 619 604 }, 620 605 { 621 606 "pname": "Microsoft.Azure.Functions.PowerShellWorker.PS7.2", 622 - "version": "4.0.4020", 623 - "hash": "sha256-D5YYQwmEH4PATCueiUHHCLY0SFwk0v2vky7kPX45ack=", 624 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/c0493cce-bc63-4e11-9fc9-e7c45291f151/nuget/v3/flat2/microsoft.azure.functions.powershellworker.ps7.2/4.0.4020/microsoft.azure.functions.powershellworker.ps7.2.4.0.4020.nupkg" 607 + "version": "4.0.4025", 608 + "hash": "sha256-v0PoFYJvWcNQrZRe/bKi6u2kJ5Q3BGL4PSkxRisbONg=", 609 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/c0493cce-bc63-4e11-9fc9-e7c45291f151/nuget/v3/flat2/microsoft.azure.functions.powershellworker.ps7.2/4.0.4025/microsoft.azure.functions.powershellworker.ps7.2.4.0.4025.nupkg" 625 610 }, 626 611 { 627 612 "pname": "Microsoft.Azure.Functions.PowerShellWorker.PS7.4", 628 - "version": "4.0.4021", 629 - "hash": "sha256-GEfIXMuPDiX+3Rz7dbOJN21tkqxKA2r14vh5FiRbzmg=", 630 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/c0493cce-bc63-4e11-9fc9-e7c45291f151/nuget/v3/flat2/microsoft.azure.functions.powershellworker.ps7.4/4.0.4021/microsoft.azure.functions.powershellworker.ps7.4.4.0.4021.nupkg" 613 + "version": "4.0.4026", 614 + "hash": "sha256-57lIzJjvaeWk2XQe3tcW2oN9jk5kNyc4Ad6zsdqyx2k=", 615 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/c0493cce-bc63-4e11-9fc9-e7c45291f151/nuget/v3/flat2/microsoft.azure.functions.powershellworker.ps7.4/4.0.4026/microsoft.azure.functions.powershellworker.ps7.4.4.0.4026.nupkg" 631 616 }, 632 617 { 633 618 "pname": "Microsoft.Azure.Functions.PythonWorker", 634 - "version": "4.31.0", 635 - "hash": "sha256-HZuEKcZ9WRaMCfEcDl7KUkj5K7N9crSfDf7gd327qJk=", 636 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.functions.pythonworker/4.31.0/microsoft.azure.functions.pythonworker.4.31.0.nupkg" 619 + "version": "4.34.0", 620 + "hash": "sha256-cYtmcb5HJVy5PAmPMFUMginufoSqrtOZp1jvvkLfno0=", 621 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.functions.pythonworker/4.34.0/microsoft.azure.functions.pythonworker.4.34.0.nupkg" 637 622 }, 638 623 { 639 624 "pname": "Microsoft.Azure.KeyVault.Core", ··· 662 647 }, 663 648 { 664 649 "pname": "Microsoft.Azure.WebJobs.Extensions", 665 - "version": "5.0.0-beta.2-10879", 666 - "hash": "sha256-IXIS6dRLNPtsR2E4riGYs4PkfjRU84D42Lf0Q/rm6ic=", 667 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.webjobs.extensions/5.0.0-beta.2-10879/microsoft.azure.webjobs.extensions.5.0.0-beta.2-10879.nupkg" 650 + "version": "5.1.0-12067", 651 + "hash": "sha256-SHWuNbS286bi5KHBCHTNkfr6VHDJVxVZxswvy+bUudo=", 652 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/f37f760c-aebd-443e-9714-ce725cd427df/nuget/v3/flat2/microsoft.azure.webjobs.extensions/5.1.0-12067/microsoft.azure.webjobs.extensions.5.1.0-12067.nupkg" 668 653 }, 669 654 { 670 655 "pname": "Microsoft.Azure.WebJobs.Extensions.Http", ··· 683 668 }, 684 669 { 685 670 "pname": "Microsoft.Azure.WebJobs.Logging.ApplicationInsights", 686 - "version": "3.0.41-11331", 687 - "hash": "sha256-0IXplKkTfCSx5y5Sih815wOkx06RAPLDp/Vm2tVP45A=", 688 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.webjobs.logging.applicationinsights/3.0.41-11331/microsoft.azure.webjobs.logging.applicationinsights.3.0.41-11331.nupkg" 671 + "version": "3.0.42-12121", 672 + "hash": "sha256-LHQL+cdP95W4l3jkPNIAIIqfWIDk9rEtvh71ZrosToc=", 673 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.webjobs.logging.applicationinsights/3.0.42-12121/microsoft.azure.webjobs.logging.applicationinsights.3.0.42-12121.nupkg" 689 674 }, 690 675 { 691 676 "pname": "Microsoft.Azure.WebJobs.Rpc.Core", ··· 694 679 }, 695 680 { 696 681 "pname": "Microsoft.Azure.WebJobs.Script", 697 - "version": "4.1036.1", 698 - "hash": "sha256-q3EQ8Jw/LCKzNGZOFj9bBsg791eN5iaVjIT9LAkVQzs=", 699 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.webjobs.script/4.1036.1/microsoft.azure.webjobs.script.4.1036.1.nupkg" 682 + "version": "4.1037.0", 683 + "hash": "sha256-HNKDU6O4INgifgN/MokvxlsuNLJAebASr61RjFFE4W8=", 684 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.webjobs.script/4.1037.0/microsoft.azure.webjobs.script.4.1037.0.nupkg" 700 685 }, 701 686 { 702 687 "pname": "Microsoft.Azure.WebJobs.Script.Abstractions", ··· 705 690 }, 706 691 { 707 692 "pname": "Microsoft.Azure.WebJobs.Script.Grpc", 708 - "version": "4.1036.1", 709 - "hash": "sha256-uuzciGpeQ+gBGPWNZ3dHZAVzz7+ujZ5BVwJmhCb3J5Q=", 710 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.webjobs.script.grpc/4.1036.1/microsoft.azure.webjobs.script.grpc.4.1036.1.nupkg" 693 + "version": "4.1037.0", 694 + "hash": "sha256-henND212VH9Pdd0vOtWBpOhGj0IAMqMsvp10k8VcwC4=", 695 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.webjobs.script.grpc/4.1037.0/microsoft.azure.webjobs.script.grpc.4.1037.0.nupkg" 711 696 }, 712 697 { 713 698 "pname": "Microsoft.Azure.WebJobs.Script.WebHost", 714 - "version": "4.1036.1", 715 - "hash": "sha256-AsunMKc9rbGnEMaqkv6Lhffx8G6Owngd3pEobQNYcaA=", 716 - "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.webjobs.script.webhost/4.1036.1/microsoft.azure.webjobs.script.webhost.4.1036.1.nupkg" 699 + "version": "4.1037.0", 700 + "hash": "sha256-sGMbBMtYZiaWfa7CUin9ljMMHrwFp7BxrygcAqJ6RrE=", 701 + "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/eb652719-f36a-4e78-8541-e13a3cd655f9/nuget/v3/flat2/microsoft.azure.webjobs.script.webhost/4.1037.0/microsoft.azure.webjobs.script.webhost.4.1037.0.nupkg" 717 702 }, 718 703 { 719 704 "pname": "Microsoft.Azure.WebSites.DataProtection", ··· 1488 1473 }, 1489 1474 { 1490 1475 "pname": "Microsoft.NETCore.Platforms", 1491 - "version": "3.1.1", 1492 - "hash": "sha256-ByV7aEFjGR4L4Tudg4KaJ96lnzr7RhOxzWGE0p5XFRY=" 1493 - }, 1494 - { 1495 - "pname": "Microsoft.NETCore.Platforms", 1496 1476 "version": "5.0.0", 1497 1477 "hash": "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=" 1498 1478 }, ··· 1512 1492 "hash": "sha256-WLsf1NuUfRWyr7C7Rl9jiua9jximnVvzy6nk2D2bVRc=" 1513 1493 }, 1514 1494 { 1515 - "pname": "Microsoft.OData.Core", 1516 - "version": "7.6.4", 1517 - "hash": "sha256-Cu/WKc4bNpLwED8MWzFpGW5vtBeC96A7p5qg3H/SBdU=" 1518 - }, 1519 - { 1520 - "pname": "Microsoft.OData.Edm", 1521 - "version": "7.6.4", 1522 - "hash": "sha256-cIAhJEVBSHEtzBwm4mtATXaNwvwVFe9EMNLfaWXs7MQ=" 1523 - }, 1524 - { 1525 1495 "pname": "Microsoft.Security.Utilities", 1526 1496 "version": "1.3.0", 1527 1497 "hash": "sha256-9nJA7a43OhJKCzFJPYfTJHL0JmVxVkNsYPexln8pFKE=" 1528 - }, 1529 - { 1530 - "pname": "Microsoft.Spatial", 1531 - "version": "7.6.4", 1532 - "hash": "sha256-7bP5xlUhmEiwcDIhgeK5g3Udpe577+QoiRARzdEdIOI=" 1533 1498 }, 1534 1499 { 1535 1500 "pname": "Microsoft.TestPlatform.ObjectModel", ··· 1598 1563 }, 1599 1564 { 1600 1565 "pname": "NCrontab.Signed", 1601 - "version": "3.3.2", 1602 - "hash": "sha256-StDm4YjHJVbw58pdNEbJX0FXtezT3626inqv+xbLVOY=" 1566 + "version": "3.3.3", 1567 + "hash": "sha256-Pcl/KroyCa+2UjkUAmjAyucRxpYYR6WvftYee4vWjDc=" 1603 1568 }, 1604 1569 { 1605 1570 "pname": "NETStandard.Library", ··· 1907 1872 "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 1908 1873 }, 1909 1874 { 1910 - "pname": "runtime.native.System.Net.Security", 1911 - "version": "4.3.0", 1912 - "hash": "sha256-I8vYld/7WtU2/rrD4XfSRgpO/DY3qXghG14VQjiU2DY=" 1913 - }, 1914 - { 1915 1875 "pname": "runtime.native.System.Security.Cryptography", 1916 1876 "version": "4.0.0", 1917 1877 "hash": "sha256-6Q8eYzC32BbGIiTHoQaE6B3cD81vYQcH5SCswYRSp0w=" ··· 2115 2075 "pname": "System.Collections.Immutable", 2116 2076 "version": "1.2.0", 2117 2077 "hash": "sha256-FQ3l+ulbLSPhQ0JcQCC4D4SzjTnHsRqcOj56Ywy7pMo=" 2118 - }, 2119 - { 2120 - "pname": "System.Collections.Immutable", 2121 - "version": "1.3.0", 2122 - "hash": "sha256-+AZvBzjAakdRHBOk4zRV6RTU7JV7p7K9XKMXpGIq1bs=" 2123 2078 }, 2124 2079 { 2125 2080 "pname": "System.Collections.Immutable", ··· 2498 2453 }, 2499 2454 { 2500 2455 "pname": "System.Linq.Queryable", 2501 - "version": "4.0.1", 2502 - "hash": "sha256-XOFRO+lyoxsWtIUJfg5JCqv9Gx35ASOc94WIR8ZMVoY=" 2503 - }, 2504 - { 2505 - "pname": "System.Linq.Queryable", 2506 2456 "version": "4.3.0", 2507 2457 "hash": "sha256-EioRexhnpSoIa96Un0syFO9CP6l1jNaXYhp5LlnaLW4=" 2508 2458 }, ··· 2542 2492 "hash": "sha256-83/bxn3vyv17dQDDqH1L3yDpluhOxIS5XR27f4OnCEo=" 2543 2493 }, 2544 2494 { 2495 + "pname": "System.Memory.Data", 2496 + "version": "8.0.1", 2497 + "hash": "sha256-cxYZL0Trr6RBplKmECv94ORuyjrOM6JB0D/EwmBSisg=" 2498 + }, 2499 + { 2545 2500 "pname": "System.Net.Http", 2546 2501 "version": "4.1.0", 2547 2502 "hash": "sha256-y6PnGuObJvOkhl9CXNFJQcV3SXuEz5yRLOCxGGTEucQ=" ··· 2562 2517 "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 2563 2518 }, 2564 2519 { 2565 - "pname": "System.Net.NetworkInformation", 2566 - "version": "4.1.0", 2567 - "hash": "sha256-ol0t/cBCp7hdpIDf6zoY3R5lb5X+jM3SNwcrkP1DKp4=" 2568 - }, 2569 - { 2570 2520 "pname": "System.Net.Primitives", 2571 2521 "version": "4.0.11", 2572 2522 "hash": "sha256-2YSijNhCdw/ZU2yfH7vE+ReA8pgxRCXPnWr+ab36v4M=" ··· 2577 2527 "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 2578 2528 }, 2579 2529 { 2580 - "pname": "System.Net.Requests", 2581 - "version": "4.0.11", 2582 - "hash": "sha256-MLXxaUhHQC3pId/6r4q0EF37CIExt0+4Na8ZpUtRs44=" 2583 - }, 2584 - { 2585 - "pname": "System.Net.Security", 2586 - "version": "4.3.2", 2587 - "hash": "sha256-CAuJ0uLmDKRqbG42rBhHjHcKelYTE5gpjRlrvYNigas=" 2588 - }, 2589 - { 2590 2530 "pname": "System.Net.Sockets", 2591 2531 "version": "4.1.0", 2592 2532 "hash": "sha256-muK7oXIX7ykqhXskuUt0KX6Hzg5VogJhUS0JiOB2BY0=" ··· 2595 2535 "pname": "System.Net.Sockets", 2596 2536 "version": "4.3.0", 2597 2537 "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 2598 - }, 2599 - { 2600 - "pname": "System.Net.WebHeaderCollection", 2601 - "version": "4.0.1", 2602 - "hash": "sha256-uJSV6kmL+V/9/ot1LhHXGCd8Ndcu6zk+AJ8wgGS/fYE=" 2603 2538 }, 2604 2539 { 2605 2540 "pname": "System.Numerics.Vectors", ··· 2903 2838 }, 2904 2839 { 2905 2840 "pname": "System.Security.Claims", 2906 - "version": "4.0.1", 2907 - "hash": "sha256-xqI0HHahNAd9g3jqgnLKH4P/pIueef6cy3qvRDQFvA0=" 2908 - }, 2909 - { 2910 - "pname": "System.Security.Claims", 2911 2841 "version": "4.3.0", 2912 2842 "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 2913 2843 }, ··· 3063 2993 }, 3064 2994 { 3065 2995 "pname": "System.Security.Principal", 3066 - "version": "4.0.1", 3067 - "hash": "sha256-9wBgPnJfFOtrhKZ7wDXZ4q12GklQ49Ka02/9v7Frf9k=" 3068 - }, 3069 - { 3070 - "pname": "System.Security.Principal", 3071 2996 "version": "4.3.0", 3072 2997 "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 3073 2998 }, 3074 2999 { 3075 3000 "pname": "System.Security.Principal.Windows", 3076 - "version": "4.0.0", 3077 - "hash": "sha256-38wEUCB889Mpm4WgRFEQBB+4HtE0X0wu+knrDyJie7Q=" 3078 - }, 3079 - { 3080 - "pname": "System.Security.Principal.Windows", 3081 3001 "version": "4.3.0", 3082 3002 "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 3083 3003 }, ··· 3097 3017 "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 3098 3018 }, 3099 3019 { 3100 - "pname": "System.Security.SecureString", 3101 - "version": "4.0.0", 3102 - "hash": "sha256-XxZUSqSe/oiXzyXsQX6+kgJ8mLRwa/J1fLCgYogr2Ag=" 3103 - }, 3104 - { 3105 3020 "pname": "System.Text.Encoding", 3106 3021 "version": "4.0.11", 3107 3022 "hash": "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=" ··· 3127 3042 "hash": "sha256-PIhkv59IXjyiuefdhKxS9hQfEwO9YWRuNudpo53HQfw=" 3128 3043 }, 3129 3044 { 3130 - "pname": "System.Text.Encoding.CodePages", 3131 - "version": "4.7.1", 3132 - "hash": "sha256-OUA8ttAKGgqD5KUwtnO2OewBF/tJI0nO3YcunK5qMPg=" 3133 - }, 3134 - { 3135 3045 "pname": "System.Text.Encoding.Extensions", 3136 3046 "version": "4.0.11", 3137 3047 "hash": "sha256-+kf7J3dEhgCbnCM5vHYlsTm5/R/Ud0Jr6elpHm922iI=" ··· 3155 3065 "pname": "System.Text.Encodings.Web", 3156 3066 "version": "6.0.0", 3157 3067 "hash": "sha256-UemDHGFoQIG7ObQwRluhVf6AgtQikfHEoPLC6gbFyRo=" 3068 + }, 3069 + { 3070 + "pname": "System.Text.Encodings.Web", 3071 + "version": "8.0.0", 3072 + "hash": "sha256-IUQkQkV9po1LC0QsqrilqwNzPvnc+4eVvq+hCvq8fvE=" 3158 3073 }, 3159 3074 { 3160 3075 "pname": "System.Text.Json", ··· 3195 3110 "pname": "System.Threading.Channels", 3196 3111 "version": "8.0.0", 3197 3112 "hash": "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg=" 3198 - }, 3199 - { 3200 - "pname": "System.Threading.Overlapped", 3201 - "version": "4.0.1", 3202 - "hash": "sha256-CAWZlavcuBQHs+kaSX9CmkpHF7wC8rFrug3XPb5KJzo=" 3203 3113 }, 3204 3114 { 3205 3115 "pname": "System.Threading.Tasks",
+2 -2
pkgs/by-name/az/azure-functions-core-tools/package.nix
··· 8 8 versionCheckHook, 9 9 }: 10 10 let 11 - version = "4.0.6610"; 11 + version = "4.0.7030"; 12 12 src = fetchFromGitHub { 13 13 owner = "Azure"; 14 14 repo = "azure-functions-core-tools"; 15 15 tag = version; 16 - hash = "sha256-tUNiyvIjaIrdo6377IdXND7YgIk9zKkazDHV4kiWYa8="; 16 + hash = "sha256-ibbXUg2VHN2yJk6qwLwDbxcO0XArFFb7XMUCfKH0Tkw="; 17 17 }; 18 18 gozip = buildGoModule { 19 19 pname = "gozip";
+2 -2
pkgs/by-name/bd/bdf2sfd/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "bdf2sfd"; 10 - version = "1.1.8"; 10 + version = "1.1.9"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "fcambus"; 14 14 repo = "bdf2sfd"; 15 15 rev = version; 16 - sha256 = "sha256-+CPULpy3mqZv0QaXS4kKYWKjifibtcQt7unKGOUTSV0="; 16 + sha256 = "sha256-L1fIPZdVP4px73VbnEA6sb28WrmsNUJ2tqLeGPpwDbA="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/by-name/bu/buildkit/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "buildkit"; 5 - version = "0.20.1"; 5 + version = "0.20.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "moby"; 9 9 repo = "buildkit"; 10 10 rev = "v${version}"; 11 - hash = "sha256-+zDS4MMGgVVygJdO5Wyl8MJN4U0fMdf8qy3yzvMlahU="; 11 + hash = "sha256-2zLXkiouPLmjxveoggsr+WUmdcZEN+FzeiVR1Dk6EA8="; 12 12 }; 13 13 14 14 vendorHash = null;
+2 -2
pkgs/by-name/ca/cables/package.nix
··· 7 7 8 8 let 9 9 pname = "cables"; 10 - version = "0.5.9"; 10 + version = "0.5.10"; 11 11 name = "${pname}-${version}"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/cables-gl/cables_electron/releases/download/v${version}/cables-${version}-linux-x64.AppImage"; 15 - sha256 = "sha256-WNWjD2z8u/dVAY21ver7hSmUgm9gTcN2kvOcwG1nX3I="; 15 + sha256 = "sha256-FwjmqCIoo1RG+57Y1fnAAWRtOAj4ILQb0pJMESxkiwo="; 16 16 }; 17 17 18 18 appimageContents = appimageTools.extract {
+2 -2
pkgs/by-name/ch/checkov/package.nix
··· 25 25 26 26 python3.pkgs.buildPythonApplication rec { 27 27 pname = "checkov"; 28 - version = "3.2.390"; 28 + version = "3.2.392"; 29 29 pyproject = true; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "bridgecrewio"; 33 33 repo = "checkov"; 34 34 tag = version; 35 - hash = "sha256-sti0ufgNCsEDef4BcINJ58l25BT4xpGcpU/gGUbe5yw="; 35 + hash = "sha256-qCvDVfIhv01S2PV0eXijaVDqQCzRUJAH97gPg6rwjlg="; 36 36 }; 37 37 38 38 pythonRelaxDeps = [
+3 -3
pkgs/by-name/ci/circleci-cli/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "circleci-cli"; 10 - version = "0.1.31425"; 10 + version = "0.1.31543"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "CircleCI-Public"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-UrJnUkzlmQMUJqiKC7OqfKC2X5cnWj3Ns42YUdbYc3E="; 16 + sha256 = "sha256-0hikYA7oU3tTHZdEcxDzMXCg13+muk6V7MyqJwExm0A="; 17 17 }; 18 18 19 - vendorHash = "sha256-kK5q9hZg4N8LFfaA7PhAxBepH1Wor3xRoy/d3YPGrmI="; 19 + vendorHash = "sha256-H7q373HL6M6ETkXEY5tAwN32rx0eMkqRAAZ4kQf9rKk="; 20 20 21 21 nativeBuildInputs = [ installShellFiles ]; 22 22
+3 -3
pkgs/by-name/cl/clickhouse-backup/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "clickhouse-backup"; 11 - version = "2.6.6"; 11 + version = "2.6.9"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Altinity"; 15 15 repo = "clickhouse-backup"; 16 16 rev = "v${version}"; 17 - hash = "sha256-kWJpySeyeEje7tntnImT7UpOgQMsrfVxIvQ+2/uB6Ko="; 17 + hash = "sha256-zGyrPFLt+lKeTJ46qqTTr3MllA4q2bml3zFISQ+HEa0="; 18 18 }; 19 19 20 - vendorHash = "sha256-HB9BntvoUNrw23m4T+9p65aWUvQNpz3+ff1ydVqNfQM="; 20 + vendorHash = "sha256-4qPZihOuaD8lKF31fhyTDG7gBa0gExLVavazGZWDyAk="; 21 21 22 22 ldflags = [ 23 23 "-X main.version=${version}"
+3 -3
pkgs/by-name/cl/clojure-lsp/package.nix
··· 10 10 11 11 buildGraalvmNativeImage rec { 12 12 pname = "clojure-lsp"; 13 - version = "2025.02.07-16.11.24"; 13 + version = "2025.03.07-17.42.36"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "clojure-lsp"; 17 17 repo = "clojure-lsp"; 18 18 rev = version; 19 - hash = "sha256-QGYcLqhQ/5vtrJKIl3au24cYcXILjiY13uRa+8K62fM="; 19 + hash = "sha256-3CKY3t2NWGAQNWYhmyiq3IJDMp81Q0LDCrS23XJeIys="; 20 20 }; 21 21 22 22 jar = fetchurl { 23 23 url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/clojure-lsp-standalone.jar"; 24 - hash = "sha256-6Qe2uPgIZ+E+GRjKGyivGHv08ZbzaOIdKeW0bnJP0Gk="; 24 + hash = "sha256-ZxUSIHUTJW2TtRZiESKAnuBOS7s2UwzqpTTgAxjkR7Q="; 25 25 }; 26 26 27 27 extraNativeImageBuildArgs = [
+3 -3
pkgs/by-name/co/comrak/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "comrak"; 9 - version = "0.36.0"; 9 + version = "0.37.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kivikakk"; 13 13 repo = "comrak"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-sT83t7YavXzUXaE9vSeg9AbLHl6Bq2BAZpEoClLRcmY="; 15 + sha256 = "sha256-LnsYGRsQvKUIYTgeN3Z9BKga8hHmrHSA/ucH9dNDYPI="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-7fu2kZJ//Ysa5vUvn0wxNLmBsL5+++RRty0HTpHejws="; 19 + cargoHash = "sha256-YyOJr/Y7Q2yJ21u+wyYeDe9SDmFuKlPVRol3IclOOQU="; 20 20 21 21 meta = with lib; { 22 22 description = "CommonMark-compatible GitHub Flavored Markdown parser and formatter";
-4128
pkgs/by-name/co/coppwr/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 = "ab_glyph" 7 - version = "0.2.29" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "ec3672c180e71eeaaac3a541fbbc5f5ad4def8b747c595ad30d674e43049f7b0" 10 - dependencies = [ 11 - "ab_glyph_rasterizer", 12 - "owned_ttf_parser", 13 - ] 14 - 15 - [[package]] 16 - name = "ab_glyph_rasterizer" 17 - version = "0.1.8" 18 - source = "registry+https://github.com/rust-lang/crates.io-index" 19 - checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046" 20 - 21 - [[package]] 22 - name = "accesskit" 23 - version = "0.16.3" 24 - source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "99b76d84ee70e30a4a7e39ab9018e2b17a6a09e31084176cc7c0b2dec036ba45" 26 - dependencies = [ 27 - "enumn", 28 - "serde", 29 - ] 30 - 31 - [[package]] 32 - name = "accesskit_atspi_common" 33 - version = "0.9.3" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "f5393c75d4666f580f4cac0a968bc97c36076bb536a129f28210dac54ee127ed" 36 - dependencies = [ 37 - "accesskit", 38 - "accesskit_consumer", 39 - "atspi-common", 40 - "serde", 41 - "thiserror", 42 - "zvariant", 43 - ] 44 - 45 - [[package]] 46 - name = "accesskit_consumer" 47 - version = "0.24.3" 48 - source = "registry+https://github.com/rust-lang/crates.io-index" 49 - checksum = "7a12dc159d52233c43d9fe5415969433cbdd52c3d6e0df51bda7d447427b9986" 50 - dependencies = [ 51 - "accesskit", 52 - "immutable-chunkmap", 53 - ] 54 - 55 - [[package]] 56 - name = "accesskit_macos" 57 - version = "0.17.4" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "bfc6c1ecd82053d127961ad80a8beaa6004fb851a3a5b96506d7a6bd462403f6" 60 - dependencies = [ 61 - "accesskit", 62 - "accesskit_consumer", 63 - "objc2", 64 - "objc2-app-kit", 65 - "objc2-foundation", 66 - "once_cell", 67 - ] 68 - 69 - [[package]] 70 - name = "accesskit_unix" 71 - version = "0.12.3" 72 - source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "be7f5cf6165be10a54b2655fa2e0e12b2509f38ed6fc43e11c31fdb7ee6230bb" 74 - dependencies = [ 75 - "accesskit", 76 - "accesskit_atspi_common", 77 - "async-channel", 78 - "async-executor", 79 - "async-task", 80 - "atspi", 81 - "futures-lite", 82 - "futures-util", 83 - "serde", 84 - "zbus", 85 - ] 86 - 87 - [[package]] 88 - name = "accesskit_windows" 89 - version = "0.23.2" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "974e96c347384d9133427167fb8a58c340cb0496988dacceebdc1ed27071023b" 92 - dependencies = [ 93 - "accesskit", 94 - "accesskit_consumer", 95 - "paste", 96 - "static_assertions", 97 - "windows 0.58.0", 98 - "windows-core 0.58.0", 99 - ] 100 - 101 - [[package]] 102 - name = "accesskit_winit" 103 - version = "0.22.4" 104 - source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "aea3522719f1c44564d03e9469a8e2f3a98b3a8a880bd66d0789c6b9c4a669dd" 106 - dependencies = [ 107 - "accesskit", 108 - "accesskit_macos", 109 - "accesskit_unix", 110 - "accesskit_windows", 111 - "raw-window-handle", 112 - "winit", 113 - ] 114 - 115 - [[package]] 116 - name = "adler2" 117 - version = "2.0.0" 118 - source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 120 - 121 - [[package]] 122 - name = "ahash" 123 - version = "0.8.11" 124 - source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 126 - dependencies = [ 127 - "cfg-if", 128 - "getrandom", 129 - "once_cell", 130 - "serde", 131 - "version_check", 132 - "zerocopy", 133 - ] 134 - 135 - [[package]] 136 - name = "aho-corasick" 137 - version = "1.1.3" 138 - source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 140 - dependencies = [ 141 - "memchr", 142 - ] 143 - 144 - [[package]] 145 - name = "allocator-api2" 146 - version = "0.2.18" 147 - source = "registry+https://github.com/rust-lang/crates.io-index" 148 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 149 - 150 - [[package]] 151 - name = "android-activity" 152 - version = "0.6.0" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046" 155 - dependencies = [ 156 - "android-properties", 157 - "bitflags 2.6.0", 158 - "cc", 159 - "cesu8", 160 - "jni", 161 - "jni-sys", 162 - "libc", 163 - "log", 164 - "ndk", 165 - "ndk-context", 166 - "ndk-sys 0.6.0+11769913", 167 - "num_enum", 168 - "thiserror", 169 - ] 170 - 171 - [[package]] 172 - name = "android-properties" 173 - version = "0.2.2" 174 - source = "registry+https://github.com/rust-lang/crates.io-index" 175 - checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" 176 - 177 - [[package]] 178 - name = "android_system_properties" 179 - version = "0.1.5" 180 - source = "registry+https://github.com/rust-lang/crates.io-index" 181 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 182 - dependencies = [ 183 - "libc", 184 - ] 185 - 186 - [[package]] 187 - name = "annotate-snippets" 188 - version = "0.9.2" 189 - source = "registry+https://github.com/rust-lang/crates.io-index" 190 - checksum = "ccaf7e9dfbb6ab22c82e473cd1a8a7bd313c19a5b7e40970f3d89ef5a5c9e81e" 191 - dependencies = [ 192 - "unicode-width", 193 - "yansi-term", 194 - ] 195 - 196 - [[package]] 197 - name = "anyhow" 198 - version = "1.0.90" 199 - source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" 201 - 202 - [[package]] 203 - name = "arboard" 204 - version = "3.4.1" 205 - source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "df099ccb16cd014ff054ac1bf392c67feeef57164b05c42f037cd40f5d4357f4" 207 - dependencies = [ 208 - "clipboard-win", 209 - "log", 210 - "objc2", 211 - "objc2-app-kit", 212 - "objc2-foundation", 213 - "parking_lot", 214 - "x11rb", 215 - ] 216 - 217 - [[package]] 218 - name = "arrayref" 219 - version = "0.3.9" 220 - source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 222 - 223 - [[package]] 224 - name = "arrayvec" 225 - version = "0.7.6" 226 - source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 228 - 229 - [[package]] 230 - name = "as-raw-xcb-connection" 231 - version = "1.0.1" 232 - source = "registry+https://github.com/rust-lang/crates.io-index" 233 - checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" 234 - 235 - [[package]] 236 - name = "ash" 237 - version = "0.38.0+1.3.281" 238 - source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f" 240 - dependencies = [ 241 - "libloading", 242 - ] 243 - 244 - [[package]] 245 - name = "ashpd" 246 - version = "0.9.2" 247 - source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "4d43c03d9e36dd40cab48435be0b09646da362c278223ca535493877b2c1dee9" 249 - dependencies = [ 250 - "async-fs", 251 - "async-net", 252 - "enumflags2", 253 - "futures-channel", 254 - "futures-util", 255 - "rand", 256 - "serde", 257 - "serde_repr", 258 - "url", 259 - "zbus", 260 - ] 261 - 262 - [[package]] 263 - name = "async-broadcast" 264 - version = "0.7.1" 265 - source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" 267 - dependencies = [ 268 - "event-listener", 269 - "event-listener-strategy", 270 - "futures-core", 271 - "pin-project-lite", 272 - ] 273 - 274 - [[package]] 275 - name = "async-channel" 276 - version = "2.3.1" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 279 - dependencies = [ 280 - "concurrent-queue", 281 - "event-listener-strategy", 282 - "futures-core", 283 - "pin-project-lite", 284 - ] 285 - 286 - [[package]] 287 - name = "async-executor" 288 - version = "1.13.1" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 291 - dependencies = [ 292 - "async-task", 293 - "concurrent-queue", 294 - "fastrand", 295 - "futures-lite", 296 - "slab", 297 - ] 298 - 299 - [[package]] 300 - name = "async-fs" 301 - version = "2.1.2" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" 304 - dependencies = [ 305 - "async-lock", 306 - "blocking", 307 - "futures-lite", 308 - ] 309 - 310 - [[package]] 311 - name = "async-io" 312 - version = "2.3.4" 313 - source = "registry+https://github.com/rust-lang/crates.io-index" 314 - checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" 315 - dependencies = [ 316 - "async-lock", 317 - "cfg-if", 318 - "concurrent-queue", 319 - "futures-io", 320 - "futures-lite", 321 - "parking", 322 - "polling", 323 - "rustix", 324 - "slab", 325 - "tracing", 326 - "windows-sys 0.59.0", 327 - ] 328 - 329 - [[package]] 330 - name = "async-lock" 331 - version = "3.4.0" 332 - source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 334 - dependencies = [ 335 - "event-listener", 336 - "event-listener-strategy", 337 - "pin-project-lite", 338 - ] 339 - 340 - [[package]] 341 - name = "async-net" 342 - version = "2.0.0" 343 - source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" 345 - dependencies = [ 346 - "async-io", 347 - "blocking", 348 - "futures-lite", 349 - ] 350 - 351 - [[package]] 352 - name = "async-process" 353 - version = "2.3.0" 354 - source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" 356 - dependencies = [ 357 - "async-channel", 358 - "async-io", 359 - "async-lock", 360 - "async-signal", 361 - "async-task", 362 - "blocking", 363 - "cfg-if", 364 - "event-listener", 365 - "futures-lite", 366 - "rustix", 367 - "tracing", 368 - ] 369 - 370 - [[package]] 371 - name = "async-recursion" 372 - version = "1.1.1" 373 - source = "registry+https://github.com/rust-lang/crates.io-index" 374 - checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 375 - dependencies = [ 376 - "proc-macro2", 377 - "quote", 378 - "syn 2.0.82", 379 - ] 380 - 381 - [[package]] 382 - name = "async-signal" 383 - version = "0.2.10" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" 386 - dependencies = [ 387 - "async-io", 388 - "async-lock", 389 - "atomic-waker", 390 - "cfg-if", 391 - "futures-core", 392 - "futures-io", 393 - "rustix", 394 - "signal-hook-registry", 395 - "slab", 396 - "windows-sys 0.59.0", 397 - ] 398 - 399 - [[package]] 400 - name = "async-task" 401 - version = "4.7.1" 402 - source = "registry+https://github.com/rust-lang/crates.io-index" 403 - checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 404 - 405 - [[package]] 406 - name = "async-trait" 407 - version = "0.1.83" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 410 - dependencies = [ 411 - "proc-macro2", 412 - "quote", 413 - "syn 2.0.82", 414 - ] 415 - 416 - [[package]] 417 - name = "atomic-waker" 418 - version = "1.1.2" 419 - source = "registry+https://github.com/rust-lang/crates.io-index" 420 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 421 - 422 - [[package]] 423 - name = "atspi" 424 - version = "0.22.0" 425 - source = "registry+https://github.com/rust-lang/crates.io-index" 426 - checksum = "be534b16650e35237bb1ed189ba2aab86ce65e88cc84c66f4935ba38575cecbf" 427 - dependencies = [ 428 - "atspi-common", 429 - "atspi-connection", 430 - "atspi-proxies", 431 - ] 432 - 433 - [[package]] 434 - name = "atspi-common" 435 - version = "0.6.0" 436 - source = "registry+https://github.com/rust-lang/crates.io-index" 437 - checksum = "1909ed2dc01d0a17505d89311d192518507e8a056a48148e3598fef5e7bb6ba7" 438 - dependencies = [ 439 - "enumflags2", 440 - "serde", 441 - "static_assertions", 442 - "zbus", 443 - "zbus-lockstep", 444 - "zbus-lockstep-macros", 445 - "zbus_names", 446 - "zvariant", 447 - ] 448 - 449 - [[package]] 450 - name = "atspi-connection" 451 - version = "0.6.0" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "430c5960624a4baaa511c9c0fcc2218e3b58f5dbcc47e6190cafee344b873333" 454 - dependencies = [ 455 - "atspi-common", 456 - "atspi-proxies", 457 - "futures-lite", 458 - "zbus", 459 - ] 460 - 461 - [[package]] 462 - name = "atspi-proxies" 463 - version = "0.6.0" 464 - source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "a5e6c5de3e524cf967569722446bcd458d5032348554d9a17d7d72b041ab7496" 466 - dependencies = [ 467 - "atspi-common", 468 - "serde", 469 - "zbus", 470 - "zvariant", 471 - ] 472 - 473 - [[package]] 474 - name = "autocfg" 475 - version = "1.4.0" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 478 - 479 - [[package]] 480 - name = "base64" 481 - version = "0.21.7" 482 - source = "registry+https://github.com/rust-lang/crates.io-index" 483 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 484 - 485 - [[package]] 486 - name = "bindgen" 487 - version = "0.69.5" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" 490 - dependencies = [ 491 - "annotate-snippets", 492 - "bitflags 2.6.0", 493 - "cexpr", 494 - "clang-sys", 495 - "itertools", 496 - "lazy_static", 497 - "lazycell", 498 - "proc-macro2", 499 - "quote", 500 - "regex", 501 - "rustc-hash", 502 - "shlex", 503 - "syn 2.0.82", 504 - ] 505 - 506 - [[package]] 507 - name = "bit-set" 508 - version = "0.6.0" 509 - source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "f0481a0e032742109b1133a095184ee93d88f3dc9e0d28a5d033dc77a073f44f" 511 - dependencies = [ 512 - "bit-vec", 513 - ] 514 - 515 - [[package]] 516 - name = "bit-vec" 517 - version = "0.7.0" 518 - source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22" 520 - 521 - [[package]] 522 - name = "bitflags" 523 - version = "1.3.2" 524 - source = "registry+https://github.com/rust-lang/crates.io-index" 525 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 526 - 527 - [[package]] 528 - name = "bitflags" 529 - version = "2.6.0" 530 - source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 532 - dependencies = [ 533 - "serde", 534 - ] 535 - 536 - [[package]] 537 - name = "block" 538 - version = "0.1.6" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 541 - 542 - [[package]] 543 - name = "block-buffer" 544 - version = "0.10.4" 545 - source = "registry+https://github.com/rust-lang/crates.io-index" 546 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 547 - dependencies = [ 548 - "generic-array", 549 - ] 550 - 551 - [[package]] 552 - name = "block2" 553 - version = "0.5.1" 554 - source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 556 - dependencies = [ 557 - "objc2", 558 - ] 559 - 560 - [[package]] 561 - name = "blocking" 562 - version = "1.6.1" 563 - source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 565 - dependencies = [ 566 - "async-channel", 567 - "async-task", 568 - "futures-io", 569 - "futures-lite", 570 - "piper", 571 - ] 572 - 573 - [[package]] 574 - name = "bumpalo" 575 - version = "3.16.0" 576 - source = "registry+https://github.com/rust-lang/crates.io-index" 577 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 578 - 579 - [[package]] 580 - name = "bytemuck" 581 - version = "1.19.0" 582 - source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" 584 - dependencies = [ 585 - "bytemuck_derive", 586 - ] 587 - 588 - [[package]] 589 - name = "bytemuck_derive" 590 - version = "1.8.0" 591 - source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec" 593 - dependencies = [ 594 - "proc-macro2", 595 - "quote", 596 - "syn 2.0.82", 597 - ] 598 - 599 - [[package]] 600 - name = "byteorder" 601 - version = "1.5.0" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 604 - 605 - [[package]] 606 - name = "byteorder-lite" 607 - version = "0.1.0" 608 - source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 610 - 611 - [[package]] 612 - name = "bytes" 613 - version = "1.8.0" 614 - source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 616 - 617 - [[package]] 618 - name = "calloop" 619 - version = "0.13.0" 620 - source = "registry+https://github.com/rust-lang/crates.io-index" 621 - checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" 622 - dependencies = [ 623 - "bitflags 2.6.0", 624 - "log", 625 - "polling", 626 - "rustix", 627 - "slab", 628 - "thiserror", 629 - ] 630 - 631 - [[package]] 632 - name = "calloop-wayland-source" 633 - version = "0.3.0" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" 636 - dependencies = [ 637 - "calloop", 638 - "rustix", 639 - "wayland-backend", 640 - "wayland-client", 641 - ] 642 - 643 - [[package]] 644 - name = "cc" 645 - version = "1.1.31" 646 - source = "registry+https://github.com/rust-lang/crates.io-index" 647 - checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" 648 - dependencies = [ 649 - "jobserver", 650 - "libc", 651 - "shlex", 652 - ] 653 - 654 - [[package]] 655 - name = "cesu8" 656 - version = "1.1.0" 657 - source = "registry+https://github.com/rust-lang/crates.io-index" 658 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 659 - 660 - [[package]] 661 - name = "cexpr" 662 - version = "0.6.0" 663 - source = "registry+https://github.com/rust-lang/crates.io-index" 664 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 665 - dependencies = [ 666 - "nom", 667 - ] 668 - 669 - [[package]] 670 - name = "cfg-expr" 671 - version = "0.15.8" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 674 - dependencies = [ 675 - "smallvec", 676 - "target-lexicon", 677 - ] 678 - 679 - [[package]] 680 - name = "cfg-if" 681 - version = "1.0.0" 682 - source = "registry+https://github.com/rust-lang/crates.io-index" 683 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 684 - 685 - [[package]] 686 - name = "cfg_aliases" 687 - version = "0.1.1" 688 - source = "registry+https://github.com/rust-lang/crates.io-index" 689 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 690 - 691 - [[package]] 692 - name = "cfg_aliases" 693 - version = "0.2.1" 694 - source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 696 - 697 - [[package]] 698 - name = "cgl" 699 - version = "0.3.2" 700 - source = "registry+https://github.com/rust-lang/crates.io-index" 701 - checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff" 702 - dependencies = [ 703 - "libc", 704 - ] 705 - 706 - [[package]] 707 - name = "clang-sys" 708 - version = "1.8.1" 709 - source = "registry+https://github.com/rust-lang/crates.io-index" 710 - checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 711 - dependencies = [ 712 - "glob", 713 - "libc", 714 - "libloading", 715 - ] 716 - 717 - [[package]] 718 - name = "clipboard-win" 719 - version = "5.4.0" 720 - source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892" 722 - dependencies = [ 723 - "error-code", 724 - ] 725 - 726 - [[package]] 727 - name = "codespan-reporting" 728 - version = "0.11.1" 729 - source = "registry+https://github.com/rust-lang/crates.io-index" 730 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 731 - dependencies = [ 732 - "termcolor", 733 - "unicode-width", 734 - ] 735 - 736 - [[package]] 737 - name = "com" 738 - version = "0.6.0" 739 - source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6" 741 - dependencies = [ 742 - "com_macros", 743 - ] 744 - 745 - [[package]] 746 - name = "com_macros" 747 - version = "0.6.0" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5" 750 - dependencies = [ 751 - "com_macros_support", 752 - "proc-macro2", 753 - "syn 1.0.109", 754 - ] 755 - 756 - [[package]] 757 - name = "com_macros_support" 758 - version = "0.6.0" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c" 761 - dependencies = [ 762 - "proc-macro2", 763 - "quote", 764 - "syn 1.0.109", 765 - ] 766 - 767 - [[package]] 768 - name = "combine" 769 - version = "4.6.7" 770 - source = "registry+https://github.com/rust-lang/crates.io-index" 771 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 772 - dependencies = [ 773 - "bytes", 774 - "memchr", 775 - ] 776 - 777 - [[package]] 778 - name = "concurrent-queue" 779 - version = "2.5.0" 780 - source = "registry+https://github.com/rust-lang/crates.io-index" 781 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 782 - dependencies = [ 783 - "crossbeam-utils", 784 - ] 785 - 786 - [[package]] 787 - name = "convert_case" 788 - version = "0.6.0" 789 - source = "registry+https://github.com/rust-lang/crates.io-index" 790 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 791 - dependencies = [ 792 - "unicode-segmentation", 793 - ] 794 - 795 - [[package]] 796 - name = "cookie-factory" 797 - version = "0.3.3" 798 - source = "registry+https://github.com/rust-lang/crates.io-index" 799 - checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2" 800 - dependencies = [ 801 - "futures", 802 - ] 803 - 804 - [[package]] 805 - name = "coppwr" 806 - version = "1.6.1" 807 - dependencies = [ 808 - "ashpd", 809 - "eframe", 810 - "egui", 811 - "egui_dock", 812 - "egui_node_graph", 813 - "egui_plot", 814 - "pipewire", 815 - "pollster", 816 - "serde", 817 - ] 818 - 819 - [[package]] 820 - name = "core-foundation" 821 - version = "0.9.4" 822 - source = "registry+https://github.com/rust-lang/crates.io-index" 823 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 824 - dependencies = [ 825 - "core-foundation-sys", 826 - "libc", 827 - ] 828 - 829 - [[package]] 830 - name = "core-foundation" 831 - version = "0.10.0" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" 834 - dependencies = [ 835 - "core-foundation-sys", 836 - "libc", 837 - ] 838 - 839 - [[package]] 840 - name = "core-foundation-sys" 841 - version = "0.8.7" 842 - source = "registry+https://github.com/rust-lang/crates.io-index" 843 - checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 844 - 845 - [[package]] 846 - name = "core-graphics" 847 - version = "0.23.2" 848 - source = "registry+https://github.com/rust-lang/crates.io-index" 849 - checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 850 - dependencies = [ 851 - "bitflags 1.3.2", 852 - "core-foundation 0.9.4", 853 - "core-graphics-types", 854 - "foreign-types", 855 - "libc", 856 - ] 857 - 858 - [[package]] 859 - name = "core-graphics-types" 860 - version = "0.1.3" 861 - source = "registry+https://github.com/rust-lang/crates.io-index" 862 - checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 863 - dependencies = [ 864 - "bitflags 1.3.2", 865 - "core-foundation 0.9.4", 866 - "libc", 867 - ] 868 - 869 - [[package]] 870 - name = "cpufeatures" 871 - version = "0.2.14" 872 - source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 874 - dependencies = [ 875 - "libc", 876 - ] 877 - 878 - [[package]] 879 - name = "crc32fast" 880 - version = "1.4.2" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 883 - dependencies = [ 884 - "cfg-if", 885 - ] 886 - 887 - [[package]] 888 - name = "crossbeam-deque" 889 - version = "0.8.5" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 892 - dependencies = [ 893 - "crossbeam-epoch", 894 - "crossbeam-utils", 895 - ] 896 - 897 - [[package]] 898 - name = "crossbeam-epoch" 899 - version = "0.9.18" 900 - source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 902 - dependencies = [ 903 - "crossbeam-utils", 904 - ] 905 - 906 - [[package]] 907 - name = "crossbeam-utils" 908 - version = "0.8.20" 909 - source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 911 - 912 - [[package]] 913 - name = "crypto-common" 914 - version = "0.1.6" 915 - source = "registry+https://github.com/rust-lang/crates.io-index" 916 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 917 - dependencies = [ 918 - "generic-array", 919 - "typenum", 920 - ] 921 - 922 - [[package]] 923 - name = "cursor-icon" 924 - version = "1.1.0" 925 - source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 927 - 928 - [[package]] 929 - name = "digest" 930 - version = "0.10.7" 931 - source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 933 - dependencies = [ 934 - "block-buffer", 935 - "crypto-common", 936 - ] 937 - 938 - [[package]] 939 - name = "dispatch" 940 - version = "0.2.0" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 943 - 944 - [[package]] 945 - name = "dlib" 946 - version = "0.5.2" 947 - source = "registry+https://github.com/rust-lang/crates.io-index" 948 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 949 - dependencies = [ 950 - "libloading", 951 - ] 952 - 953 - [[package]] 954 - name = "document-features" 955 - version = "0.2.10" 956 - source = "registry+https://github.com/rust-lang/crates.io-index" 957 - checksum = "cb6969eaabd2421f8a2775cfd2471a2b634372b4a25d41e3bd647b79912850a0" 958 - dependencies = [ 959 - "litrs", 960 - ] 961 - 962 - [[package]] 963 - name = "downcast-rs" 964 - version = "1.2.1" 965 - source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 967 - 968 - [[package]] 969 - name = "dpi" 970 - version = "0.1.1" 971 - source = "registry+https://github.com/rust-lang/crates.io-index" 972 - checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" 973 - 974 - [[package]] 975 - name = "duplicate" 976 - version = "2.0.0" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "97af9b5f014e228b33e77d75ee0e6e87960124f0f4b16337b586a6bec91867b1" 979 - dependencies = [ 980 - "heck", 981 - "proc-macro2", 982 - "proc-macro2-diagnostics", 983 - ] 984 - 985 - [[package]] 986 - name = "ecolor" 987 - version = "0.29.1" 988 - source = "registry+https://github.com/rust-lang/crates.io-index" 989 - checksum = "775cfde491852059e386c4e1deb4aef381c617dc364184c6f6afee99b87c402b" 990 - dependencies = [ 991 - "bytemuck", 992 - "emath", 993 - "serde", 994 - ] 995 - 996 - [[package]] 997 - name = "eframe" 998 - version = "0.29.1" 999 - source = "registry+https://github.com/rust-lang/crates.io-index" 1000 - checksum = "8ac2645a9bf4826eb4e91488b1f17b8eaddeef09396706b2f14066461338e24f" 1001 - dependencies = [ 1002 - "ahash", 1003 - "bytemuck", 1004 - "document-features", 1005 - "egui", 1006 - "egui-wgpu", 1007 - "egui-winit", 1008 - "egui_glow", 1009 - "glow 0.14.2", 1010 - "glutin", 1011 - "glutin-winit", 1012 - "home", 1013 - "image", 1014 - "js-sys", 1015 - "log", 1016 - "objc2", 1017 - "objc2-app-kit", 1018 - "objc2-foundation", 1019 - "parking_lot", 1020 - "percent-encoding", 1021 - "raw-window-handle", 1022 - "ron", 1023 - "serde", 1024 - "static_assertions", 1025 - "wasm-bindgen", 1026 - "wasm-bindgen-futures", 1027 - "web-sys", 1028 - "web-time", 1029 - "winapi", 1030 - "windows-sys 0.52.0", 1031 - "winit", 1032 - ] 1033 - 1034 - [[package]] 1035 - name = "egui" 1036 - version = "0.29.1" 1037 - source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "53eafabcce0cb2325a59a98736efe0bf060585b437763f8c476957fb274bb974" 1039 - dependencies = [ 1040 - "accesskit", 1041 - "ahash", 1042 - "emath", 1043 - "epaint", 1044 - "log", 1045 - "nohash-hasher", 1046 - "ron", 1047 - "serde", 1048 - ] 1049 - 1050 - [[package]] 1051 - name = "egui-wgpu" 1052 - version = "0.29.1" 1053 - source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - checksum = "d00fd5d06d8405397e64a928fa0ef3934b3c30273ea7603e3dc4627b1f7a1a82" 1055 - dependencies = [ 1056 - "ahash", 1057 - "bytemuck", 1058 - "document-features", 1059 - "egui", 1060 - "epaint", 1061 - "log", 1062 - "thiserror", 1063 - "type-map", 1064 - "web-time", 1065 - "wgpu", 1066 - "winit", 1067 - ] 1068 - 1069 - [[package]] 1070 - name = "egui-winit" 1071 - version = "0.29.1" 1072 - source = "registry+https://github.com/rust-lang/crates.io-index" 1073 - checksum = "0a9c430f4f816340e8e8c1b20eec274186b1be6bc4c7dfc467ed50d57abc36c6" 1074 - dependencies = [ 1075 - "accesskit_winit", 1076 - "ahash", 1077 - "arboard", 1078 - "egui", 1079 - "log", 1080 - "raw-window-handle", 1081 - "serde", 1082 - "smithay-clipboard", 1083 - "web-time", 1084 - "webbrowser", 1085 - "winit", 1086 - ] 1087 - 1088 - [[package]] 1089 - name = "egui_dock" 1090 - version = "0.14.0" 1091 - source = "registry+https://github.com/rust-lang/crates.io-index" 1092 - checksum = "2fe4e3414481dea5ed59fdfa88f2e00b6ea60fbe758ca7a8636d0dbed93ab9cf" 1093 - dependencies = [ 1094 - "duplicate", 1095 - "egui", 1096 - "paste", 1097 - "serde", 1098 - ] 1099 - 1100 - [[package]] 1101 - name = "egui_glow" 1102 - version = "0.29.1" 1103 - source = "registry+https://github.com/rust-lang/crates.io-index" 1104 - checksum = "0e39bccc683cd43adab530d8f21a13eb91e80de10bcc38c3f1c16601b6f62b26" 1105 - dependencies = [ 1106 - "ahash", 1107 - "bytemuck", 1108 - "egui", 1109 - "glow 0.14.2", 1110 - "log", 1111 - "memoffset", 1112 - "wasm-bindgen", 1113 - "web-sys", 1114 - "winit", 1115 - ] 1116 - 1117 - [[package]] 1118 - name = "egui_node_graph" 1119 - version = "0.4.0" 1120 - source = "git+https://github.com/dimtpap/egui_node_graph.git?rev=87b3f084c1cf70ac9ad489ae1f2e2a8234efdde4#87b3f084c1cf70ac9ad489ae1f2e2a8234efdde4" 1121 - dependencies = [ 1122 - "egui", 1123 - "slotmap", 1124 - "smallvec", 1125 - "thiserror", 1126 - ] 1127 - 1128 - [[package]] 1129 - name = "egui_plot" 1130 - version = "0.29.0" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "d8dca4871c15d51aadb79534dcf51a8189e5de3426ee7b465eb7db9a0a81ea67" 1133 - dependencies = [ 1134 - "ahash", 1135 - "egui", 1136 - "emath", 1137 - ] 1138 - 1139 - [[package]] 1140 - name = "either" 1141 - version = "1.13.0" 1142 - source = "registry+https://github.com/rust-lang/crates.io-index" 1143 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1144 - 1145 - [[package]] 1146 - name = "emath" 1147 - version = "0.29.1" 1148 - source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "b1fe0049ce51d0fb414d029e668dd72eb30bc2b739bf34296ed97bd33df544f3" 1150 - dependencies = [ 1151 - "bytemuck", 1152 - "serde", 1153 - ] 1154 - 1155 - [[package]] 1156 - name = "endi" 1157 - version = "1.1.0" 1158 - source = "registry+https://github.com/rust-lang/crates.io-index" 1159 - checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 1160 - 1161 - [[package]] 1162 - name = "enumflags2" 1163 - version = "0.7.10" 1164 - source = "registry+https://github.com/rust-lang/crates.io-index" 1165 - checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" 1166 - dependencies = [ 1167 - "enumflags2_derive", 1168 - "serde", 1169 - ] 1170 - 1171 - [[package]] 1172 - name = "enumflags2_derive" 1173 - version = "0.7.10" 1174 - source = "registry+https://github.com/rust-lang/crates.io-index" 1175 - checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" 1176 - dependencies = [ 1177 - "proc-macro2", 1178 - "quote", 1179 - "syn 2.0.82", 1180 - ] 1181 - 1182 - [[package]] 1183 - name = "enumn" 1184 - version = "0.1.14" 1185 - source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" 1187 - dependencies = [ 1188 - "proc-macro2", 1189 - "quote", 1190 - "syn 2.0.82", 1191 - ] 1192 - 1193 - [[package]] 1194 - name = "epaint" 1195 - version = "0.29.1" 1196 - source = "registry+https://github.com/rust-lang/crates.io-index" 1197 - checksum = "a32af8da821bd4f43f2c137e295459ee2e1661d87ca8779dfa0eaf45d870e20f" 1198 - dependencies = [ 1199 - "ab_glyph", 1200 - "ahash", 1201 - "bytemuck", 1202 - "ecolor", 1203 - "emath", 1204 - "epaint_default_fonts", 1205 - "log", 1206 - "nohash-hasher", 1207 - "parking_lot", 1208 - "rayon", 1209 - "serde", 1210 - ] 1211 - 1212 - [[package]] 1213 - name = "epaint_default_fonts" 1214 - version = "0.29.1" 1215 - source = "registry+https://github.com/rust-lang/crates.io-index" 1216 - checksum = "483440db0b7993cf77a20314f08311dbe95675092405518c0677aa08c151a3ea" 1217 - 1218 - [[package]] 1219 - name = "equivalent" 1220 - version = "1.0.1" 1221 - source = "registry+https://github.com/rust-lang/crates.io-index" 1222 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1223 - 1224 - [[package]] 1225 - name = "errno" 1226 - version = "0.3.9" 1227 - source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1229 - dependencies = [ 1230 - "libc", 1231 - "windows-sys 0.52.0", 1232 - ] 1233 - 1234 - [[package]] 1235 - name = "error-code" 1236 - version = "3.3.1" 1237 - source = "registry+https://github.com/rust-lang/crates.io-index" 1238 - checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f" 1239 - 1240 - [[package]] 1241 - name = "event-listener" 1242 - version = "5.3.1" 1243 - source = "registry+https://github.com/rust-lang/crates.io-index" 1244 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1245 - dependencies = [ 1246 - "concurrent-queue", 1247 - "parking", 1248 - "pin-project-lite", 1249 - ] 1250 - 1251 - [[package]] 1252 - name = "event-listener-strategy" 1253 - version = "0.5.2" 1254 - source = "registry+https://github.com/rust-lang/crates.io-index" 1255 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1256 - dependencies = [ 1257 - "event-listener", 1258 - "pin-project-lite", 1259 - ] 1260 - 1261 - [[package]] 1262 - name = "fastrand" 1263 - version = "2.1.1" 1264 - source = "registry+https://github.com/rust-lang/crates.io-index" 1265 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 1266 - 1267 - [[package]] 1268 - name = "fdeflate" 1269 - version = "0.3.5" 1270 - source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "d8090f921a24b04994d9929e204f50b498a33ea6ba559ffaa05e04f7ee7fb5ab" 1272 - dependencies = [ 1273 - "simd-adler32", 1274 - ] 1275 - 1276 - [[package]] 1277 - name = "flate2" 1278 - version = "1.0.34" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 1281 - dependencies = [ 1282 - "crc32fast", 1283 - "miniz_oxide", 1284 - ] 1285 - 1286 - [[package]] 1287 - name = "foreign-types" 1288 - version = "0.5.0" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1291 - dependencies = [ 1292 - "foreign-types-macros", 1293 - "foreign-types-shared", 1294 - ] 1295 - 1296 - [[package]] 1297 - name = "foreign-types-macros" 1298 - version = "0.2.3" 1299 - source = "registry+https://github.com/rust-lang/crates.io-index" 1300 - checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1301 - dependencies = [ 1302 - "proc-macro2", 1303 - "quote", 1304 - "syn 2.0.82", 1305 - ] 1306 - 1307 - [[package]] 1308 - name = "foreign-types-shared" 1309 - version = "0.3.1" 1310 - source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1312 - 1313 - [[package]] 1314 - name = "form_urlencoded" 1315 - version = "1.2.1" 1316 - source = "registry+https://github.com/rust-lang/crates.io-index" 1317 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1318 - dependencies = [ 1319 - "percent-encoding", 1320 - ] 1321 - 1322 - [[package]] 1323 - name = "futures" 1324 - version = "0.3.31" 1325 - source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1327 - dependencies = [ 1328 - "futures-channel", 1329 - "futures-core", 1330 - "futures-executor", 1331 - "futures-io", 1332 - "futures-sink", 1333 - "futures-task", 1334 - "futures-util", 1335 - ] 1336 - 1337 - [[package]] 1338 - name = "futures-channel" 1339 - version = "0.3.31" 1340 - source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1342 - dependencies = [ 1343 - "futures-core", 1344 - "futures-sink", 1345 - ] 1346 - 1347 - [[package]] 1348 - name = "futures-core" 1349 - version = "0.3.31" 1350 - source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1352 - 1353 - [[package]] 1354 - name = "futures-executor" 1355 - version = "0.3.31" 1356 - source = "registry+https://github.com/rust-lang/crates.io-index" 1357 - checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1358 - dependencies = [ 1359 - "futures-core", 1360 - "futures-task", 1361 - "futures-util", 1362 - ] 1363 - 1364 - [[package]] 1365 - name = "futures-io" 1366 - version = "0.3.31" 1367 - source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1369 - 1370 - [[package]] 1371 - name = "futures-lite" 1372 - version = "2.3.0" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1375 - dependencies = [ 1376 - "fastrand", 1377 - "futures-core", 1378 - "futures-io", 1379 - "parking", 1380 - "pin-project-lite", 1381 - ] 1382 - 1383 - [[package]] 1384 - name = "futures-macro" 1385 - version = "0.3.31" 1386 - source = "registry+https://github.com/rust-lang/crates.io-index" 1387 - checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1388 - dependencies = [ 1389 - "proc-macro2", 1390 - "quote", 1391 - "syn 2.0.82", 1392 - ] 1393 - 1394 - [[package]] 1395 - name = "futures-sink" 1396 - version = "0.3.31" 1397 - source = "registry+https://github.com/rust-lang/crates.io-index" 1398 - checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1399 - 1400 - [[package]] 1401 - name = "futures-task" 1402 - version = "0.3.31" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1405 - 1406 - [[package]] 1407 - name = "futures-util" 1408 - version = "0.3.31" 1409 - source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1411 - dependencies = [ 1412 - "futures-channel", 1413 - "futures-core", 1414 - "futures-io", 1415 - "futures-macro", 1416 - "futures-sink", 1417 - "futures-task", 1418 - "memchr", 1419 - "pin-project-lite", 1420 - "pin-utils", 1421 - "slab", 1422 - ] 1423 - 1424 - [[package]] 1425 - name = "generic-array" 1426 - version = "0.14.7" 1427 - source = "registry+https://github.com/rust-lang/crates.io-index" 1428 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1429 - dependencies = [ 1430 - "typenum", 1431 - "version_check", 1432 - ] 1433 - 1434 - [[package]] 1435 - name = "gethostname" 1436 - version = "0.4.3" 1437 - source = "registry+https://github.com/rust-lang/crates.io-index" 1438 - checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1439 - dependencies = [ 1440 - "libc", 1441 - "windows-targets 0.48.5", 1442 - ] 1443 - 1444 - [[package]] 1445 - name = "getrandom" 1446 - version = "0.2.15" 1447 - source = "registry+https://github.com/rust-lang/crates.io-index" 1448 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1449 - dependencies = [ 1450 - "cfg-if", 1451 - "libc", 1452 - "wasi", 1453 - ] 1454 - 1455 - [[package]] 1456 - name = "gl_generator" 1457 - version = "0.14.0" 1458 - source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 1460 - dependencies = [ 1461 - "khronos_api", 1462 - "log", 1463 - "xml-rs", 1464 - ] 1465 - 1466 - [[package]] 1467 - name = "glob" 1468 - version = "0.3.1" 1469 - source = "registry+https://github.com/rust-lang/crates.io-index" 1470 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1471 - 1472 - [[package]] 1473 - name = "glow" 1474 - version = "0.13.1" 1475 - source = "registry+https://github.com/rust-lang/crates.io-index" 1476 - checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1" 1477 - dependencies = [ 1478 - "js-sys", 1479 - "slotmap", 1480 - "wasm-bindgen", 1481 - "web-sys", 1482 - ] 1483 - 1484 - [[package]] 1485 - name = "glow" 1486 - version = "0.14.2" 1487 - source = "registry+https://github.com/rust-lang/crates.io-index" 1488 - checksum = "d51fa363f025f5c111e03f13eda21162faeacb6911fe8caa0c0349f9cf0c4483" 1489 - dependencies = [ 1490 - "js-sys", 1491 - "slotmap", 1492 - "wasm-bindgen", 1493 - "web-sys", 1494 - ] 1495 - 1496 - [[package]] 1497 - name = "glutin" 1498 - version = "0.32.1" 1499 - source = "registry+https://github.com/rust-lang/crates.io-index" 1500 - checksum = "ec69412a0bf07ea7607e638b415447857a808846c2b685a43c8aa18bc6d5e499" 1501 - dependencies = [ 1502 - "bitflags 2.6.0", 1503 - "cfg_aliases 0.2.1", 1504 - "cgl", 1505 - "core-foundation 0.9.4", 1506 - "dispatch", 1507 - "glutin_egl_sys", 1508 - "glutin_glx_sys", 1509 - "glutin_wgl_sys", 1510 - "libloading", 1511 - "objc2", 1512 - "objc2-app-kit", 1513 - "objc2-foundation", 1514 - "once_cell", 1515 - "raw-window-handle", 1516 - "wayland-sys", 1517 - "windows-sys 0.52.0", 1518 - "x11-dl", 1519 - ] 1520 - 1521 - [[package]] 1522 - name = "glutin-winit" 1523 - version = "0.5.0" 1524 - source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "85edca7075f8fc728f28cb8fbb111a96c3b89e930574369e3e9c27eb75d3788f" 1526 - dependencies = [ 1527 - "cfg_aliases 0.2.1", 1528 - "glutin", 1529 - "raw-window-handle", 1530 - "winit", 1531 - ] 1532 - 1533 - [[package]] 1534 - name = "glutin_egl_sys" 1535 - version = "0.7.0" 1536 - source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "cae99fff4d2850dbe6fb8c1fa8e4fead5525bab715beaacfccf3fb994e01c827" 1538 - dependencies = [ 1539 - "gl_generator", 1540 - "windows-sys 0.52.0", 1541 - ] 1542 - 1543 - [[package]] 1544 - name = "glutin_glx_sys" 1545 - version = "0.6.0" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "9c2b2d3918e76e18e08796b55eb64e8fe6ec67d5a6b2e2a7e2edce224ad24c63" 1548 - dependencies = [ 1549 - "gl_generator", 1550 - "x11-dl", 1551 - ] 1552 - 1553 - [[package]] 1554 - name = "glutin_wgl_sys" 1555 - version = "0.6.0" 1556 - source = "registry+https://github.com/rust-lang/crates.io-index" 1557 - checksum = "0a4e1951bbd9434a81aa496fe59ccc2235af3820d27b85f9314e279609211e2c" 1558 - dependencies = [ 1559 - "gl_generator", 1560 - ] 1561 - 1562 - [[package]] 1563 - name = "gpu-alloc" 1564 - version = "0.6.0" 1565 - source = "registry+https://github.com/rust-lang/crates.io-index" 1566 - checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171" 1567 - dependencies = [ 1568 - "bitflags 2.6.0", 1569 - "gpu-alloc-types", 1570 - ] 1571 - 1572 - [[package]] 1573 - name = "gpu-alloc-types" 1574 - version = "0.3.0" 1575 - source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4" 1577 - dependencies = [ 1578 - "bitflags 2.6.0", 1579 - ] 1580 - 1581 - [[package]] 1582 - name = "gpu-allocator" 1583 - version = "0.26.0" 1584 - source = "registry+https://github.com/rust-lang/crates.io-index" 1585 - checksum = "fdd4240fc91d3433d5e5b0fc5b67672d771850dc19bbee03c1381e19322803d7" 1586 - dependencies = [ 1587 - "log", 1588 - "presser", 1589 - "thiserror", 1590 - "winapi", 1591 - "windows 0.52.0", 1592 - ] 1593 - 1594 - [[package]] 1595 - name = "gpu-descriptor" 1596 - version = "0.3.0" 1597 - source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "9c08c1f623a8d0b722b8b99f821eb0ba672a1618f0d3b16ddbee1cedd2dd8557" 1599 - dependencies = [ 1600 - "bitflags 2.6.0", 1601 - "gpu-descriptor-types", 1602 - "hashbrown 0.14.5", 1603 - ] 1604 - 1605 - [[package]] 1606 - name = "gpu-descriptor-types" 1607 - version = "0.2.0" 1608 - source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91" 1610 - dependencies = [ 1611 - "bitflags 2.6.0", 1612 - ] 1613 - 1614 - [[package]] 1615 - name = "hashbrown" 1616 - version = "0.14.5" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1619 - dependencies = [ 1620 - "ahash", 1621 - "allocator-api2", 1622 - ] 1623 - 1624 - [[package]] 1625 - name = "hashbrown" 1626 - version = "0.15.0" 1627 - source = "registry+https://github.com/rust-lang/crates.io-index" 1628 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 1629 - 1630 - [[package]] 1631 - name = "hassle-rs" 1632 - version = "0.11.0" 1633 - source = "registry+https://github.com/rust-lang/crates.io-index" 1634 - checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890" 1635 - dependencies = [ 1636 - "bitflags 2.6.0", 1637 - "com", 1638 - "libc", 1639 - "libloading", 1640 - "thiserror", 1641 - "widestring", 1642 - "winapi", 1643 - ] 1644 - 1645 - [[package]] 1646 - name = "heck" 1647 - version = "0.5.0" 1648 - source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1650 - 1651 - [[package]] 1652 - name = "hermit-abi" 1653 - version = "0.4.0" 1654 - source = "registry+https://github.com/rust-lang/crates.io-index" 1655 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 1656 - 1657 - [[package]] 1658 - name = "hex" 1659 - version = "0.4.3" 1660 - source = "registry+https://github.com/rust-lang/crates.io-index" 1661 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1662 - 1663 - [[package]] 1664 - name = "hexf-parse" 1665 - version = "0.2.1" 1666 - source = "registry+https://github.com/rust-lang/crates.io-index" 1667 - checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 1668 - 1669 - [[package]] 1670 - name = "home" 1671 - version = "0.5.9" 1672 - source = "registry+https://github.com/rust-lang/crates.io-index" 1673 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1674 - dependencies = [ 1675 - "windows-sys 0.52.0", 1676 - ] 1677 - 1678 - [[package]] 1679 - name = "idna" 1680 - version = "0.5.0" 1681 - source = "registry+https://github.com/rust-lang/crates.io-index" 1682 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1683 - dependencies = [ 1684 - "unicode-bidi", 1685 - "unicode-normalization", 1686 - ] 1687 - 1688 - [[package]] 1689 - name = "image" 1690 - version = "0.25.4" 1691 - source = "registry+https://github.com/rust-lang/crates.io-index" 1692 - checksum = "bc144d44a31d753b02ce64093d532f55ff8dc4ebf2ffb8a63c0dda691385acae" 1693 - dependencies = [ 1694 - "bytemuck", 1695 - "byteorder-lite", 1696 - "num-traits", 1697 - "png", 1698 - ] 1699 - 1700 - [[package]] 1701 - name = "immutable-chunkmap" 1702 - version = "2.0.6" 1703 - source = "registry+https://github.com/rust-lang/crates.io-index" 1704 - checksum = "12f97096f508d54f8f8ab8957862eee2ccd628847b6217af1a335e1c44dee578" 1705 - dependencies = [ 1706 - "arrayvec", 1707 - ] 1708 - 1709 - [[package]] 1710 - name = "indexmap" 1711 - version = "2.6.0" 1712 - source = "registry+https://github.com/rust-lang/crates.io-index" 1713 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 1714 - dependencies = [ 1715 - "equivalent", 1716 - "hashbrown 0.15.0", 1717 - ] 1718 - 1719 - [[package]] 1720 - name = "itertools" 1721 - version = "0.12.1" 1722 - source = "registry+https://github.com/rust-lang/crates.io-index" 1723 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1724 - dependencies = [ 1725 - "either", 1726 - ] 1727 - 1728 - [[package]] 1729 - name = "jni" 1730 - version = "0.21.1" 1731 - source = "registry+https://github.com/rust-lang/crates.io-index" 1732 - checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1733 - dependencies = [ 1734 - "cesu8", 1735 - "cfg-if", 1736 - "combine", 1737 - "jni-sys", 1738 - "log", 1739 - "thiserror", 1740 - "walkdir", 1741 - "windows-sys 0.45.0", 1742 - ] 1743 - 1744 - [[package]] 1745 - name = "jni-sys" 1746 - version = "0.3.0" 1747 - source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1749 - 1750 - [[package]] 1751 - name = "jobserver" 1752 - version = "0.1.32" 1753 - source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 1755 - dependencies = [ 1756 - "libc", 1757 - ] 1758 - 1759 - [[package]] 1760 - name = "js-sys" 1761 - version = "0.3.72" 1762 - source = "registry+https://github.com/rust-lang/crates.io-index" 1763 - checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" 1764 - dependencies = [ 1765 - "wasm-bindgen", 1766 - ] 1767 - 1768 - [[package]] 1769 - name = "khronos-egl" 1770 - version = "6.0.0" 1771 - source = "registry+https://github.com/rust-lang/crates.io-index" 1772 - checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" 1773 - dependencies = [ 1774 - "libc", 1775 - "libloading", 1776 - "pkg-config", 1777 - ] 1778 - 1779 - [[package]] 1780 - name = "khronos_api" 1781 - version = "3.1.0" 1782 - source = "registry+https://github.com/rust-lang/crates.io-index" 1783 - checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 1784 - 1785 - [[package]] 1786 - name = "lazy_static" 1787 - version = "1.5.0" 1788 - source = "registry+https://github.com/rust-lang/crates.io-index" 1789 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1790 - 1791 - [[package]] 1792 - name = "lazycell" 1793 - version = "1.3.0" 1794 - source = "registry+https://github.com/rust-lang/crates.io-index" 1795 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1796 - 1797 - [[package]] 1798 - name = "libc" 1799 - version = "0.2.161" 1800 - source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 1802 - 1803 - [[package]] 1804 - name = "libloading" 1805 - version = "0.8.5" 1806 - source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" 1808 - dependencies = [ 1809 - "cfg-if", 1810 - "windows-targets 0.52.6", 1811 - ] 1812 - 1813 - [[package]] 1814 - name = "libredox" 1815 - version = "0.1.3" 1816 - source = "registry+https://github.com/rust-lang/crates.io-index" 1817 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1818 - dependencies = [ 1819 - "bitflags 2.6.0", 1820 - "libc", 1821 - "redox_syscall 0.5.7", 1822 - ] 1823 - 1824 - [[package]] 1825 - name = "libspa" 1826 - version = "0.8.0" 1827 - source = "git+https://gitlab.freedesktop.org/dimtpap/pipewire-rs.git?rev=605d15996f3258b3e1cc34e445dfbdf16a366c7e#605d15996f3258b3e1cc34e445dfbdf16a366c7e" 1828 - dependencies = [ 1829 - "bitflags 2.6.0", 1830 - "cc", 1831 - "convert_case", 1832 - "cookie-factory", 1833 - "libc", 1834 - "libspa-sys", 1835 - "nix 0.27.1", 1836 - "nom", 1837 - "system-deps", 1838 - ] 1839 - 1840 - [[package]] 1841 - name = "libspa-sys" 1842 - version = "0.8.0" 1843 - source = "git+https://gitlab.freedesktop.org/dimtpap/pipewire-rs.git?rev=605d15996f3258b3e1cc34e445dfbdf16a366c7e#605d15996f3258b3e1cc34e445dfbdf16a366c7e" 1844 - dependencies = [ 1845 - "bindgen", 1846 - "cc", 1847 - "system-deps", 1848 - ] 1849 - 1850 - [[package]] 1851 - name = "linux-raw-sys" 1852 - version = "0.4.14" 1853 - source = "registry+https://github.com/rust-lang/crates.io-index" 1854 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1855 - 1856 - [[package]] 1857 - name = "litrs" 1858 - version = "0.4.1" 1859 - source = "registry+https://github.com/rust-lang/crates.io-index" 1860 - checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" 1861 - 1862 - [[package]] 1863 - name = "lock_api" 1864 - version = "0.4.12" 1865 - source = "registry+https://github.com/rust-lang/crates.io-index" 1866 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1867 - dependencies = [ 1868 - "autocfg", 1869 - "scopeguard", 1870 - ] 1871 - 1872 - [[package]] 1873 - name = "log" 1874 - version = "0.4.22" 1875 - source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1877 - 1878 - [[package]] 1879 - name = "malloc_buf" 1880 - version = "0.0.6" 1881 - source = "registry+https://github.com/rust-lang/crates.io-index" 1882 - checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1883 - dependencies = [ 1884 - "libc", 1885 - ] 1886 - 1887 - [[package]] 1888 - name = "memchr" 1889 - version = "2.7.4" 1890 - source = "registry+https://github.com/rust-lang/crates.io-index" 1891 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1892 - 1893 - [[package]] 1894 - name = "memmap2" 1895 - version = "0.9.5" 1896 - source = "registry+https://github.com/rust-lang/crates.io-index" 1897 - checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" 1898 - dependencies = [ 1899 - "libc", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "memoffset" 1904 - version = "0.9.1" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1907 - dependencies = [ 1908 - "autocfg", 1909 - ] 1910 - 1911 - [[package]] 1912 - name = "metal" 1913 - version = "0.29.0" 1914 - source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21" 1916 - dependencies = [ 1917 - "bitflags 2.6.0", 1918 - "block", 1919 - "core-graphics-types", 1920 - "foreign-types", 1921 - "log", 1922 - "objc", 1923 - "paste", 1924 - ] 1925 - 1926 - [[package]] 1927 - name = "minimal-lexical" 1928 - version = "0.2.1" 1929 - source = "registry+https://github.com/rust-lang/crates.io-index" 1930 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1931 - 1932 - [[package]] 1933 - name = "miniz_oxide" 1934 - version = "0.8.0" 1935 - source = "registry+https://github.com/rust-lang/crates.io-index" 1936 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 1937 - dependencies = [ 1938 - "adler2", 1939 - "simd-adler32", 1940 - ] 1941 - 1942 - [[package]] 1943 - name = "naga" 1944 - version = "22.1.0" 1945 - source = "registry+https://github.com/rust-lang/crates.io-index" 1946 - checksum = "8bd5a652b6faf21496f2cfd88fc49989c8db0825d1f6746b1a71a6ede24a63ad" 1947 - dependencies = [ 1948 - "arrayvec", 1949 - "bit-set", 1950 - "bitflags 2.6.0", 1951 - "cfg_aliases 0.1.1", 1952 - "codespan-reporting", 1953 - "hexf-parse", 1954 - "indexmap", 1955 - "log", 1956 - "rustc-hash", 1957 - "spirv", 1958 - "termcolor", 1959 - "thiserror", 1960 - "unicode-xid", 1961 - ] 1962 - 1963 - [[package]] 1964 - name = "ndk" 1965 - version = "0.9.0" 1966 - source = "registry+https://github.com/rust-lang/crates.io-index" 1967 - checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 1968 - dependencies = [ 1969 - "bitflags 2.6.0", 1970 - "jni-sys", 1971 - "log", 1972 - "ndk-sys 0.6.0+11769913", 1973 - "num_enum", 1974 - "raw-window-handle", 1975 - "thiserror", 1976 - ] 1977 - 1978 - [[package]] 1979 - name = "ndk-context" 1980 - version = "0.1.1" 1981 - source = "registry+https://github.com/rust-lang/crates.io-index" 1982 - checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1983 - 1984 - [[package]] 1985 - name = "ndk-sys" 1986 - version = "0.5.0+25.2.9519653" 1987 - source = "registry+https://github.com/rust-lang/crates.io-index" 1988 - checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 1989 - dependencies = [ 1990 - "jni-sys", 1991 - ] 1992 - 1993 - [[package]] 1994 - name = "ndk-sys" 1995 - version = "0.6.0+11769913" 1996 - source = "registry+https://github.com/rust-lang/crates.io-index" 1997 - checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 1998 - dependencies = [ 1999 - "jni-sys", 2000 - ] 2001 - 2002 - [[package]] 2003 - name = "nix" 2004 - version = "0.27.1" 2005 - source = "registry+https://github.com/rust-lang/crates.io-index" 2006 - checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2007 - dependencies = [ 2008 - "bitflags 2.6.0", 2009 - "cfg-if", 2010 - "libc", 2011 - ] 2012 - 2013 - [[package]] 2014 - name = "nix" 2015 - version = "0.29.0" 2016 - source = "registry+https://github.com/rust-lang/crates.io-index" 2017 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 2018 - dependencies = [ 2019 - "bitflags 2.6.0", 2020 - "cfg-if", 2021 - "cfg_aliases 0.2.1", 2022 - "libc", 2023 - "memoffset", 2024 - ] 2025 - 2026 - [[package]] 2027 - name = "nohash-hasher" 2028 - version = "0.2.0" 2029 - source = "registry+https://github.com/rust-lang/crates.io-index" 2030 - checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" 2031 - 2032 - [[package]] 2033 - name = "nom" 2034 - version = "7.1.3" 2035 - source = "registry+https://github.com/rust-lang/crates.io-index" 2036 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2037 - dependencies = [ 2038 - "memchr", 2039 - "minimal-lexical", 2040 - ] 2041 - 2042 - [[package]] 2043 - name = "num-traits" 2044 - version = "0.2.19" 2045 - source = "registry+https://github.com/rust-lang/crates.io-index" 2046 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2047 - dependencies = [ 2048 - "autocfg", 2049 - ] 2050 - 2051 - [[package]] 2052 - name = "num_enum" 2053 - version = "0.7.3" 2054 - source = "registry+https://github.com/rust-lang/crates.io-index" 2055 - checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" 2056 - dependencies = [ 2057 - "num_enum_derive", 2058 - ] 2059 - 2060 - [[package]] 2061 - name = "num_enum_derive" 2062 - version = "0.7.3" 2063 - source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" 2065 - dependencies = [ 2066 - "proc-macro-crate", 2067 - "proc-macro2", 2068 - "quote", 2069 - "syn 2.0.82", 2070 - ] 2071 - 2072 - [[package]] 2073 - name = "objc" 2074 - version = "0.2.7" 2075 - source = "registry+https://github.com/rust-lang/crates.io-index" 2076 - checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2077 - dependencies = [ 2078 - "malloc_buf", 2079 - ] 2080 - 2081 - [[package]] 2082 - name = "objc-sys" 2083 - version = "0.3.5" 2084 - source = "registry+https://github.com/rust-lang/crates.io-index" 2085 - checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 2086 - 2087 - [[package]] 2088 - name = "objc2" 2089 - version = "0.5.2" 2090 - source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 2092 - dependencies = [ 2093 - "objc-sys", 2094 - "objc2-encode", 2095 - ] 2096 - 2097 - [[package]] 2098 - name = "objc2-app-kit" 2099 - version = "0.2.2" 2100 - source = "registry+https://github.com/rust-lang/crates.io-index" 2101 - checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 2102 - dependencies = [ 2103 - "bitflags 2.6.0", 2104 - "block2", 2105 - "libc", 2106 - "objc2", 2107 - "objc2-core-data", 2108 - "objc2-core-image", 2109 - "objc2-foundation", 2110 - "objc2-quartz-core", 2111 - ] 2112 - 2113 - [[package]] 2114 - name = "objc2-cloud-kit" 2115 - version = "0.2.2" 2116 - source = "registry+https://github.com/rust-lang/crates.io-index" 2117 - checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" 2118 - dependencies = [ 2119 - "bitflags 2.6.0", 2120 - "block2", 2121 - "objc2", 2122 - "objc2-core-location", 2123 - "objc2-foundation", 2124 - ] 2125 - 2126 - [[package]] 2127 - name = "objc2-contacts" 2128 - version = "0.2.2" 2129 - source = "registry+https://github.com/rust-lang/crates.io-index" 2130 - checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" 2131 - dependencies = [ 2132 - "block2", 2133 - "objc2", 2134 - "objc2-foundation", 2135 - ] 2136 - 2137 - [[package]] 2138 - name = "objc2-core-data" 2139 - version = "0.2.2" 2140 - source = "registry+https://github.com/rust-lang/crates.io-index" 2141 - checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 2142 - dependencies = [ 2143 - "bitflags 2.6.0", 2144 - "block2", 2145 - "objc2", 2146 - "objc2-foundation", 2147 - ] 2148 - 2149 - [[package]] 2150 - name = "objc2-core-image" 2151 - version = "0.2.2" 2152 - source = "registry+https://github.com/rust-lang/crates.io-index" 2153 - checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" 2154 - dependencies = [ 2155 - "block2", 2156 - "objc2", 2157 - "objc2-foundation", 2158 - "objc2-metal", 2159 - ] 2160 - 2161 - [[package]] 2162 - name = "objc2-core-location" 2163 - version = "0.2.2" 2164 - source = "registry+https://github.com/rust-lang/crates.io-index" 2165 - checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" 2166 - dependencies = [ 2167 - "block2", 2168 - "objc2", 2169 - "objc2-contacts", 2170 - "objc2-foundation", 2171 - ] 2172 - 2173 - [[package]] 2174 - name = "objc2-encode" 2175 - version = "4.0.3" 2176 - source = "registry+https://github.com/rust-lang/crates.io-index" 2177 - checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 2178 - 2179 - [[package]] 2180 - name = "objc2-foundation" 2181 - version = "0.2.2" 2182 - source = "registry+https://github.com/rust-lang/crates.io-index" 2183 - checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 2184 - dependencies = [ 2185 - "bitflags 2.6.0", 2186 - "block2", 2187 - "dispatch", 2188 - "libc", 2189 - "objc2", 2190 - ] 2191 - 2192 - [[package]] 2193 - name = "objc2-link-presentation" 2194 - version = "0.2.2" 2195 - source = "registry+https://github.com/rust-lang/crates.io-index" 2196 - checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" 2197 - dependencies = [ 2198 - "block2", 2199 - "objc2", 2200 - "objc2-app-kit", 2201 - "objc2-foundation", 2202 - ] 2203 - 2204 - [[package]] 2205 - name = "objc2-metal" 2206 - version = "0.2.2" 2207 - source = "registry+https://github.com/rust-lang/crates.io-index" 2208 - checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 2209 - dependencies = [ 2210 - "bitflags 2.6.0", 2211 - "block2", 2212 - "objc2", 2213 - "objc2-foundation", 2214 - ] 2215 - 2216 - [[package]] 2217 - name = "objc2-quartz-core" 2218 - version = "0.2.2" 2219 - source = "registry+https://github.com/rust-lang/crates.io-index" 2220 - checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 2221 - dependencies = [ 2222 - "bitflags 2.6.0", 2223 - "block2", 2224 - "objc2", 2225 - "objc2-foundation", 2226 - "objc2-metal", 2227 - ] 2228 - 2229 - [[package]] 2230 - name = "objc2-symbols" 2231 - version = "0.2.2" 2232 - source = "registry+https://github.com/rust-lang/crates.io-index" 2233 - checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" 2234 - dependencies = [ 2235 - "objc2", 2236 - "objc2-foundation", 2237 - ] 2238 - 2239 - [[package]] 2240 - name = "objc2-ui-kit" 2241 - version = "0.2.2" 2242 - source = "registry+https://github.com/rust-lang/crates.io-index" 2243 - checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" 2244 - dependencies = [ 2245 - "bitflags 2.6.0", 2246 - "block2", 2247 - "objc2", 2248 - "objc2-cloud-kit", 2249 - "objc2-core-data", 2250 - "objc2-core-image", 2251 - "objc2-core-location", 2252 - "objc2-foundation", 2253 - "objc2-link-presentation", 2254 - "objc2-quartz-core", 2255 - "objc2-symbols", 2256 - "objc2-uniform-type-identifiers", 2257 - "objc2-user-notifications", 2258 - ] 2259 - 2260 - [[package]] 2261 - name = "objc2-uniform-type-identifiers" 2262 - version = "0.2.2" 2263 - source = "registry+https://github.com/rust-lang/crates.io-index" 2264 - checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" 2265 - dependencies = [ 2266 - "block2", 2267 - "objc2", 2268 - "objc2-foundation", 2269 - ] 2270 - 2271 - [[package]] 2272 - name = "objc2-user-notifications" 2273 - version = "0.2.2" 2274 - source = "registry+https://github.com/rust-lang/crates.io-index" 2275 - checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" 2276 - dependencies = [ 2277 - "bitflags 2.6.0", 2278 - "block2", 2279 - "objc2", 2280 - "objc2-core-location", 2281 - "objc2-foundation", 2282 - ] 2283 - 2284 - [[package]] 2285 - name = "once_cell" 2286 - version = "1.20.2" 2287 - source = "registry+https://github.com/rust-lang/crates.io-index" 2288 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 2289 - 2290 - [[package]] 2291 - name = "orbclient" 2292 - version = "0.3.48" 2293 - source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "ba0b26cec2e24f08ed8bb31519a9333140a6599b867dac464bb150bdb796fd43" 2295 - dependencies = [ 2296 - "libredox", 2297 - ] 2298 - 2299 - [[package]] 2300 - name = "ordered-stream" 2301 - version = "0.2.0" 2302 - source = "registry+https://github.com/rust-lang/crates.io-index" 2303 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2304 - dependencies = [ 2305 - "futures-core", 2306 - "pin-project-lite", 2307 - ] 2308 - 2309 - [[package]] 2310 - name = "owned_ttf_parser" 2311 - version = "0.25.0" 2312 - source = "registry+https://github.com/rust-lang/crates.io-index" 2313 - checksum = "22ec719bbf3b2a81c109a4e20b1f129b5566b7dce654bc3872f6a05abf82b2c4" 2314 - dependencies = [ 2315 - "ttf-parser", 2316 - ] 2317 - 2318 - [[package]] 2319 - name = "parking" 2320 - version = "2.2.1" 2321 - source = "registry+https://github.com/rust-lang/crates.io-index" 2322 - checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2323 - 2324 - [[package]] 2325 - name = "parking_lot" 2326 - version = "0.12.3" 2327 - source = "registry+https://github.com/rust-lang/crates.io-index" 2328 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2329 - dependencies = [ 2330 - "lock_api", 2331 - "parking_lot_core", 2332 - ] 2333 - 2334 - [[package]] 2335 - name = "parking_lot_core" 2336 - version = "0.9.10" 2337 - source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2339 - dependencies = [ 2340 - "cfg-if", 2341 - "libc", 2342 - "redox_syscall 0.5.7", 2343 - "smallvec", 2344 - "windows-targets 0.52.6", 2345 - ] 2346 - 2347 - [[package]] 2348 - name = "paste" 2349 - version = "1.0.15" 2350 - source = "registry+https://github.com/rust-lang/crates.io-index" 2351 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2352 - 2353 - [[package]] 2354 - name = "percent-encoding" 2355 - version = "2.3.1" 2356 - source = "registry+https://github.com/rust-lang/crates.io-index" 2357 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2358 - 2359 - [[package]] 2360 - name = "pin-project" 2361 - version = "1.1.6" 2362 - source = "registry+https://github.com/rust-lang/crates.io-index" 2363 - checksum = "baf123a161dde1e524adf36f90bc5d8d3462824a9c43553ad07a8183161189ec" 2364 - dependencies = [ 2365 - "pin-project-internal", 2366 - ] 2367 - 2368 - [[package]] 2369 - name = "pin-project-internal" 2370 - version = "1.1.6" 2371 - source = "registry+https://github.com/rust-lang/crates.io-index" 2372 - checksum = "a4502d8515ca9f32f1fb543d987f63d95a14934883db45bdb48060b6b69257f8" 2373 - dependencies = [ 2374 - "proc-macro2", 2375 - "quote", 2376 - "syn 2.0.82", 2377 - ] 2378 - 2379 - [[package]] 2380 - name = "pin-project-lite" 2381 - version = "0.2.14" 2382 - source = "registry+https://github.com/rust-lang/crates.io-index" 2383 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2384 - 2385 - [[package]] 2386 - name = "pin-utils" 2387 - version = "0.1.0" 2388 - source = "registry+https://github.com/rust-lang/crates.io-index" 2389 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2390 - 2391 - [[package]] 2392 - name = "piper" 2393 - version = "0.2.4" 2394 - source = "registry+https://github.com/rust-lang/crates.io-index" 2395 - checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2396 - dependencies = [ 2397 - "atomic-waker", 2398 - "fastrand", 2399 - "futures-io", 2400 - ] 2401 - 2402 - [[package]] 2403 - name = "pipewire" 2404 - version = "0.8.0" 2405 - source = "git+https://gitlab.freedesktop.org/dimtpap/pipewire-rs.git?rev=605d15996f3258b3e1cc34e445dfbdf16a366c7e#605d15996f3258b3e1cc34e445dfbdf16a366c7e" 2406 - dependencies = [ 2407 - "anyhow", 2408 - "bitflags 2.6.0", 2409 - "libc", 2410 - "libspa", 2411 - "libspa-sys", 2412 - "nix 0.27.1", 2413 - "once_cell", 2414 - "pipewire-sys", 2415 - "thiserror", 2416 - ] 2417 - 2418 - [[package]] 2419 - name = "pipewire-sys" 2420 - version = "0.8.0" 2421 - source = "git+https://gitlab.freedesktop.org/dimtpap/pipewire-rs.git?rev=605d15996f3258b3e1cc34e445dfbdf16a366c7e#605d15996f3258b3e1cc34e445dfbdf16a366c7e" 2422 - dependencies = [ 2423 - "bindgen", 2424 - "libspa-sys", 2425 - "system-deps", 2426 - ] 2427 - 2428 - [[package]] 2429 - name = "pkg-config" 2430 - version = "0.3.31" 2431 - source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 2433 - 2434 - [[package]] 2435 - name = "png" 2436 - version = "0.17.14" 2437 - source = "registry+https://github.com/rust-lang/crates.io-index" 2438 - checksum = "52f9d46a34a05a6a57566bc2bfae066ef07585a6e3fa30fbbdff5936380623f0" 2439 - dependencies = [ 2440 - "bitflags 1.3.2", 2441 - "crc32fast", 2442 - "fdeflate", 2443 - "flate2", 2444 - "miniz_oxide", 2445 - ] 2446 - 2447 - [[package]] 2448 - name = "polling" 2449 - version = "3.7.3" 2450 - source = "registry+https://github.com/rust-lang/crates.io-index" 2451 - checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" 2452 - dependencies = [ 2453 - "cfg-if", 2454 - "concurrent-queue", 2455 - "hermit-abi", 2456 - "pin-project-lite", 2457 - "rustix", 2458 - "tracing", 2459 - "windows-sys 0.59.0", 2460 - ] 2461 - 2462 - [[package]] 2463 - name = "pollster" 2464 - version = "0.3.0" 2465 - source = "registry+https://github.com/rust-lang/crates.io-index" 2466 - checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" 2467 - 2468 - [[package]] 2469 - name = "ppv-lite86" 2470 - version = "0.2.20" 2471 - source = "registry+https://github.com/rust-lang/crates.io-index" 2472 - checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 2473 - dependencies = [ 2474 - "zerocopy", 2475 - ] 2476 - 2477 - [[package]] 2478 - name = "presser" 2479 - version = "0.3.1" 2480 - source = "registry+https://github.com/rust-lang/crates.io-index" 2481 - checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" 2482 - 2483 - [[package]] 2484 - name = "proc-macro-crate" 2485 - version = "3.2.0" 2486 - source = "registry+https://github.com/rust-lang/crates.io-index" 2487 - checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" 2488 - dependencies = [ 2489 - "toml_edit", 2490 - ] 2491 - 2492 - [[package]] 2493 - name = "proc-macro2" 2494 - version = "1.0.88" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" 2497 - dependencies = [ 2498 - "unicode-ident", 2499 - ] 2500 - 2501 - [[package]] 2502 - name = "proc-macro2-diagnostics" 2503 - version = "0.10.1" 2504 - source = "registry+https://github.com/rust-lang/crates.io-index" 2505 - checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 2506 - dependencies = [ 2507 - "proc-macro2", 2508 - "quote", 2509 - "syn 2.0.82", 2510 - "version_check", 2511 - "yansi", 2512 - ] 2513 - 2514 - [[package]] 2515 - name = "profiling" 2516 - version = "1.0.16" 2517 - source = "registry+https://github.com/rust-lang/crates.io-index" 2518 - checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d" 2519 - 2520 - [[package]] 2521 - name = "quick-xml" 2522 - version = "0.30.0" 2523 - source = "registry+https://github.com/rust-lang/crates.io-index" 2524 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 2525 - dependencies = [ 2526 - "memchr", 2527 - "serde", 2528 - ] 2529 - 2530 - [[package]] 2531 - name = "quick-xml" 2532 - version = "0.36.2" 2533 - source = "registry+https://github.com/rust-lang/crates.io-index" 2534 - checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" 2535 - dependencies = [ 2536 - "memchr", 2537 - ] 2538 - 2539 - [[package]] 2540 - name = "quote" 2541 - version = "1.0.37" 2542 - source = "registry+https://github.com/rust-lang/crates.io-index" 2543 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 2544 - dependencies = [ 2545 - "proc-macro2", 2546 - ] 2547 - 2548 - [[package]] 2549 - name = "rand" 2550 - version = "0.8.5" 2551 - source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2553 - dependencies = [ 2554 - "libc", 2555 - "rand_chacha", 2556 - "rand_core", 2557 - ] 2558 - 2559 - [[package]] 2560 - name = "rand_chacha" 2561 - version = "0.3.1" 2562 - source = "registry+https://github.com/rust-lang/crates.io-index" 2563 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2564 - dependencies = [ 2565 - "ppv-lite86", 2566 - "rand_core", 2567 - ] 2568 - 2569 - [[package]] 2570 - name = "rand_core" 2571 - version = "0.6.4" 2572 - source = "registry+https://github.com/rust-lang/crates.io-index" 2573 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2574 - dependencies = [ 2575 - "getrandom", 2576 - ] 2577 - 2578 - [[package]] 2579 - name = "raw-window-handle" 2580 - version = "0.6.2" 2581 - source = "registry+https://github.com/rust-lang/crates.io-index" 2582 - checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 2583 - 2584 - [[package]] 2585 - name = "rayon" 2586 - version = "1.10.0" 2587 - source = "registry+https://github.com/rust-lang/crates.io-index" 2588 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 2589 - dependencies = [ 2590 - "either", 2591 - "rayon-core", 2592 - ] 2593 - 2594 - [[package]] 2595 - name = "rayon-core" 2596 - version = "1.12.1" 2597 - source = "registry+https://github.com/rust-lang/crates.io-index" 2598 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 2599 - dependencies = [ 2600 - "crossbeam-deque", 2601 - "crossbeam-utils", 2602 - ] 2603 - 2604 - [[package]] 2605 - name = "redox_syscall" 2606 - version = "0.4.1" 2607 - source = "registry+https://github.com/rust-lang/crates.io-index" 2608 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2609 - dependencies = [ 2610 - "bitflags 1.3.2", 2611 - ] 2612 - 2613 - [[package]] 2614 - name = "redox_syscall" 2615 - version = "0.5.7" 2616 - source = "registry+https://github.com/rust-lang/crates.io-index" 2617 - checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 2618 - dependencies = [ 2619 - "bitflags 2.6.0", 2620 - ] 2621 - 2622 - [[package]] 2623 - name = "regex" 2624 - version = "1.11.0" 2625 - source = "registry+https://github.com/rust-lang/crates.io-index" 2626 - checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 2627 - dependencies = [ 2628 - "aho-corasick", 2629 - "memchr", 2630 - "regex-automata", 2631 - "regex-syntax", 2632 - ] 2633 - 2634 - [[package]] 2635 - name = "regex-automata" 2636 - version = "0.4.8" 2637 - source = "registry+https://github.com/rust-lang/crates.io-index" 2638 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 2639 - dependencies = [ 2640 - "aho-corasick", 2641 - "memchr", 2642 - "regex-syntax", 2643 - ] 2644 - 2645 - [[package]] 2646 - name = "regex-syntax" 2647 - version = "0.8.5" 2648 - source = "registry+https://github.com/rust-lang/crates.io-index" 2649 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 2650 - 2651 - [[package]] 2652 - name = "renderdoc-sys" 2653 - version = "1.1.0" 2654 - source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" 2656 - 2657 - [[package]] 2658 - name = "ron" 2659 - version = "0.8.1" 2660 - source = "registry+https://github.com/rust-lang/crates.io-index" 2661 - checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 2662 - dependencies = [ 2663 - "base64", 2664 - "bitflags 2.6.0", 2665 - "serde", 2666 - "serde_derive", 2667 - ] 2668 - 2669 - [[package]] 2670 - name = "rustc-hash" 2671 - version = "1.1.0" 2672 - source = "registry+https://github.com/rust-lang/crates.io-index" 2673 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2674 - 2675 - [[package]] 2676 - name = "rustix" 2677 - version = "0.38.37" 2678 - source = "registry+https://github.com/rust-lang/crates.io-index" 2679 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 2680 - dependencies = [ 2681 - "bitflags 2.6.0", 2682 - "errno", 2683 - "libc", 2684 - "linux-raw-sys", 2685 - "windows-sys 0.52.0", 2686 - ] 2687 - 2688 - [[package]] 2689 - name = "same-file" 2690 - version = "1.0.6" 2691 - source = "registry+https://github.com/rust-lang/crates.io-index" 2692 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2693 - dependencies = [ 2694 - "winapi-util", 2695 - ] 2696 - 2697 - [[package]] 2698 - name = "scoped-tls" 2699 - version = "1.0.1" 2700 - source = "registry+https://github.com/rust-lang/crates.io-index" 2701 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2702 - 2703 - [[package]] 2704 - name = "scopeguard" 2705 - version = "1.2.0" 2706 - source = "registry+https://github.com/rust-lang/crates.io-index" 2707 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2708 - 2709 - [[package]] 2710 - name = "sctk-adwaita" 2711 - version = "0.10.1" 2712 - source = "registry+https://github.com/rust-lang/crates.io-index" 2713 - checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec" 2714 - dependencies = [ 2715 - "ab_glyph", 2716 - "log", 2717 - "memmap2", 2718 - "smithay-client-toolkit", 2719 - "tiny-skia", 2720 - ] 2721 - 2722 - [[package]] 2723 - name = "serde" 2724 - version = "1.0.211" 2725 - source = "registry+https://github.com/rust-lang/crates.io-index" 2726 - checksum = "1ac55e59090389fb9f0dd9e0f3c09615afed1d19094284d0b200441f13550793" 2727 - dependencies = [ 2728 - "serde_derive", 2729 - ] 2730 - 2731 - [[package]] 2732 - name = "serde_derive" 2733 - version = "1.0.211" 2734 - source = "registry+https://github.com/rust-lang/crates.io-index" 2735 - checksum = "54be4f245ce16bc58d57ef2716271d0d4519e0f6defa147f6e081005bcb278ff" 2736 - dependencies = [ 2737 - "proc-macro2", 2738 - "quote", 2739 - "syn 2.0.82", 2740 - ] 2741 - 2742 - [[package]] 2743 - name = "serde_repr" 2744 - version = "0.1.19" 2745 - source = "registry+https://github.com/rust-lang/crates.io-index" 2746 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 2747 - dependencies = [ 2748 - "proc-macro2", 2749 - "quote", 2750 - "syn 2.0.82", 2751 - ] 2752 - 2753 - [[package]] 2754 - name = "serde_spanned" 2755 - version = "0.6.8" 2756 - source = "registry+https://github.com/rust-lang/crates.io-index" 2757 - checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 2758 - dependencies = [ 2759 - "serde", 2760 - ] 2761 - 2762 - [[package]] 2763 - name = "sha1" 2764 - version = "0.10.6" 2765 - source = "registry+https://github.com/rust-lang/crates.io-index" 2766 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2767 - dependencies = [ 2768 - "cfg-if", 2769 - "cpufeatures", 2770 - "digest", 2771 - ] 2772 - 2773 - [[package]] 2774 - name = "shlex" 2775 - version = "1.3.0" 2776 - source = "registry+https://github.com/rust-lang/crates.io-index" 2777 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2778 - 2779 - [[package]] 2780 - name = "signal-hook-registry" 2781 - version = "1.4.2" 2782 - source = "registry+https://github.com/rust-lang/crates.io-index" 2783 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 2784 - dependencies = [ 2785 - "libc", 2786 - ] 2787 - 2788 - [[package]] 2789 - name = "simd-adler32" 2790 - version = "0.3.7" 2791 - source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2793 - 2794 - [[package]] 2795 - name = "slab" 2796 - version = "0.4.9" 2797 - source = "registry+https://github.com/rust-lang/crates.io-index" 2798 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2799 - dependencies = [ 2800 - "autocfg", 2801 - ] 2802 - 2803 - [[package]] 2804 - name = "slotmap" 2805 - version = "1.0.7" 2806 - source = "registry+https://github.com/rust-lang/crates.io-index" 2807 - checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 2808 - dependencies = [ 2809 - "version_check", 2810 - ] 2811 - 2812 - [[package]] 2813 - name = "smallvec" 2814 - version = "1.13.2" 2815 - source = "registry+https://github.com/rust-lang/crates.io-index" 2816 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2817 - 2818 - [[package]] 2819 - name = "smithay-client-toolkit" 2820 - version = "0.19.2" 2821 - source = "registry+https://github.com/rust-lang/crates.io-index" 2822 - checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016" 2823 - dependencies = [ 2824 - "bitflags 2.6.0", 2825 - "calloop", 2826 - "calloop-wayland-source", 2827 - "cursor-icon", 2828 - "libc", 2829 - "log", 2830 - "memmap2", 2831 - "rustix", 2832 - "thiserror", 2833 - "wayland-backend", 2834 - "wayland-client", 2835 - "wayland-csd-frame", 2836 - "wayland-cursor", 2837 - "wayland-protocols", 2838 - "wayland-protocols-wlr", 2839 - "wayland-scanner", 2840 - "xkeysym", 2841 - ] 2842 - 2843 - [[package]] 2844 - name = "smithay-clipboard" 2845 - version = "0.7.2" 2846 - source = "registry+https://github.com/rust-lang/crates.io-index" 2847 - checksum = "cc8216eec463674a0e90f29e0ae41a4db573ec5b56b1c6c1c71615d249b6d846" 2848 - dependencies = [ 2849 - "libc", 2850 - "smithay-client-toolkit", 2851 - "wayland-backend", 2852 - ] 2853 - 2854 - [[package]] 2855 - name = "smol_str" 2856 - version = "0.2.2" 2857 - source = "registry+https://github.com/rust-lang/crates.io-index" 2858 - checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 2859 - dependencies = [ 2860 - "serde", 2861 - ] 2862 - 2863 - [[package]] 2864 - name = "spirv" 2865 - version = "0.3.0+sdk-1.3.268.0" 2866 - source = "registry+https://github.com/rust-lang/crates.io-index" 2867 - checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844" 2868 - dependencies = [ 2869 - "bitflags 2.6.0", 2870 - ] 2871 - 2872 - [[package]] 2873 - name = "static_assertions" 2874 - version = "1.1.0" 2875 - source = "registry+https://github.com/rust-lang/crates.io-index" 2876 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2877 - 2878 - [[package]] 2879 - name = "strict-num" 2880 - version = "0.1.1" 2881 - source = "registry+https://github.com/rust-lang/crates.io-index" 2882 - checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 2883 - 2884 - [[package]] 2885 - name = "syn" 2886 - version = "1.0.109" 2887 - source = "registry+https://github.com/rust-lang/crates.io-index" 2888 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2889 - dependencies = [ 2890 - "proc-macro2", 2891 - "quote", 2892 - "unicode-ident", 2893 - ] 2894 - 2895 - [[package]] 2896 - name = "syn" 2897 - version = "2.0.82" 2898 - source = "registry+https://github.com/rust-lang/crates.io-index" 2899 - checksum = "83540f837a8afc019423a8edb95b52a8effe46957ee402287f4292fae35be021" 2900 - dependencies = [ 2901 - "proc-macro2", 2902 - "quote", 2903 - "unicode-ident", 2904 - ] 2905 - 2906 - [[package]] 2907 - name = "system-deps" 2908 - version = "6.2.2" 2909 - source = "registry+https://github.com/rust-lang/crates.io-index" 2910 - checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 2911 - dependencies = [ 2912 - "cfg-expr", 2913 - "heck", 2914 - "pkg-config", 2915 - "toml", 2916 - "version-compare", 2917 - ] 2918 - 2919 - [[package]] 2920 - name = "target-lexicon" 2921 - version = "0.12.16" 2922 - source = "registry+https://github.com/rust-lang/crates.io-index" 2923 - checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 2924 - 2925 - [[package]] 2926 - name = "tempfile" 2927 - version = "3.13.0" 2928 - source = "registry+https://github.com/rust-lang/crates.io-index" 2929 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 2930 - dependencies = [ 2931 - "cfg-if", 2932 - "fastrand", 2933 - "once_cell", 2934 - "rustix", 2935 - "windows-sys 0.59.0", 2936 - ] 2937 - 2938 - [[package]] 2939 - name = "termcolor" 2940 - version = "1.4.1" 2941 - source = "registry+https://github.com/rust-lang/crates.io-index" 2942 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 2943 - dependencies = [ 2944 - "winapi-util", 2945 - ] 2946 - 2947 - [[package]] 2948 - name = "thiserror" 2949 - version = "1.0.64" 2950 - source = "registry+https://github.com/rust-lang/crates.io-index" 2951 - checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 2952 - dependencies = [ 2953 - "thiserror-impl", 2954 - ] 2955 - 2956 - [[package]] 2957 - name = "thiserror-impl" 2958 - version = "1.0.64" 2959 - source = "registry+https://github.com/rust-lang/crates.io-index" 2960 - checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 2961 - dependencies = [ 2962 - "proc-macro2", 2963 - "quote", 2964 - "syn 2.0.82", 2965 - ] 2966 - 2967 - [[package]] 2968 - name = "tiny-skia" 2969 - version = "0.11.4" 2970 - source = "registry+https://github.com/rust-lang/crates.io-index" 2971 - checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 2972 - dependencies = [ 2973 - "arrayref", 2974 - "arrayvec", 2975 - "bytemuck", 2976 - "cfg-if", 2977 - "log", 2978 - "tiny-skia-path", 2979 - ] 2980 - 2981 - [[package]] 2982 - name = "tiny-skia-path" 2983 - version = "0.11.4" 2984 - source = "registry+https://github.com/rust-lang/crates.io-index" 2985 - checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 2986 - dependencies = [ 2987 - "arrayref", 2988 - "bytemuck", 2989 - "strict-num", 2990 - ] 2991 - 2992 - [[package]] 2993 - name = "tinyvec" 2994 - version = "1.8.0" 2995 - source = "registry+https://github.com/rust-lang/crates.io-index" 2996 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 2997 - dependencies = [ 2998 - "tinyvec_macros", 2999 - ] 3000 - 3001 - [[package]] 3002 - name = "tinyvec_macros" 3003 - version = "0.1.1" 3004 - source = "registry+https://github.com/rust-lang/crates.io-index" 3005 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3006 - 3007 - [[package]] 3008 - name = "toml" 3009 - version = "0.8.19" 3010 - source = "registry+https://github.com/rust-lang/crates.io-index" 3011 - checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 3012 - dependencies = [ 3013 - "serde", 3014 - "serde_spanned", 3015 - "toml_datetime", 3016 - "toml_edit", 3017 - ] 3018 - 3019 - [[package]] 3020 - name = "toml_datetime" 3021 - version = "0.6.8" 3022 - source = "registry+https://github.com/rust-lang/crates.io-index" 3023 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 3024 - dependencies = [ 3025 - "serde", 3026 - ] 3027 - 3028 - [[package]] 3029 - name = "toml_edit" 3030 - version = "0.22.22" 3031 - source = "registry+https://github.com/rust-lang/crates.io-index" 3032 - checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 3033 - dependencies = [ 3034 - "indexmap", 3035 - "serde", 3036 - "serde_spanned", 3037 - "toml_datetime", 3038 - "winnow", 3039 - ] 3040 - 3041 - [[package]] 3042 - name = "tracing" 3043 - version = "0.1.40" 3044 - source = "registry+https://github.com/rust-lang/crates.io-index" 3045 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3046 - dependencies = [ 3047 - "pin-project-lite", 3048 - "tracing-attributes", 3049 - "tracing-core", 3050 - ] 3051 - 3052 - [[package]] 3053 - name = "tracing-attributes" 3054 - version = "0.1.27" 3055 - source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3057 - dependencies = [ 3058 - "proc-macro2", 3059 - "quote", 3060 - "syn 2.0.82", 3061 - ] 3062 - 3063 - [[package]] 3064 - name = "tracing-core" 3065 - version = "0.1.32" 3066 - source = "registry+https://github.com/rust-lang/crates.io-index" 3067 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3068 - dependencies = [ 3069 - "once_cell", 3070 - ] 3071 - 3072 - [[package]] 3073 - name = "ttf-parser" 3074 - version = "0.25.0" 3075 - source = "registry+https://github.com/rust-lang/crates.io-index" 3076 - checksum = "5902c5d130972a0000f60860bfbf46f7ca3db5391eddfedd1b8728bd9dc96c0e" 3077 - 3078 - [[package]] 3079 - name = "type-map" 3080 - version = "0.5.0" 3081 - source = "registry+https://github.com/rust-lang/crates.io-index" 3082 - checksum = "deb68604048ff8fa93347f02441e4487594adc20bb8a084f9e564d2b827a0a9f" 3083 - dependencies = [ 3084 - "rustc-hash", 3085 - ] 3086 - 3087 - [[package]] 3088 - name = "typenum" 3089 - version = "1.17.0" 3090 - source = "registry+https://github.com/rust-lang/crates.io-index" 3091 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3092 - 3093 - [[package]] 3094 - name = "uds_windows" 3095 - version = "1.1.0" 3096 - source = "registry+https://github.com/rust-lang/crates.io-index" 3097 - checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 3098 - dependencies = [ 3099 - "memoffset", 3100 - "tempfile", 3101 - "winapi", 3102 - ] 3103 - 3104 - [[package]] 3105 - name = "unicode-bidi" 3106 - version = "0.3.17" 3107 - source = "registry+https://github.com/rust-lang/crates.io-index" 3108 - checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 3109 - 3110 - [[package]] 3111 - name = "unicode-ident" 3112 - version = "1.0.13" 3113 - source = "registry+https://github.com/rust-lang/crates.io-index" 3114 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 3115 - 3116 - [[package]] 3117 - name = "unicode-normalization" 3118 - version = "0.1.24" 3119 - source = "registry+https://github.com/rust-lang/crates.io-index" 3120 - checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 3121 - dependencies = [ 3122 - "tinyvec", 3123 - ] 3124 - 3125 - [[package]] 3126 - name = "unicode-segmentation" 3127 - version = "1.12.0" 3128 - source = "registry+https://github.com/rust-lang/crates.io-index" 3129 - checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 3130 - 3131 - [[package]] 3132 - name = "unicode-width" 3133 - version = "0.1.14" 3134 - source = "registry+https://github.com/rust-lang/crates.io-index" 3135 - checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 3136 - 3137 - [[package]] 3138 - name = "unicode-xid" 3139 - version = "0.2.6" 3140 - source = "registry+https://github.com/rust-lang/crates.io-index" 3141 - checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 3142 - 3143 - [[package]] 3144 - name = "url" 3145 - version = "2.5.2" 3146 - source = "registry+https://github.com/rust-lang/crates.io-index" 3147 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 3148 - dependencies = [ 3149 - "form_urlencoded", 3150 - "idna", 3151 - "percent-encoding", 3152 - "serde", 3153 - ] 3154 - 3155 - [[package]] 3156 - name = "version-compare" 3157 - version = "0.2.0" 3158 - source = "registry+https://github.com/rust-lang/crates.io-index" 3159 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 3160 - 3161 - [[package]] 3162 - name = "version_check" 3163 - version = "0.9.5" 3164 - source = "registry+https://github.com/rust-lang/crates.io-index" 3165 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3166 - 3167 - [[package]] 3168 - name = "walkdir" 3169 - version = "2.5.0" 3170 - source = "registry+https://github.com/rust-lang/crates.io-index" 3171 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3172 - dependencies = [ 3173 - "same-file", 3174 - "winapi-util", 3175 - ] 3176 - 3177 - [[package]] 3178 - name = "wasi" 3179 - version = "0.11.0+wasi-snapshot-preview1" 3180 - source = "registry+https://github.com/rust-lang/crates.io-index" 3181 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3182 - 3183 - [[package]] 3184 - name = "wasm-bindgen" 3185 - version = "0.2.95" 3186 - source = "registry+https://github.com/rust-lang/crates.io-index" 3187 - checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" 3188 - dependencies = [ 3189 - "cfg-if", 3190 - "once_cell", 3191 - "wasm-bindgen-macro", 3192 - ] 3193 - 3194 - [[package]] 3195 - name = "wasm-bindgen-backend" 3196 - version = "0.2.95" 3197 - source = "registry+https://github.com/rust-lang/crates.io-index" 3198 - checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" 3199 - dependencies = [ 3200 - "bumpalo", 3201 - "log", 3202 - "once_cell", 3203 - "proc-macro2", 3204 - "quote", 3205 - "syn 2.0.82", 3206 - "wasm-bindgen-shared", 3207 - ] 3208 - 3209 - [[package]] 3210 - name = "wasm-bindgen-futures" 3211 - version = "0.4.45" 3212 - source = "registry+https://github.com/rust-lang/crates.io-index" 3213 - checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" 3214 - dependencies = [ 3215 - "cfg-if", 3216 - "js-sys", 3217 - "wasm-bindgen", 3218 - "web-sys", 3219 - ] 3220 - 3221 - [[package]] 3222 - name = "wasm-bindgen-macro" 3223 - version = "0.2.95" 3224 - source = "registry+https://github.com/rust-lang/crates.io-index" 3225 - checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" 3226 - dependencies = [ 3227 - "quote", 3228 - "wasm-bindgen-macro-support", 3229 - ] 3230 - 3231 - [[package]] 3232 - name = "wasm-bindgen-macro-support" 3233 - version = "0.2.95" 3234 - source = "registry+https://github.com/rust-lang/crates.io-index" 3235 - checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" 3236 - dependencies = [ 3237 - "proc-macro2", 3238 - "quote", 3239 - "syn 2.0.82", 3240 - "wasm-bindgen-backend", 3241 - "wasm-bindgen-shared", 3242 - ] 3243 - 3244 - [[package]] 3245 - name = "wasm-bindgen-shared" 3246 - version = "0.2.95" 3247 - source = "registry+https://github.com/rust-lang/crates.io-index" 3248 - checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" 3249 - 3250 - [[package]] 3251 - name = "wayland-backend" 3252 - version = "0.3.7" 3253 - source = "registry+https://github.com/rust-lang/crates.io-index" 3254 - checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6" 3255 - dependencies = [ 3256 - "cc", 3257 - "downcast-rs", 3258 - "rustix", 3259 - "scoped-tls", 3260 - "smallvec", 3261 - "wayland-sys", 3262 - ] 3263 - 3264 - [[package]] 3265 - name = "wayland-client" 3266 - version = "0.31.6" 3267 - source = "registry+https://github.com/rust-lang/crates.io-index" 3268 - checksum = "e3f45d1222915ef1fd2057220c1d9d9624b7654443ea35c3877f7a52bd0a5a2d" 3269 - dependencies = [ 3270 - "bitflags 2.6.0", 3271 - "rustix", 3272 - "wayland-backend", 3273 - "wayland-scanner", 3274 - ] 3275 - 3276 - [[package]] 3277 - name = "wayland-csd-frame" 3278 - version = "0.3.0" 3279 - source = "registry+https://github.com/rust-lang/crates.io-index" 3280 - checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 3281 - dependencies = [ 3282 - "bitflags 2.6.0", 3283 - "cursor-icon", 3284 - "wayland-backend", 3285 - ] 3286 - 3287 - [[package]] 3288 - name = "wayland-cursor" 3289 - version = "0.31.6" 3290 - source = "registry+https://github.com/rust-lang/crates.io-index" 3291 - checksum = "3a94697e66e76c85923b0d28a0c251e8f0666f58fc47d316c0f4da6da75d37cb" 3292 - dependencies = [ 3293 - "rustix", 3294 - "wayland-client", 3295 - "xcursor", 3296 - ] 3297 - 3298 - [[package]] 3299 - name = "wayland-protocols" 3300 - version = "0.32.4" 3301 - source = "registry+https://github.com/rust-lang/crates.io-index" 3302 - checksum = "2b5755d77ae9040bb872a25026555ce4cb0ae75fd923e90d25fba07d81057de0" 3303 - dependencies = [ 3304 - "bitflags 2.6.0", 3305 - "wayland-backend", 3306 - "wayland-client", 3307 - "wayland-scanner", 3308 - ] 3309 - 3310 - [[package]] 3311 - name = "wayland-protocols-plasma" 3312 - version = "0.3.4" 3313 - source = "registry+https://github.com/rust-lang/crates.io-index" 3314 - checksum = "8a0a41a6875e585172495f7a96dfa42ca7e0213868f4f15c313f7c33221a7eff" 3315 - dependencies = [ 3316 - "bitflags 2.6.0", 3317 - "wayland-backend", 3318 - "wayland-client", 3319 - "wayland-protocols", 3320 - "wayland-scanner", 3321 - ] 3322 - 3323 - [[package]] 3324 - name = "wayland-protocols-wlr" 3325 - version = "0.3.4" 3326 - source = "registry+https://github.com/rust-lang/crates.io-index" 3327 - checksum = "dad87b5fd1b1d3ca2f792df8f686a2a11e3fe1077b71096f7a175ab699f89109" 3328 - dependencies = [ 3329 - "bitflags 2.6.0", 3330 - "wayland-backend", 3331 - "wayland-client", 3332 - "wayland-protocols", 3333 - "wayland-scanner", 3334 - ] 3335 - 3336 - [[package]] 3337 - name = "wayland-scanner" 3338 - version = "0.31.5" 3339 - source = "registry+https://github.com/rust-lang/crates.io-index" 3340 - checksum = "597f2001b2e5fc1121e3d5b9791d3e78f05ba6bfa4641053846248e3a13661c3" 3341 - dependencies = [ 3342 - "proc-macro2", 3343 - "quick-xml 0.36.2", 3344 - "quote", 3345 - ] 3346 - 3347 - [[package]] 3348 - name = "wayland-sys" 3349 - version = "0.31.5" 3350 - source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "efa8ac0d8e8ed3e3b5c9fc92c7881406a268e11555abe36493efabe649a29e09" 3352 - dependencies = [ 3353 - "dlib", 3354 - "log", 3355 - "once_cell", 3356 - "pkg-config", 3357 - ] 3358 - 3359 - [[package]] 3360 - name = "web-sys" 3361 - version = "0.3.72" 3362 - source = "registry+https://github.com/rust-lang/crates.io-index" 3363 - checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" 3364 - dependencies = [ 3365 - "js-sys", 3366 - "wasm-bindgen", 3367 - ] 3368 - 3369 - [[package]] 3370 - name = "web-time" 3371 - version = "1.1.0" 3372 - source = "registry+https://github.com/rust-lang/crates.io-index" 3373 - checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3374 - dependencies = [ 3375 - "js-sys", 3376 - "wasm-bindgen", 3377 - ] 3378 - 3379 - [[package]] 3380 - name = "webbrowser" 3381 - version = "1.0.2" 3382 - source = "registry+https://github.com/rust-lang/crates.io-index" 3383 - checksum = "2e5f07fb9bc8de2ddfe6b24a71a75430673fd679e568c48b52716cef1cfae923" 3384 - dependencies = [ 3385 - "block2", 3386 - "core-foundation 0.10.0", 3387 - "home", 3388 - "jni", 3389 - "log", 3390 - "ndk-context", 3391 - "objc2", 3392 - "objc2-foundation", 3393 - "url", 3394 - "web-sys", 3395 - ] 3396 - 3397 - [[package]] 3398 - name = "wgpu" 3399 - version = "22.1.0" 3400 - source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "e1d1c4ba43f80542cf63a0a6ed3134629ae73e8ab51e4b765a67f3aa062eb433" 3402 - dependencies = [ 3403 - "arrayvec", 3404 - "cfg_aliases 0.1.1", 3405 - "document-features", 3406 - "js-sys", 3407 - "log", 3408 - "parking_lot", 3409 - "profiling", 3410 - "raw-window-handle", 3411 - "smallvec", 3412 - "static_assertions", 3413 - "wasm-bindgen", 3414 - "wasm-bindgen-futures", 3415 - "web-sys", 3416 - "wgpu-core", 3417 - "wgpu-hal", 3418 - "wgpu-types", 3419 - ] 3420 - 3421 - [[package]] 3422 - name = "wgpu-core" 3423 - version = "22.1.0" 3424 - source = "registry+https://github.com/rust-lang/crates.io-index" 3425 - checksum = "0348c840d1051b8e86c3bcd31206080c5e71e5933dabd79be1ce732b0b2f089a" 3426 - dependencies = [ 3427 - "arrayvec", 3428 - "bit-vec", 3429 - "bitflags 2.6.0", 3430 - "cfg_aliases 0.1.1", 3431 - "document-features", 3432 - "indexmap", 3433 - "log", 3434 - "naga", 3435 - "once_cell", 3436 - "parking_lot", 3437 - "profiling", 3438 - "raw-window-handle", 3439 - "rustc-hash", 3440 - "smallvec", 3441 - "thiserror", 3442 - "wgpu-hal", 3443 - "wgpu-types", 3444 - ] 3445 - 3446 - [[package]] 3447 - name = "wgpu-hal" 3448 - version = "22.0.0" 3449 - source = "registry+https://github.com/rust-lang/crates.io-index" 3450 - checksum = "f6bbf4b4de8b2a83c0401d9e5ae0080a2792055f25859a02bf9be97952bbed4f" 3451 - dependencies = [ 3452 - "android_system_properties", 3453 - "arrayvec", 3454 - "ash", 3455 - "bitflags 2.6.0", 3456 - "cfg_aliases 0.1.1", 3457 - "core-graphics-types", 3458 - "glow 0.13.1", 3459 - "glutin_wgl_sys", 3460 - "gpu-alloc", 3461 - "gpu-allocator", 3462 - "gpu-descriptor", 3463 - "hassle-rs", 3464 - "js-sys", 3465 - "khronos-egl", 3466 - "libc", 3467 - "libloading", 3468 - "log", 3469 - "metal", 3470 - "naga", 3471 - "ndk-sys 0.5.0+25.2.9519653", 3472 - "objc", 3473 - "once_cell", 3474 - "parking_lot", 3475 - "profiling", 3476 - "raw-window-handle", 3477 - "renderdoc-sys", 3478 - "rustc-hash", 3479 - "smallvec", 3480 - "thiserror", 3481 - "wasm-bindgen", 3482 - "web-sys", 3483 - "wgpu-types", 3484 - "winapi", 3485 - ] 3486 - 3487 - [[package]] 3488 - name = "wgpu-types" 3489 - version = "22.0.0" 3490 - source = "registry+https://github.com/rust-lang/crates.io-index" 3491 - checksum = "bc9d91f0e2c4b51434dfa6db77846f2793149d8e73f800fa2e41f52b8eac3c5d" 3492 - dependencies = [ 3493 - "bitflags 2.6.0", 3494 - "js-sys", 3495 - "web-sys", 3496 - ] 3497 - 3498 - [[package]] 3499 - name = "widestring" 3500 - version = "1.1.0" 3501 - source = "registry+https://github.com/rust-lang/crates.io-index" 3502 - checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 3503 - 3504 - [[package]] 3505 - name = "winapi" 3506 - version = "0.3.9" 3507 - source = "registry+https://github.com/rust-lang/crates.io-index" 3508 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3509 - dependencies = [ 3510 - "winapi-i686-pc-windows-gnu", 3511 - "winapi-x86_64-pc-windows-gnu", 3512 - ] 3513 - 3514 - [[package]] 3515 - name = "winapi-i686-pc-windows-gnu" 3516 - version = "0.4.0" 3517 - source = "registry+https://github.com/rust-lang/crates.io-index" 3518 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3519 - 3520 - [[package]] 3521 - name = "winapi-util" 3522 - version = "0.1.9" 3523 - source = "registry+https://github.com/rust-lang/crates.io-index" 3524 - checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 3525 - dependencies = [ 3526 - "windows-sys 0.59.0", 3527 - ] 3528 - 3529 - [[package]] 3530 - name = "winapi-x86_64-pc-windows-gnu" 3531 - version = "0.4.0" 3532 - source = "registry+https://github.com/rust-lang/crates.io-index" 3533 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3534 - 3535 - [[package]] 3536 - name = "windows" 3537 - version = "0.52.0" 3538 - source = "registry+https://github.com/rust-lang/crates.io-index" 3539 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 3540 - dependencies = [ 3541 - "windows-core 0.52.0", 3542 - "windows-targets 0.52.6", 3543 - ] 3544 - 3545 - [[package]] 3546 - name = "windows" 3547 - version = "0.58.0" 3548 - source = "registry+https://github.com/rust-lang/crates.io-index" 3549 - checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" 3550 - dependencies = [ 3551 - "windows-core 0.58.0", 3552 - "windows-targets 0.52.6", 3553 - ] 3554 - 3555 - [[package]] 3556 - name = "windows-core" 3557 - version = "0.52.0" 3558 - source = "registry+https://github.com/rust-lang/crates.io-index" 3559 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3560 - dependencies = [ 3561 - "windows-targets 0.52.6", 3562 - ] 3563 - 3564 - [[package]] 3565 - name = "windows-core" 3566 - version = "0.58.0" 3567 - source = "registry+https://github.com/rust-lang/crates.io-index" 3568 - checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" 3569 - dependencies = [ 3570 - "windows-implement", 3571 - "windows-interface", 3572 - "windows-result", 3573 - "windows-strings", 3574 - "windows-targets 0.52.6", 3575 - ] 3576 - 3577 - [[package]] 3578 - name = "windows-implement" 3579 - version = "0.58.0" 3580 - source = "registry+https://github.com/rust-lang/crates.io-index" 3581 - checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" 3582 - dependencies = [ 3583 - "proc-macro2", 3584 - "quote", 3585 - "syn 2.0.82", 3586 - ] 3587 - 3588 - [[package]] 3589 - name = "windows-interface" 3590 - version = "0.58.0" 3591 - source = "registry+https://github.com/rust-lang/crates.io-index" 3592 - checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" 3593 - dependencies = [ 3594 - "proc-macro2", 3595 - "quote", 3596 - "syn 2.0.82", 3597 - ] 3598 - 3599 - [[package]] 3600 - name = "windows-result" 3601 - version = "0.2.0" 3602 - source = "registry+https://github.com/rust-lang/crates.io-index" 3603 - checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 3604 - dependencies = [ 3605 - "windows-targets 0.52.6", 3606 - ] 3607 - 3608 - [[package]] 3609 - name = "windows-strings" 3610 - version = "0.1.0" 3611 - source = "registry+https://github.com/rust-lang/crates.io-index" 3612 - checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 3613 - dependencies = [ 3614 - "windows-result", 3615 - "windows-targets 0.52.6", 3616 - ] 3617 - 3618 - [[package]] 3619 - name = "windows-sys" 3620 - version = "0.45.0" 3621 - source = "registry+https://github.com/rust-lang/crates.io-index" 3622 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3623 - dependencies = [ 3624 - "windows-targets 0.42.2", 3625 - ] 3626 - 3627 - [[package]] 3628 - name = "windows-sys" 3629 - version = "0.52.0" 3630 - source = "registry+https://github.com/rust-lang/crates.io-index" 3631 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3632 - dependencies = [ 3633 - "windows-targets 0.52.6", 3634 - ] 3635 - 3636 - [[package]] 3637 - name = "windows-sys" 3638 - version = "0.59.0" 3639 - source = "registry+https://github.com/rust-lang/crates.io-index" 3640 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3641 - dependencies = [ 3642 - "windows-targets 0.52.6", 3643 - ] 3644 - 3645 - [[package]] 3646 - name = "windows-targets" 3647 - version = "0.42.2" 3648 - source = "registry+https://github.com/rust-lang/crates.io-index" 3649 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3650 - dependencies = [ 3651 - "windows_aarch64_gnullvm 0.42.2", 3652 - "windows_aarch64_msvc 0.42.2", 3653 - "windows_i686_gnu 0.42.2", 3654 - "windows_i686_msvc 0.42.2", 3655 - "windows_x86_64_gnu 0.42.2", 3656 - "windows_x86_64_gnullvm 0.42.2", 3657 - "windows_x86_64_msvc 0.42.2", 3658 - ] 3659 - 3660 - [[package]] 3661 - name = "windows-targets" 3662 - version = "0.48.5" 3663 - source = "registry+https://github.com/rust-lang/crates.io-index" 3664 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3665 - dependencies = [ 3666 - "windows_aarch64_gnullvm 0.48.5", 3667 - "windows_aarch64_msvc 0.48.5", 3668 - "windows_i686_gnu 0.48.5", 3669 - "windows_i686_msvc 0.48.5", 3670 - "windows_x86_64_gnu 0.48.5", 3671 - "windows_x86_64_gnullvm 0.48.5", 3672 - "windows_x86_64_msvc 0.48.5", 3673 - ] 3674 - 3675 - [[package]] 3676 - name = "windows-targets" 3677 - version = "0.52.6" 3678 - source = "registry+https://github.com/rust-lang/crates.io-index" 3679 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3680 - dependencies = [ 3681 - "windows_aarch64_gnullvm 0.52.6", 3682 - "windows_aarch64_msvc 0.52.6", 3683 - "windows_i686_gnu 0.52.6", 3684 - "windows_i686_gnullvm", 3685 - "windows_i686_msvc 0.52.6", 3686 - "windows_x86_64_gnu 0.52.6", 3687 - "windows_x86_64_gnullvm 0.52.6", 3688 - "windows_x86_64_msvc 0.52.6", 3689 - ] 3690 - 3691 - [[package]] 3692 - name = "windows_aarch64_gnullvm" 3693 - version = "0.42.2" 3694 - source = "registry+https://github.com/rust-lang/crates.io-index" 3695 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3696 - 3697 - [[package]] 3698 - name = "windows_aarch64_gnullvm" 3699 - version = "0.48.5" 3700 - source = "registry+https://github.com/rust-lang/crates.io-index" 3701 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3702 - 3703 - [[package]] 3704 - name = "windows_aarch64_gnullvm" 3705 - version = "0.52.6" 3706 - source = "registry+https://github.com/rust-lang/crates.io-index" 3707 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3708 - 3709 - [[package]] 3710 - name = "windows_aarch64_msvc" 3711 - version = "0.42.2" 3712 - source = "registry+https://github.com/rust-lang/crates.io-index" 3713 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3714 - 3715 - [[package]] 3716 - name = "windows_aarch64_msvc" 3717 - version = "0.48.5" 3718 - source = "registry+https://github.com/rust-lang/crates.io-index" 3719 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3720 - 3721 - [[package]] 3722 - name = "windows_aarch64_msvc" 3723 - version = "0.52.6" 3724 - source = "registry+https://github.com/rust-lang/crates.io-index" 3725 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3726 - 3727 - [[package]] 3728 - name = "windows_i686_gnu" 3729 - version = "0.42.2" 3730 - source = "registry+https://github.com/rust-lang/crates.io-index" 3731 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3732 - 3733 - [[package]] 3734 - name = "windows_i686_gnu" 3735 - version = "0.48.5" 3736 - source = "registry+https://github.com/rust-lang/crates.io-index" 3737 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3738 - 3739 - [[package]] 3740 - name = "windows_i686_gnu" 3741 - version = "0.52.6" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3744 - 3745 - [[package]] 3746 - name = "windows_i686_gnullvm" 3747 - version = "0.52.6" 3748 - source = "registry+https://github.com/rust-lang/crates.io-index" 3749 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3750 - 3751 - [[package]] 3752 - name = "windows_i686_msvc" 3753 - version = "0.42.2" 3754 - source = "registry+https://github.com/rust-lang/crates.io-index" 3755 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3756 - 3757 - [[package]] 3758 - name = "windows_i686_msvc" 3759 - version = "0.48.5" 3760 - source = "registry+https://github.com/rust-lang/crates.io-index" 3761 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3762 - 3763 - [[package]] 3764 - name = "windows_i686_msvc" 3765 - version = "0.52.6" 3766 - source = "registry+https://github.com/rust-lang/crates.io-index" 3767 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3768 - 3769 - [[package]] 3770 - name = "windows_x86_64_gnu" 3771 - version = "0.42.2" 3772 - source = "registry+https://github.com/rust-lang/crates.io-index" 3773 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3774 - 3775 - [[package]] 3776 - name = "windows_x86_64_gnu" 3777 - version = "0.48.5" 3778 - source = "registry+https://github.com/rust-lang/crates.io-index" 3779 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3780 - 3781 - [[package]] 3782 - name = "windows_x86_64_gnu" 3783 - version = "0.52.6" 3784 - source = "registry+https://github.com/rust-lang/crates.io-index" 3785 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3786 - 3787 - [[package]] 3788 - name = "windows_x86_64_gnullvm" 3789 - version = "0.42.2" 3790 - source = "registry+https://github.com/rust-lang/crates.io-index" 3791 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3792 - 3793 - [[package]] 3794 - name = "windows_x86_64_gnullvm" 3795 - version = "0.48.5" 3796 - source = "registry+https://github.com/rust-lang/crates.io-index" 3797 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3798 - 3799 - [[package]] 3800 - name = "windows_x86_64_gnullvm" 3801 - version = "0.52.6" 3802 - source = "registry+https://github.com/rust-lang/crates.io-index" 3803 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3804 - 3805 - [[package]] 3806 - name = "windows_x86_64_msvc" 3807 - version = "0.42.2" 3808 - source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3810 - 3811 - [[package]] 3812 - name = "windows_x86_64_msvc" 3813 - version = "0.48.5" 3814 - source = "registry+https://github.com/rust-lang/crates.io-index" 3815 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3816 - 3817 - [[package]] 3818 - name = "windows_x86_64_msvc" 3819 - version = "0.52.6" 3820 - source = "registry+https://github.com/rust-lang/crates.io-index" 3821 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3822 - 3823 - [[package]] 3824 - name = "winit" 3825 - version = "0.30.5" 3826 - source = "registry+https://github.com/rust-lang/crates.io-index" 3827 - checksum = "0be9e76a1f1077e04a411f0b989cbd3c93339e1771cb41e71ac4aee95bfd2c67" 3828 - dependencies = [ 3829 - "ahash", 3830 - "android-activity", 3831 - "atomic-waker", 3832 - "bitflags 2.6.0", 3833 - "block2", 3834 - "bytemuck", 3835 - "calloop", 3836 - "cfg_aliases 0.2.1", 3837 - "concurrent-queue", 3838 - "core-foundation 0.9.4", 3839 - "core-graphics", 3840 - "cursor-icon", 3841 - "dpi", 3842 - "js-sys", 3843 - "libc", 3844 - "memmap2", 3845 - "ndk", 3846 - "objc2", 3847 - "objc2-app-kit", 3848 - "objc2-foundation", 3849 - "objc2-ui-kit", 3850 - "orbclient", 3851 - "percent-encoding", 3852 - "pin-project", 3853 - "raw-window-handle", 3854 - "redox_syscall 0.4.1", 3855 - "rustix", 3856 - "sctk-adwaita", 3857 - "smithay-client-toolkit", 3858 - "smol_str", 3859 - "tracing", 3860 - "unicode-segmentation", 3861 - "wasm-bindgen", 3862 - "wasm-bindgen-futures", 3863 - "wayland-backend", 3864 - "wayland-client", 3865 - "wayland-protocols", 3866 - "wayland-protocols-plasma", 3867 - "web-sys", 3868 - "web-time", 3869 - "windows-sys 0.52.0", 3870 - "x11-dl", 3871 - "x11rb", 3872 - "xkbcommon-dl", 3873 - ] 3874 - 3875 - [[package]] 3876 - name = "winnow" 3877 - version = "0.6.20" 3878 - source = "registry+https://github.com/rust-lang/crates.io-index" 3879 - checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 3880 - dependencies = [ 3881 - "memchr", 3882 - ] 3883 - 3884 - [[package]] 3885 - name = "x11-dl" 3886 - version = "2.21.0" 3887 - source = "registry+https://github.com/rust-lang/crates.io-index" 3888 - checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 3889 - dependencies = [ 3890 - "libc", 3891 - "once_cell", 3892 - "pkg-config", 3893 - ] 3894 - 3895 - [[package]] 3896 - name = "x11rb" 3897 - version = "0.13.1" 3898 - source = "registry+https://github.com/rust-lang/crates.io-index" 3899 - checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" 3900 - dependencies = [ 3901 - "as-raw-xcb-connection", 3902 - "gethostname", 3903 - "libc", 3904 - "libloading", 3905 - "once_cell", 3906 - "rustix", 3907 - "x11rb-protocol", 3908 - ] 3909 - 3910 - [[package]] 3911 - name = "x11rb-protocol" 3912 - version = "0.13.1" 3913 - source = "registry+https://github.com/rust-lang/crates.io-index" 3914 - checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" 3915 - 3916 - [[package]] 3917 - name = "xcursor" 3918 - version = "0.3.8" 3919 - source = "registry+https://github.com/rust-lang/crates.io-index" 3920 - checksum = "0ef33da6b1660b4ddbfb3aef0ade110c8b8a781a3b6382fa5f2b5b040fd55f61" 3921 - 3922 - [[package]] 3923 - name = "xdg-home" 3924 - version = "1.3.0" 3925 - source = "registry+https://github.com/rust-lang/crates.io-index" 3926 - checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" 3927 - dependencies = [ 3928 - "libc", 3929 - "windows-sys 0.59.0", 3930 - ] 3931 - 3932 - [[package]] 3933 - name = "xkbcommon-dl" 3934 - version = "0.4.2" 3935 - source = "registry+https://github.com/rust-lang/crates.io-index" 3936 - checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5" 3937 - dependencies = [ 3938 - "bitflags 2.6.0", 3939 - "dlib", 3940 - "log", 3941 - "once_cell", 3942 - "xkeysym", 3943 - ] 3944 - 3945 - [[package]] 3946 - name = "xkeysym" 3947 - version = "0.2.1" 3948 - source = "registry+https://github.com/rust-lang/crates.io-index" 3949 - checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" 3950 - 3951 - [[package]] 3952 - name = "xml-rs" 3953 - version = "0.8.22" 3954 - source = "registry+https://github.com/rust-lang/crates.io-index" 3955 - checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26" 3956 - 3957 - [[package]] 3958 - name = "yansi" 3959 - version = "1.0.1" 3960 - source = "registry+https://github.com/rust-lang/crates.io-index" 3961 - checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 3962 - 3963 - [[package]] 3964 - name = "yansi-term" 3965 - version = "0.1.2" 3966 - source = "registry+https://github.com/rust-lang/crates.io-index" 3967 - checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1" 3968 - dependencies = [ 3969 - "winapi", 3970 - ] 3971 - 3972 - [[package]] 3973 - name = "zbus" 3974 - version = "4.4.0" 3975 - source = "registry+https://github.com/rust-lang/crates.io-index" 3976 - checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725" 3977 - dependencies = [ 3978 - "async-broadcast", 3979 - "async-executor", 3980 - "async-fs", 3981 - "async-io", 3982 - "async-lock", 3983 - "async-process", 3984 - "async-recursion", 3985 - "async-task", 3986 - "async-trait", 3987 - "blocking", 3988 - "enumflags2", 3989 - "event-listener", 3990 - "futures-core", 3991 - "futures-sink", 3992 - "futures-util", 3993 - "hex", 3994 - "nix 0.29.0", 3995 - "ordered-stream", 3996 - "rand", 3997 - "serde", 3998 - "serde_repr", 3999 - "sha1", 4000 - "static_assertions", 4001 - "tracing", 4002 - "uds_windows", 4003 - "windows-sys 0.52.0", 4004 - "xdg-home", 4005 - "zbus_macros", 4006 - "zbus_names", 4007 - "zvariant", 4008 - ] 4009 - 4010 - [[package]] 4011 - name = "zbus-lockstep" 4012 - version = "0.4.4" 4013 - source = "registry+https://github.com/rust-lang/crates.io-index" 4014 - checksum = "4ca2c5dceb099bddaade154055c926bb8ae507a18756ba1d8963fd7b51d8ed1d" 4015 - dependencies = [ 4016 - "zbus_xml", 4017 - "zvariant", 4018 - ] 4019 - 4020 - [[package]] 4021 - name = "zbus-lockstep-macros" 4022 - version = "0.4.4" 4023 - source = "registry+https://github.com/rust-lang/crates.io-index" 4024 - checksum = "709ab20fc57cb22af85be7b360239563209258430bccf38d8b979c5a2ae3ecce" 4025 - dependencies = [ 4026 - "proc-macro2", 4027 - "quote", 4028 - "syn 2.0.82", 4029 - "zbus-lockstep", 4030 - "zbus_xml", 4031 - "zvariant", 4032 - ] 4033 - 4034 - [[package]] 4035 - name = "zbus_macros" 4036 - version = "4.4.0" 4037 - source = "registry+https://github.com/rust-lang/crates.io-index" 4038 - checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" 4039 - dependencies = [ 4040 - "proc-macro-crate", 4041 - "proc-macro2", 4042 - "quote", 4043 - "syn 2.0.82", 4044 - "zvariant_utils", 4045 - ] 4046 - 4047 - [[package]] 4048 - name = "zbus_names" 4049 - version = "3.0.0" 4050 - source = "registry+https://github.com/rust-lang/crates.io-index" 4051 - checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" 4052 - dependencies = [ 4053 - "serde", 4054 - "static_assertions", 4055 - "zvariant", 4056 - ] 4057 - 4058 - [[package]] 4059 - name = "zbus_xml" 4060 - version = "4.0.0" 4061 - source = "registry+https://github.com/rust-lang/crates.io-index" 4062 - checksum = "ab3f374552b954f6abb4bd6ce979e6c9b38fb9d0cd7cc68a7d796e70c9f3a233" 4063 - dependencies = [ 4064 - "quick-xml 0.30.0", 4065 - "serde", 4066 - "static_assertions", 4067 - "zbus_names", 4068 - "zvariant", 4069 - ] 4070 - 4071 - [[package]] 4072 - name = "zerocopy" 4073 - version = "0.7.35" 4074 - source = "registry+https://github.com/rust-lang/crates.io-index" 4075 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 4076 - dependencies = [ 4077 - "byteorder", 4078 - "zerocopy-derive", 4079 - ] 4080 - 4081 - [[package]] 4082 - name = "zerocopy-derive" 4083 - version = "0.7.35" 4084 - source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 4086 - dependencies = [ 4087 - "proc-macro2", 4088 - "quote", 4089 - "syn 2.0.82", 4090 - ] 4091 - 4092 - [[package]] 4093 - name = "zvariant" 4094 - version = "4.2.0" 4095 - source = "registry+https://github.com/rust-lang/crates.io-index" 4096 - checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" 4097 - dependencies = [ 4098 - "endi", 4099 - "enumflags2", 4100 - "serde", 4101 - "static_assertions", 4102 - "url", 4103 - "zvariant_derive", 4104 - ] 4105 - 4106 - [[package]] 4107 - name = "zvariant_derive" 4108 - version = "4.2.0" 4109 - source = "registry+https://github.com/rust-lang/crates.io-index" 4110 - checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" 4111 - dependencies = [ 4112 - "proc-macro-crate", 4113 - "proc-macro2", 4114 - "quote", 4115 - "syn 2.0.82", 4116 - "zvariant_utils", 4117 - ] 4118 - 4119 - [[package]] 4120 - name = "zvariant_utils" 4121 - version = "2.1.0" 4122 - source = "registry+https://github.com/rust-lang/crates.io-index" 4123 - checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" 4124 - dependencies = [ 4125 - "proc-macro2", 4126 - "quote", 4127 - "syn 2.0.82", 4128 - ]
+2 -7
pkgs/by-name/co/coppwr/package.nix
··· 22 22 hash = "sha256-5TgK/0UN05P3WENch4sBo/Sy9FaMmyH/gZ+6qUyM1z0="; 23 23 }; 24 24 25 - cargoLock = { 26 - lockFile = ./Cargo.lock; 27 - outputHashes = { 28 - "egui_node_graph-0.4.0" = "sha256-OajIef0tSuZ5bFauAeHtN/LQlo+k7k9g0azHDk3HOQc="; 29 - "libspa-0.8.0" = "sha256-X8mwLtuPuMxZY71GNPAgiJGJ9JNMj7AbCliXiBxJ4vQ="; 30 - }; 31 - }; 25 + useFetchCargoVendor = true; 26 + cargoHash = "sha256-xF/eBBXlbOfGy9avDkOXT/q72DHJ7Zlu3lfDsTwo+3U="; 32 27 33 28 nativeBuildInputs = [ 34 29 pkg-config
+2 -2
pkgs/by-name/da/dart-sass/package.nix
··· 22 22 in 23 23 buildDartApplication rec { 24 24 pname = "dart-sass"; 25 - version = "1.85.1"; 25 + version = "1.86.0"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "sass"; 29 29 repo = "dart-sass"; 30 30 rev = version; 31 - hash = "sha256-646MhO2VaH6UZoKqBgk08lmgCTctEh50tz7F6cXO4Ks="; 31 + hash = "sha256-TYjw3ACeScP1bf12mKB5U3DxPspkCsupQADc0CFDKLw="; 32 32 }; 33 33 34 34 pubspecLock = lib.importJSON ./pubspec.lock.json;
+17 -33
pkgs/by-name/da/dart-sass/pubspec.lock.json
··· 4 4 "dependency": "transitive", 5 5 "description": { 6 6 "name": "_fe_analyzer_shared", 7 - "sha256": "16e298750b6d0af7ce8a3ba7c18c69c3785d11b15ec83f6dcd0ad2a0009b3cab", 7 + "sha256": "dc27559385e905ad30838356c5f5d574014ba39872d732111cd07ac0beff4c57", 8 8 "url": "https://pub.dev" 9 9 }, 10 10 "source": "hosted", 11 - "version": "76.0.0" 12 - }, 13 - "_macros": { 14 - "dependency": "transitive", 15 - "description": "dart", 16 - "source": "sdk", 17 - "version": "0.3.3" 11 + "version": "80.0.0" 18 12 }, 19 13 "analyzer": { 20 14 "dependency": "direct dev", 21 15 "description": { 22 16 "name": "analyzer", 23 - "sha256": "1f14db053a8c23e260789e9b0980fa27f2680dd640932cae5e1137cce0e46e1e", 17 + "sha256": "192d1c5b944e7e53b24b5586db760db934b177d4147c42fbca8c8c5f1eb8d11e", 24 18 "url": "https://pub.dev" 25 19 }, 26 20 "source": "hosted", 27 - "version": "6.11.0" 21 + "version": "7.3.0" 28 22 }, 29 23 "archive": { 30 24 "dependency": "direct dev", ··· 40 34 "dependency": "direct main", 41 35 "description": { 42 36 "name": "args", 43 - "sha256": "bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6", 37 + "sha256": "d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04", 44 38 "url": "https://pub.dev" 45 39 }, 46 40 "source": "hosted", 47 - "version": "2.6.0" 41 + "version": "2.7.0" 48 42 }, 49 43 "async": { 50 44 "dependency": "direct main", ··· 170 164 "dependency": "transitive", 171 165 "description": { 172 166 "name": "dart_mappable", 173 - "sha256": "a88d1637354b8e3120433cbdf2b816dd9e38659b8a9b6ed8cb19cd101e12c545", 167 + "sha256": "2255b2c00e328a65fef5a8df2dabfc0dc9c2e518c33a50051a4519b1c7a28c48", 174 168 "url": "https://pub.dev" 175 169 }, 176 170 "source": "hosted", 177 - "version": "4.4.0" 171 + "version": "4.5.0" 178 172 }, 179 173 "dartdoc": { 180 174 "dependency": "direct dev", 181 175 "description": { 182 176 "name": "dartdoc", 183 - "sha256": "edd117eaf5dc752982eccafcb746aa2980c8a35f54e3253b9ceb343d70ba27c3", 177 + "sha256": "eb152ab07c585adb11cc24b7b93280a02f6ac5ff724cca4e6cabb24e8be88c82", 184 178 "url": "https://pub.dev" 185 179 }, 186 180 "source": "hosted", 187 - "version": "8.3.2" 181 + "version": "8.3.3" 188 182 }, 189 183 "ffi": { 190 184 "dependency": "transitive", 191 185 "description": { 192 186 "name": "ffi", 193 - "sha256": "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6", 187 + "sha256": "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418", 194 188 "url": "https://pub.dev" 195 189 }, 196 190 "source": "hosted", 197 - "version": "2.1.3" 191 + "version": "2.1.4" 198 192 }, 199 193 "file": { 200 194 "dependency": "transitive", ··· 336 330 "source": "hosted", 337 331 "version": "1.3.0" 338 332 }, 339 - "macros": { 340 - "dependency": "transitive", 341 - "description": { 342 - "name": "macros", 343 - "sha256": "1d9e801cd66f7ea3663c45fc708450db1fa57f988142c64289142c9b7ee80656", 344 - "url": "https://pub.dev" 345 - }, 346 - "source": "hosted", 347 - "version": "0.1.3-main.0" 348 - }, 349 333 "markdown": { 350 334 "dependency": "transitive", 351 335 "description": { ··· 440 424 "dependency": "direct main", 441 425 "description": { 442 426 "name": "package_config", 443 - "sha256": "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67", 427 + "sha256": "f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc", 444 428 "url": "https://pub.dev" 445 429 }, 446 430 "source": "hosted", 447 - "version": "2.1.1" 431 + "version": "2.2.0" 448 432 }, 449 433 "path": { 450 434 "dependency": "direct main", ··· 510 494 "dependency": "direct main", 511 495 "description": { 512 496 "name": "pub_semver", 513 - "sha256": "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd", 497 + "sha256": "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585", 514 498 "url": "https://pub.dev" 515 499 }, 516 500 "source": "hosted", 517 - "version": "2.1.5" 501 + "version": "2.2.0" 518 502 }, 519 503 "pubspec_parse": { 520 504 "dependency": "direct dev", ··· 808 792 } 809 793 }, 810 794 "sdks": { 811 - "dart": ">=3.6.0 <4.0.0" 795 + "dart": ">=3.7.0 <4.0.0" 812 796 } 813 797 }
+1
pkgs/by-name/da/das/package.nix
··· 17 17 }; 18 18 19 19 pythonRelaxDeps = [ 20 + "dash" 20 21 "defusedxml" 21 22 "netaddr" 22 23 "networkx"
+7 -9
pkgs/by-name/eb/ebusd/package.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "ebusd"; 19 - version = "23.3"; 19 + version = "24.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "john30"; 23 23 repo = "ebusd"; 24 24 rev = version; 25 - sha256 = "sha256-K3gZ5OudNA92S38U1+HndxjA7OVfh2ymYf8OetB646M="; 25 + sha256 = "sha256-+3QOB7/yCgR4j2UGfhWQ5s5sldoNfWSzX7qa//FHeJ4="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 41 41 42 42 patches = [ 43 43 ./patches/ebusd-cmake.patch 44 - # Upstream patch for gcc-13 copmpatibility: 45 - (fetchpatch { 46 - name = "gcc-13.patch"; 47 - url = "https://github.com/john30/ebusd/commit/3384f3780087bd6b94d46bf18cdad18201ad516c.patch"; 48 - hash = "sha256-+wZDHjGaIhBCqhy2zmIE8Ko3uAiw8kfKx64etCqRQjM="; 49 - }) 50 44 ]; 45 + 46 + preInstall = '' 47 + mkdir -p $out/usr/bin 48 + ''; 51 49 52 50 cmakeFlags = [ 53 51 "-DCMAKE_INSTALL_SYSCONFDIR=${placeholder "out"}/etc" ··· 56 54 ]; 57 55 58 56 postInstall = '' 59 - mv $out/usr/bin $out 57 + rmdir $out/usr/bin 60 58 rmdir $out/usr 61 59 ''; 62 60
+2 -2
pkgs/by-name/eb/ebusd/patches/ebusd-cmake.patch
··· 1 1 --- a/CMakeLists.txt 2 2 +++ b/CMakeLists.txt 3 - @@ -184,16 +184,11 @@ 3 + @@ -179,16 +179,11 @@ 4 4 add_subdirectory(src/lib/knx) 5 5 add_subdirectory(src/tools) 6 - 6 + 7 7 -if(EXISTS "${ROOT}/etc/debian_version") 8 8 - install(FILES ${CMAKE_SOURCE_DIR}/contrib/debian/default/ebusd DESTINATION /etc/default/) 9 9 - install(FILES ${CMAKE_SOURCE_DIR}/contrib/debian/init.d/ebusd DESTINATION /etc/init.d/)
+2 -2
pkgs/by-name/es/esphome/package.nix
··· 22 22 in 23 23 python.pkgs.buildPythonApplication rec { 24 24 pname = "esphome"; 25 - version = "2025.3.0"; 25 + version = "2025.3.2"; 26 26 pyproject = true; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = pname; 30 30 repo = pname; 31 31 tag = version; 32 - hash = "sha256-+KmWQPZok73DEs11C5wm5pQ6osy9SS9QNyaqBWsyulI="; 32 + hash = "sha256-Wioi1k/Eo3rlh8qMnDDDIvRNQXWoxlmRRvjHLs01skY="; 33 33 }; 34 34 35 35 build-systems = with python.pkgs; [
+5 -5
pkgs/by-name/fe/feishu/package.nix
··· 65 65 let 66 66 sources = { 67 67 x86_64-linux = fetchurl { 68 - url = "https://sf3-cn.feishucdn.com/obj/ee-appcenter/18b9e5d0/Feishu-linux_x64-7.32.11.deb"; 69 - sha256 = "sha256-gU+fNiUE2kCE3407vdjQqE7oLgR9vXynaBNuV3EZrqc="; 68 + url = "https://sf3-cn.feishucdn.com/obj/ee-appcenter/9bcfe8ba/Feishu-linux_x64-7.36.11.deb"; 69 + sha256 = "sha256-iqEcwfF6z2jJ0TmFzDu2gf6eapHcJPaLSVESgtC9WUg="; 70 70 }; 71 71 aarch64-linux = fetchurl { 72 - url = "https://sf3-cn.feishucdn.com/obj/ee-appcenter/8946d4de/Feishu-linux_arm64-7.32.11.deb"; 73 - sha256 = "sha256-gYIQysbII9Ud1a7eXqQRtOsBA2rI29+xnxntAumFUdk="; 72 + url = "https://sf3-cn.feishucdn.com/obj/ee-appcenter/484fc204/Feishu-linux_arm64-7.36.11.deb"; 73 + sha256 = "sha256-XTa5GOMBsiXI5IDhDQktSxdUfuvG7c2VWHuS76cFsqE="; 74 74 }; 75 75 }; 76 76 ··· 133 133 ]; 134 134 in 135 135 stdenv.mkDerivation { 136 - version = "7.32.11"; 136 + version = "7.36.11"; 137 137 pname = "feishu"; 138 138 139 139 src =
+1 -1
pkgs/by-name/gl/glib/package.nix
··· 65 65 else 66 66 "2.0-0.lib"; 67 67 68 - systemtap' = buildPackages.linuxPackages.systemtap.override { withStap = false; }; 68 + systemtap' = buildPackages.systemtap-sdt; 69 69 70 70 withDtrace = 71 71 lib.meta.availableOn stdenv.buildPlatform systemtap'
+3 -3
pkgs/by-name/go/go-ethereum/package.nix
··· 18 18 in 19 19 buildGoModule rec { 20 20 pname = "go-ethereum"; 21 - version = "1.15.5"; 21 + version = "1.15.6"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "ethereum"; 25 25 repo = pname; 26 26 rev = "v${version}"; 27 - hash = "sha256-kOgsjvkEi5acv53qnbyxMrPIXkz08SqjIO0A/mj/y90="; 27 + hash = "sha256-BdNv0rx+9/F0leNj2AAej8psy8X8HysDrIXheVOOkSo="; 28 28 }; 29 29 30 30 proxyVendor = true; 31 - vendorHash = "sha256-byp1FzB4cSk9TayjaamsVfgzX0H531kzSXVHxDgWTes="; 31 + vendorHash = "sha256-1FuVdx84jvMBo8VO6q+WaFpK3hWn88J7p8vhIDsQHPM="; 32 32 33 33 doCheck = false; 34 34
+3 -3
pkgs/by-name/go/google-cloud-sql-proxy/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "google-cloud-sql-proxy"; 10 - version = "2.15.1"; 10 + version = "2.15.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "GoogleCloudPlatform"; 14 14 repo = "cloud-sql-proxy"; 15 15 rev = "v${version}"; 16 - hash = "sha256-+Iet8CRX6HwYIdy7GqWZB7nfK6t1u4VGYcis8ukwNaY="; 16 + hash = "sha256-IZSWJhA3M+d16KKOY6MULibvTNrf7InuNR/ahYznQHY="; 17 17 }; 18 18 19 19 subPackages = [ "." ]; 20 20 21 - vendorHash = "sha256-CcEf6bsduTChxg7oo5pfnDV2Joy653h+csD7VRwLUXQ="; 21 + vendorHash = "sha256-iFCM1goZSYCCPC+14diCeK7AqLC+tRRSG10C8Nn0Lp0="; 22 22 23 23 checkFlags = [ 24 24 "-short"
+2 -2
pkgs/by-name/gu/guestfs-tools/package.nix
··· 31 31 32 32 stdenv.mkDerivation (finalAttrs: { 33 33 pname = "guestfs-tools"; 34 - version = "1.52.2"; 34 + version = "1.52.3"; 35 35 36 36 src = fetchurl { 37 37 url = "https://download.libguestfs.org/guestfs-tools/${lib.versions.majorMinor finalAttrs.version}-stable/guestfs-tools-${finalAttrs.version}.tar.gz"; 38 - hash = "sha256-02khDS2NLG1QOSqswtDoqBX2Mg6sE/OiUoP9JFs4vTU="; 38 + hash = "sha256-0xLCwj6TXU5b+tUewhKE9X0E+FN0MpX6+V+WHFxmiEc="; 39 39 }; 40 40 41 41 nativeBuildInputs =
+4 -4
pkgs/by-name/gu/gui-for-singbox/package.nix
··· 17 17 18 18 let 19 19 pname = "gui-for-singbox"; 20 - version = "1.9.3"; 20 + version = "1.9.4"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "GUI-for-Cores"; 24 24 repo = "GUI.for.SingBox"; 25 25 tag = "v${version}"; 26 - hash = "sha256-3ZSQoSXa9ma+r6y/xQGPjDw3BryH/s3TEEN2KptN+f8="; 26 + hash = "sha256-v6bx1nIIL5SpPsiUNbU35w7vh+1Zgl+d0Y6sG5XfEB8="; 27 27 }; 28 28 29 29 metaCommon = { ··· 45 45 pnpmDeps = pnpm_9.fetchDeps { 46 46 inherit (finalAttrs) pname version src; 47 47 sourceRoot = "${finalAttrs.src.name}/frontend"; 48 - hash = "sha256-IljvA3vVD7RXULPWvKJPp4fi094SDDPs/AlxJKOk6OY="; 48 + hash = "sha256-5SVu8eCyN89k6BvNEqgs4hOrP5IjvjUZrzrVuDwtYCk="; 49 49 }; 50 50 51 51 sourceRoot = "${finalAttrs.src.name}/frontend"; ··· 81 81 --replace-fail '@basepath@' "$out" 82 82 ''; 83 83 84 - vendorHash = "sha256-Ft3qkxCAkNIqTapqT4g8w0L8VV3z30GwWb17kGr03jw="; 84 + vendorHash = "sha256-Zt3We+Ai8oEqof2eQvcaIkocH85goeldmPf4mmDX17o="; 85 85 86 86 nativeBuildInputs = [ 87 87 wails
+27 -27
pkgs/by-name/ha/halloy/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - darwin, 5 4 fetchFromGitHub, 6 5 copyDesktopItems, 7 6 makeDesktopItem, 8 7 libxkbcommon, 9 8 makeWrapper, 9 + nix-update-script, 10 10 openssl, 11 11 pkg-config, 12 12 rustPlatform, ··· 38 38 39 39 buildInputs = 40 40 [ 41 + openssl 42 + ] 43 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 41 44 alsa-lib 42 45 libxkbcommon 43 - openssl 44 46 vulkan-loader 47 + wayland 45 48 xorg.libX11 46 49 xorg.libXcursor 47 50 xorg.libXi 48 - ] 49 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 50 - darwin.apple_sdk.frameworks.AppKit 51 - darwin.apple_sdk.frameworks.CoreFoundation 52 - darwin.apple_sdk.frameworks.CoreGraphics 53 - darwin.apple_sdk.frameworks.Cocoa 54 - darwin.apple_sdk.frameworks.Foundation 55 - darwin.apple_sdk.frameworks.Metal 56 - darwin.apple_sdk.frameworks.QuartzCore 57 - darwin.apple_sdk.frameworks.Security 58 - ] 59 - ++ lib.optionals stdenv.hostPlatform.isLinux [ wayland ]; 51 + ]; 60 52 61 53 desktopItems = [ 62 54 (makeDesktopItem { ··· 97 89 '' 98 90 ); 99 91 100 - postInstall = '' 101 - install -Dm644 assets/linux/icons/hicolor/128x128/apps/org.squidowl.halloy.png \ 102 - $out/share/icons/hicolor/128x128/apps/org.squidowl.halloy.png 103 - '' + lib.optionalString stdenv.hostPlatform.isDarwin '' 104 - APP_DIR="$out/Applications/Halloy.app/Contents" 92 + postInstall = 93 + '' 94 + install -Dm644 assets/linux/icons/hicolor/128x128/apps/org.squidowl.halloy.png \ 95 + $out/share/icons/hicolor/128x128/apps/org.squidowl.halloy.png 96 + '' 97 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 98 + APP_DIR="$out/Applications/Halloy.app/Contents" 105 99 106 - mkdir -p "$APP_DIR/MacOS" 107 - cp -r ${src}/assets/macos/Halloy.app/Contents/* "$APP_DIR" 100 + mkdir -p "$APP_DIR/MacOS" 101 + cp -r ${src}/assets/macos/Halloy.app/Contents/* "$APP_DIR" 108 102 109 - substituteInPlace "$APP_DIR/Info.plist" \ 110 - --replace-fail "{{ VERSION }}" "${version}" \ 111 - --replace-fail "{{ BUILD }}" "${version}-nixpkgs" 103 + substituteInPlace "$APP_DIR/Info.plist" \ 104 + --replace-fail "{{ VERSION }}" "${version}" \ 105 + --replace-fail "{{ BUILD }}" "${version}-nixpkgs" 106 + 107 + makeWrapper "$out/bin/halloy" "$APP_DIR/MacOS/halloy" 108 + ''; 112 109 113 - makeWrapper "$out/bin/halloy" "$APP_DIR/MacOS/halloy" 114 - ''; 110 + passthru.updateScript = nix-update-script { }; 115 111 116 112 meta = with lib; { 117 113 description = "IRC application"; 118 114 homepage = "https://github.com/squidowl/halloy"; 119 115 changelog = "https://github.com/squidowl/halloy/blob/${version}/CHANGELOG.md"; 120 116 license = licenses.gpl3Only; 121 - maintainers = with maintainers; [ fab iivusly ivyfanchiang]; 117 + maintainers = with maintainers; [ 118 + fab 119 + iivusly 120 + ivyfanchiang 121 + ]; 122 122 mainProgram = "halloy"; 123 123 }; 124 124 }
+2 -2
pkgs/by-name/ha/handheld-daemon/package.nix
··· 16 16 }: 17 17 python3Packages.buildPythonApplication rec { 18 18 pname = "handheld-daemon"; 19 - version = "3.13.4"; 19 + version = "3.13.7"; 20 20 pyproject = true; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "hhd-dev"; 24 24 repo = "hhd"; 25 25 tag = "v${version}"; 26 - hash = "sha256-eYC5iUbXnuJH8wk8okXRgwBjyI//xkgDnJeU+j4QV4g="; 26 + hash = "sha256-ISUu87Y1Ti6DepDAIMZREz1TkZlGlhkmUWm2zMzvlrM="; 27 27 }; 28 28 29 29 # Handheld-daemon runs some selinux-related utils which are not in nixpkgs.
+1 -7
pkgs/by-name/hi/hickory-dns/package.nix
··· 27 27 # tests expect internet connectivity to query real nameservers like 8.8.8.8 28 28 doCheck = false; 29 29 30 - passthru.updateScript = nix-update-script { 31 - # remove when 0.25.0 is released 32 - extraArgs = [ 33 - "--version" 34 - "unstable" 35 - ]; 36 - }; 30 + passthru.updateScript = nix-update-script { }; 37 31 38 32 meta = { 39 33 description = "Rust based DNS client, server, and resolver";
+3 -3
pkgs/by-name/hu/hurl/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "hurl"; 15 - version = "6.1.0"; 15 + version = "6.1.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "Orange-OpenSource"; 19 19 repo = "hurl"; 20 20 tag = version; 21 - hash = "sha256-fj9OKS8IFKbxwzjhnta44hAXPy90fBOAV35K13YtaOs="; 21 + hash = "sha256-NtvBw8Nb2eZN0rjVL/LPyIdY5hBJGnz/cDun6VvwYZE="; 22 22 }; 23 23 24 24 useFetchCargoVendor = true; 25 - cargoHash = "sha256-aGj/vQCf1nBLmQYYxdR8437irLP+3W3z0F8tyVTrKZk="; 25 + cargoHash = "sha256-WyNActmsHpr5fgN1a3X9ApEACWFVJMVoi4fBvKhGgZ0="; 26 26 27 27 nativeBuildInputs = [ 28 28 pkg-config
+3 -3
pkgs/by-name/ii/iio-hyprland/package.nix
··· 12 12 13 13 stdenv.mkDerivation { 14 14 pname = "iio-hyprland"; 15 - version = "0-unstable-2024-09-29"; 15 + version = "0-unstable-2025-03-18"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "JeanSchoeller"; 19 19 repo = "iio-hyprland"; 20 - rev = "bd6be6b7e0fbc8ca1a5ccbf536602838e52c347e"; 21 - hash = "sha256-gfH/jcrmI27OEge8OGPe7JpC0jrQJuX7v9hM/ObjjW8="; 20 + rev = "87a4ff78fee17f1120125e50cb36084ebfd8739f"; 21 + hash = "sha256-lmzSEP6oqnnOfiwMzMtp33lUlOqrVtbliMEnO8Pl/4s="; 22 22 }; 23 23 24 24 buildInputs = [ dbus ];
+3 -3
pkgs/by-name/ip/ipxe/package.nix
··· 48 48 49 49 stdenv.mkDerivation (finalAttrs: { 50 50 pname = "ipxe"; 51 - version = "1.21.1-unstable-2025-01-10"; 51 + version = "1.21.1-unstable-2025-02-28"; 52 52 53 53 nativeBuildInputs = [ 54 54 mtools ··· 65 65 src = fetchFromGitHub { 66 66 owner = "ipxe"; 67 67 repo = "ipxe"; 68 - rev = "d88eb0a1935942cdeccd3efee38f9765d2f1c235"; 69 - hash = "sha256-R6ytWBqs0ntOtlc8K4C3gXtDRBa1hf7kpWTRZz9/h4s="; 68 + rev = "be3a78eaf804a2c437aa055d5c1e2f4a1310a0c1"; 69 + hash = "sha256-W1nLhFc3OttPbDyf8e7OM+kHQajamvNJ550YdTwlOHA="; 70 70 }; 71 71 72 72 # Calling syslinux on a FAT image isn't going to work on Aarch64.
+2 -2
pkgs/by-name/jo/jotta-cli/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "jotta-cli"; 11 - version = "0.16.129390"; 11 + version = "0.17.132497"; 12 12 13 13 src = fetchzip { 14 14 url = "https://repo.jotta.us/archives/linux/amd64/jotta-cli-${version}_linux_amd64.tar.gz"; 15 - hash = "sha256-iw8OZ6clpK+CnBFNK5jOSGQ3ReU4pnOQSJFE2LTJNxE="; 15 + hash = "sha256-prhFFjywvffsZKcTIMJfsccA/TYrvpsn/+TpDtIdc98="; 16 16 stripRoot = false; 17 17 }; 18 18
+2 -2
pkgs/by-name/ka/kargo/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "kargo"; 14 - version = "1.3.1"; 14 + version = "1.3.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "akuity"; 18 18 repo = "kargo"; 19 19 tag = "v${version}"; 20 - hash = "sha256-OnkEl00oNe2sM/4zlV3ZD2wj3TJH6AdcAMGa5RvAEVM="; 20 + hash = "sha256-sLcNY6TopRObyU+TAFsX8odRJTo9BufCKb/pKhg9pwA="; 21 21 }; 22 22 23 23 vendorHash = "sha256-Xb+9zu2uivOYETtz3ryMnBUJ3gJ/1ta1dLEpsD00jpU=";
+3 -3
pkgs/by-name/ki/kics/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "kics"; 11 - version = "2.1.5"; 11 + version = "2.1.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Checkmarx"; 15 15 repo = "kics"; 16 16 tag = "v${version}"; 17 - hash = "sha256-eLMXUnqcobKlrz63TV2/ge8JjplfdxYe+eTSPtnhdxU="; 17 + hash = "sha256-q1vpMXnW/tnOXjxnqp9KQHe6hWx4/DXXqLnR4+e0+vM="; 18 18 }; 19 19 20 - vendorHash = "sha256-2+maZVsB/iVBf+vDkCh7ZPM4o84DjxISCg06AahwcZM="; 20 + vendorHash = "sha256-Cp4kfAViBUkC7LMZFUrJtHKrIYxsc25fqbuw2a5Eh9w="; 21 21 22 22 subPackages = [ "cmd/console" ]; 23 23
+2 -2
pkgs/by-name/ki/kin-openapi/package.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "kin-openapi"; 8 - version = "0.130.0"; 8 + version = "0.131.0"; 9 9 vendorHash = "sha256-VtN2dOJEBAS7khjn2GlvMspFvd7SgMqNWBte3gwbWng="; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "getkin"; 13 13 repo = "kin-openapi"; 14 14 tag = "v${version}"; 15 - hash = "sha256-e8oSnd3CJex+7hCI+hvptYnubIRLybKWh1ydMlHgJok="; 15 + hash = "sha256-SHBxn9TXCoGIkzhVnWbMkgTd1XmGerM5IL9t/hkcmGk="; 16 16 }; 17 17 18 18 checkFlags =
+2 -2
pkgs/by-name/ku/kubedb-cli/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kubedb-cli"; 9 - version = "0.52.0"; 9 + version = "0.53.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kubedb"; 13 13 repo = "cli"; 14 14 tag = "v${version}"; 15 - hash = "sha256-3NnQLgrcxiz2KqRMbQWxgwbe1JPFF1VforGvMwhZfoo="; 15 + hash = "sha256-qhvw1sEndJU5v1bUvMAjeNGO/9IKMbhjtIUmFdsAv2I="; 16 16 }; 17 17 18 18 vendorHash = null;
+2 -2
pkgs/by-name/li/libnats-c/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "libnats"; 14 - version = "3.10.0"; 14 + version = "3.10.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "nats-io"; 18 18 repo = "nats.c"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-mBMYEElVdACk9ufq401VGrs85JBQeZ6WeaiV1TmIYZY="; 20 + sha256 = "sha256-hPudV1d+6QkHJzs7Mk47v8LVBfR3UTES/UyhdtMkNJA="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/by-name/ls/lsp-plugins/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "lsp-plugins"; 24 - version = "1.2.20"; 24 + version = "1.2.21"; 25 25 26 26 outputs = [ 27 27 "out" ··· 31 31 32 32 src = fetchurl { 33 33 url = "https://github.com/lsp-plugins/lsp-plugins/releases/download/${finalAttrs.version}/lsp-plugins-src-${finalAttrs.version}.tar.gz"; 34 - hash = "sha256-yohg3Ka/see8q6NCwVPl/F06AlyR22akQz43gp+1kck="; 34 + hash = "sha256-ri2h0FV+1kU3HVSneQYSQKApXjmcKqRByW+iNtduEtk="; 35 35 }; 36 36 37 37 # By default, GStreamer plugins are installed right alongside GStreamer itself
+2 -2
pkgs/by-name/lx/lxgw-wenkai-tc/package.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "lxgw-wenkai-tc"; 9 - version = "1.510"; 9 + version = "1.511"; 10 10 src = fetchurl { 11 11 url = "https://github.com/lxgw/LxgwWenKaiTC/releases/download/v${version}/lxgw-wenkai-tc-v${version}.tar.gz"; 12 - hash = "sha256-gcPEGs1oawxRGcKZawxJsJ0q179Zd9iAFIplnF4oWY4="; 12 + hash = "sha256-2XeON6wzV8OuFsFKRGKpsOJUxQAsQsFoRu+vDyWoMkI="; 13 13 }; 14 14 15 15 installPhase = ''
+2 -2
pkgs/by-name/lx/lxgw-wenkai/package.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "lxgw-wenkai"; 9 - version = "1.510"; 9 + version = "1.511"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/lxgw/LxgwWenKai/releases/download/v${version}/${pname}-v${version}.tar.gz"; 13 - hash = "sha256-RZ+vcFDKMW63oYz4meNvNSIyEdY9I5sKhqOAPKlPP4Q="; 13 + hash = "sha256-cIHGoTw/vWq7nu+3gCgbYcJU3hpS4NxdNLMnu21vbuA="; 14 14 }; 15 15 16 16 installPhase = ''
+3 -3
pkgs/by-name/ma/mani/package.nix
··· 9 9 10 10 buildGoModule (finalAttrs: { 11 11 pname = "mani"; 12 - version = "0.30.0"; 12 + version = "0.30.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "alajmo"; 16 16 repo = "mani"; 17 17 tag = "v${finalAttrs.version}"; 18 - sha256 = "sha256-LxW9LPK4cXIXhBWPhOYWLeV5PIf+o710SWX8JVpZhPI="; 18 + sha256 = "sha256-BD9NpWaaBBVHWJesXsJJmFV51n+JOFGtYOH73PvSxv4="; 19 19 }; 20 20 21 - vendorHash = "sha256-8ckflry+KsEu+QgqjocXg6yyfS9R7fCfCMXwUqUSlhE="; 21 + vendorHash = "sha256-PnQocOtnIBl0+5mDG7irEqGjAnzJ9Wk/fA4NW/nU+zw="; 22 22 23 23 nativeBuildInputs = [ 24 24 installShellFiles
+3 -3
pkgs/by-name/ma/mattermost/package.nix
··· 19 19 # 20 20 # Ensure you also check ../mattermostLatest/package.nix. 21 21 regex = "^v(9\\.11\\.[0-9]+)$"; 22 - version = "9.11.9"; 23 - srcHash = "sha256-sEu5s+yMCPYxvyc7kuiA9AE/qBi08iTqhYxwO7J9xiE="; 22 + version = "9.11.11"; 23 + srcHash = "sha256-ugFGb85Oolg9pXeNi2JFKWQ4eebmdr/O3xIGbKGFSvQ="; 24 24 vendorHash = "sha256-h/hcdVImU3wFp7BGHS/TxYBEWGv9v06y8etaz9OrHTA="; 25 - npmDepsHash = "sha256-B7pXMHwyf7dQ2x2VJu+mdZz03/9FyyYvFYOw8XguTH8="; 25 + npmDepsHash = "sha256-Kk0Bbx/Rs5xpwSpgpm9BSMMEMKmO6kgKgyv/oDIAZ7w="; 26 26 }, 27 27 }: 28 28
-6590
pkgs/by-name/me/meilisearch/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 = "actix-codec" 7 - version = "0.5.1" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" 10 - dependencies = [ 11 - "bitflags 1.3.2", 12 - "bytes", 13 - "futures-core", 14 - "futures-sink", 15 - "memchr", 16 - "pin-project-lite", 17 - "tokio", 18 - "tokio-util", 19 - "tracing", 20 - ] 21 - 22 - [[package]] 23 - name = "actix-cors" 24 - version = "0.7.0" 25 - source = "registry+https://github.com/rust-lang/crates.io-index" 26 - checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" 27 - dependencies = [ 28 - "actix-utils", 29 - "actix-web", 30 - "derive_more", 31 - "futures-util", 32 - "log", 33 - "once_cell", 34 - "smallvec", 35 - ] 36 - 37 - [[package]] 38 - name = "actix-http" 39 - version = "3.8.0" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "3ae682f693a9cd7b058f2b0b5d9a6d7728a8555779bedbbc35dd88528611d020" 42 - dependencies = [ 43 - "actix-codec", 44 - "actix-rt", 45 - "actix-service", 46 - "actix-tls", 47 - "actix-utils", 48 - "ahash 0.8.11", 49 - "base64 0.22.1", 50 - "bitflags 2.6.0", 51 - "brotli", 52 - "bytes", 53 - "bytestring", 54 - "derive_more", 55 - "encoding_rs", 56 - "flate2", 57 - "futures-core", 58 - "h2 0.3.26", 59 - "http 0.2.11", 60 - "httparse", 61 - "httpdate", 62 - "itoa", 63 - "language-tags", 64 - "local-channel", 65 - "mime", 66 - "percent-encoding", 67 - "pin-project-lite", 68 - "rand", 69 - "sha1", 70 - "smallvec", 71 - "tokio", 72 - "tokio-util", 73 - "tracing", 74 - ] 75 - 76 - [[package]] 77 - name = "actix-macros" 78 - version = "0.2.4" 79 - source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" 81 - dependencies = [ 82 - "quote", 83 - "syn 2.0.60", 84 - ] 85 - 86 - [[package]] 87 - name = "actix-router" 88 - version = "0.5.3" 89 - source = "registry+https://github.com/rust-lang/crates.io-index" 90 - checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 91 - dependencies = [ 92 - "bytestring", 93 - "cfg-if", 94 - "http 0.2.11", 95 - "regex-lite", 96 - "serde", 97 - "tracing", 98 - ] 99 - 100 - [[package]] 101 - name = "actix-rt" 102 - version = "2.10.0" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" 105 - dependencies = [ 106 - "actix-macros", 107 - "futures-core", 108 - "tokio", 109 - ] 110 - 111 - [[package]] 112 - name = "actix-server" 113 - version = "2.2.0" 114 - source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327" 116 - dependencies = [ 117 - "actix-rt", 118 - "actix-service", 119 - "actix-utils", 120 - "futures-core", 121 - "futures-util", 122 - "mio", 123 - "num_cpus", 124 - "socket2 0.4.9", 125 - "tokio", 126 - "tracing", 127 - ] 128 - 129 - [[package]] 130 - name = "actix-service" 131 - version = "2.0.2" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 134 - dependencies = [ 135 - "futures-core", 136 - "paste", 137 - "pin-project-lite", 138 - ] 139 - 140 - [[package]] 141 - name = "actix-tls" 142 - version = "3.4.0" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389" 145 - dependencies = [ 146 - "actix-rt", 147 - "actix-service", 148 - "actix-utils", 149 - "futures-core", 150 - "impl-more", 151 - "pin-project-lite", 152 - "rustls-pki-types", 153 - "tokio", 154 - "tokio-rustls", 155 - "tokio-util", 156 - "tracing", 157 - ] 158 - 159 - [[package]] 160 - name = "actix-utils" 161 - version = "3.0.1" 162 - source = "registry+https://github.com/rust-lang/crates.io-index" 163 - checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 164 - dependencies = [ 165 - "local-waker", 166 - "pin-project-lite", 167 - ] 168 - 169 - [[package]] 170 - name = "actix-web" 171 - version = "4.8.0" 172 - source = "registry+https://github.com/rust-lang/crates.io-index" 173 - checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff" 174 - dependencies = [ 175 - "actix-codec", 176 - "actix-http", 177 - "actix-macros", 178 - "actix-router", 179 - "actix-rt", 180 - "actix-server", 181 - "actix-service", 182 - "actix-tls", 183 - "actix-utils", 184 - "actix-web-codegen", 185 - "ahash 0.8.11", 186 - "bytes", 187 - "bytestring", 188 - "cfg-if", 189 - "cookie", 190 - "derive_more", 191 - "encoding_rs", 192 - "futures-core", 193 - "futures-util", 194 - "itoa", 195 - "language-tags", 196 - "log", 197 - "mime", 198 - "once_cell", 199 - "pin-project-lite", 200 - "regex-lite", 201 - "serde", 202 - "serde_json", 203 - "serde_urlencoded", 204 - "smallvec", 205 - "socket2 0.5.5", 206 - "time", 207 - "url", 208 - ] 209 - 210 - [[package]] 211 - name = "actix-web-codegen" 212 - version = "4.3.0" 213 - source = "registry+https://github.com/rust-lang/crates.io-index" 214 - checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 215 - dependencies = [ 216 - "actix-router", 217 - "proc-macro2", 218 - "quote", 219 - "syn 2.0.60", 220 - ] 221 - 222 - [[package]] 223 - name = "addr2line" 224 - version = "0.20.0" 225 - source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 227 - dependencies = [ 228 - "gimli", 229 - ] 230 - 231 - [[package]] 232 - name = "adler" 233 - version = "1.0.2" 234 - source = "registry+https://github.com/rust-lang/crates.io-index" 235 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 236 - 237 - [[package]] 238 - name = "aes" 239 - version = "0.8.4" 240 - source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 242 - dependencies = [ 243 - "cfg-if", 244 - "cipher", 245 - "cpufeatures", 246 - ] 247 - 248 - [[package]] 249 - name = "ahash" 250 - version = "0.7.8" 251 - source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 253 - dependencies = [ 254 - "getrandom", 255 - "once_cell", 256 - "version_check", 257 - ] 258 - 259 - [[package]] 260 - name = "ahash" 261 - version = "0.8.11" 262 - source = "registry+https://github.com/rust-lang/crates.io-index" 263 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 264 - dependencies = [ 265 - "cfg-if", 266 - "const-random", 267 - "getrandom", 268 - "once_cell", 269 - "version_check", 270 - "zerocopy", 271 - ] 272 - 273 - [[package]] 274 - name = "aho-corasick" 275 - version = "1.1.3" 276 - source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 278 - dependencies = [ 279 - "memchr", 280 - ] 281 - 282 - [[package]] 283 - name = "alloc-no-stdlib" 284 - version = "2.0.4" 285 - source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 287 - 288 - [[package]] 289 - name = "alloc-stdlib" 290 - version = "0.2.2" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 293 - dependencies = [ 294 - "alloc-no-stdlib", 295 - ] 296 - 297 - [[package]] 298 - name = "allocator-api2" 299 - version = "0.2.16" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 302 - 303 - [[package]] 304 - name = "anes" 305 - version = "0.1.6" 306 - source = "registry+https://github.com/rust-lang/crates.io-index" 307 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 308 - 309 - [[package]] 310 - name = "anstream" 311 - version = "0.6.13" 312 - source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" 314 - dependencies = [ 315 - "anstyle", 316 - "anstyle-parse", 317 - "anstyle-query", 318 - "anstyle-wincon", 319 - "colorchoice", 320 - "utf8parse", 321 - ] 322 - 323 - [[package]] 324 - name = "anstyle" 325 - version = "1.0.6" 326 - source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 328 - 329 - [[package]] 330 - name = "anstyle-parse" 331 - version = "0.2.1" 332 - source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 334 - dependencies = [ 335 - "utf8parse", 336 - ] 337 - 338 - [[package]] 339 - name = "anstyle-query" 340 - version = "1.0.0" 341 - source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 343 - dependencies = [ 344 - "windows-sys 0.48.0", 345 - ] 346 - 347 - [[package]] 348 - name = "anstyle-wincon" 349 - version = "3.0.1" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 352 - dependencies = [ 353 - "anstyle", 354 - "windows-sys 0.48.0", 355 - ] 356 - 357 - [[package]] 358 - name = "anyhow" 359 - version = "1.0.86" 360 - source = "registry+https://github.com/rust-lang/crates.io-index" 361 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 362 - dependencies = [ 363 - "backtrace", 364 - ] 365 - 366 - [[package]] 367 - name = "anymap2" 368 - version = "0.13.0" 369 - source = "registry+https://github.com/rust-lang/crates.io-index" 370 - checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" 371 - 372 - [[package]] 373 - name = "arbitrary" 374 - version = "1.3.2" 375 - source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 377 - dependencies = [ 378 - "derive_arbitrary", 379 - ] 380 - 381 - [[package]] 382 - name = "arrayvec" 383 - version = "0.7.4" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 386 - 387 - [[package]] 388 - name = "arroy" 389 - version = "0.5.0" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "dfc5f272f38fa063bbff0a7ab5219404e221493de005e2b4078c62d626ef567e" 392 - dependencies = [ 393 - "bytemuck", 394 - "byteorder", 395 - "heed", 396 - "log", 397 - "memmap2", 398 - "nohash", 399 - "ordered-float", 400 - "rand", 401 - "rayon", 402 - "roaring", 403 - "tempfile", 404 - "thiserror", 405 - ] 406 - 407 - [[package]] 408 - name = "assert-json-diff" 409 - version = "2.0.2" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 412 - dependencies = [ 413 - "serde", 414 - "serde_json", 415 - ] 416 - 417 - [[package]] 418 - name = "async-trait" 419 - version = "0.1.81" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 422 - dependencies = [ 423 - "proc-macro2", 424 - "quote", 425 - "syn 2.0.60", 426 - ] 427 - 428 - [[package]] 429 - name = "atomic-waker" 430 - version = "1.1.2" 431 - source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 433 - 434 - [[package]] 435 - name = "autocfg" 436 - version = "1.2.0" 437 - source = "registry+https://github.com/rust-lang/crates.io-index" 438 - checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 439 - 440 - [[package]] 441 - name = "backtrace" 442 - version = "0.3.68" 443 - source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 445 - dependencies = [ 446 - "addr2line", 447 - "cc", 448 - "cfg-if", 449 - "libc", 450 - "miniz_oxide", 451 - "object", 452 - "rustc-demangle", 453 - ] 454 - 455 - [[package]] 456 - name = "base64" 457 - version = "0.13.1" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 460 - 461 - [[package]] 462 - name = "base64" 463 - version = "0.21.7" 464 - source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 466 - 467 - [[package]] 468 - name = "base64" 469 - version = "0.22.1" 470 - source = "registry+https://github.com/rust-lang/crates.io-index" 471 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 472 - 473 - [[package]] 474 - name = "benchmarks" 475 - version = "1.11.3" 476 - dependencies = [ 477 - "anyhow", 478 - "bytes", 479 - "convert_case 0.6.0", 480 - "criterion", 481 - "csv", 482 - "flate2", 483 - "milli", 484 - "mimalloc", 485 - "rand", 486 - "rand_chacha", 487 - "reqwest", 488 - "roaring", 489 - "serde_json", 490 - ] 491 - 492 - [[package]] 493 - name = "big_s" 494 - version = "1.0.2" 495 - source = "registry+https://github.com/rust-lang/crates.io-index" 496 - checksum = "199edb7b90631283b10c2422e6a0bc8b7d987bf732995ba1de53b576c97e51a8" 497 - 498 - [[package]] 499 - name = "bimap" 500 - version = "0.6.3" 501 - source = "registry+https://github.com/rust-lang/crates.io-index" 502 - checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7" 503 - dependencies = [ 504 - "serde", 505 - ] 506 - 507 - [[package]] 508 - name = "bincode" 509 - version = "1.3.3" 510 - source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 512 - dependencies = [ 513 - "serde", 514 - ] 515 - 516 - [[package]] 517 - name = "bindgen" 518 - version = "0.69.4" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 521 - dependencies = [ 522 - "bitflags 2.6.0", 523 - "cexpr", 524 - "clang-sys", 525 - "itertools 0.12.1", 526 - "lazy_static", 527 - "lazycell", 528 - "proc-macro2", 529 - "quote", 530 - "regex", 531 - "rustc-hash 1.1.0", 532 - "shlex", 533 - "syn 2.0.60", 534 - ] 535 - 536 - [[package]] 537 - name = "bindgen_cuda" 538 - version = "0.1.5" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "1f8489af5b7d17a81bffe37e0f4d6e1e4de87c87329d05447f22c35d95a1227d" 541 - dependencies = [ 542 - "glob", 543 - "num_cpus", 544 - "rayon", 545 - ] 546 - 547 - [[package]] 548 - name = "bit-set" 549 - version = "0.5.3" 550 - source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 552 - dependencies = [ 553 - "bit-vec", 554 - ] 555 - 556 - [[package]] 557 - name = "bit-vec" 558 - version = "0.6.3" 559 - source = "registry+https://github.com/rust-lang/crates.io-index" 560 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 561 - 562 - [[package]] 563 - name = "bitflags" 564 - version = "1.3.2" 565 - source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 567 - 568 - [[package]] 569 - name = "bitflags" 570 - version = "2.6.0" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 573 - dependencies = [ 574 - "serde", 575 - ] 576 - 577 - [[package]] 578 - name = "bitvec" 579 - version = "1.0.1" 580 - source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 582 - dependencies = [ 583 - "funty", 584 - "radium", 585 - "tap", 586 - "wyz", 587 - ] 588 - 589 - [[package]] 590 - name = "block-buffer" 591 - version = "0.10.4" 592 - source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 594 - dependencies = [ 595 - "generic-array", 596 - ] 597 - 598 - [[package]] 599 - name = "borsh" 600 - version = "1.5.1" 601 - source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" 603 - dependencies = [ 604 - "borsh-derive", 605 - "cfg_aliases", 606 - ] 607 - 608 - [[package]] 609 - name = "borsh-derive" 610 - version = "1.5.1" 611 - source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" 613 - dependencies = [ 614 - "once_cell", 615 - "proc-macro-crate", 616 - "proc-macro2", 617 - "quote", 618 - "syn 2.0.60", 619 - "syn_derive", 620 - ] 621 - 622 - [[package]] 623 - name = "brotli" 624 - version = "6.0.0" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 627 - dependencies = [ 628 - "alloc-no-stdlib", 629 - "alloc-stdlib", 630 - "brotli-decompressor", 631 - ] 632 - 633 - [[package]] 634 - name = "brotli-decompressor" 635 - version = "4.0.1" 636 - source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 638 - dependencies = [ 639 - "alloc-no-stdlib", 640 - "alloc-stdlib", 641 - ] 642 - 643 - [[package]] 644 - name = "bstr" 645 - version = "1.9.1" 646 - source = "registry+https://github.com/rust-lang/crates.io-index" 647 - checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 648 - dependencies = [ 649 - "memchr", 650 - "regex-automata", 651 - "serde", 652 - ] 653 - 654 - [[package]] 655 - name = "build-info" 656 - version = "1.11.3" 657 - dependencies = [ 658 - "anyhow", 659 - "time", 660 - "vergen-git2", 661 - ] 662 - 663 - [[package]] 664 - name = "bumpalo" 665 - version = "3.16.0" 666 - source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 668 - 669 - [[package]] 670 - name = "byte-unit" 671 - version = "5.1.4" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "33ac19bdf0b2665407c39d82dbc937e951e7e2001609f0fb32edd0af45a2d63e" 674 - dependencies = [ 675 - "rust_decimal", 676 - "serde", 677 - "utf8-width", 678 - ] 679 - 680 - [[package]] 681 - name = "bytecheck" 682 - version = "0.6.12" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 685 - dependencies = [ 686 - "bytecheck_derive", 687 - "ptr_meta", 688 - "simdutf8", 689 - ] 690 - 691 - [[package]] 692 - name = "bytecheck_derive" 693 - version = "0.6.12" 694 - source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 696 - dependencies = [ 697 - "proc-macro2", 698 - "quote", 699 - "syn 1.0.109", 700 - ] 701 - 702 - [[package]] 703 - name = "bytecount" 704 - version = "0.6.3" 705 - source = "registry+https://github.com/rust-lang/crates.io-index" 706 - checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 707 - 708 - [[package]] 709 - name = "bytemuck" 710 - version = "1.16.1" 711 - source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e" 713 - dependencies = [ 714 - "bytemuck_derive", 715 - ] 716 - 717 - [[package]] 718 - name = "bytemuck_derive" 719 - version = "1.6.0" 720 - source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60" 722 - dependencies = [ 723 - "proc-macro2", 724 - "quote", 725 - "syn 2.0.60", 726 - ] 727 - 728 - [[package]] 729 - name = "byteorder" 730 - version = "1.5.0" 731 - source = "registry+https://github.com/rust-lang/crates.io-index" 732 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 733 - 734 - [[package]] 735 - name = "bytes" 736 - version = "1.6.0" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 739 - 740 - [[package]] 741 - name = "bytestring" 742 - version = "1.3.0" 743 - source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" 745 - dependencies = [ 746 - "bytes", 747 - ] 748 - 749 - [[package]] 750 - name = "bzip2" 751 - version = "0.4.4" 752 - source = "registry+https://github.com/rust-lang/crates.io-index" 753 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 754 - dependencies = [ 755 - "bzip2-sys", 756 - "libc", 757 - ] 758 - 759 - [[package]] 760 - name = "bzip2-sys" 761 - version = "0.1.11+1.0.8" 762 - source = "registry+https://github.com/rust-lang/crates.io-index" 763 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 764 - dependencies = [ 765 - "cc", 766 - "libc", 767 - "pkg-config", 768 - ] 769 - 770 - [[package]] 771 - name = "camino" 772 - version = "1.1.6" 773 - source = "registry+https://github.com/rust-lang/crates.io-index" 774 - checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 775 - dependencies = [ 776 - "serde", 777 - ] 778 - 779 - [[package]] 780 - name = "candle-core" 781 - version = "0.6.0" 782 - source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "d5b18de020c2729dbf7ac390325312644808b6ba9b7962f1f724e9185b1d53c7" 784 - dependencies = [ 785 - "byteorder", 786 - "candle-kernels", 787 - "cudarc", 788 - "gemm", 789 - "half 2.4.0", 790 - "memmap2", 791 - "num-traits", 792 - "num_cpus", 793 - "rand", 794 - "rand_distr", 795 - "rayon", 796 - "safetensors", 797 - "thiserror", 798 - "yoke", 799 - "zip 1.1.4", 800 - ] 801 - 802 - [[package]] 803 - name = "candle-kernels" 804 - version = "0.6.0" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "8bc0a71be8b2f0950b63fd602a5e10a74a4f94a5fd63059ae455e96163389488" 807 - dependencies = [ 808 - "bindgen_cuda", 809 - ] 810 - 811 - [[package]] 812 - name = "candle-nn" 813 - version = "0.6.0" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "b006b30f66a0d94fc9cef0ac4de6ce510565f35ae2c6c35ce5d4aacfb0fc8eeb" 816 - dependencies = [ 817 - "candle-core", 818 - "half 2.4.0", 819 - "num-traits", 820 - "rayon", 821 - "safetensors", 822 - "serde", 823 - "thiserror", 824 - ] 825 - 826 - [[package]] 827 - name = "candle-transformers" 828 - version = "0.6.0" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "4f0d4eb6a0d9279d5829b06b2bf3caa117904eefd6dcf879d16e687c4a84034c" 831 - dependencies = [ 832 - "byteorder", 833 - "candle-core", 834 - "candle-nn", 835 - "fancy-regex 0.13.0", 836 - "num-traits", 837 - "rand", 838 - "rayon", 839 - "serde", 840 - "serde_json", 841 - "serde_plain", 842 - "tracing", 843 - ] 844 - 845 - [[package]] 846 - name = "cargo-platform" 847 - version = "0.1.6" 848 - source = "registry+https://github.com/rust-lang/crates.io-index" 849 - checksum = "ceed8ef69d8518a5dda55c07425450b58a4e1946f4951eab6d7191ee86c2443d" 850 - dependencies = [ 851 - "serde", 852 - ] 853 - 854 - [[package]] 855 - name = "cargo_metadata" 856 - version = "0.18.1" 857 - source = "registry+https://github.com/rust-lang/crates.io-index" 858 - checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" 859 - dependencies = [ 860 - "camino", 861 - "cargo-platform", 862 - "semver", 863 - "serde", 864 - "serde_json", 865 - "thiserror", 866 - ] 867 - 868 - [[package]] 869 - name = "cargo_toml" 870 - version = "0.20.3" 871 - source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "4895c018bb228aa6b3ba1a0285543fcb4b704734c3fb1f72afaa75aa769500c1" 873 - dependencies = [ 874 - "serde", 875 - "toml", 876 - ] 877 - 878 - [[package]] 879 - name = "cast" 880 - version = "0.3.0" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 883 - 884 - [[package]] 885 - name = "cc" 886 - version = "1.0.104" 887 - source = "registry+https://github.com/rust-lang/crates.io-index" 888 - checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490" 889 - dependencies = [ 890 - "jobserver", 891 - "libc", 892 - "once_cell", 893 - ] 894 - 895 - [[package]] 896 - name = "cedarwood" 897 - version = "0.4.6" 898 - source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90" 900 - dependencies = [ 901 - "smallvec", 902 - ] 903 - 904 - [[package]] 905 - name = "cexpr" 906 - version = "0.6.0" 907 - source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 909 - dependencies = [ 910 - "nom", 911 - ] 912 - 913 - [[package]] 914 - name = "cfg-if" 915 - version = "1.0.0" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 918 - 919 - [[package]] 920 - name = "cfg_aliases" 921 - version = "0.2.1" 922 - source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 924 - 925 - [[package]] 926 - name = "change-detection" 927 - version = "1.2.0" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "159fa412eae48a1d94d0b9ecdb85c97ce56eb2a347c62394d3fdbf221adabc1a" 930 - dependencies = [ 931 - "path-matchers", 932 - "path-slash", 933 - ] 934 - 935 - [[package]] 936 - name = "charabia" 937 - version = "0.9.1" 938 - source = "registry+https://github.com/rust-lang/crates.io-index" 939 - checksum = "55ff52497324e7d168505a16949ae836c14595606fab94687238d2f6c8d4c798" 940 - dependencies = [ 941 - "aho-corasick", 942 - "csv", 943 - "either", 944 - "fst", 945 - "irg-kvariants", 946 - "jieba-rs", 947 - "lindera", 948 - "once_cell", 949 - "pinyin", 950 - "serde", 951 - "slice-group-by", 952 - "unicode-normalization", 953 - "wana_kana", 954 - "whatlang", 955 - ] 956 - 957 - [[package]] 958 - name = "ciborium" 959 - version = "0.2.1" 960 - source = "registry+https://github.com/rust-lang/crates.io-index" 961 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 962 - dependencies = [ 963 - "ciborium-io", 964 - "ciborium-ll", 965 - "serde", 966 - ] 967 - 968 - [[package]] 969 - name = "ciborium-io" 970 - version = "0.2.1" 971 - source = "registry+https://github.com/rust-lang/crates.io-index" 972 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 973 - 974 - [[package]] 975 - name = "ciborium-ll" 976 - version = "0.2.1" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 979 - dependencies = [ 980 - "ciborium-io", 981 - "half 1.8.2", 982 - ] 983 - 984 - [[package]] 985 - name = "cipher" 986 - version = "0.4.4" 987 - source = "registry+https://github.com/rust-lang/crates.io-index" 988 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 989 - dependencies = [ 990 - "crypto-common", 991 - "inout", 992 - ] 993 - 994 - [[package]] 995 - name = "clang-sys" 996 - version = "1.7.0" 997 - source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 999 - dependencies = [ 1000 - "glob", 1001 - "libc", 1002 - "libloading", 1003 - ] 1004 - 1005 - [[package]] 1006 - name = "clap" 1007 - version = "4.5.9" 1008 - source = "registry+https://github.com/rust-lang/crates.io-index" 1009 - checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462" 1010 - dependencies = [ 1011 - "clap_builder", 1012 - "clap_derive", 1013 - ] 1014 - 1015 - [[package]] 1016 - name = "clap_builder" 1017 - version = "4.5.9" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942" 1020 - dependencies = [ 1021 - "anstream", 1022 - "anstyle", 1023 - "clap_lex", 1024 - "strsim 0.11.1", 1025 - ] 1026 - 1027 - [[package]] 1028 - name = "clap_derive" 1029 - version = "4.5.8" 1030 - source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085" 1032 - dependencies = [ 1033 - "heck 0.5.0", 1034 - "proc-macro2", 1035 - "quote", 1036 - "syn 2.0.60", 1037 - ] 1038 - 1039 - [[package]] 1040 - name = "clap_lex" 1041 - version = "0.7.1" 1042 - source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 1044 - 1045 - [[package]] 1046 - name = "color-spantrace" 1047 - version = "0.2.1" 1048 - source = "registry+https://github.com/rust-lang/crates.io-index" 1049 - checksum = "cd6be1b2a7e382e2b98b43b2adcca6bb0e465af0bdd38123873ae61eb17a72c2" 1050 - dependencies = [ 1051 - "once_cell", 1052 - "owo-colors", 1053 - "tracing-core", 1054 - "tracing-error", 1055 - ] 1056 - 1057 - [[package]] 1058 - name = "colorchoice" 1059 - version = "1.0.0" 1060 - source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 1062 - 1063 - [[package]] 1064 - name = "concat-arrays" 1065 - version = "0.1.2" 1066 - source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "1df715824eb382e34b7afb7463b0247bf41538aeba731fba05241ecdb5dc3747" 1068 - dependencies = [ 1069 - "proc-macro2", 1070 - "quote", 1071 - "syn 1.0.109", 1072 - ] 1073 - 1074 - [[package]] 1075 - name = "console" 1076 - version = "0.15.7" 1077 - source = "registry+https://github.com/rust-lang/crates.io-index" 1078 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 1079 - dependencies = [ 1080 - "encode_unicode", 1081 - "lazy_static", 1082 - "libc", 1083 - "unicode-width", 1084 - "windows-sys 0.45.0", 1085 - ] 1086 - 1087 - [[package]] 1088 - name = "const-random" 1089 - version = "0.1.18" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 1092 - dependencies = [ 1093 - "const-random-macro", 1094 - ] 1095 - 1096 - [[package]] 1097 - name = "const-random-macro" 1098 - version = "0.1.16" 1099 - source = "registry+https://github.com/rust-lang/crates.io-index" 1100 - checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 1101 - dependencies = [ 1102 - "getrandom", 1103 - "once_cell", 1104 - "tiny-keccak", 1105 - ] 1106 - 1107 - [[package]] 1108 - name = "constant_time_eq" 1109 - version = "0.3.0" 1110 - source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 1112 - 1113 - [[package]] 1114 - name = "convert_case" 1115 - version = "0.4.0" 1116 - source = "registry+https://github.com/rust-lang/crates.io-index" 1117 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1118 - 1119 - [[package]] 1120 - name = "convert_case" 1121 - version = "0.6.0" 1122 - source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 1124 - dependencies = [ 1125 - "unicode-segmentation", 1126 - ] 1127 - 1128 - [[package]] 1129 - name = "cookie" 1130 - version = "0.16.2" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 1133 - dependencies = [ 1134 - "percent-encoding", 1135 - "time", 1136 - "version_check", 1137 - ] 1138 - 1139 - [[package]] 1140 - name = "core-foundation-sys" 1141 - version = "0.8.4" 1142 - source = "registry+https://github.com/rust-lang/crates.io-index" 1143 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1144 - 1145 - [[package]] 1146 - name = "cpufeatures" 1147 - version = "0.2.12" 1148 - source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1150 - dependencies = [ 1151 - "libc", 1152 - ] 1153 - 1154 - [[package]] 1155 - name = "crc" 1156 - version = "3.2.1" 1157 - source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 1159 - dependencies = [ 1160 - "crc-catalog", 1161 - ] 1162 - 1163 - [[package]] 1164 - name = "crc-catalog" 1165 - version = "2.4.0" 1166 - source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1168 - 1169 - [[package]] 1170 - name = "crc32fast" 1171 - version = "1.4.2" 1172 - source = "registry+https://github.com/rust-lang/crates.io-index" 1173 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 1174 - dependencies = [ 1175 - "cfg-if", 1176 - ] 1177 - 1178 - [[package]] 1179 - name = "criterion" 1180 - version = "0.5.1" 1181 - source = "registry+https://github.com/rust-lang/crates.io-index" 1182 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 1183 - dependencies = [ 1184 - "anes", 1185 - "cast", 1186 - "ciborium", 1187 - "clap", 1188 - "criterion-plot", 1189 - "is-terminal", 1190 - "itertools 0.10.5", 1191 - "num-traits", 1192 - "once_cell", 1193 - "oorandom", 1194 - "plotters", 1195 - "rayon", 1196 - "regex", 1197 - "serde", 1198 - "serde_derive", 1199 - "serde_json", 1200 - "tinytemplate", 1201 - "walkdir", 1202 - ] 1203 - 1204 - [[package]] 1205 - name = "criterion-plot" 1206 - version = "0.5.0" 1207 - source = "registry+https://github.com/rust-lang/crates.io-index" 1208 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1209 - dependencies = [ 1210 - "cast", 1211 - "itertools 0.10.5", 1212 - ] 1213 - 1214 - [[package]] 1215 - name = "crossbeam" 1216 - version = "0.8.4" 1217 - source = "registry+https://github.com/rust-lang/crates.io-index" 1218 - checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 1219 - dependencies = [ 1220 - "crossbeam-channel", 1221 - "crossbeam-deque", 1222 - "crossbeam-epoch", 1223 - "crossbeam-queue", 1224 - "crossbeam-utils", 1225 - ] 1226 - 1227 - [[package]] 1228 - name = "crossbeam-channel" 1229 - version = "0.5.13" 1230 - source = "registry+https://github.com/rust-lang/crates.io-index" 1231 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 1232 - dependencies = [ 1233 - "crossbeam-utils", 1234 - ] 1235 - 1236 - [[package]] 1237 - name = "crossbeam-deque" 1238 - version = "0.8.5" 1239 - source = "registry+https://github.com/rust-lang/crates.io-index" 1240 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1241 - dependencies = [ 1242 - "crossbeam-epoch", 1243 - "crossbeam-utils", 1244 - ] 1245 - 1246 - [[package]] 1247 - name = "crossbeam-epoch" 1248 - version = "0.9.18" 1249 - source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1251 - dependencies = [ 1252 - "crossbeam-utils", 1253 - ] 1254 - 1255 - [[package]] 1256 - name = "crossbeam-queue" 1257 - version = "0.3.11" 1258 - source = "registry+https://github.com/rust-lang/crates.io-index" 1259 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1260 - dependencies = [ 1261 - "crossbeam-utils", 1262 - ] 1263 - 1264 - [[package]] 1265 - name = "crossbeam-utils" 1266 - version = "0.8.20" 1267 - source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 1269 - 1270 - [[package]] 1271 - name = "crunchy" 1272 - version = "0.2.2" 1273 - source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1275 - 1276 - [[package]] 1277 - name = "crypto-common" 1278 - version = "0.1.6" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1281 - dependencies = [ 1282 - "generic-array", 1283 - "typenum", 1284 - ] 1285 - 1286 - [[package]] 1287 - name = "csv" 1288 - version = "1.3.0" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" 1291 - dependencies = [ 1292 - "csv-core", 1293 - "itoa", 1294 - "ryu", 1295 - "serde", 1296 - ] 1297 - 1298 - [[package]] 1299 - name = "csv-core" 1300 - version = "0.1.11" 1301 - source = "registry+https://github.com/rust-lang/crates.io-index" 1302 - checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 1303 - dependencies = [ 1304 - "memchr", 1305 - ] 1306 - 1307 - [[package]] 1308 - name = "cudarc" 1309 - version = "0.11.7" 1310 - source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "56ee2a3fbbd981e1c7ea73cc2af136e754eb22d17436de37155227ee4dbe0cf4" 1312 - dependencies = [ 1313 - "half 2.4.0", 1314 - "libloading", 1315 - ] 1316 - 1317 - [[package]] 1318 - name = "darling" 1319 - version = "0.14.4" 1320 - source = "registry+https://github.com/rust-lang/crates.io-index" 1321 - checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" 1322 - dependencies = [ 1323 - "darling_core 0.14.4", 1324 - "darling_macro 0.14.4", 1325 - ] 1326 - 1327 - [[package]] 1328 - name = "darling" 1329 - version = "0.20.9" 1330 - source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" 1332 - dependencies = [ 1333 - "darling_core 0.20.9", 1334 - "darling_macro 0.20.9", 1335 - ] 1336 - 1337 - [[package]] 1338 - name = "darling_core" 1339 - version = "0.14.4" 1340 - source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" 1342 - dependencies = [ 1343 - "fnv", 1344 - "ident_case", 1345 - "proc-macro2", 1346 - "quote", 1347 - "strsim 0.10.0", 1348 - "syn 1.0.109", 1349 - ] 1350 - 1351 - [[package]] 1352 - name = "darling_core" 1353 - version = "0.20.9" 1354 - source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" 1356 - dependencies = [ 1357 - "fnv", 1358 - "ident_case", 1359 - "proc-macro2", 1360 - "quote", 1361 - "strsim 0.11.1", 1362 - "syn 2.0.60", 1363 - ] 1364 - 1365 - [[package]] 1366 - name = "darling_macro" 1367 - version = "0.14.4" 1368 - source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" 1370 - dependencies = [ 1371 - "darling_core 0.14.4", 1372 - "quote", 1373 - "syn 1.0.109", 1374 - ] 1375 - 1376 - [[package]] 1377 - name = "darling_macro" 1378 - version = "0.20.9" 1379 - source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" 1381 - dependencies = [ 1382 - "darling_core 0.20.9", 1383 - "quote", 1384 - "syn 2.0.60", 1385 - ] 1386 - 1387 - [[package]] 1388 - name = "deadpool" 1389 - version = "0.10.0" 1390 - source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490" 1392 - dependencies = [ 1393 - "async-trait", 1394 - "deadpool-runtime", 1395 - "num_cpus", 1396 - "tokio", 1397 - ] 1398 - 1399 - [[package]] 1400 - name = "deadpool-runtime" 1401 - version = "0.1.4" 1402 - source = "registry+https://github.com/rust-lang/crates.io-index" 1403 - checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" 1404 - 1405 - [[package]] 1406 - name = "debugid" 1407 - version = "0.8.0" 1408 - source = "registry+https://github.com/rust-lang/crates.io-index" 1409 - checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 1410 - dependencies = [ 1411 - "uuid", 1412 - ] 1413 - 1414 - [[package]] 1415 - name = "deflate64" 1416 - version = "0.1.8" 1417 - source = "registry+https://github.com/rust-lang/crates.io-index" 1418 - checksum = "83ace6c86376be0b6cdcf3fb41882e81d94b31587573d1cfa9d01cd06bba210d" 1419 - 1420 - [[package]] 1421 - name = "deranged" 1422 - version = "0.3.11" 1423 - source = "registry+https://github.com/rust-lang/crates.io-index" 1424 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1425 - dependencies = [ 1426 - "powerfmt", 1427 - "serde", 1428 - ] 1429 - 1430 - [[package]] 1431 - name = "derive_arbitrary" 1432 - version = "1.3.2" 1433 - source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 1435 - dependencies = [ 1436 - "proc-macro2", 1437 - "quote", 1438 - "syn 2.0.60", 1439 - ] 1440 - 1441 - [[package]] 1442 - name = "derive_builder" 1443 - version = "0.12.0" 1444 - source = "registry+https://github.com/rust-lang/crates.io-index" 1445 - checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" 1446 - dependencies = [ 1447 - "derive_builder_macro 0.12.0", 1448 - ] 1449 - 1450 - [[package]] 1451 - name = "derive_builder" 1452 - version = "0.20.0" 1453 - source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7" 1455 - dependencies = [ 1456 - "derive_builder_macro 0.20.0", 1457 - ] 1458 - 1459 - [[package]] 1460 - name = "derive_builder_core" 1461 - version = "0.12.0" 1462 - source = "registry+https://github.com/rust-lang/crates.io-index" 1463 - checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" 1464 - dependencies = [ 1465 - "darling 0.14.4", 1466 - "proc-macro2", 1467 - "quote", 1468 - "syn 1.0.109", 1469 - ] 1470 - 1471 - [[package]] 1472 - name = "derive_builder_core" 1473 - version = "0.20.0" 1474 - source = "registry+https://github.com/rust-lang/crates.io-index" 1475 - checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d" 1476 - dependencies = [ 1477 - "darling 0.20.9", 1478 - "proc-macro2", 1479 - "quote", 1480 - "syn 2.0.60", 1481 - ] 1482 - 1483 - [[package]] 1484 - name = "derive_builder_macro" 1485 - version = "0.12.0" 1486 - source = "registry+https://github.com/rust-lang/crates.io-index" 1487 - checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" 1488 - dependencies = [ 1489 - "derive_builder_core 0.12.0", 1490 - "syn 1.0.109", 1491 - ] 1492 - 1493 - [[package]] 1494 - name = "derive_builder_macro" 1495 - version = "0.20.0" 1496 - source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" 1498 - dependencies = [ 1499 - "derive_builder_core 0.20.0", 1500 - "syn 2.0.60", 1501 - ] 1502 - 1503 - [[package]] 1504 - name = "derive_more" 1505 - version = "0.99.17" 1506 - source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1508 - dependencies = [ 1509 - "convert_case 0.4.0", 1510 - "proc-macro2", 1511 - "quote", 1512 - "rustc_version", 1513 - "syn 1.0.109", 1514 - ] 1515 - 1516 - [[package]] 1517 - name = "deserr" 1518 - version = "0.6.2" 1519 - source = "registry+https://github.com/rust-lang/crates.io-index" 1520 - checksum = "bfe971a2a48625fda3198032f35de60939828c4aed47d76715c21698801b985c" 1521 - dependencies = [ 1522 - "actix-http", 1523 - "actix-utils", 1524 - "actix-web", 1525 - "deserr-internal", 1526 - "futures", 1527 - "serde-cs", 1528 - "serde_json", 1529 - "serde_urlencoded", 1530 - "strsim 0.11.1", 1531 - ] 1532 - 1533 - [[package]] 1534 - name = "deserr-internal" 1535 - version = "0.6.2" 1536 - source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "aae89f00c97a75940185084a826c0aace055774ad57a58211625606449ea0bd8" 1538 - dependencies = [ 1539 - "convert_case 0.6.0", 1540 - "proc-macro2", 1541 - "quote", 1542 - "syn 2.0.60", 1543 - ] 1544 - 1545 - [[package]] 1546 - name = "digest" 1547 - version = "0.10.7" 1548 - source = "registry+https://github.com/rust-lang/crates.io-index" 1549 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1550 - dependencies = [ 1551 - "block-buffer", 1552 - "crypto-common", 1553 - "subtle", 1554 - ] 1555 - 1556 - [[package]] 1557 - name = "dirs" 1558 - version = "5.0.1" 1559 - source = "registry+https://github.com/rust-lang/crates.io-index" 1560 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1561 - dependencies = [ 1562 - "dirs-sys", 1563 - ] 1564 - 1565 - [[package]] 1566 - name = "dirs-next" 1567 - version = "1.0.2" 1568 - source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "cf36e65a80337bea855cd4ef9b8401ffce06a7baedf2e85ec467b1ac3f6e82b6" 1570 - dependencies = [ 1571 - "cfg-if", 1572 - "dirs-sys-next", 1573 - ] 1574 - 1575 - [[package]] 1576 - name = "dirs-sys" 1577 - version = "0.4.1" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1580 - dependencies = [ 1581 - "libc", 1582 - "option-ext", 1583 - "redox_users", 1584 - "windows-sys 0.48.0", 1585 - ] 1586 - 1587 - [[package]] 1588 - name = "dirs-sys-next" 1589 - version = "0.1.2" 1590 - source = "registry+https://github.com/rust-lang/crates.io-index" 1591 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 1592 - dependencies = [ 1593 - "libc", 1594 - "redox_users", 1595 - "winapi", 1596 - ] 1597 - 1598 - [[package]] 1599 - name = "displaydoc" 1600 - version = "0.2.5" 1601 - source = "registry+https://github.com/rust-lang/crates.io-index" 1602 - checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1603 - dependencies = [ 1604 - "proc-macro2", 1605 - "quote", 1606 - "syn 2.0.60", 1607 - ] 1608 - 1609 - [[package]] 1610 - name = "doc-comment" 1611 - version = "0.3.3" 1612 - source = "registry+https://github.com/rust-lang/crates.io-index" 1613 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1614 - 1615 - [[package]] 1616 - name = "doxygen-rs" 1617 - version = "0.4.2" 1618 - source = "registry+https://github.com/rust-lang/crates.io-index" 1619 - checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9" 1620 - dependencies = [ 1621 - "phf", 1622 - ] 1623 - 1624 - [[package]] 1625 - name = "dump" 1626 - version = "1.11.3" 1627 - dependencies = [ 1628 - "anyhow", 1629 - "big_s", 1630 - "flate2", 1631 - "http 1.1.0", 1632 - "maplit", 1633 - "meili-snap", 1634 - "meilisearch-types", 1635 - "once_cell", 1636 - "regex", 1637 - "roaring", 1638 - "serde", 1639 - "serde_json", 1640 - "tar", 1641 - "tempfile", 1642 - "thiserror", 1643 - "time", 1644 - "tracing", 1645 - "uuid", 1646 - ] 1647 - 1648 - [[package]] 1649 - name = "dyn-stack" 1650 - version = "0.10.0" 1651 - source = "registry+https://github.com/rust-lang/crates.io-index" 1652 - checksum = "56e53799688f5632f364f8fb387488dd05db9fe45db7011be066fc20e7027f8b" 1653 - dependencies = [ 1654 - "bytemuck", 1655 - "reborrow", 1656 - ] 1657 - 1658 - [[package]] 1659 - name = "either" 1660 - version = "1.13.0" 1661 - source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1663 - dependencies = [ 1664 - "serde", 1665 - ] 1666 - 1667 - [[package]] 1668 - name = "encode_unicode" 1669 - version = "0.3.6" 1670 - source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1672 - 1673 - [[package]] 1674 - name = "encoding" 1675 - version = "0.2.33" 1676 - source = "registry+https://github.com/rust-lang/crates.io-index" 1677 - checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 1678 - dependencies = [ 1679 - "encoding-index-japanese", 1680 - "encoding-index-korean", 1681 - "encoding-index-simpchinese", 1682 - "encoding-index-singlebyte", 1683 - "encoding-index-tradchinese", 1684 - ] 1685 - 1686 - [[package]] 1687 - name = "encoding-index-japanese" 1688 - version = "1.20141219.5" 1689 - source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 1691 - dependencies = [ 1692 - "encoding_index_tests", 1693 - ] 1694 - 1695 - [[package]] 1696 - name = "encoding-index-korean" 1697 - version = "1.20141219.5" 1698 - source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 1700 - dependencies = [ 1701 - "encoding_index_tests", 1702 - ] 1703 - 1704 - [[package]] 1705 - name = "encoding-index-simpchinese" 1706 - version = "1.20141219.5" 1707 - source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 1709 - dependencies = [ 1710 - "encoding_index_tests", 1711 - ] 1712 - 1713 - [[package]] 1714 - name = "encoding-index-singlebyte" 1715 - version = "1.20141219.5" 1716 - source = "registry+https://github.com/rust-lang/crates.io-index" 1717 - checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 1718 - dependencies = [ 1719 - "encoding_index_tests", 1720 - ] 1721 - 1722 - [[package]] 1723 - name = "encoding-index-tradchinese" 1724 - version = "1.20141219.5" 1725 - source = "registry+https://github.com/rust-lang/crates.io-index" 1726 - checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 1727 - dependencies = [ 1728 - "encoding_index_tests", 1729 - ] 1730 - 1731 - [[package]] 1732 - name = "encoding_index_tests" 1733 - version = "0.1.4" 1734 - source = "registry+https://github.com/rust-lang/crates.io-index" 1735 - checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 1736 - 1737 - [[package]] 1738 - name = "encoding_rs" 1739 - version = "0.8.33" 1740 - source = "registry+https://github.com/rust-lang/crates.io-index" 1741 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1742 - dependencies = [ 1743 - "cfg-if", 1744 - ] 1745 - 1746 - [[package]] 1747 - name = "encoding_rs_io" 1748 - version = "0.1.7" 1749 - source = "registry+https://github.com/rust-lang/crates.io-index" 1750 - checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83" 1751 - dependencies = [ 1752 - "encoding_rs", 1753 - ] 1754 - 1755 - [[package]] 1756 - name = "enum-as-inner" 1757 - version = "0.6.0" 1758 - source = "registry+https://github.com/rust-lang/crates.io-index" 1759 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 1760 - dependencies = [ 1761 - "heck 0.4.1", 1762 - "proc-macro2", 1763 - "quote", 1764 - "syn 2.0.60", 1765 - ] 1766 - 1767 - [[package]] 1768 - name = "enum-iterator" 1769 - version = "2.1.0" 1770 - source = "registry+https://github.com/rust-lang/crates.io-index" 1771 - checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635" 1772 - dependencies = [ 1773 - "enum-iterator-derive", 1774 - ] 1775 - 1776 - [[package]] 1777 - name = "enum-iterator-derive" 1778 - version = "1.4.0" 1779 - source = "registry+https://github.com/rust-lang/crates.io-index" 1780 - checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b" 1781 - dependencies = [ 1782 - "proc-macro2", 1783 - "quote", 1784 - "syn 2.0.60", 1785 - ] 1786 - 1787 - [[package]] 1788 - name = "equivalent" 1789 - version = "1.0.1" 1790 - source = "registry+https://github.com/rust-lang/crates.io-index" 1791 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1792 - 1793 - [[package]] 1794 - name = "errno" 1795 - version = "0.3.8" 1796 - source = "registry+https://github.com/rust-lang/crates.io-index" 1797 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1798 - dependencies = [ 1799 - "libc", 1800 - "windows-sys 0.52.0", 1801 - ] 1802 - 1803 - [[package]] 1804 - name = "esaxx-rs" 1805 - version = "0.1.10" 1806 - source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6" 1808 - 1809 - [[package]] 1810 - name = "fancy-regex" 1811 - version = "0.12.0" 1812 - source = "registry+https://github.com/rust-lang/crates.io-index" 1813 - checksum = "7493d4c459da9f84325ad297371a6b2b8a162800873a22e3b6b6512e61d18c05" 1814 - dependencies = [ 1815 - "bit-set", 1816 - "regex", 1817 - ] 1818 - 1819 - [[package]] 1820 - name = "fancy-regex" 1821 - version = "0.13.0" 1822 - source = "registry+https://github.com/rust-lang/crates.io-index" 1823 - checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" 1824 - dependencies = [ 1825 - "bit-set", 1826 - "regex-automata", 1827 - "regex-syntax", 1828 - ] 1829 - 1830 - [[package]] 1831 - name = "fastrand" 1832 - version = "2.1.0" 1833 - source = "registry+https://github.com/rust-lang/crates.io-index" 1834 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1835 - 1836 - [[package]] 1837 - name = "file-store" 1838 - version = "1.11.3" 1839 - dependencies = [ 1840 - "tempfile", 1841 - "thiserror", 1842 - "tracing", 1843 - "uuid", 1844 - ] 1845 - 1846 - [[package]] 1847 - name = "filetime" 1848 - version = "0.2.22" 1849 - source = "registry+https://github.com/rust-lang/crates.io-index" 1850 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1851 - dependencies = [ 1852 - "cfg-if", 1853 - "libc", 1854 - "redox_syscall 0.3.5", 1855 - "windows-sys 0.48.0", 1856 - ] 1857 - 1858 - [[package]] 1859 - name = "filter-parser" 1860 - version = "1.11.3" 1861 - dependencies = [ 1862 - "insta", 1863 - "nom", 1864 - "nom_locate", 1865 - "unescaper", 1866 - ] 1867 - 1868 - [[package]] 1869 - name = "flate2" 1870 - version = "1.0.30" 1871 - source = "registry+https://github.com/rust-lang/crates.io-index" 1872 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 1873 - dependencies = [ 1874 - "crc32fast", 1875 - "miniz_oxide", 1876 - ] 1877 - 1878 - [[package]] 1879 - name = "flatten-serde-json" 1880 - version = "1.11.3" 1881 - dependencies = [ 1882 - "criterion", 1883 - "serde_json", 1884 - ] 1885 - 1886 - [[package]] 1887 - name = "fnv" 1888 - version = "1.0.7" 1889 - source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1891 - 1892 - [[package]] 1893 - name = "form_urlencoded" 1894 - version = "1.2.1" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1897 - dependencies = [ 1898 - "percent-encoding", 1899 - ] 1900 - 1901 - [[package]] 1902 - name = "fst" 1903 - version = "0.4.7" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a" 1906 - 1907 - [[package]] 1908 - name = "funty" 1909 - version = "2.0.0" 1910 - source = "registry+https://github.com/rust-lang/crates.io-index" 1911 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1912 - 1913 - [[package]] 1914 - name = "futures" 1915 - version = "0.3.30" 1916 - source = "registry+https://github.com/rust-lang/crates.io-index" 1917 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1918 - dependencies = [ 1919 - "futures-channel", 1920 - "futures-core", 1921 - "futures-executor", 1922 - "futures-io", 1923 - "futures-sink", 1924 - "futures-task", 1925 - "futures-util", 1926 - ] 1927 - 1928 - [[package]] 1929 - name = "futures-channel" 1930 - version = "0.3.30" 1931 - source = "registry+https://github.com/rust-lang/crates.io-index" 1932 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1933 - dependencies = [ 1934 - "futures-core", 1935 - "futures-sink", 1936 - ] 1937 - 1938 - [[package]] 1939 - name = "futures-core" 1940 - version = "0.3.30" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1943 - 1944 - [[package]] 1945 - name = "futures-executor" 1946 - version = "0.3.30" 1947 - source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1949 - dependencies = [ 1950 - "futures-core", 1951 - "futures-task", 1952 - "futures-util", 1953 - ] 1954 - 1955 - [[package]] 1956 - name = "futures-io" 1957 - version = "0.3.30" 1958 - source = "registry+https://github.com/rust-lang/crates.io-index" 1959 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1960 - 1961 - [[package]] 1962 - name = "futures-macro" 1963 - version = "0.3.30" 1964 - source = "registry+https://github.com/rust-lang/crates.io-index" 1965 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1966 - dependencies = [ 1967 - "proc-macro2", 1968 - "quote", 1969 - "syn 2.0.60", 1970 - ] 1971 - 1972 - [[package]] 1973 - name = "futures-sink" 1974 - version = "0.3.30" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1977 - 1978 - [[package]] 1979 - name = "futures-task" 1980 - version = "0.3.30" 1981 - source = "registry+https://github.com/rust-lang/crates.io-index" 1982 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1983 - 1984 - [[package]] 1985 - name = "futures-util" 1986 - version = "0.3.30" 1987 - source = "registry+https://github.com/rust-lang/crates.io-index" 1988 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1989 - dependencies = [ 1990 - "futures-channel", 1991 - "futures-core", 1992 - "futures-io", 1993 - "futures-macro", 1994 - "futures-sink", 1995 - "futures-task", 1996 - "memchr", 1997 - "pin-project-lite", 1998 - "pin-utils", 1999 - "slab", 2000 - ] 2001 - 2002 - [[package]] 2003 - name = "fuzzers" 2004 - version = "1.11.3" 2005 - dependencies = [ 2006 - "arbitrary", 2007 - "clap", 2008 - "fastrand", 2009 - "milli", 2010 - "serde", 2011 - "serde_json", 2012 - "tempfile", 2013 - ] 2014 - 2015 - [[package]] 2016 - name = "fxhash" 2017 - version = "0.2.1" 2018 - source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 2020 - dependencies = [ 2021 - "byteorder", 2022 - ] 2023 - 2024 - [[package]] 2025 - name = "fxprof-processed-profile" 2026 - version = "0.7.0" 2027 - source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "ce20bbb48248608ba4908b45fe36e17e40f56f8c6bb385ecf5d3c4a1e8b05a22" 2029 - dependencies = [ 2030 - "bitflags 2.6.0", 2031 - "debugid", 2032 - "fxhash", 2033 - "serde", 2034 - "serde_derive", 2035 - "serde_json", 2036 - ] 2037 - 2038 - [[package]] 2039 - name = "gemm" 2040 - version = "0.17.1" 2041 - source = "registry+https://github.com/rust-lang/crates.io-index" 2042 - checksum = "6ab24cc62135b40090e31a76a9b2766a501979f3070fa27f689c27ec04377d32" 2043 - dependencies = [ 2044 - "dyn-stack", 2045 - "gemm-c32", 2046 - "gemm-c64", 2047 - "gemm-common", 2048 - "gemm-f16", 2049 - "gemm-f32", 2050 - "gemm-f64", 2051 - "num-complex", 2052 - "num-traits", 2053 - "paste", 2054 - "raw-cpuid", 2055 - "seq-macro", 2056 - ] 2057 - 2058 - [[package]] 2059 - name = "gemm-c32" 2060 - version = "0.17.1" 2061 - source = "registry+https://github.com/rust-lang/crates.io-index" 2062 - checksum = "b9c030d0b983d1e34a546b86e08f600c11696fde16199f971cd46c12e67512c0" 2063 - dependencies = [ 2064 - "dyn-stack", 2065 - "gemm-common", 2066 - "num-complex", 2067 - "num-traits", 2068 - "paste", 2069 - "raw-cpuid", 2070 - "seq-macro", 2071 - ] 2072 - 2073 - [[package]] 2074 - name = "gemm-c64" 2075 - version = "0.17.1" 2076 - source = "registry+https://github.com/rust-lang/crates.io-index" 2077 - checksum = "fbb5f2e79fefb9693d18e1066a557b4546cd334b226beadc68b11a8f9431852a" 2078 - dependencies = [ 2079 - "dyn-stack", 2080 - "gemm-common", 2081 - "num-complex", 2082 - "num-traits", 2083 - "paste", 2084 - "raw-cpuid", 2085 - "seq-macro", 2086 - ] 2087 - 2088 - [[package]] 2089 - name = "gemm-common" 2090 - version = "0.17.1" 2091 - source = "registry+https://github.com/rust-lang/crates.io-index" 2092 - checksum = "a2e7ea062c987abcd8db95db917b4ffb4ecdfd0668471d8dc54734fdff2354e8" 2093 - dependencies = [ 2094 - "bytemuck", 2095 - "dyn-stack", 2096 - "half 2.4.0", 2097 - "num-complex", 2098 - "num-traits", 2099 - "once_cell", 2100 - "paste", 2101 - "pulp", 2102 - "raw-cpuid", 2103 - "rayon", 2104 - "seq-macro", 2105 - "sysctl", 2106 - ] 2107 - 2108 - [[package]] 2109 - name = "gemm-f16" 2110 - version = "0.17.1" 2111 - source = "registry+https://github.com/rust-lang/crates.io-index" 2112 - checksum = "7ca4c06b9b11952071d317604acb332e924e817bd891bec8dfb494168c7cedd4" 2113 - dependencies = [ 2114 - "dyn-stack", 2115 - "gemm-common", 2116 - "gemm-f32", 2117 - "half 2.4.0", 2118 - "num-complex", 2119 - "num-traits", 2120 - "paste", 2121 - "raw-cpuid", 2122 - "rayon", 2123 - "seq-macro", 2124 - ] 2125 - 2126 - [[package]] 2127 - name = "gemm-f32" 2128 - version = "0.17.1" 2129 - source = "registry+https://github.com/rust-lang/crates.io-index" 2130 - checksum = "e9a69f51aaefbd9cf12d18faf273d3e982d9d711f60775645ed5c8047b4ae113" 2131 - dependencies = [ 2132 - "dyn-stack", 2133 - "gemm-common", 2134 - "num-complex", 2135 - "num-traits", 2136 - "paste", 2137 - "raw-cpuid", 2138 - "seq-macro", 2139 - ] 2140 - 2141 - [[package]] 2142 - name = "gemm-f64" 2143 - version = "0.17.1" 2144 - source = "registry+https://github.com/rust-lang/crates.io-index" 2145 - checksum = "aa397a48544fadf0b81ec8741e5c0fba0043008113f71f2034def1935645d2b0" 2146 - dependencies = [ 2147 - "dyn-stack", 2148 - "gemm-common", 2149 - "num-complex", 2150 - "num-traits", 2151 - "paste", 2152 - "raw-cpuid", 2153 - "seq-macro", 2154 - ] 2155 - 2156 - [[package]] 2157 - name = "generic-array" 2158 - version = "0.14.7" 2159 - source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2161 - dependencies = [ 2162 - "typenum", 2163 - "version_check", 2164 - ] 2165 - 2166 - [[package]] 2167 - name = "geoutils" 2168 - version = "0.5.1" 2169 - source = "registry+https://github.com/rust-lang/crates.io-index" 2170 - checksum = "36d244a08113319b5ebcabad2b8b7925732d15eec46d7e7ac3c11734f3b7a6ad" 2171 - 2172 - [[package]] 2173 - name = "getrandom" 2174 - version = "0.2.14" 2175 - source = "registry+https://github.com/rust-lang/crates.io-index" 2176 - checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 2177 - dependencies = [ 2178 - "cfg-if", 2179 - "js-sys", 2180 - "libc", 2181 - "wasi", 2182 - "wasm-bindgen", 2183 - ] 2184 - 2185 - [[package]] 2186 - name = "getset" 2187 - version = "0.1.2" 2188 - source = "registry+https://github.com/rust-lang/crates.io-index" 2189 - checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9" 2190 - dependencies = [ 2191 - "proc-macro-error", 2192 - "proc-macro2", 2193 - "quote", 2194 - "syn 1.0.109", 2195 - ] 2196 - 2197 - [[package]] 2198 - name = "gimli" 2199 - version = "0.27.3" 2200 - source = "registry+https://github.com/rust-lang/crates.io-index" 2201 - checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 2202 - 2203 - [[package]] 2204 - name = "git2" 2205 - version = "0.19.0" 2206 - source = "registry+https://github.com/rust-lang/crates.io-index" 2207 - checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724" 2208 - dependencies = [ 2209 - "bitflags 2.6.0", 2210 - "libc", 2211 - "libgit2-sys", 2212 - "log", 2213 - "url", 2214 - ] 2215 - 2216 - [[package]] 2217 - name = "glob" 2218 - version = "0.3.1" 2219 - source = "registry+https://github.com/rust-lang/crates.io-index" 2220 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2221 - 2222 - [[package]] 2223 - name = "grenad" 2224 - version = "0.4.7" 2225 - source = "registry+https://github.com/rust-lang/crates.io-index" 2226 - checksum = "350d89047298d3b1b40050acd11ab76e487b854a104b760ebc5a7f375093de77" 2227 - dependencies = [ 2228 - "bytemuck", 2229 - "byteorder", 2230 - "rayon", 2231 - "tempfile", 2232 - ] 2233 - 2234 - [[package]] 2235 - name = "h2" 2236 - version = "0.3.26" 2237 - source = "registry+https://github.com/rust-lang/crates.io-index" 2238 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 2239 - dependencies = [ 2240 - "bytes", 2241 - "fnv", 2242 - "futures-core", 2243 - "futures-sink", 2244 - "futures-util", 2245 - "http 0.2.11", 2246 - "indexmap", 2247 - "slab", 2248 - "tokio", 2249 - "tokio-util", 2250 - "tracing", 2251 - ] 2252 - 2253 - [[package]] 2254 - name = "h2" 2255 - version = "0.4.5" 2256 - source = "registry+https://github.com/rust-lang/crates.io-index" 2257 - checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" 2258 - dependencies = [ 2259 - "atomic-waker", 2260 - "bytes", 2261 - "fnv", 2262 - "futures-core", 2263 - "futures-sink", 2264 - "http 1.1.0", 2265 - "indexmap", 2266 - "slab", 2267 - "tokio", 2268 - "tokio-util", 2269 - "tracing", 2270 - ] 2271 - 2272 - [[package]] 2273 - name = "half" 2274 - version = "1.8.2" 2275 - source = "registry+https://github.com/rust-lang/crates.io-index" 2276 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2277 - 2278 - [[package]] 2279 - name = "half" 2280 - version = "2.4.0" 2281 - source = "registry+https://github.com/rust-lang/crates.io-index" 2282 - checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e" 2283 - dependencies = [ 2284 - "bytemuck", 2285 - "cfg-if", 2286 - "crunchy", 2287 - "num-traits", 2288 - "rand", 2289 - "rand_distr", 2290 - ] 2291 - 2292 - [[package]] 2293 - name = "hash32" 2294 - version = "0.3.1" 2295 - source = "registry+https://github.com/rust-lang/crates.io-index" 2296 - checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 2297 - dependencies = [ 2298 - "byteorder", 2299 - ] 2300 - 2301 - [[package]] 2302 - name = "hashbrown" 2303 - version = "0.12.3" 2304 - source = "registry+https://github.com/rust-lang/crates.io-index" 2305 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2306 - dependencies = [ 2307 - "ahash 0.7.8", 2308 - ] 2309 - 2310 - [[package]] 2311 - name = "hashbrown" 2312 - version = "0.14.3" 2313 - source = "registry+https://github.com/rust-lang/crates.io-index" 2314 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2315 - dependencies = [ 2316 - "ahash 0.8.11", 2317 - "allocator-api2", 2318 - ] 2319 - 2320 - [[package]] 2321 - name = "heapless" 2322 - version = "0.8.0" 2323 - source = "registry+https://github.com/rust-lang/crates.io-index" 2324 - checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" 2325 - dependencies = [ 2326 - "hash32", 2327 - "stable_deref_trait", 2328 - ] 2329 - 2330 - [[package]] 2331 - name = "heck" 2332 - version = "0.4.1" 2333 - source = "registry+https://github.com/rust-lang/crates.io-index" 2334 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2335 - 2336 - [[package]] 2337 - name = "heck" 2338 - version = "0.5.0" 2339 - source = "registry+https://github.com/rust-lang/crates.io-index" 2340 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2341 - 2342 - [[package]] 2343 - name = "heed" 2344 - version = "0.20.3" 2345 - source = "registry+https://github.com/rust-lang/crates.io-index" 2346 - checksum = "2bc30da4a93ff8cb98e535d595d6de42731d4719d707bc1c86f579158751a24e" 2347 - dependencies = [ 2348 - "bitflags 2.6.0", 2349 - "byteorder", 2350 - "heed-traits", 2351 - "heed-types", 2352 - "libc", 2353 - "lmdb-master-sys", 2354 - "once_cell", 2355 - "page_size", 2356 - "synchronoise", 2357 - "url", 2358 - ] 2359 - 2360 - [[package]] 2361 - name = "heed-traits" 2362 - version = "0.20.0" 2363 - source = "registry+https://github.com/rust-lang/crates.io-index" 2364 - checksum = "eb3130048d404c57ce5a1ac61a903696e8fcde7e8c2991e9fcfc1f27c3ef74ff" 2365 - 2366 - [[package]] 2367 - name = "heed-types" 2368 - version = "0.20.1" 2369 - source = "registry+https://github.com/rust-lang/crates.io-index" 2370 - checksum = "9d3f528b053a6d700b2734eabcd0fd49cb8230647aa72958467527b0b7917114" 2371 - dependencies = [ 2372 - "bincode", 2373 - "byteorder", 2374 - "heed-traits", 2375 - "serde", 2376 - "serde_json", 2377 - ] 2378 - 2379 - [[package]] 2380 - name = "hermit-abi" 2381 - version = "0.3.9" 2382 - source = "registry+https://github.com/rust-lang/crates.io-index" 2383 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2384 - 2385 - [[package]] 2386 - name = "hex" 2387 - version = "0.4.3" 2388 - source = "registry+https://github.com/rust-lang/crates.io-index" 2389 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2390 - 2391 - [[package]] 2392 - name = "hf-hub" 2393 - version = "0.3.2" 2394 - source = "git+https://github.com/dureuill/hf-hub.git?branch=rust_tls#88d4f11cb9fa079f2912bacb96f5080b16825ce8" 2395 - dependencies = [ 2396 - "dirs", 2397 - "http 1.1.0", 2398 - "indicatif", 2399 - "log", 2400 - "rand", 2401 - "serde", 2402 - "serde_json", 2403 - "thiserror", 2404 - "ureq", 2405 - ] 2406 - 2407 - [[package]] 2408 - name = "hmac" 2409 - version = "0.12.1" 2410 - source = "registry+https://github.com/rust-lang/crates.io-index" 2411 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2412 - dependencies = [ 2413 - "digest", 2414 - ] 2415 - 2416 - [[package]] 2417 - name = "http" 2418 - version = "0.2.11" 2419 - source = "registry+https://github.com/rust-lang/crates.io-index" 2420 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2421 - dependencies = [ 2422 - "bytes", 2423 - "fnv", 2424 - "itoa", 2425 - ] 2426 - 2427 - [[package]] 2428 - name = "http" 2429 - version = "1.1.0" 2430 - source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 2432 - dependencies = [ 2433 - "bytes", 2434 - "fnv", 2435 - "itoa", 2436 - ] 2437 - 2438 - [[package]] 2439 - name = "http-body" 2440 - version = "1.0.0" 2441 - source = "registry+https://github.com/rust-lang/crates.io-index" 2442 - checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2443 - dependencies = [ 2444 - "bytes", 2445 - "http 1.1.0", 2446 - ] 2447 - 2448 - [[package]] 2449 - name = "http-body-util" 2450 - version = "0.1.2" 2451 - source = "registry+https://github.com/rust-lang/crates.io-index" 2452 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 2453 - dependencies = [ 2454 - "bytes", 2455 - "futures-util", 2456 - "http 1.1.0", 2457 - "http-body", 2458 - "pin-project-lite", 2459 - ] 2460 - 2461 - [[package]] 2462 - name = "httparse" 2463 - version = "1.8.0" 2464 - source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2466 - 2467 - [[package]] 2468 - name = "httpdate" 2469 - version = "1.0.2" 2470 - source = "registry+https://github.com/rust-lang/crates.io-index" 2471 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2472 - 2473 - [[package]] 2474 - name = "hyper" 2475 - version = "1.4.1" 2476 - source = "registry+https://github.com/rust-lang/crates.io-index" 2477 - checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 2478 - dependencies = [ 2479 - "bytes", 2480 - "futures-channel", 2481 - "futures-util", 2482 - "h2 0.4.5", 2483 - "http 1.1.0", 2484 - "http-body", 2485 - "httparse", 2486 - "httpdate", 2487 - "itoa", 2488 - "pin-project-lite", 2489 - "smallvec", 2490 - "tokio", 2491 - "want", 2492 - ] 2493 - 2494 - [[package]] 2495 - name = "hyper-rustls" 2496 - version = "0.27.2" 2497 - source = "registry+https://github.com/rust-lang/crates.io-index" 2498 - checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" 2499 - dependencies = [ 2500 - "futures-util", 2501 - "http 1.1.0", 2502 - "hyper", 2503 - "hyper-util", 2504 - "rustls", 2505 - "rustls-pki-types", 2506 - "tokio", 2507 - "tokio-rustls", 2508 - "tower-service", 2509 - "webpki-roots", 2510 - ] 2511 - 2512 - [[package]] 2513 - name = "hyper-util" 2514 - version = "0.1.6" 2515 - source = "registry+https://github.com/rust-lang/crates.io-index" 2516 - checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" 2517 - dependencies = [ 2518 - "bytes", 2519 - "futures-channel", 2520 - "futures-util", 2521 - "http 1.1.0", 2522 - "http-body", 2523 - "hyper", 2524 - "pin-project-lite", 2525 - "socket2 0.5.5", 2526 - "tokio", 2527 - "tower", 2528 - "tower-service", 2529 - "tracing", 2530 - ] 2531 - 2532 - [[package]] 2533 - name = "ident_case" 2534 - version = "1.0.1" 2535 - source = "registry+https://github.com/rust-lang/crates.io-index" 2536 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2537 - 2538 - [[package]] 2539 - name = "idna" 2540 - version = "0.5.0" 2541 - source = "registry+https://github.com/rust-lang/crates.io-index" 2542 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2543 - dependencies = [ 2544 - "unicode-bidi", 2545 - "unicode-normalization", 2546 - ] 2547 - 2548 - [[package]] 2549 - name = "impl-more" 2550 - version = "0.1.6" 2551 - source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" 2553 - 2554 - [[package]] 2555 - name = "index-scheduler" 2556 - version = "1.11.3" 2557 - dependencies = [ 2558 - "anyhow", 2559 - "arroy", 2560 - "big_s", 2561 - "bincode", 2562 - "crossbeam", 2563 - "csv", 2564 - "derive_builder 0.20.0", 2565 - "dump", 2566 - "enum-iterator", 2567 - "file-store", 2568 - "flate2", 2569 - "insta", 2570 - "maplit", 2571 - "meili-snap", 2572 - "meilisearch-auth", 2573 - "meilisearch-types", 2574 - "page_size", 2575 - "rayon", 2576 - "roaring", 2577 - "serde", 2578 - "serde_json", 2579 - "synchronoise", 2580 - "tempfile", 2581 - "thiserror", 2582 - "time", 2583 - "tracing", 2584 - "ureq", 2585 - "uuid", 2586 - ] 2587 - 2588 - [[package]] 2589 - name = "indexmap" 2590 - version = "2.2.6" 2591 - source = "registry+https://github.com/rust-lang/crates.io-index" 2592 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 2593 - dependencies = [ 2594 - "equivalent", 2595 - "hashbrown 0.14.3", 2596 - "serde", 2597 - ] 2598 - 2599 - [[package]] 2600 - name = "indicatif" 2601 - version = "0.17.7" 2602 - source = "registry+https://github.com/rust-lang/crates.io-index" 2603 - checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" 2604 - dependencies = [ 2605 - "console", 2606 - "instant", 2607 - "number_prefix", 2608 - "portable-atomic", 2609 - "unicode-width", 2610 - ] 2611 - 2612 - [[package]] 2613 - name = "inout" 2614 - version = "0.1.3" 2615 - source = "registry+https://github.com/rust-lang/crates.io-index" 2616 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2617 - dependencies = [ 2618 - "generic-array", 2619 - ] 2620 - 2621 - [[package]] 2622 - name = "insta" 2623 - version = "1.39.0" 2624 - source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "810ae6042d48e2c9e9215043563a58a80b877bc863228a74cf10c49d4620a6f5" 2626 - dependencies = [ 2627 - "console", 2628 - "lazy_static", 2629 - "linked-hash-map", 2630 - "pest", 2631 - "pest_derive", 2632 - "serde", 2633 - "similar", 2634 - ] 2635 - 2636 - [[package]] 2637 - name = "instant" 2638 - version = "0.1.12" 2639 - source = "registry+https://github.com/rust-lang/crates.io-index" 2640 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2641 - dependencies = [ 2642 - "cfg-if", 2643 - ] 2644 - 2645 - [[package]] 2646 - name = "ipnet" 2647 - version = "2.8.0" 2648 - source = "registry+https://github.com/rust-lang/crates.io-index" 2649 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 2650 - 2651 - [[package]] 2652 - name = "irg-kvariants" 2653 - version = "0.1.1" 2654 - source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "ef2af7c331f2536964a32b78a7d2e0963d78b42f4a76323b16cc7d94b1ddce26" 2656 - dependencies = [ 2657 - "csv", 2658 - "once_cell", 2659 - "serde", 2660 - ] 2661 - 2662 - [[package]] 2663 - name = "is-terminal" 2664 - version = "0.4.12" 2665 - source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 2667 - dependencies = [ 2668 - "hermit-abi", 2669 - "libc", 2670 - "windows-sys 0.52.0", 2671 - ] 2672 - 2673 - [[package]] 2674 - name = "itertools" 2675 - version = "0.10.5" 2676 - source = "registry+https://github.com/rust-lang/crates.io-index" 2677 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2678 - dependencies = [ 2679 - "either", 2680 - ] 2681 - 2682 - [[package]] 2683 - name = "itertools" 2684 - version = "0.11.0" 2685 - source = "registry+https://github.com/rust-lang/crates.io-index" 2686 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2687 - dependencies = [ 2688 - "either", 2689 - ] 2690 - 2691 - [[package]] 2692 - name = "itertools" 2693 - version = "0.12.1" 2694 - source = "registry+https://github.com/rust-lang/crates.io-index" 2695 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2696 - dependencies = [ 2697 - "either", 2698 - ] 2699 - 2700 - [[package]] 2701 - name = "itertools" 2702 - version = "0.13.0" 2703 - source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 2705 - dependencies = [ 2706 - "either", 2707 - ] 2708 - 2709 - [[package]] 2710 - name = "itoa" 2711 - version = "1.0.11" 2712 - source = "registry+https://github.com/rust-lang/crates.io-index" 2713 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 2714 - 2715 - [[package]] 2716 - name = "jieba-rs" 2717 - version = "0.7.0" 2718 - source = "registry+https://github.com/rust-lang/crates.io-index" 2719 - checksum = "c1e2b0210dc78b49337af9e49d7ae41a39dceac6e5985613f1cf7763e2f76a25" 2720 - dependencies = [ 2721 - "cedarwood", 2722 - "derive_builder 0.20.0", 2723 - "fxhash", 2724 - "lazy_static", 2725 - "phf", 2726 - "phf_codegen", 2727 - "regex", 2728 - ] 2729 - 2730 - [[package]] 2731 - name = "jobserver" 2732 - version = "0.1.31" 2733 - source = "registry+https://github.com/rust-lang/crates.io-index" 2734 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2735 - dependencies = [ 2736 - "libc", 2737 - ] 2738 - 2739 - [[package]] 2740 - name = "js-sys" 2741 - version = "0.3.69" 2742 - source = "registry+https://github.com/rust-lang/crates.io-index" 2743 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2744 - dependencies = [ 2745 - "wasm-bindgen", 2746 - ] 2747 - 2748 - [[package]] 2749 - name = "json-depth-checker" 2750 - version = "1.11.3" 2751 - dependencies = [ 2752 - "criterion", 2753 - "serde_json", 2754 - ] 2755 - 2756 - [[package]] 2757 - name = "jsonwebtoken" 2758 - version = "9.3.0" 2759 - source = "registry+https://github.com/rust-lang/crates.io-index" 2760 - checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 2761 - dependencies = [ 2762 - "base64 0.21.7", 2763 - "js-sys", 2764 - "pem", 2765 - "ring", 2766 - "serde", 2767 - "serde_json", 2768 - "simple_asn1", 2769 - ] 2770 - 2771 - [[package]] 2772 - name = "kanaria" 2773 - version = "0.2.0" 2774 - source = "registry+https://github.com/rust-lang/crates.io-index" 2775 - checksum = "c0f9d9652540055ac4fded998a73aca97d965899077ab1212587437da44196ff" 2776 - dependencies = [ 2777 - "bitflags 1.3.2", 2778 - ] 2779 - 2780 - [[package]] 2781 - name = "kstring" 2782 - version = "2.0.0" 2783 - source = "registry+https://github.com/rust-lang/crates.io-index" 2784 - checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747" 2785 - dependencies = [ 2786 - "serde", 2787 - "static_assertions", 2788 - ] 2789 - 2790 - [[package]] 2791 - name = "language-tags" 2792 - version = "0.3.2" 2793 - source = "registry+https://github.com/rust-lang/crates.io-index" 2794 - checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 2795 - 2796 - [[package]] 2797 - name = "lazy_static" 2798 - version = "1.5.0" 2799 - source = "registry+https://github.com/rust-lang/crates.io-index" 2800 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2801 - 2802 - [[package]] 2803 - name = "lazycell" 2804 - version = "1.3.0" 2805 - source = "registry+https://github.com/rust-lang/crates.io-index" 2806 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 2807 - 2808 - [[package]] 2809 - name = "levenshtein_automata" 2810 - version = "0.2.1" 2811 - source = "registry+https://github.com/rust-lang/crates.io-index" 2812 - checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" 2813 - dependencies = [ 2814 - "fst", 2815 - ] 2816 - 2817 - [[package]] 2818 - name = "libc" 2819 - version = "0.2.155" 2820 - source = "registry+https://github.com/rust-lang/crates.io-index" 2821 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2822 - 2823 - [[package]] 2824 - name = "libgit2-sys" 2825 - version = "0.17.0+1.8.1" 2826 - source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224" 2828 - dependencies = [ 2829 - "cc", 2830 - "libc", 2831 - "libz-sys", 2832 - "pkg-config", 2833 - ] 2834 - 2835 - [[package]] 2836 - name = "libloading" 2837 - version = "0.8.4" 2838 - source = "registry+https://github.com/rust-lang/crates.io-index" 2839 - checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" 2840 - dependencies = [ 2841 - "cfg-if", 2842 - "windows-targets 0.52.4", 2843 - ] 2844 - 2845 - [[package]] 2846 - name = "libm" 2847 - version = "0.2.8" 2848 - source = "registry+https://github.com/rust-lang/crates.io-index" 2849 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2850 - 2851 - [[package]] 2852 - name = "libmimalloc-sys" 2853 - version = "0.1.39" 2854 - source = "registry+https://github.com/rust-lang/crates.io-index" 2855 - checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44" 2856 - dependencies = [ 2857 - "cc", 2858 - "libc", 2859 - ] 2860 - 2861 - [[package]] 2862 - name = "libproc" 2863 - version = "0.14.8" 2864 - source = "registry+https://github.com/rust-lang/crates.io-index" 2865 - checksum = "ae9ea4b75e1a81675429dafe43441df1caea70081e82246a8cccf514884a88bb" 2866 - dependencies = [ 2867 - "bindgen", 2868 - "errno", 2869 - "libc", 2870 - ] 2871 - 2872 - [[package]] 2873 - name = "libz-sys" 2874 - version = "1.1.15" 2875 - source = "registry+https://github.com/rust-lang/crates.io-index" 2876 - checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" 2877 - dependencies = [ 2878 - "cc", 2879 - "libc", 2880 - "pkg-config", 2881 - "vcpkg", 2882 - ] 2883 - 2884 - [[package]] 2885 - name = "lindera" 2886 - version = "0.32.2" 2887 - source = "registry+https://github.com/rust-lang/crates.io-index" 2888 - checksum = "c6cbc1aad631a7da0a7e9bc4b8669fa92ac9ca8eeb7b35a807376dd3034443ff" 2889 - dependencies = [ 2890 - "lindera-analyzer", 2891 - "lindera-core", 2892 - "lindera-dictionary", 2893 - "lindera-filter", 2894 - "lindera-tokenizer", 2895 - ] 2896 - 2897 - [[package]] 2898 - name = "lindera-analyzer" 2899 - version = "0.32.2" 2900 - source = "registry+https://github.com/rust-lang/crates.io-index" 2901 - checksum = "74508ffbb24e36905d1718b261460e378a748029b07bcd7e06f0d18500b8194c" 2902 - dependencies = [ 2903 - "anyhow", 2904 - "bincode", 2905 - "byteorder", 2906 - "encoding", 2907 - "kanaria", 2908 - "lindera-cc-cedict-builder", 2909 - "lindera-core", 2910 - "lindera-dictionary", 2911 - "lindera-filter", 2912 - "lindera-ipadic-builder", 2913 - "lindera-ko-dic-builder", 2914 - "lindera-tokenizer", 2915 - "lindera-unidic-builder", 2916 - "once_cell", 2917 - "regex", 2918 - "serde", 2919 - "serde_json", 2920 - "thiserror", 2921 - "unicode-blocks", 2922 - "unicode-normalization", 2923 - "unicode-segmentation", 2924 - "yada", 2925 - ] 2926 - 2927 - [[package]] 2928 - name = "lindera-assets" 2929 - version = "0.32.2" 2930 - source = "registry+https://github.com/rust-lang/crates.io-index" 2931 - checksum = "6a677c371ecb3bd02b751be306ea09876cd47cf426303ad5f10a3fd6f9a4ded6" 2932 - dependencies = [ 2933 - "encoding", 2934 - "flate2", 2935 - "lindera-core", 2936 - "tar", 2937 - "ureq", 2938 - ] 2939 - 2940 - [[package]] 2941 - name = "lindera-cc-cedict" 2942 - version = "0.32.2" 2943 - source = "registry+https://github.com/rust-lang/crates.io-index" 2944 - checksum = "c35944000d05a177e981f037b5f0805f283b32f05a0c35713003bef136ca8cb4" 2945 - dependencies = [ 2946 - "bincode", 2947 - "byteorder", 2948 - "lindera-cc-cedict-builder", 2949 - "lindera-core", 2950 - "lindera-decompress", 2951 - "once_cell", 2952 - ] 2953 - 2954 - [[package]] 2955 - name = "lindera-cc-cedict-builder" 2956 - version = "0.32.2" 2957 - source = "registry+https://github.com/rust-lang/crates.io-index" 2958 - checksum = "85b8f642bc9c9130682569975772a17336c6aab26d11fc0f823f3e663167ace6" 2959 - dependencies = [ 2960 - "anyhow", 2961 - "lindera-core", 2962 - "lindera-decompress", 2963 - "lindera-dictionary-builder", 2964 - ] 2965 - 2966 - [[package]] 2967 - name = "lindera-compress" 2968 - version = "0.32.2" 2969 - source = "registry+https://github.com/rust-lang/crates.io-index" 2970 - checksum = "a7825d8d63592aa5727d67bd209170ac82df56c369533efbf0ddbac277bb68ec" 2971 - dependencies = [ 2972 - "anyhow", 2973 - "flate2", 2974 - "lindera-decompress", 2975 - ] 2976 - 2977 - [[package]] 2978 - name = "lindera-core" 2979 - version = "0.32.2" 2980 - source = "registry+https://github.com/rust-lang/crates.io-index" 2981 - checksum = "0c28191456debc98af6aa5f7db77872471983e9fa2a737b1c232b6ef543aed62" 2982 - dependencies = [ 2983 - "anyhow", 2984 - "bincode", 2985 - "byteorder", 2986 - "encoding_rs", 2987 - "log", 2988 - "once_cell", 2989 - "serde", 2990 - "thiserror", 2991 - "yada", 2992 - ] 2993 - 2994 - [[package]] 2995 - name = "lindera-decompress" 2996 - version = "0.32.2" 2997 - source = "registry+https://github.com/rust-lang/crates.io-index" 2998 - checksum = "4788a1ead2f63f3fc2888109272921dedd86a87b7d0bf05e9daab46600daac51" 2999 - dependencies = [ 3000 - "anyhow", 3001 - "flate2", 3002 - "serde", 3003 - ] 3004 - 3005 - [[package]] 3006 - name = "lindera-dictionary" 3007 - version = "0.32.2" 3008 - source = "registry+https://github.com/rust-lang/crates.io-index" 3009 - checksum = "bdf5f91725e32b9a21b1656baa7030766c9bafc4de4b4ddeb8ffdde7224dd2f6" 3010 - dependencies = [ 3011 - "anyhow", 3012 - "bincode", 3013 - "byteorder", 3014 - "lindera-cc-cedict", 3015 - "lindera-cc-cedict-builder", 3016 - "lindera-core", 3017 - "lindera-ipadic", 3018 - "lindera-ipadic-builder", 3019 - "lindera-ipadic-neologd", 3020 - "lindera-ipadic-neologd-builder", 3021 - "lindera-ko-dic", 3022 - "lindera-ko-dic-builder", 3023 - "lindera-unidic", 3024 - "lindera-unidic-builder", 3025 - "serde", 3026 - "strum", 3027 - "strum_macros", 3028 - ] 3029 - 3030 - [[package]] 3031 - name = "lindera-dictionary-builder" 3032 - version = "0.32.2" 3033 - source = "registry+https://github.com/rust-lang/crates.io-index" 3034 - checksum = "e41f00ba7ac541b0ffd8c30e7a73f2dd197546cc5780462ec4f2e4782945a780" 3035 - dependencies = [ 3036 - "anyhow", 3037 - "bincode", 3038 - "byteorder", 3039 - "csv", 3040 - "derive_builder 0.20.0", 3041 - "encoding", 3042 - "encoding_rs", 3043 - "encoding_rs_io", 3044 - "glob", 3045 - "lindera-compress", 3046 - "lindera-core", 3047 - "lindera-decompress", 3048 - "log", 3049 - "yada", 3050 - ] 3051 - 3052 - [[package]] 3053 - name = "lindera-filter" 3054 - version = "0.32.2" 3055 - source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "273d27e01e1377e2647314a4a5b9bdca4b52a867b319069ebae8c10191146eca" 3057 - dependencies = [ 3058 - "anyhow", 3059 - "csv", 3060 - "kanaria", 3061 - "lindera-cc-cedict-builder", 3062 - "lindera-core", 3063 - "lindera-dictionary", 3064 - "lindera-ipadic-builder", 3065 - "lindera-ko-dic-builder", 3066 - "lindera-unidic-builder", 3067 - "once_cell", 3068 - "regex", 3069 - "serde", 3070 - "serde_json", 3071 - "unicode-blocks", 3072 - "unicode-normalization", 3073 - "unicode-segmentation", 3074 - "yada", 3075 - ] 3076 - 3077 - [[package]] 3078 - name = "lindera-ipadic" 3079 - version = "0.32.2" 3080 - source = "registry+https://github.com/rust-lang/crates.io-index" 3081 - checksum = "b97a52ff0af5acb700093badaf7078051ab9ffd9071859724445a60193995f1f" 3082 - dependencies = [ 3083 - "bincode", 3084 - "byteorder", 3085 - "lindera-core", 3086 - "lindera-decompress", 3087 - "lindera-ipadic-builder", 3088 - "once_cell", 3089 - ] 3090 - 3091 - [[package]] 3092 - name = "lindera-ipadic-builder" 3093 - version = "0.32.2" 3094 - source = "registry+https://github.com/rust-lang/crates.io-index" 3095 - checksum = "bf5031c52686128db13f774b2c5a8abfd52b4cc1f904041d8411aa19d630ce4d" 3096 - dependencies = [ 3097 - "anyhow", 3098 - "lindera-core", 3099 - "lindera-decompress", 3100 - "lindera-dictionary-builder", 3101 - ] 3102 - 3103 - [[package]] 3104 - name = "lindera-ipadic-neologd" 3105 - version = "0.32.2" 3106 - source = "registry+https://github.com/rust-lang/crates.io-index" 3107 - checksum = "d6b36764b27b169aa11d24888141f206a6c246a5b195c1e67127485bac512fb6" 3108 - dependencies = [ 3109 - "bincode", 3110 - "byteorder", 3111 - "lindera-core", 3112 - "lindera-decompress", 3113 - "lindera-ipadic-neologd-builder", 3114 - "once_cell", 3115 - ] 3116 - 3117 - [[package]] 3118 - name = "lindera-ipadic-neologd-builder" 3119 - version = "0.32.2" 3120 - source = "registry+https://github.com/rust-lang/crates.io-index" 3121 - checksum = "abf36e40ace904741efdd883ed5c4dba6425f65156a0fb5d3f73a386335950dc" 3122 - dependencies = [ 3123 - "anyhow", 3124 - "lindera-core", 3125 - "lindera-decompress", 3126 - "lindera-dictionary-builder", 3127 - ] 3128 - 3129 - [[package]] 3130 - name = "lindera-ko-dic" 3131 - version = "0.32.2" 3132 - source = "registry+https://github.com/rust-lang/crates.io-index" 3133 - checksum = "4c92a1a3564b531953f0238cbcea392f2905f7b27b449978cf9e702a80e1086d" 3134 - dependencies = [ 3135 - "bincode", 3136 - "byteorder", 3137 - "lindera-assets", 3138 - "lindera-core", 3139 - "lindera-decompress", 3140 - "lindera-ko-dic-builder", 3141 - "once_cell", 3142 - ] 3143 - 3144 - [[package]] 3145 - name = "lindera-ko-dic-builder" 3146 - version = "0.32.2" 3147 - source = "registry+https://github.com/rust-lang/crates.io-index" 3148 - checksum = "9f2c60425abc1548570c2568858f74a1f042105ecd89faa39c651b4315350fd9" 3149 - dependencies = [ 3150 - "anyhow", 3151 - "lindera-core", 3152 - "lindera-decompress", 3153 - "lindera-dictionary-builder", 3154 - ] 3155 - 3156 - [[package]] 3157 - name = "lindera-tokenizer" 3158 - version = "0.32.2" 3159 - source = "registry+https://github.com/rust-lang/crates.io-index" 3160 - checksum = "903e558981bcb6f59870aa7d6b4bcb09e8f7db778886a6a70f67fd74c9fa2ca3" 3161 - dependencies = [ 3162 - "bincode", 3163 - "lindera-core", 3164 - "lindera-dictionary", 3165 - "once_cell", 3166 - "serde", 3167 - "serde_json", 3168 - ] 3169 - 3170 - [[package]] 3171 - name = "lindera-unidic" 3172 - version = "0.32.2" 3173 - source = "registry+https://github.com/rust-lang/crates.io-index" 3174 - checksum = "d227c3ce9cbd905f865c46c65a0470fd04e89b71104d7f92baa71a212ffe1d4b" 3175 - dependencies = [ 3176 - "bincode", 3177 - "byteorder", 3178 - "lindera-assets", 3179 - "lindera-core", 3180 - "lindera-decompress", 3181 - "lindera-unidic-builder", 3182 - "once_cell", 3183 - ] 3184 - 3185 - [[package]] 3186 - name = "lindera-unidic-builder" 3187 - version = "0.32.2" 3188 - source = "registry+https://github.com/rust-lang/crates.io-index" 3189 - checksum = "99e2c50015c242e02c451acb6748667ac6fd1d3d667cd7db48cd89e2f2d2377e" 3190 - dependencies = [ 3191 - "anyhow", 3192 - "lindera-core", 3193 - "lindera-decompress", 3194 - "lindera-dictionary-builder", 3195 - ] 3196 - 3197 - [[package]] 3198 - name = "linked-hash-map" 3199 - version = "0.5.6" 3200 - source = "registry+https://github.com/rust-lang/crates.io-index" 3201 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3202 - 3203 - [[package]] 3204 - name = "linux-raw-sys" 3205 - version = "0.4.12" 3206 - source = "registry+https://github.com/rust-lang/crates.io-index" 3207 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 3208 - 3209 - [[package]] 3210 - name = "liquid" 3211 - version = "0.26.6" 3212 - source = "registry+https://github.com/rust-lang/crates.io-index" 3213 - checksum = "10929f201279ba14da3297b957dcda1e0bf7a6f3bb5115688be684aa8864e9cc" 3214 - dependencies = [ 3215 - "doc-comment", 3216 - "liquid-core", 3217 - "liquid-derive", 3218 - "liquid-lib", 3219 - "serde", 3220 - ] 3221 - 3222 - [[package]] 3223 - name = "liquid-core" 3224 - version = "0.26.6" 3225 - source = "registry+https://github.com/rust-lang/crates.io-index" 3226 - checksum = "3aef4b2160791f456eb880c990a97746f693746f92302ef5f1d06111cf14b768" 3227 - dependencies = [ 3228 - "anymap2", 3229 - "itertools 0.12.1", 3230 - "kstring", 3231 - "liquid-derive", 3232 - "num-traits", 3233 - "pest", 3234 - "pest_derive", 3235 - "regex", 3236 - "serde", 3237 - "time", 3238 - ] 3239 - 3240 - [[package]] 3241 - name = "liquid-derive" 3242 - version = "0.26.5" 3243 - source = "registry+https://github.com/rust-lang/crates.io-index" 3244 - checksum = "915f6d0a2963a27cd5205c1902f32ddfe3bc035816afd268cf88c0fc0f8d287e" 3245 - dependencies = [ 3246 - "proc-macro2", 3247 - "quote", 3248 - "syn 2.0.60", 3249 - ] 3250 - 3251 - [[package]] 3252 - name = "liquid-lib" 3253 - version = "0.26.6" 3254 - source = "registry+https://github.com/rust-lang/crates.io-index" 3255 - checksum = "73f48fc446873f74d869582f5c4b8cbf3248c93395e410a67af5809b3731e44a" 3256 - dependencies = [ 3257 - "itertools 0.12.1", 3258 - "liquid-core", 3259 - "once_cell", 3260 - "percent-encoding", 3261 - "regex", 3262 - "time", 3263 - "unicode-segmentation", 3264 - ] 3265 - 3266 - [[package]] 3267 - name = "lmdb-master-sys" 3268 - version = "0.2.2" 3269 - source = "registry+https://github.com/rust-lang/crates.io-index" 3270 - checksum = "57640c190703d5ccf4a86aff4aeb749b2d287a8cb1723c76b51f39d77ab53b24" 3271 - dependencies = [ 3272 - "cc", 3273 - "doxygen-rs", 3274 - "libc", 3275 - ] 3276 - 3277 - [[package]] 3278 - name = "local-channel" 3279 - version = "0.1.3" 3280 - source = "registry+https://github.com/rust-lang/crates.io-index" 3281 - checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" 3282 - dependencies = [ 3283 - "futures-core", 3284 - "futures-sink", 3285 - "futures-util", 3286 - "local-waker", 3287 - ] 3288 - 3289 - [[package]] 3290 - name = "local-waker" 3291 - version = "0.1.3" 3292 - source = "registry+https://github.com/rust-lang/crates.io-index" 3293 - checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" 3294 - 3295 - [[package]] 3296 - name = "lock_api" 3297 - version = "0.4.11" 3298 - source = "registry+https://github.com/rust-lang/crates.io-index" 3299 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 3300 - dependencies = [ 3301 - "autocfg", 3302 - "scopeguard", 3303 - ] 3304 - 3305 - [[package]] 3306 - name = "lockfree-object-pool" 3307 - version = "0.1.6" 3308 - source = "registry+https://github.com/rust-lang/crates.io-index" 3309 - checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 3310 - 3311 - [[package]] 3312 - name = "log" 3313 - version = "0.4.21" 3314 - source = "registry+https://github.com/rust-lang/crates.io-index" 3315 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 3316 - 3317 - [[package]] 3318 - name = "lzma-rs" 3319 - version = "0.3.0" 3320 - source = "registry+https://github.com/rust-lang/crates.io-index" 3321 - checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e" 3322 - dependencies = [ 3323 - "byteorder", 3324 - "crc", 3325 - ] 3326 - 3327 - [[package]] 3328 - name = "macro_rules_attribute" 3329 - version = "0.2.0" 3330 - source = "registry+https://github.com/rust-lang/crates.io-index" 3331 - checksum = "8a82271f7bc033d84bbca59a3ce3e4159938cb08a9c3aebbe54d215131518a13" 3332 - dependencies = [ 3333 - "macro_rules_attribute-proc_macro", 3334 - "paste", 3335 - ] 3336 - 3337 - [[package]] 3338 - name = "macro_rules_attribute-proc_macro" 3339 - version = "0.2.0" 3340 - source = "registry+https://github.com/rust-lang/crates.io-index" 3341 - checksum = "b8dd856d451cc0da70e2ef2ce95a18e39a93b7558bedf10201ad28503f918568" 3342 - 3343 - [[package]] 3344 - name = "manifest-dir-macros" 3345 - version = "0.1.18" 3346 - source = "registry+https://github.com/rust-lang/crates.io-index" 3347 - checksum = "9c6d40de1ccdbf8bde2eaa0750595478a368f7b3a3f89c426e3454f64e29f593" 3348 - dependencies = [ 3349 - "once_cell", 3350 - "proc-macro2", 3351 - "quote", 3352 - "syn 2.0.60", 3353 - ] 3354 - 3355 - [[package]] 3356 - name = "maplit" 3357 - version = "1.0.2" 3358 - source = "registry+https://github.com/rust-lang/crates.io-index" 3359 - checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 3360 - 3361 - [[package]] 3362 - name = "md5" 3363 - version = "0.7.0" 3364 - source = "registry+https://github.com/rust-lang/crates.io-index" 3365 - checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 3366 - 3367 - [[package]] 3368 - name = "meili-snap" 3369 - version = "1.11.3" 3370 - dependencies = [ 3371 - "insta", 3372 - "md5", 3373 - "once_cell", 3374 - ] 3375 - 3376 - [[package]] 3377 - name = "meilisearch" 3378 - version = "1.11.3" 3379 - dependencies = [ 3380 - "actix-cors", 3381 - "actix-http", 3382 - "actix-rt", 3383 - "actix-utils", 3384 - "actix-web", 3385 - "anyhow", 3386 - "async-trait", 3387 - "brotli", 3388 - "bstr", 3389 - "build-info", 3390 - "byte-unit", 3391 - "bytes", 3392 - "cargo_toml", 3393 - "clap", 3394 - "crossbeam-channel", 3395 - "deserr", 3396 - "dump", 3397 - "either", 3398 - "file-store", 3399 - "flate2", 3400 - "fst", 3401 - "futures", 3402 - "futures-util", 3403 - "hex", 3404 - "index-scheduler", 3405 - "indexmap", 3406 - "insta", 3407 - "is-terminal", 3408 - "itertools 0.13.0", 3409 - "jsonwebtoken", 3410 - "lazy_static", 3411 - "manifest-dir-macros", 3412 - "maplit", 3413 - "meili-snap", 3414 - "meilisearch-auth", 3415 - "meilisearch-types", 3416 - "mimalloc", 3417 - "mime", 3418 - "mopa-maintained", 3419 - "num_cpus", 3420 - "obkv", 3421 - "once_cell", 3422 - "ordered-float", 3423 - "parking_lot", 3424 - "permissive-json-pointer", 3425 - "pin-project-lite", 3426 - "platform-dirs", 3427 - "prometheus", 3428 - "rand", 3429 - "rayon", 3430 - "regex", 3431 - "reqwest", 3432 - "roaring", 3433 - "rustls", 3434 - "rustls-pemfile", 3435 - "rustls-pki-types", 3436 - "segment", 3437 - "serde", 3438 - "serde_json", 3439 - "serde_urlencoded", 3440 - "sha-1", 3441 - "sha2", 3442 - "siphasher 1.0.1", 3443 - "slice-group-by", 3444 - "static-files", 3445 - "sysinfo", 3446 - "tar", 3447 - "temp-env", 3448 - "tempfile", 3449 - "termcolor", 3450 - "thiserror", 3451 - "time", 3452 - "tokio", 3453 - "toml", 3454 - "tracing", 3455 - "tracing-actix-web", 3456 - "tracing-subscriber", 3457 - "tracing-trace", 3458 - "url", 3459 - "urlencoding", 3460 - "uuid", 3461 - "wiremock", 3462 - "yaup", 3463 - "zip 2.1.3", 3464 - ] 3465 - 3466 - [[package]] 3467 - name = "meilisearch-auth" 3468 - version = "1.11.3" 3469 - dependencies = [ 3470 - "base64 0.22.1", 3471 - "enum-iterator", 3472 - "hmac", 3473 - "maplit", 3474 - "meilisearch-types", 3475 - "rand", 3476 - "roaring", 3477 - "serde", 3478 - "serde_json", 3479 - "sha2", 3480 - "thiserror", 3481 - "time", 3482 - "uuid", 3483 - ] 3484 - 3485 - [[package]] 3486 - name = "meilisearch-types" 3487 - version = "1.11.3" 3488 - dependencies = [ 3489 - "actix-web", 3490 - "anyhow", 3491 - "convert_case 0.6.0", 3492 - "csv", 3493 - "deserr", 3494 - "either", 3495 - "enum-iterator", 3496 - "file-store", 3497 - "flate2", 3498 - "fst", 3499 - "insta", 3500 - "meili-snap", 3501 - "memmap2", 3502 - "milli", 3503 - "roaring", 3504 - "serde", 3505 - "serde-cs", 3506 - "serde_json", 3507 - "tar", 3508 - "tempfile", 3509 - "thiserror", 3510 - "time", 3511 - "tokio", 3512 - "uuid", 3513 - ] 3514 - 3515 - [[package]] 3516 - name = "meilitool" 3517 - version = "1.11.3" 3518 - dependencies = [ 3519 - "anyhow", 3520 - "clap", 3521 - "dump", 3522 - "file-store", 3523 - "meilisearch-auth", 3524 - "meilisearch-types", 3525 - "serde", 3526 - "time", 3527 - "uuid", 3528 - ] 3529 - 3530 - [[package]] 3531 - name = "memchr" 3532 - version = "2.7.4" 3533 - source = "registry+https://github.com/rust-lang/crates.io-index" 3534 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 3535 - 3536 - [[package]] 3537 - name = "memmap2" 3538 - version = "0.9.4" 3539 - source = "registry+https://github.com/rust-lang/crates.io-index" 3540 - checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 3541 - dependencies = [ 3542 - "libc", 3543 - "stable_deref_trait", 3544 - ] 3545 - 3546 - [[package]] 3547 - name = "milli" 3548 - version = "1.11.3" 3549 - dependencies = [ 3550 - "arroy", 3551 - "big_s", 3552 - "bimap", 3553 - "bincode", 3554 - "bstr", 3555 - "bytemuck", 3556 - "byteorder", 3557 - "candle-core", 3558 - "candle-nn", 3559 - "candle-transformers", 3560 - "charabia", 3561 - "concat-arrays", 3562 - "crossbeam-channel", 3563 - "csv", 3564 - "deserr", 3565 - "either", 3566 - "filter-parser", 3567 - "flatten-serde-json", 3568 - "fst", 3569 - "fxhash", 3570 - "geoutils", 3571 - "grenad", 3572 - "heed", 3573 - "hf-hub", 3574 - "indexmap", 3575 - "insta", 3576 - "itertools 0.13.0", 3577 - "json-depth-checker", 3578 - "levenshtein_automata", 3579 - "liquid", 3580 - "maplit", 3581 - "md5", 3582 - "meili-snap", 3583 - "memchr", 3584 - "memmap2", 3585 - "mimalloc", 3586 - "obkv", 3587 - "once_cell", 3588 - "ordered-float", 3589 - "rand", 3590 - "rayon", 3591 - "rayon-par-bridge", 3592 - "rhai", 3593 - "roaring", 3594 - "rstar", 3595 - "serde", 3596 - "serde_json", 3597 - "slice-group-by", 3598 - "smallstr", 3599 - "smallvec", 3600 - "smartstring", 3601 - "tempfile", 3602 - "thiserror", 3603 - "tiktoken-rs", 3604 - "time", 3605 - "tokenizers", 3606 - "tracing", 3607 - "ureq", 3608 - "url", 3609 - "uuid", 3610 - ] 3611 - 3612 - [[package]] 3613 - name = "mimalloc" 3614 - version = "0.1.43" 3615 - source = "registry+https://github.com/rust-lang/crates.io-index" 3616 - checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633" 3617 - dependencies = [ 3618 - "libmimalloc-sys", 3619 - ] 3620 - 3621 - [[package]] 3622 - name = "mime" 3623 - version = "0.3.17" 3624 - source = "registry+https://github.com/rust-lang/crates.io-index" 3625 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3626 - 3627 - [[package]] 3628 - name = "mime_guess" 3629 - version = "2.0.4" 3630 - source = "registry+https://github.com/rust-lang/crates.io-index" 3631 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 3632 - dependencies = [ 3633 - "mime", 3634 - "unicase", 3635 - ] 3636 - 3637 - [[package]] 3638 - name = "minimal-lexical" 3639 - version = "0.2.1" 3640 - source = "registry+https://github.com/rust-lang/crates.io-index" 3641 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3642 - 3643 - [[package]] 3644 - name = "miniz_oxide" 3645 - version = "0.7.2" 3646 - source = "registry+https://github.com/rust-lang/crates.io-index" 3647 - checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 3648 - dependencies = [ 3649 - "adler", 3650 - ] 3651 - 3652 - [[package]] 3653 - name = "mio" 3654 - version = "0.8.11" 3655 - source = "registry+https://github.com/rust-lang/crates.io-index" 3656 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 3657 - dependencies = [ 3658 - "libc", 3659 - "log", 3660 - "wasi", 3661 - "windows-sys 0.48.0", 3662 - ] 3663 - 3664 - [[package]] 3665 - name = "monostate" 3666 - version = "0.1.9" 3667 - source = "registry+https://github.com/rust-lang/crates.io-index" 3668 - checksum = "15f370ae88093ec6b11a710dec51321a61d420fafd1bad6e30d01bd9c920e8ee" 3669 - dependencies = [ 3670 - "monostate-impl", 3671 - "serde", 3672 - ] 3673 - 3674 - [[package]] 3675 - name = "monostate-impl" 3676 - version = "0.1.9" 3677 - source = "registry+https://github.com/rust-lang/crates.io-index" 3678 - checksum = "371717c0a5543d6a800cac822eac735aa7d2d2fbb41002e9856a4089532dbdce" 3679 - dependencies = [ 3680 - "proc-macro2", 3681 - "quote", 3682 - "syn 2.0.60", 3683 - ] 3684 - 3685 - [[package]] 3686 - name = "mopa-maintained" 3687 - version = "0.2.3" 3688 - source = "registry+https://github.com/rust-lang/crates.io-index" 3689 - checksum = "79b7f3e22167862cc7c95b21a6f326c22e4bf40da59cbf000b368a310173ba11" 3690 - 3691 - [[package]] 3692 - name = "mutually_exclusive_features" 3693 - version = "0.0.3" 3694 - source = "registry+https://github.com/rust-lang/crates.io-index" 3695 - checksum = "6d02c0b00610773bb7fc61d85e13d86c7858cbdf00e1a120bfc41bc055dbaa0e" 3696 - 3697 - [[package]] 3698 - name = "nohash" 3699 - version = "0.2.0" 3700 - source = "registry+https://github.com/rust-lang/crates.io-index" 3701 - checksum = "a0f889fb66f7acdf83442c35775764b51fed3c606ab9cee51500dbde2cf528ca" 3702 - 3703 - [[package]] 3704 - name = "nom" 3705 - version = "7.1.3" 3706 - source = "registry+https://github.com/rust-lang/crates.io-index" 3707 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3708 - dependencies = [ 3709 - "memchr", 3710 - "minimal-lexical", 3711 - ] 3712 - 3713 - [[package]] 3714 - name = "nom_locate" 3715 - version = "4.2.0" 3716 - source = "registry+https://github.com/rust-lang/crates.io-index" 3717 - checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" 3718 - dependencies = [ 3719 - "bytecount", 3720 - "memchr", 3721 - "nom", 3722 - ] 3723 - 3724 - [[package]] 3725 - name = "ntapi" 3726 - version = "0.4.1" 3727 - source = "registry+https://github.com/rust-lang/crates.io-index" 3728 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3729 - dependencies = [ 3730 - "winapi", 3731 - ] 3732 - 3733 - [[package]] 3734 - name = "nu-ansi-term" 3735 - version = "0.46.0" 3736 - source = "registry+https://github.com/rust-lang/crates.io-index" 3737 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 3738 - dependencies = [ 3739 - "overload", 3740 - "winapi", 3741 - ] 3742 - 3743 - [[package]] 3744 - name = "num-bigint" 3745 - version = "0.4.3" 3746 - source = "registry+https://github.com/rust-lang/crates.io-index" 3747 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 3748 - dependencies = [ 3749 - "autocfg", 3750 - "num-integer", 3751 - "num-traits", 3752 - ] 3753 - 3754 - [[package]] 3755 - name = "num-complex" 3756 - version = "0.4.5" 3757 - source = "registry+https://github.com/rust-lang/crates.io-index" 3758 - checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6" 3759 - dependencies = [ 3760 - "bytemuck", 3761 - "num-traits", 3762 - ] 3763 - 3764 - [[package]] 3765 - name = "num-conv" 3766 - version = "0.1.0" 3767 - source = "registry+https://github.com/rust-lang/crates.io-index" 3768 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3769 - 3770 - [[package]] 3771 - name = "num-integer" 3772 - version = "0.1.45" 3773 - source = "registry+https://github.com/rust-lang/crates.io-index" 3774 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3775 - dependencies = [ 3776 - "autocfg", 3777 - "num-traits", 3778 - ] 3779 - 3780 - [[package]] 3781 - name = "num-traits" 3782 - version = "0.2.18" 3783 - source = "registry+https://github.com/rust-lang/crates.io-index" 3784 - checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 3785 - dependencies = [ 3786 - "autocfg", 3787 - "libm", 3788 - ] 3789 - 3790 - [[package]] 3791 - name = "num_cpus" 3792 - version = "1.16.0" 3793 - source = "registry+https://github.com/rust-lang/crates.io-index" 3794 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 3795 - dependencies = [ 3796 - "hermit-abi", 3797 - "libc", 3798 - ] 3799 - 3800 - [[package]] 3801 - name = "num_enum" 3802 - version = "0.7.2" 3803 - source = "registry+https://github.com/rust-lang/crates.io-index" 3804 - checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 3805 - dependencies = [ 3806 - "num_enum_derive", 3807 - ] 3808 - 3809 - [[package]] 3810 - name = "num_enum_derive" 3811 - version = "0.7.2" 3812 - source = "registry+https://github.com/rust-lang/crates.io-index" 3813 - checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 3814 - dependencies = [ 3815 - "proc-macro-crate", 3816 - "proc-macro2", 3817 - "quote", 3818 - "syn 2.0.60", 3819 - ] 3820 - 3821 - [[package]] 3822 - name = "num_threads" 3823 - version = "0.1.7" 3824 - source = "registry+https://github.com/rust-lang/crates.io-index" 3825 - checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 3826 - dependencies = [ 3827 - "libc", 3828 - ] 3829 - 3830 - [[package]] 3831 - name = "number_prefix" 3832 - version = "0.4.0" 3833 - source = "registry+https://github.com/rust-lang/crates.io-index" 3834 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 3835 - 3836 - [[package]] 3837 - name = "object" 3838 - version = "0.31.1" 3839 - source = "registry+https://github.com/rust-lang/crates.io-index" 3840 - checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 3841 - dependencies = [ 3842 - "memchr", 3843 - ] 3844 - 3845 - [[package]] 3846 - name = "obkv" 3847 - version = "0.2.2" 3848 - source = "registry+https://github.com/rust-lang/crates.io-index" 3849 - checksum = "a2e27bcfe835a379d32352112f6b8dbae2d99d16a5fff42abe6e5ba5386c1e5a" 3850 - 3851 - [[package]] 3852 - name = "once_cell" 3853 - version = "1.19.0" 3854 - source = "registry+https://github.com/rust-lang/crates.io-index" 3855 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 3856 - 3857 - [[package]] 3858 - name = "onig" 3859 - version = "6.4.0" 3860 - source = "registry+https://github.com/rust-lang/crates.io-index" 3861 - checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 3862 - dependencies = [ 3863 - "bitflags 1.3.2", 3864 - "libc", 3865 - "once_cell", 3866 - "onig_sys", 3867 - ] 3868 - 3869 - [[package]] 3870 - name = "onig_sys" 3871 - version = "69.8.1" 3872 - source = "registry+https://github.com/rust-lang/crates.io-index" 3873 - checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 3874 - dependencies = [ 3875 - "cc", 3876 - "pkg-config", 3877 - ] 3878 - 3879 - [[package]] 3880 - name = "oorandom" 3881 - version = "11.1.3" 3882 - source = "registry+https://github.com/rust-lang/crates.io-index" 3883 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3884 - 3885 - [[package]] 3886 - name = "option-ext" 3887 - version = "0.2.0" 3888 - source = "registry+https://github.com/rust-lang/crates.io-index" 3889 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3890 - 3891 - [[package]] 3892 - name = "ordered-float" 3893 - version = "4.2.1" 3894 - source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "19ff2cf528c6c03d9ed653d6c4ce1dc0582dc4af309790ad92f07c1cd551b0be" 3896 - dependencies = [ 3897 - "num-traits", 3898 - ] 3899 - 3900 - [[package]] 3901 - name = "overload" 3902 - version = "0.1.1" 3903 - source = "registry+https://github.com/rust-lang/crates.io-index" 3904 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3905 - 3906 - [[package]] 3907 - name = "owo-colors" 3908 - version = "3.5.0" 3909 - source = "registry+https://github.com/rust-lang/crates.io-index" 3910 - checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 3911 - 3912 - [[package]] 3913 - name = "page_size" 3914 - version = "0.6.0" 3915 - source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" 3917 - dependencies = [ 3918 - "libc", 3919 - "winapi", 3920 - ] 3921 - 3922 - [[package]] 3923 - name = "parking_lot" 3924 - version = "0.12.3" 3925 - source = "registry+https://github.com/rust-lang/crates.io-index" 3926 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 3927 - dependencies = [ 3928 - "lock_api", 3929 - "parking_lot_core", 3930 - ] 3931 - 3932 - [[package]] 3933 - name = "parking_lot_core" 3934 - version = "0.9.8" 3935 - source = "registry+https://github.com/rust-lang/crates.io-index" 3936 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 3937 - dependencies = [ 3938 - "cfg-if", 3939 - "libc", 3940 - "redox_syscall 0.3.5", 3941 - "smallvec", 3942 - "windows-targets 0.48.1", 3943 - ] 3944 - 3945 - [[package]] 3946 - name = "paste" 3947 - version = "1.0.14" 3948 - source = "registry+https://github.com/rust-lang/crates.io-index" 3949 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 3950 - 3951 - [[package]] 3952 - name = "path-matchers" 3953 - version = "1.0.2" 3954 - source = "registry+https://github.com/rust-lang/crates.io-index" 3955 - checksum = "36cd9b72a47679ec193a5f0229d9ab686b7bd45e1fbc59ccf953c9f3d83f7b2b" 3956 - dependencies = [ 3957 - "glob", 3958 - ] 3959 - 3960 - [[package]] 3961 - name = "path-slash" 3962 - version = "0.1.5" 3963 - source = "registry+https://github.com/rust-lang/crates.io-index" 3964 - checksum = "498a099351efa4becc6a19c72aa9270598e8fd274ca47052e37455241c88b696" 3965 - 3966 - [[package]] 3967 - name = "pbkdf2" 3968 - version = "0.12.2" 3969 - source = "registry+https://github.com/rust-lang/crates.io-index" 3970 - checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 3971 - dependencies = [ 3972 - "digest", 3973 - "hmac", 3974 - ] 3975 - 3976 - [[package]] 3977 - name = "pem" 3978 - version = "3.0.3" 3979 - source = "registry+https://github.com/rust-lang/crates.io-index" 3980 - checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" 3981 - dependencies = [ 3982 - "base64 0.21.7", 3983 - "serde", 3984 - ] 3985 - 3986 - [[package]] 3987 - name = "percent-encoding" 3988 - version = "2.3.1" 3989 - source = "registry+https://github.com/rust-lang/crates.io-index" 3990 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3991 - 3992 - [[package]] 3993 - name = "permissive-json-pointer" 3994 - version = "1.11.3" 3995 - dependencies = [ 3996 - "big_s", 3997 - "serde_json", 3998 - ] 3999 - 4000 - [[package]] 4001 - name = "pest" 4002 - version = "2.7.2" 4003 - source = "registry+https://github.com/rust-lang/crates.io-index" 4004 - checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" 4005 - dependencies = [ 4006 - "thiserror", 4007 - "ucd-trie", 4008 - ] 4009 - 4010 - [[package]] 4011 - name = "pest_derive" 4012 - version = "2.7.2" 4013 - source = "registry+https://github.com/rust-lang/crates.io-index" 4014 - checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853" 4015 - dependencies = [ 4016 - "pest", 4017 - "pest_generator", 4018 - ] 4019 - 4020 - [[package]] 4021 - name = "pest_generator" 4022 - version = "2.7.2" 4023 - source = "registry+https://github.com/rust-lang/crates.io-index" 4024 - checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929" 4025 - dependencies = [ 4026 - "pest", 4027 - "pest_meta", 4028 - "proc-macro2", 4029 - "quote", 4030 - "syn 2.0.60", 4031 - ] 4032 - 4033 - [[package]] 4034 - name = "pest_meta" 4035 - version = "2.7.2" 4036 - source = "registry+https://github.com/rust-lang/crates.io-index" 4037 - checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48" 4038 - dependencies = [ 4039 - "once_cell", 4040 - "pest", 4041 - "sha2", 4042 - ] 4043 - 4044 - [[package]] 4045 - name = "phf" 4046 - version = "0.11.2" 4047 - source = "registry+https://github.com/rust-lang/crates.io-index" 4048 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 4049 - dependencies = [ 4050 - "phf_macros", 4051 - "phf_shared", 4052 - ] 4053 - 4054 - [[package]] 4055 - name = "phf_codegen" 4056 - version = "0.11.2" 4057 - source = "registry+https://github.com/rust-lang/crates.io-index" 4058 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 4059 - dependencies = [ 4060 - "phf_generator", 4061 - "phf_shared", 4062 - ] 4063 - 4064 - [[package]] 4065 - name = "phf_generator" 4066 - version = "0.11.2" 4067 - source = "registry+https://github.com/rust-lang/crates.io-index" 4068 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 4069 - dependencies = [ 4070 - "phf_shared", 4071 - "rand", 4072 - ] 4073 - 4074 - [[package]] 4075 - name = "phf_macros" 4076 - version = "0.11.2" 4077 - source = "registry+https://github.com/rust-lang/crates.io-index" 4078 - checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 4079 - dependencies = [ 4080 - "phf_generator", 4081 - "phf_shared", 4082 - "proc-macro2", 4083 - "quote", 4084 - "syn 2.0.60", 4085 - ] 4086 - 4087 - [[package]] 4088 - name = "phf_shared" 4089 - version = "0.11.2" 4090 - source = "registry+https://github.com/rust-lang/crates.io-index" 4091 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 4092 - dependencies = [ 4093 - "siphasher 0.3.11", 4094 - ] 4095 - 4096 - [[package]] 4097 - name = "pin-project" 4098 - version = "1.1.4" 4099 - source = "registry+https://github.com/rust-lang/crates.io-index" 4100 - checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" 4101 - dependencies = [ 4102 - "pin-project-internal", 4103 - ] 4104 - 4105 - [[package]] 4106 - name = "pin-project-internal" 4107 - version = "1.1.4" 4108 - source = "registry+https://github.com/rust-lang/crates.io-index" 4109 - checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" 4110 - dependencies = [ 4111 - "proc-macro2", 4112 - "quote", 4113 - "syn 2.0.60", 4114 - ] 4115 - 4116 - [[package]] 4117 - name = "pin-project-lite" 4118 - version = "0.2.14" 4119 - source = "registry+https://github.com/rust-lang/crates.io-index" 4120 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 4121 - 4122 - [[package]] 4123 - name = "pin-utils" 4124 - version = "0.1.0" 4125 - source = "registry+https://github.com/rust-lang/crates.io-index" 4126 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4127 - 4128 - [[package]] 4129 - name = "pinyin" 4130 - version = "0.10.0" 4131 - source = "registry+https://github.com/rust-lang/crates.io-index" 4132 - checksum = "16f2611cd06a1ac239a0cea4521de9eb068a6ca110324ee00631aa68daa74fc0" 4133 - 4134 - [[package]] 4135 - name = "pkg-config" 4136 - version = "0.3.30" 4137 - source = "registry+https://github.com/rust-lang/crates.io-index" 4138 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 4139 - 4140 - [[package]] 4141 - name = "platform-dirs" 4142 - version = "0.3.0" 4143 - source = "registry+https://github.com/rust-lang/crates.io-index" 4144 - checksum = "e188d043c1a692985f78b5464853a263f1a27e5bd6322bad3a4078ee3c998a38" 4145 - dependencies = [ 4146 - "dirs-next", 4147 - ] 4148 - 4149 - [[package]] 4150 - name = "plotters" 4151 - version = "0.3.5" 4152 - source = "registry+https://github.com/rust-lang/crates.io-index" 4153 - checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 4154 - dependencies = [ 4155 - "num-traits", 4156 - "plotters-backend", 4157 - "plotters-svg", 4158 - "wasm-bindgen", 4159 - "web-sys", 4160 - ] 4161 - 4162 - [[package]] 4163 - name = "plotters-backend" 4164 - version = "0.3.5" 4165 - source = "registry+https://github.com/rust-lang/crates.io-index" 4166 - checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 4167 - 4168 - [[package]] 4169 - name = "plotters-svg" 4170 - version = "0.3.5" 4171 - source = "registry+https://github.com/rust-lang/crates.io-index" 4172 - checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 4173 - dependencies = [ 4174 - "plotters-backend", 4175 - ] 4176 - 4177 - [[package]] 4178 - name = "portable-atomic" 4179 - version = "1.5.1" 4180 - source = "registry+https://github.com/rust-lang/crates.io-index" 4181 - checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b" 4182 - 4183 - [[package]] 4184 - name = "powerfmt" 4185 - version = "0.2.0" 4186 - source = "registry+https://github.com/rust-lang/crates.io-index" 4187 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4188 - 4189 - [[package]] 4190 - name = "ppv-lite86" 4191 - version = "0.2.17" 4192 - source = "registry+https://github.com/rust-lang/crates.io-index" 4193 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 4194 - 4195 - [[package]] 4196 - name = "proc-macro-crate" 4197 - version = "3.1.0" 4198 - source = "registry+https://github.com/rust-lang/crates.io-index" 4199 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 4200 - dependencies = [ 4201 - "toml_edit 0.21.0", 4202 - ] 4203 - 4204 - [[package]] 4205 - name = "proc-macro-error" 4206 - version = "1.0.4" 4207 - source = "registry+https://github.com/rust-lang/crates.io-index" 4208 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 4209 - dependencies = [ 4210 - "proc-macro-error-attr", 4211 - "proc-macro2", 4212 - "quote", 4213 - "syn 1.0.109", 4214 - "version_check", 4215 - ] 4216 - 4217 - [[package]] 4218 - name = "proc-macro-error-attr" 4219 - version = "1.0.4" 4220 - source = "registry+https://github.com/rust-lang/crates.io-index" 4221 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 4222 - dependencies = [ 4223 - "proc-macro2", 4224 - "quote", 4225 - "version_check", 4226 - ] 4227 - 4228 - [[package]] 4229 - name = "proc-macro2" 4230 - version = "1.0.81" 4231 - source = "registry+https://github.com/rust-lang/crates.io-index" 4232 - checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" 4233 - dependencies = [ 4234 - "unicode-ident", 4235 - ] 4236 - 4237 - [[package]] 4238 - name = "procfs" 4239 - version = "0.16.0" 4240 - source = "registry+https://github.com/rust-lang/crates.io-index" 4241 - checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" 4242 - dependencies = [ 4243 - "bitflags 2.6.0", 4244 - "hex", 4245 - "lazy_static", 4246 - "procfs-core", 4247 - "rustix", 4248 - ] 4249 - 4250 - [[package]] 4251 - name = "procfs-core" 4252 - version = "0.16.0" 4253 - source = "registry+https://github.com/rust-lang/crates.io-index" 4254 - checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" 4255 - dependencies = [ 4256 - "bitflags 2.6.0", 4257 - "hex", 4258 - ] 4259 - 4260 - [[package]] 4261 - name = "prometheus" 4262 - version = "0.13.4" 4263 - source = "registry+https://github.com/rust-lang/crates.io-index" 4264 - checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" 4265 - dependencies = [ 4266 - "cfg-if", 4267 - "fnv", 4268 - "lazy_static", 4269 - "libc", 4270 - "memchr", 4271 - "parking_lot", 4272 - "procfs", 4273 - "protobuf", 4274 - "thiserror", 4275 - ] 4276 - 4277 - [[package]] 4278 - name = "protobuf" 4279 - version = "2.28.0" 4280 - source = "registry+https://github.com/rust-lang/crates.io-index" 4281 - checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 4282 - 4283 - [[package]] 4284 - name = "ptr_meta" 4285 - version = "0.1.4" 4286 - source = "registry+https://github.com/rust-lang/crates.io-index" 4287 - checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 4288 - dependencies = [ 4289 - "ptr_meta_derive", 4290 - ] 4291 - 4292 - [[package]] 4293 - name = "ptr_meta_derive" 4294 - version = "0.1.4" 4295 - source = "registry+https://github.com/rust-lang/crates.io-index" 4296 - checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 4297 - dependencies = [ 4298 - "proc-macro2", 4299 - "quote", 4300 - "syn 1.0.109", 4301 - ] 4302 - 4303 - [[package]] 4304 - name = "pulp" 4305 - version = "0.18.9" 4306 - source = "registry+https://github.com/rust-lang/crates.io-index" 4307 - checksum = "03457ac216146f43f921500bac4e892d5cd32b0479b929cbfc90f95cd6c599c2" 4308 - dependencies = [ 4309 - "bytemuck", 4310 - "libm", 4311 - "num-complex", 4312 - "reborrow", 4313 - ] 4314 - 4315 - [[package]] 4316 - name = "quinn" 4317 - version = "0.11.2" 4318 - source = "registry+https://github.com/rust-lang/crates.io-index" 4319 - checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad" 4320 - dependencies = [ 4321 - "bytes", 4322 - "pin-project-lite", 4323 - "quinn-proto", 4324 - "quinn-udp", 4325 - "rustc-hash 1.1.0", 4326 - "rustls", 4327 - "thiserror", 4328 - "tokio", 4329 - "tracing", 4330 - ] 4331 - 4332 - [[package]] 4333 - name = "quinn-proto" 4334 - version = "0.11.8" 4335 - source = "registry+https://github.com/rust-lang/crates.io-index" 4336 - checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 4337 - dependencies = [ 4338 - "bytes", 4339 - "rand", 4340 - "ring", 4341 - "rustc-hash 2.0.0", 4342 - "rustls", 4343 - "slab", 4344 - "thiserror", 4345 - "tinyvec", 4346 - "tracing", 4347 - ] 4348 - 4349 - [[package]] 4350 - name = "quinn-udp" 4351 - version = "0.5.2" 4352 - source = "registry+https://github.com/rust-lang/crates.io-index" 4353 - checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46" 4354 - dependencies = [ 4355 - "libc", 4356 - "once_cell", 4357 - "socket2 0.5.5", 4358 - "tracing", 4359 - "windows-sys 0.52.0", 4360 - ] 4361 - 4362 - [[package]] 4363 - name = "quote" 4364 - version = "1.0.36" 4365 - source = "registry+https://github.com/rust-lang/crates.io-index" 4366 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 4367 - dependencies = [ 4368 - "proc-macro2", 4369 - ] 4370 - 4371 - [[package]] 4372 - name = "radium" 4373 - version = "0.7.0" 4374 - source = "registry+https://github.com/rust-lang/crates.io-index" 4375 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4376 - 4377 - [[package]] 4378 - name = "rand" 4379 - version = "0.8.5" 4380 - source = "registry+https://github.com/rust-lang/crates.io-index" 4381 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4382 - dependencies = [ 4383 - "libc", 4384 - "rand_chacha", 4385 - "rand_core", 4386 - ] 4387 - 4388 - [[package]] 4389 - name = "rand_chacha" 4390 - version = "0.3.1" 4391 - source = "registry+https://github.com/rust-lang/crates.io-index" 4392 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4393 - dependencies = [ 4394 - "ppv-lite86", 4395 - "rand_core", 4396 - ] 4397 - 4398 - [[package]] 4399 - name = "rand_core" 4400 - version = "0.6.4" 4401 - source = "registry+https://github.com/rust-lang/crates.io-index" 4402 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4403 - dependencies = [ 4404 - "getrandom", 4405 - ] 4406 - 4407 - [[package]] 4408 - name = "rand_distr" 4409 - version = "0.4.3" 4410 - source = "registry+https://github.com/rust-lang/crates.io-index" 4411 - checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" 4412 - dependencies = [ 4413 - "num-traits", 4414 - "rand", 4415 - ] 4416 - 4417 - [[package]] 4418 - name = "raw-cpuid" 4419 - version = "10.7.0" 4420 - source = "registry+https://github.com/rust-lang/crates.io-index" 4421 - checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 4422 - dependencies = [ 4423 - "bitflags 1.3.2", 4424 - ] 4425 - 4426 - [[package]] 4427 - name = "rayon" 4428 - version = "1.10.0" 4429 - source = "registry+https://github.com/rust-lang/crates.io-index" 4430 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 4431 - dependencies = [ 4432 - "either", 4433 - "rayon-core", 4434 - ] 4435 - 4436 - [[package]] 4437 - name = "rayon-cond" 4438 - version = "0.3.0" 4439 - source = "registry+https://github.com/rust-lang/crates.io-index" 4440 - checksum = "059f538b55efd2309c9794130bc149c6a553db90e9d99c2030785c82f0bd7df9" 4441 - dependencies = [ 4442 - "either", 4443 - "itertools 0.11.0", 4444 - "rayon", 4445 - ] 4446 - 4447 - [[package]] 4448 - name = "rayon-core" 4449 - version = "1.12.1" 4450 - source = "registry+https://github.com/rust-lang/crates.io-index" 4451 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 4452 - dependencies = [ 4453 - "crossbeam-deque", 4454 - "crossbeam-utils", 4455 - ] 4456 - 4457 - [[package]] 4458 - name = "rayon-par-bridge" 4459 - version = "0.1.0" 4460 - source = "registry+https://github.com/rust-lang/crates.io-index" 4461 - checksum = "cb6a14d8f65834aca6b0fe4cbbd7a27e639cd3efb1f2a32de9942368f1991de8" 4462 - dependencies = [ 4463 - "rayon", 4464 - ] 4465 - 4466 - [[package]] 4467 - name = "reborrow" 4468 - version = "0.5.5" 4469 - source = "registry+https://github.com/rust-lang/crates.io-index" 4470 - checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430" 4471 - 4472 - [[package]] 4473 - name = "redox_syscall" 4474 - version = "0.2.16" 4475 - source = "registry+https://github.com/rust-lang/crates.io-index" 4476 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 4477 - dependencies = [ 4478 - "bitflags 1.3.2", 4479 - ] 4480 - 4481 - [[package]] 4482 - name = "redox_syscall" 4483 - version = "0.3.5" 4484 - source = "registry+https://github.com/rust-lang/crates.io-index" 4485 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 4486 - dependencies = [ 4487 - "bitflags 1.3.2", 4488 - ] 4489 - 4490 - [[package]] 4491 - name = "redox_users" 4492 - version = "0.4.3" 4493 - source = "registry+https://github.com/rust-lang/crates.io-index" 4494 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 4495 - dependencies = [ 4496 - "getrandom", 4497 - "redox_syscall 0.2.16", 4498 - "thiserror", 4499 - ] 4500 - 4501 - [[package]] 4502 - name = "regex" 4503 - version = "1.10.5" 4504 - source = "registry+https://github.com/rust-lang/crates.io-index" 4505 - checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 4506 - dependencies = [ 4507 - "aho-corasick", 4508 - "memchr", 4509 - "regex-automata", 4510 - "regex-syntax", 4511 - ] 4512 - 4513 - [[package]] 4514 - name = "regex-automata" 4515 - version = "0.4.6" 4516 - source = "registry+https://github.com/rust-lang/crates.io-index" 4517 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 4518 - dependencies = [ 4519 - "aho-corasick", 4520 - "memchr", 4521 - "regex-syntax", 4522 - ] 4523 - 4524 - [[package]] 4525 - name = "regex-lite" 4526 - version = "0.1.6" 4527 - source = "registry+https://github.com/rust-lang/crates.io-index" 4528 - checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 4529 - 4530 - [[package]] 4531 - name = "regex-syntax" 4532 - version = "0.8.2" 4533 - source = "registry+https://github.com/rust-lang/crates.io-index" 4534 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 4535 - 4536 - [[package]] 4537 - name = "rend" 4538 - version = "0.4.2" 4539 - source = "registry+https://github.com/rust-lang/crates.io-index" 4540 - checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 4541 - dependencies = [ 4542 - "bytecheck", 4543 - ] 4544 - 4545 - [[package]] 4546 - name = "reqwest" 4547 - version = "0.12.5" 4548 - source = "registry+https://github.com/rust-lang/crates.io-index" 4549 - checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" 4550 - dependencies = [ 4551 - "base64 0.22.1", 4552 - "bytes", 4553 - "futures-channel", 4554 - "futures-core", 4555 - "futures-util", 4556 - "http 1.1.0", 4557 - "http-body", 4558 - "http-body-util", 4559 - "hyper", 4560 - "hyper-rustls", 4561 - "hyper-util", 4562 - "ipnet", 4563 - "js-sys", 4564 - "log", 4565 - "mime", 4566 - "once_cell", 4567 - "percent-encoding", 4568 - "pin-project-lite", 4569 - "quinn", 4570 - "rustls", 4571 - "rustls-pemfile", 4572 - "rustls-pki-types", 4573 - "serde", 4574 - "serde_json", 4575 - "serde_urlencoded", 4576 - "sync_wrapper", 4577 - "tokio", 4578 - "tokio-rustls", 4579 - "tokio-util", 4580 - "tower-service", 4581 - "url", 4582 - "wasm-bindgen", 4583 - "wasm-bindgen-futures", 4584 - "wasm-streams", 4585 - "web-sys", 4586 - "webpki-roots", 4587 - "winreg", 4588 - ] 4589 - 4590 - [[package]] 4591 - name = "rhai" 4592 - version = "1.20.0" 4593 - source = "git+https://github.com/rhaiscript/rhai?rev=ef3df63121d27aacd838f366f2b83fd65f20a1e4#ef3df63121d27aacd838f366f2b83fd65f20a1e4" 4594 - dependencies = [ 4595 - "ahash 0.8.11", 4596 - "bitflags 2.6.0", 4597 - "instant", 4598 - "num-traits", 4599 - "once_cell", 4600 - "rhai_codegen", 4601 - "serde", 4602 - "smallvec", 4603 - "smartstring", 4604 - "thin-vec", 4605 - ] 4606 - 4607 - [[package]] 4608 - name = "rhai_codegen" 4609 - version = "2.2.0" 4610 - source = "git+https://github.com/rhaiscript/rhai?rev=ef3df63121d27aacd838f366f2b83fd65f20a1e4#ef3df63121d27aacd838f366f2b83fd65f20a1e4" 4611 - dependencies = [ 4612 - "proc-macro2", 4613 - "quote", 4614 - "syn 2.0.60", 4615 - ] 4616 - 4617 - [[package]] 4618 - name = "ring" 4619 - version = "0.17.8" 4620 - source = "registry+https://github.com/rust-lang/crates.io-index" 4621 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 4622 - dependencies = [ 4623 - "cc", 4624 - "cfg-if", 4625 - "getrandom", 4626 - "libc", 4627 - "spin", 4628 - "untrusted", 4629 - "windows-sys 0.52.0", 4630 - ] 4631 - 4632 - [[package]] 4633 - name = "rkyv" 4634 - version = "0.7.44" 4635 - source = "registry+https://github.com/rust-lang/crates.io-index" 4636 - checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 4637 - dependencies = [ 4638 - "bitvec", 4639 - "bytecheck", 4640 - "bytes", 4641 - "hashbrown 0.12.3", 4642 - "ptr_meta", 4643 - "rend", 4644 - "rkyv_derive", 4645 - "seahash", 4646 - "tinyvec", 4647 - "uuid", 4648 - ] 4649 - 4650 - [[package]] 4651 - name = "rkyv_derive" 4652 - version = "0.7.44" 4653 - source = "registry+https://github.com/rust-lang/crates.io-index" 4654 - checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 4655 - dependencies = [ 4656 - "proc-macro2", 4657 - "quote", 4658 - "syn 1.0.109", 4659 - ] 4660 - 4661 - [[package]] 4662 - name = "roaring" 4663 - version = "0.10.6" 4664 - source = "registry+https://github.com/rust-lang/crates.io-index" 4665 - checksum = "8f4b84ba6e838ceb47b41de5194a60244fac43d9fe03b71dbe8c5a201081d6d1" 4666 - dependencies = [ 4667 - "bytemuck", 4668 - "byteorder", 4669 - "serde", 4670 - ] 4671 - 4672 - [[package]] 4673 - name = "rstar" 4674 - version = "0.12.0" 4675 - source = "registry+https://github.com/rust-lang/crates.io-index" 4676 - checksum = "133315eb94c7b1e8d0cb097e5a710d850263372fd028fff18969de708afc7008" 4677 - dependencies = [ 4678 - "heapless", 4679 - "num-traits", 4680 - "serde", 4681 - "smallvec", 4682 - ] 4683 - 4684 - [[package]] 4685 - name = "rust_decimal" 4686 - version = "1.35.0" 4687 - source = "registry+https://github.com/rust-lang/crates.io-index" 4688 - checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" 4689 - dependencies = [ 4690 - "arrayvec", 4691 - "borsh", 4692 - "bytes", 4693 - "num-traits", 4694 - "rand", 4695 - "rkyv", 4696 - "serde", 4697 - "serde_json", 4698 - ] 4699 - 4700 - [[package]] 4701 - name = "rustc-demangle" 4702 - version = "0.1.23" 4703 - source = "registry+https://github.com/rust-lang/crates.io-index" 4704 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 4705 - 4706 - [[package]] 4707 - name = "rustc-hash" 4708 - version = "1.1.0" 4709 - source = "registry+https://github.com/rust-lang/crates.io-index" 4710 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 4711 - 4712 - [[package]] 4713 - name = "rustc-hash" 4714 - version = "2.0.0" 4715 - source = "registry+https://github.com/rust-lang/crates.io-index" 4716 - checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 4717 - 4718 - [[package]] 4719 - name = "rustc_version" 4720 - version = "0.4.0" 4721 - source = "registry+https://github.com/rust-lang/crates.io-index" 4722 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 4723 - dependencies = [ 4724 - "semver", 4725 - ] 4726 - 4727 - [[package]] 4728 - name = "rustix" 4729 - version = "0.38.31" 4730 - source = "registry+https://github.com/rust-lang/crates.io-index" 4731 - checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 4732 - dependencies = [ 4733 - "bitflags 2.6.0", 4734 - "errno", 4735 - "libc", 4736 - "linux-raw-sys", 4737 - "windows-sys 0.52.0", 4738 - ] 4739 - 4740 - [[package]] 4741 - name = "rustls" 4742 - version = "0.23.11" 4743 - source = "registry+https://github.com/rust-lang/crates.io-index" 4744 - checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" 4745 - dependencies = [ 4746 - "log", 4747 - "once_cell", 4748 - "ring", 4749 - "rustls-pki-types", 4750 - "rustls-webpki", 4751 - "subtle", 4752 - "zeroize", 4753 - ] 4754 - 4755 - [[package]] 4756 - name = "rustls-pemfile" 4757 - version = "2.1.2" 4758 - source = "registry+https://github.com/rust-lang/crates.io-index" 4759 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 4760 - dependencies = [ 4761 - "base64 0.22.1", 4762 - "rustls-pki-types", 4763 - ] 4764 - 4765 - [[package]] 4766 - name = "rustls-pki-types" 4767 - version = "1.7.0" 4768 - source = "registry+https://github.com/rust-lang/crates.io-index" 4769 - checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 4770 - 4771 - [[package]] 4772 - name = "rustls-webpki" 4773 - version = "0.102.5" 4774 - source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" 4776 - dependencies = [ 4777 - "ring", 4778 - "rustls-pki-types", 4779 - "untrusted", 4780 - ] 4781 - 4782 - [[package]] 4783 - name = "rustversion" 4784 - version = "1.0.17" 4785 - source = "registry+https://github.com/rust-lang/crates.io-index" 4786 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 4787 - 4788 - [[package]] 4789 - name = "ryu" 4790 - version = "1.0.17" 4791 - source = "registry+https://github.com/rust-lang/crates.io-index" 4792 - checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 4793 - 4794 - [[package]] 4795 - name = "safetensors" 4796 - version = "0.4.2" 4797 - source = "registry+https://github.com/rust-lang/crates.io-index" 4798 - checksum = "8d980e6bfb34436fb0a81e42bc41af43f11805bbbca443e7f68e9faaabe669ed" 4799 - dependencies = [ 4800 - "serde", 4801 - "serde_json", 4802 - ] 4803 - 4804 - [[package]] 4805 - name = "same-file" 4806 - version = "1.0.6" 4807 - source = "registry+https://github.com/rust-lang/crates.io-index" 4808 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4809 - dependencies = [ 4810 - "winapi-util", 4811 - ] 4812 - 4813 - [[package]] 4814 - name = "scopeguard" 4815 - version = "1.2.0" 4816 - source = "registry+https://github.com/rust-lang/crates.io-index" 4817 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4818 - 4819 - [[package]] 4820 - name = "seahash" 4821 - version = "4.1.0" 4822 - source = "registry+https://github.com/rust-lang/crates.io-index" 4823 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 4824 - 4825 - [[package]] 4826 - name = "segment" 4827 - version = "0.2.4" 4828 - source = "registry+https://github.com/rust-lang/crates.io-index" 4829 - checksum = "5bdca318192c89bb31bffa2ef8e9e9898bc80f15a78db2fdd41cd051f1b41d01" 4830 - dependencies = [ 4831 - "async-trait", 4832 - "reqwest", 4833 - "serde", 4834 - "serde_json", 4835 - "thiserror", 4836 - "time", 4837 - ] 4838 - 4839 - [[package]] 4840 - name = "semver" 4841 - version = "1.0.18" 4842 - source = "registry+https://github.com/rust-lang/crates.io-index" 4843 - checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 4844 - dependencies = [ 4845 - "serde", 4846 - ] 4847 - 4848 - [[package]] 4849 - name = "seq-macro" 4850 - version = "0.3.5" 4851 - source = "registry+https://github.com/rust-lang/crates.io-index" 4852 - checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 4853 - 4854 - [[package]] 4855 - name = "serde" 4856 - version = "1.0.209" 4857 - source = "registry+https://github.com/rust-lang/crates.io-index" 4858 - checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" 4859 - dependencies = [ 4860 - "serde_derive", 4861 - ] 4862 - 4863 - [[package]] 4864 - name = "serde-cs" 4865 - version = "0.2.4" 4866 - source = "registry+https://github.com/rust-lang/crates.io-index" 4867 - checksum = "07d1716265edfe2ff32c1f3168aedc01964b75432aadae3407c9f1fea40557c9" 4868 - dependencies = [ 4869 - "serde", 4870 - ] 4871 - 4872 - [[package]] 4873 - name = "serde_derive" 4874 - version = "1.0.209" 4875 - source = "registry+https://github.com/rust-lang/crates.io-index" 4876 - checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" 4877 - dependencies = [ 4878 - "proc-macro2", 4879 - "quote", 4880 - "syn 2.0.60", 4881 - ] 4882 - 4883 - [[package]] 4884 - name = "serde_json" 4885 - version = "1.0.120" 4886 - source = "registry+https://github.com/rust-lang/crates.io-index" 4887 - checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" 4888 - dependencies = [ 4889 - "indexmap", 4890 - "itoa", 4891 - "ryu", 4892 - "serde", 4893 - ] 4894 - 4895 - [[package]] 4896 - name = "serde_plain" 4897 - version = "1.0.2" 4898 - source = "registry+https://github.com/rust-lang/crates.io-index" 4899 - checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 4900 - dependencies = [ 4901 - "serde", 4902 - ] 4903 - 4904 - [[package]] 4905 - name = "serde_spanned" 4906 - version = "0.6.6" 4907 - source = "registry+https://github.com/rust-lang/crates.io-index" 4908 - checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 4909 - dependencies = [ 4910 - "serde", 4911 - ] 4912 - 4913 - [[package]] 4914 - name = "serde_urlencoded" 4915 - version = "0.7.1" 4916 - source = "registry+https://github.com/rust-lang/crates.io-index" 4917 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4918 - dependencies = [ 4919 - "form_urlencoded", 4920 - "itoa", 4921 - "ryu", 4922 - "serde", 4923 - ] 4924 - 4925 - [[package]] 4926 - name = "sha-1" 4927 - version = "0.10.1" 4928 - source = "registry+https://github.com/rust-lang/crates.io-index" 4929 - checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 4930 - dependencies = [ 4931 - "cfg-if", 4932 - "cpufeatures", 4933 - "digest", 4934 - ] 4935 - 4936 - [[package]] 4937 - name = "sha1" 4938 - version = "0.10.6" 4939 - source = "registry+https://github.com/rust-lang/crates.io-index" 4940 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4941 - dependencies = [ 4942 - "cfg-if", 4943 - "cpufeatures", 4944 - "digest", 4945 - ] 4946 - 4947 - [[package]] 4948 - name = "sha2" 4949 - version = "0.10.8" 4950 - source = "registry+https://github.com/rust-lang/crates.io-index" 4951 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 4952 - dependencies = [ 4953 - "cfg-if", 4954 - "cpufeatures", 4955 - "digest", 4956 - ] 4957 - 4958 - [[package]] 4959 - name = "sharded-slab" 4960 - version = "0.1.7" 4961 - source = "registry+https://github.com/rust-lang/crates.io-index" 4962 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 4963 - dependencies = [ 4964 - "lazy_static", 4965 - ] 4966 - 4967 - [[package]] 4968 - name = "shlex" 4969 - version = "1.3.0" 4970 - source = "registry+https://github.com/rust-lang/crates.io-index" 4971 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4972 - 4973 - [[package]] 4974 - name = "signal-hook-registry" 4975 - version = "1.4.1" 4976 - source = "registry+https://github.com/rust-lang/crates.io-index" 4977 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4978 - dependencies = [ 4979 - "libc", 4980 - ] 4981 - 4982 - [[package]] 4983 - name = "simd-adler32" 4984 - version = "0.3.7" 4985 - source = "registry+https://github.com/rust-lang/crates.io-index" 4986 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 4987 - 4988 - [[package]] 4989 - name = "simdutf8" 4990 - version = "0.1.4" 4991 - source = "registry+https://github.com/rust-lang/crates.io-index" 4992 - checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 4993 - 4994 - [[package]] 4995 - name = "similar" 4996 - version = "2.2.1" 4997 - source = "registry+https://github.com/rust-lang/crates.io-index" 4998 - checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 4999 - 5000 - [[package]] 5001 - name = "simple_asn1" 5002 - version = "0.6.2" 5003 - source = "registry+https://github.com/rust-lang/crates.io-index" 5004 - checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 5005 - dependencies = [ 5006 - "num-bigint", 5007 - "num-traits", 5008 - "thiserror", 5009 - "time", 5010 - ] 5011 - 5012 - [[package]] 5013 - name = "siphasher" 5014 - version = "0.3.11" 5015 - source = "registry+https://github.com/rust-lang/crates.io-index" 5016 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 5017 - 5018 - [[package]] 5019 - name = "siphasher" 5020 - version = "1.0.1" 5021 - source = "registry+https://github.com/rust-lang/crates.io-index" 5022 - checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 5023 - 5024 - [[package]] 5025 - name = "slab" 5026 - version = "0.4.8" 5027 - source = "registry+https://github.com/rust-lang/crates.io-index" 5028 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 5029 - dependencies = [ 5030 - "autocfg", 5031 - ] 5032 - 5033 - [[package]] 5034 - name = "slice-group-by" 5035 - version = "0.3.1" 5036 - source = "registry+https://github.com/rust-lang/crates.io-index" 5037 - checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" 5038 - 5039 - [[package]] 5040 - name = "smallstr" 5041 - version = "0.3.0" 5042 - source = "registry+https://github.com/rust-lang/crates.io-index" 5043 - checksum = "63b1aefdf380735ff8ded0b15f31aab05daf1f70216c01c02a12926badd1df9d" 5044 - dependencies = [ 5045 - "serde", 5046 - "smallvec", 5047 - ] 5048 - 5049 - [[package]] 5050 - name = "smallvec" 5051 - version = "1.13.2" 5052 - source = "registry+https://github.com/rust-lang/crates.io-index" 5053 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 5054 - dependencies = [ 5055 - "serde", 5056 - ] 5057 - 5058 - [[package]] 5059 - name = "smartstring" 5060 - version = "1.0.1" 5061 - source = "registry+https://github.com/rust-lang/crates.io-index" 5062 - checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" 5063 - dependencies = [ 5064 - "autocfg", 5065 - "serde", 5066 - "static_assertions", 5067 - "version_check", 5068 - ] 5069 - 5070 - [[package]] 5071 - name = "socket2" 5072 - version = "0.4.9" 5073 - source = "registry+https://github.com/rust-lang/crates.io-index" 5074 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 5075 - dependencies = [ 5076 - "libc", 5077 - "winapi", 5078 - ] 5079 - 5080 - [[package]] 5081 - name = "socket2" 5082 - version = "0.5.5" 5083 - source = "registry+https://github.com/rust-lang/crates.io-index" 5084 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 5085 - dependencies = [ 5086 - "libc", 5087 - "windows-sys 0.48.0", 5088 - ] 5089 - 5090 - [[package]] 5091 - name = "socks" 5092 - version = "0.3.4" 5093 - source = "registry+https://github.com/rust-lang/crates.io-index" 5094 - checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b" 5095 - dependencies = [ 5096 - "byteorder", 5097 - "libc", 5098 - "winapi", 5099 - ] 5100 - 5101 - [[package]] 5102 - name = "spin" 5103 - version = "0.9.8" 5104 - source = "registry+https://github.com/rust-lang/crates.io-index" 5105 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 5106 - 5107 - [[package]] 5108 - name = "spm_precompiled" 5109 - version = "0.1.4" 5110 - source = "registry+https://github.com/rust-lang/crates.io-index" 5111 - checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326" 5112 - dependencies = [ 5113 - "base64 0.13.1", 5114 - "nom", 5115 - "serde", 5116 - "unicode-segmentation", 5117 - ] 5118 - 5119 - [[package]] 5120 - name = "stable_deref_trait" 5121 - version = "1.2.0" 5122 - source = "registry+https://github.com/rust-lang/crates.io-index" 5123 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 5124 - 5125 - [[package]] 5126 - name = "static-files" 5127 - version = "0.2.4" 5128 - source = "registry+https://github.com/rust-lang/crates.io-index" 5129 - checksum = "4e8590e848e1c53be9258210bcd4a8f4118e08988f03a4e2d63b62e4ad9f7ced" 5130 - dependencies = [ 5131 - "change-detection", 5132 - "mime_guess", 5133 - "path-slash", 5134 - ] 5135 - 5136 - [[package]] 5137 - name = "static_assertions" 5138 - version = "1.1.0" 5139 - source = "registry+https://github.com/rust-lang/crates.io-index" 5140 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5141 - 5142 - [[package]] 5143 - name = "strsim" 5144 - version = "0.10.0" 5145 - source = "registry+https://github.com/rust-lang/crates.io-index" 5146 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 5147 - 5148 - [[package]] 5149 - name = "strsim" 5150 - version = "0.11.1" 5151 - source = "registry+https://github.com/rust-lang/crates.io-index" 5152 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 5153 - 5154 - [[package]] 5155 - name = "strum" 5156 - version = "0.26.2" 5157 - source = "registry+https://github.com/rust-lang/crates.io-index" 5158 - checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" 5159 - dependencies = [ 5160 - "strum_macros", 5161 - ] 5162 - 5163 - [[package]] 5164 - name = "strum_macros" 5165 - version = "0.26.2" 5166 - source = "registry+https://github.com/rust-lang/crates.io-index" 5167 - checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" 5168 - dependencies = [ 5169 - "heck 0.4.1", 5170 - "proc-macro2", 5171 - "quote", 5172 - "rustversion", 5173 - "syn 2.0.60", 5174 - ] 5175 - 5176 - [[package]] 5177 - name = "subtle" 5178 - version = "2.5.0" 5179 - source = "registry+https://github.com/rust-lang/crates.io-index" 5180 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 5181 - 5182 - [[package]] 5183 - name = "syn" 5184 - version = "1.0.109" 5185 - source = "registry+https://github.com/rust-lang/crates.io-index" 5186 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 5187 - dependencies = [ 5188 - "proc-macro2", 5189 - "quote", 5190 - "unicode-ident", 5191 - ] 5192 - 5193 - [[package]] 5194 - name = "syn" 5195 - version = "2.0.60" 5196 - source = "registry+https://github.com/rust-lang/crates.io-index" 5197 - checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" 5198 - dependencies = [ 5199 - "proc-macro2", 5200 - "quote", 5201 - "unicode-ident", 5202 - ] 5203 - 5204 - [[package]] 5205 - name = "syn_derive" 5206 - version = "0.1.8" 5207 - source = "registry+https://github.com/rust-lang/crates.io-index" 5208 - checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 5209 - dependencies = [ 5210 - "proc-macro-error", 5211 - "proc-macro2", 5212 - "quote", 5213 - "syn 2.0.60", 5214 - ] 5215 - 5216 - [[package]] 5217 - name = "sync_wrapper" 5218 - version = "1.0.1" 5219 - source = "registry+https://github.com/rust-lang/crates.io-index" 5220 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 5221 - 5222 - [[package]] 5223 - name = "synchronoise" 5224 - version = "1.0.1" 5225 - source = "registry+https://github.com/rust-lang/crates.io-index" 5226 - checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2" 5227 - dependencies = [ 5228 - "crossbeam-queue", 5229 - ] 5230 - 5231 - [[package]] 5232 - name = "synstructure" 5233 - version = "0.13.1" 5234 - source = "registry+https://github.com/rust-lang/crates.io-index" 5235 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 5236 - dependencies = [ 5237 - "proc-macro2", 5238 - "quote", 5239 - "syn 2.0.60", 5240 - ] 5241 - 5242 - [[package]] 5243 - name = "sysctl" 5244 - version = "0.5.5" 5245 - source = "registry+https://github.com/rust-lang/crates.io-index" 5246 - checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea" 5247 - dependencies = [ 5248 - "bitflags 2.6.0", 5249 - "byteorder", 5250 - "enum-as-inner", 5251 - "libc", 5252 - "thiserror", 5253 - "walkdir", 5254 - ] 5255 - 5256 - [[package]] 5257 - name = "sysinfo" 5258 - version = "0.30.13" 5259 - source = "registry+https://github.com/rust-lang/crates.io-index" 5260 - checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3" 5261 - dependencies = [ 5262 - "cfg-if", 5263 - "core-foundation-sys", 5264 - "libc", 5265 - "ntapi", 5266 - "once_cell", 5267 - "rayon", 5268 - "windows", 5269 - ] 5270 - 5271 - [[package]] 5272 - name = "tap" 5273 - version = "1.0.1" 5274 - source = "registry+https://github.com/rust-lang/crates.io-index" 5275 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 5276 - 5277 - [[package]] 5278 - name = "tar" 5279 - version = "0.4.41" 5280 - source = "registry+https://github.com/rust-lang/crates.io-index" 5281 - checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" 5282 - dependencies = [ 5283 - "filetime", 5284 - "libc", 5285 - "xattr", 5286 - ] 5287 - 5288 - [[package]] 5289 - name = "temp-env" 5290 - version = "0.3.6" 5291 - source = "registry+https://github.com/rust-lang/crates.io-index" 5292 - checksum = "96374855068f47402c3121c6eed88d29cb1de8f3ab27090e273e420bdabcf050" 5293 - dependencies = [ 5294 - "parking_lot", 5295 - ] 5296 - 5297 - [[package]] 5298 - name = "tempfile" 5299 - version = "3.10.1" 5300 - source = "registry+https://github.com/rust-lang/crates.io-index" 5301 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 5302 - dependencies = [ 5303 - "cfg-if", 5304 - "fastrand", 5305 - "rustix", 5306 - "windows-sys 0.52.0", 5307 - ] 5308 - 5309 - [[package]] 5310 - name = "termcolor" 5311 - version = "1.4.1" 5312 - source = "registry+https://github.com/rust-lang/crates.io-index" 5313 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 5314 - dependencies = [ 5315 - "winapi-util", 5316 - ] 5317 - 5318 - [[package]] 5319 - name = "thin-vec" 5320 - version = "0.2.13" 5321 - source = "registry+https://github.com/rust-lang/crates.io-index" 5322 - checksum = "a38c90d48152c236a3ab59271da4f4ae63d678c5d7ad6b7714d7cb9760be5e4b" 5323 - dependencies = [ 5324 - "serde", 5325 - ] 5326 - 5327 - [[package]] 5328 - name = "thiserror" 5329 - version = "1.0.61" 5330 - source = "registry+https://github.com/rust-lang/crates.io-index" 5331 - checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 5332 - dependencies = [ 5333 - "thiserror-impl", 5334 - ] 5335 - 5336 - [[package]] 5337 - name = "thiserror-impl" 5338 - version = "1.0.61" 5339 - source = "registry+https://github.com/rust-lang/crates.io-index" 5340 - checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 5341 - dependencies = [ 5342 - "proc-macro2", 5343 - "quote", 5344 - "syn 2.0.60", 5345 - ] 5346 - 5347 - [[package]] 5348 - name = "thread_local" 5349 - version = "1.1.7" 5350 - source = "registry+https://github.com/rust-lang/crates.io-index" 5351 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 5352 - dependencies = [ 5353 - "cfg-if", 5354 - "once_cell", 5355 - ] 5356 - 5357 - [[package]] 5358 - name = "tiktoken-rs" 5359 - version = "0.5.9" 5360 - source = "registry+https://github.com/rust-lang/crates.io-index" 5361 - checksum = "c314e7ce51440f9e8f5a497394682a57b7c323d0f4d0a6b1b13c429056e0e234" 5362 - dependencies = [ 5363 - "anyhow", 5364 - "base64 0.21.7", 5365 - "bstr", 5366 - "fancy-regex 0.12.0", 5367 - "lazy_static", 5368 - "parking_lot", 5369 - "rustc-hash 1.1.0", 5370 - ] 5371 - 5372 - [[package]] 5373 - name = "time" 5374 - version = "0.3.36" 5375 - source = "registry+https://github.com/rust-lang/crates.io-index" 5376 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 5377 - dependencies = [ 5378 - "deranged", 5379 - "itoa", 5380 - "libc", 5381 - "num-conv", 5382 - "num_threads", 5383 - "powerfmt", 5384 - "serde", 5385 - "time-core", 5386 - "time-macros", 5387 - ] 5388 - 5389 - [[package]] 5390 - name = "time-core" 5391 - version = "0.1.2" 5392 - source = "registry+https://github.com/rust-lang/crates.io-index" 5393 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 5394 - 5395 - [[package]] 5396 - name = "time-macros" 5397 - version = "0.2.18" 5398 - source = "registry+https://github.com/rust-lang/crates.io-index" 5399 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 5400 - dependencies = [ 5401 - "num-conv", 5402 - "time-core", 5403 - ] 5404 - 5405 - [[package]] 5406 - name = "tiny-keccak" 5407 - version = "2.0.2" 5408 - source = "registry+https://github.com/rust-lang/crates.io-index" 5409 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 5410 - dependencies = [ 5411 - "crunchy", 5412 - ] 5413 - 5414 - [[package]] 5415 - name = "tinytemplate" 5416 - version = "1.2.1" 5417 - source = "registry+https://github.com/rust-lang/crates.io-index" 5418 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 5419 - dependencies = [ 5420 - "serde", 5421 - "serde_json", 5422 - ] 5423 - 5424 - [[package]] 5425 - name = "tinyvec" 5426 - version = "1.6.0" 5427 - source = "registry+https://github.com/rust-lang/crates.io-index" 5428 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 5429 - dependencies = [ 5430 - "tinyvec_macros", 5431 - ] 5432 - 5433 - [[package]] 5434 - name = "tinyvec_macros" 5435 - version = "0.1.1" 5436 - source = "registry+https://github.com/rust-lang/crates.io-index" 5437 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5438 - 5439 - [[package]] 5440 - name = "tokenizers" 5441 - version = "0.15.2" 5442 - source = "git+https://github.com/huggingface/tokenizers.git?tag=v0.15.2#701a73b869602b5639589d197e805349cdba3223" 5443 - dependencies = [ 5444 - "aho-corasick", 5445 - "derive_builder 0.12.0", 5446 - "esaxx-rs", 5447 - "getrandom", 5448 - "itertools 0.12.1", 5449 - "lazy_static", 5450 - "log", 5451 - "macro_rules_attribute", 5452 - "monostate", 5453 - "onig", 5454 - "paste", 5455 - "rand", 5456 - "rayon", 5457 - "rayon-cond", 5458 - "regex", 5459 - "regex-syntax", 5460 - "serde", 5461 - "serde_json", 5462 - "spm_precompiled", 5463 - "thiserror", 5464 - "unicode-normalization-alignments", 5465 - "unicode-segmentation", 5466 - "unicode_categories", 5467 - ] 5468 - 5469 - [[package]] 5470 - name = "tokio" 5471 - version = "1.38.0" 5472 - source = "registry+https://github.com/rust-lang/crates.io-index" 5473 - checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 5474 - dependencies = [ 5475 - "backtrace", 5476 - "bytes", 5477 - "libc", 5478 - "mio", 5479 - "num_cpus", 5480 - "parking_lot", 5481 - "pin-project-lite", 5482 - "signal-hook-registry", 5483 - "socket2 0.5.5", 5484 - "tokio-macros", 5485 - "windows-sys 0.48.0", 5486 - ] 5487 - 5488 - [[package]] 5489 - name = "tokio-macros" 5490 - version = "2.3.0" 5491 - source = "registry+https://github.com/rust-lang/crates.io-index" 5492 - checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 5493 - dependencies = [ 5494 - "proc-macro2", 5495 - "quote", 5496 - "syn 2.0.60", 5497 - ] 5498 - 5499 - [[package]] 5500 - name = "tokio-rustls" 5501 - version = "0.26.0" 5502 - source = "registry+https://github.com/rust-lang/crates.io-index" 5503 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 5504 - dependencies = [ 5505 - "rustls", 5506 - "rustls-pki-types", 5507 - "tokio", 5508 - ] 5509 - 5510 - [[package]] 5511 - name = "tokio-util" 5512 - version = "0.7.11" 5513 - source = "registry+https://github.com/rust-lang/crates.io-index" 5514 - checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 5515 - dependencies = [ 5516 - "bytes", 5517 - "futures-core", 5518 - "futures-sink", 5519 - "pin-project-lite", 5520 - "tokio", 5521 - ] 5522 - 5523 - [[package]] 5524 - name = "toml" 5525 - version = "0.8.14" 5526 - source = "registry+https://github.com/rust-lang/crates.io-index" 5527 - checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" 5528 - dependencies = [ 5529 - "serde", 5530 - "serde_spanned", 5531 - "toml_datetime", 5532 - "toml_edit 0.22.15", 5533 - ] 5534 - 5535 - [[package]] 5536 - name = "toml_datetime" 5537 - version = "0.6.6" 5538 - source = "registry+https://github.com/rust-lang/crates.io-index" 5539 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 5540 - dependencies = [ 5541 - "serde", 5542 - ] 5543 - 5544 - [[package]] 5545 - name = "toml_edit" 5546 - version = "0.21.0" 5547 - source = "registry+https://github.com/rust-lang/crates.io-index" 5548 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 5549 - dependencies = [ 5550 - "indexmap", 5551 - "toml_datetime", 5552 - "winnow 0.5.40", 5553 - ] 5554 - 5555 - [[package]] 5556 - name = "toml_edit" 5557 - version = "0.22.15" 5558 - source = "registry+https://github.com/rust-lang/crates.io-index" 5559 - checksum = "d59a3a72298453f564e2b111fa896f8d07fabb36f51f06d7e875fc5e0b5a3ef1" 5560 - dependencies = [ 5561 - "indexmap", 5562 - "serde", 5563 - "serde_spanned", 5564 - "toml_datetime", 5565 - "winnow 0.6.13", 5566 - ] 5567 - 5568 - [[package]] 5569 - name = "tower" 5570 - version = "0.4.13" 5571 - source = "registry+https://github.com/rust-lang/crates.io-index" 5572 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 5573 - dependencies = [ 5574 - "futures-core", 5575 - "futures-util", 5576 - "pin-project", 5577 - "pin-project-lite", 5578 - "tokio", 5579 - "tower-layer", 5580 - "tower-service", 5581 - ] 5582 - 5583 - [[package]] 5584 - name = "tower-layer" 5585 - version = "0.3.2" 5586 - source = "registry+https://github.com/rust-lang/crates.io-index" 5587 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 5588 - 5589 - [[package]] 5590 - name = "tower-service" 5591 - version = "0.3.2" 5592 - source = "registry+https://github.com/rust-lang/crates.io-index" 5593 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 5594 - 5595 - [[package]] 5596 - name = "tracing" 5597 - version = "0.1.40" 5598 - source = "registry+https://github.com/rust-lang/crates.io-index" 5599 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 5600 - dependencies = [ 5601 - "log", 5602 - "pin-project-lite", 5603 - "tracing-attributes", 5604 - "tracing-core", 5605 - ] 5606 - 5607 - [[package]] 5608 - name = "tracing-actix-web" 5609 - version = "0.7.11" 5610 - source = "registry+https://github.com/rust-lang/crates.io-index" 5611 - checksum = "4ee9e39a66d9b615644893ffc1704d2a89b5b315b7fd0228ad3182ca9a306b19" 5612 - dependencies = [ 5613 - "actix-web", 5614 - "mutually_exclusive_features", 5615 - "pin-project", 5616 - "tracing", 5617 - "uuid", 5618 - ] 5619 - 5620 - [[package]] 5621 - name = "tracing-attributes" 5622 - version = "0.1.27" 5623 - source = "registry+https://github.com/rust-lang/crates.io-index" 5624 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 5625 - dependencies = [ 5626 - "proc-macro2", 5627 - "quote", 5628 - "syn 2.0.60", 5629 - ] 5630 - 5631 - [[package]] 5632 - name = "tracing-core" 5633 - version = "0.1.32" 5634 - source = "registry+https://github.com/rust-lang/crates.io-index" 5635 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 5636 - dependencies = [ 5637 - "once_cell", 5638 - "valuable", 5639 - ] 5640 - 5641 - [[package]] 5642 - name = "tracing-error" 5643 - version = "0.2.0" 5644 - source = "registry+https://github.com/rust-lang/crates.io-index" 5645 - checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e" 5646 - dependencies = [ 5647 - "tracing", 5648 - "tracing-subscriber", 5649 - ] 5650 - 5651 - [[package]] 5652 - name = "tracing-log" 5653 - version = "0.2.0" 5654 - source = "registry+https://github.com/rust-lang/crates.io-index" 5655 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 5656 - dependencies = [ 5657 - "log", 5658 - "once_cell", 5659 - "tracing-core", 5660 - ] 5661 - 5662 - [[package]] 5663 - name = "tracing-serde" 5664 - version = "0.1.3" 5665 - source = "registry+https://github.com/rust-lang/crates.io-index" 5666 - checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" 5667 - dependencies = [ 5668 - "serde", 5669 - "tracing-core", 5670 - ] 5671 - 5672 - [[package]] 5673 - name = "tracing-subscriber" 5674 - version = "0.3.18" 5675 - source = "registry+https://github.com/rust-lang/crates.io-index" 5676 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 5677 - dependencies = [ 5678 - "nu-ansi-term", 5679 - "serde", 5680 - "serde_json", 5681 - "sharded-slab", 5682 - "smallvec", 5683 - "thread_local", 5684 - "tracing-core", 5685 - "tracing-log", 5686 - "tracing-serde", 5687 - ] 5688 - 5689 - [[package]] 5690 - name = "tracing-trace" 5691 - version = "0.1.0" 5692 - dependencies = [ 5693 - "byte-unit", 5694 - "color-spantrace", 5695 - "fxprof-processed-profile", 5696 - "libproc", 5697 - "serde", 5698 - "serde_json", 5699 - "tokio", 5700 - "tracing", 5701 - "tracing-error", 5702 - "tracing-subscriber", 5703 - ] 5704 - 5705 - [[package]] 5706 - name = "try-lock" 5707 - version = "0.2.4" 5708 - source = "registry+https://github.com/rust-lang/crates.io-index" 5709 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 5710 - 5711 - [[package]] 5712 - name = "typenum" 5713 - version = "1.17.0" 5714 - source = "registry+https://github.com/rust-lang/crates.io-index" 5715 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 5716 - 5717 - [[package]] 5718 - name = "ucd-trie" 5719 - version = "0.1.6" 5720 - source = "registry+https://github.com/rust-lang/crates.io-index" 5721 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 5722 - 5723 - [[package]] 5724 - name = "unescaper" 5725 - version = "0.1.5" 5726 - source = "registry+https://github.com/rust-lang/crates.io-index" 5727 - checksum = "c878a167baa8afd137494101a688ef8c67125089ff2249284bd2b5f9bfedb815" 5728 - dependencies = [ 5729 - "thiserror", 5730 - ] 5731 - 5732 - [[package]] 5733 - name = "unicase" 5734 - version = "2.6.0" 5735 - source = "registry+https://github.com/rust-lang/crates.io-index" 5736 - checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 5737 - dependencies = [ 5738 - "version_check", 5739 - ] 5740 - 5741 - [[package]] 5742 - name = "unicode-bidi" 5743 - version = "0.3.15" 5744 - source = "registry+https://github.com/rust-lang/crates.io-index" 5745 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 5746 - 5747 - [[package]] 5748 - name = "unicode-blocks" 5749 - version = "0.1.9" 5750 - source = "registry+https://github.com/rust-lang/crates.io-index" 5751 - checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b" 5752 - 5753 - [[package]] 5754 - name = "unicode-ident" 5755 - version = "1.0.12" 5756 - source = "registry+https://github.com/rust-lang/crates.io-index" 5757 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 5758 - 5759 - [[package]] 5760 - name = "unicode-normalization" 5761 - version = "0.1.23" 5762 - source = "registry+https://github.com/rust-lang/crates.io-index" 5763 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 5764 - dependencies = [ 5765 - "tinyvec", 5766 - ] 5767 - 5768 - [[package]] 5769 - name = "unicode-normalization-alignments" 5770 - version = "0.1.12" 5771 - source = "registry+https://github.com/rust-lang/crates.io-index" 5772 - checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de" 5773 - dependencies = [ 5774 - "smallvec", 5775 - ] 5776 - 5777 - [[package]] 5778 - name = "unicode-segmentation" 5779 - version = "1.11.0" 5780 - source = "registry+https://github.com/rust-lang/crates.io-index" 5781 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 5782 - 5783 - [[package]] 5784 - name = "unicode-width" 5785 - version = "0.1.11" 5786 - source = "registry+https://github.com/rust-lang/crates.io-index" 5787 - checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 5788 - 5789 - [[package]] 5790 - name = "unicode_categories" 5791 - version = "0.1.1" 5792 - source = "registry+https://github.com/rust-lang/crates.io-index" 5793 - checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 5794 - 5795 - [[package]] 5796 - name = "untrusted" 5797 - version = "0.9.0" 5798 - source = "registry+https://github.com/rust-lang/crates.io-index" 5799 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 5800 - 5801 - [[package]] 5802 - name = "ureq" 5803 - version = "2.10.0" 5804 - source = "registry+https://github.com/rust-lang/crates.io-index" 5805 - checksum = "72139d247e5f97a3eff96229a7ae85ead5328a39efe76f8bf5a06313d505b6ea" 5806 - dependencies = [ 5807 - "base64 0.22.1", 5808 - "flate2", 5809 - "log", 5810 - "once_cell", 5811 - "rustls", 5812 - "rustls-pki-types", 5813 - "serde", 5814 - "serde_json", 5815 - "socks", 5816 - "url", 5817 - "webpki-roots", 5818 - ] 5819 - 5820 - [[package]] 5821 - name = "url" 5822 - version = "2.5.2" 5823 - source = "registry+https://github.com/rust-lang/crates.io-index" 5824 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 5825 - dependencies = [ 5826 - "form_urlencoded", 5827 - "idna", 5828 - "percent-encoding", 5829 - "serde", 5830 - ] 5831 - 5832 - [[package]] 5833 - name = "urlencoding" 5834 - version = "2.1.3" 5835 - source = "registry+https://github.com/rust-lang/crates.io-index" 5836 - checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 5837 - 5838 - [[package]] 5839 - name = "utf8-width" 5840 - version = "0.1.6" 5841 - source = "registry+https://github.com/rust-lang/crates.io-index" 5842 - checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" 5843 - 5844 - [[package]] 5845 - name = "utf8parse" 5846 - version = "0.2.1" 5847 - source = "registry+https://github.com/rust-lang/crates.io-index" 5848 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5849 - 5850 - [[package]] 5851 - name = "uuid" 5852 - version = "1.10.0" 5853 - source = "registry+https://github.com/rust-lang/crates.io-index" 5854 - checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 5855 - dependencies = [ 5856 - "getrandom", 5857 - "serde", 5858 - ] 5859 - 5860 - [[package]] 5861 - name = "valuable" 5862 - version = "0.1.0" 5863 - source = "registry+https://github.com/rust-lang/crates.io-index" 5864 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 5865 - 5866 - [[package]] 5867 - name = "vcpkg" 5868 - version = "0.2.15" 5869 - source = "registry+https://github.com/rust-lang/crates.io-index" 5870 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5871 - 5872 - [[package]] 5873 - name = "vergen" 5874 - version = "9.0.0" 5875 - source = "registry+https://github.com/rust-lang/crates.io-index" 5876 - checksum = "c32e7318e93a9ac53693b6caccfb05ff22e04a44c7cf8a279051f24c09da286f" 5877 - dependencies = [ 5878 - "anyhow", 5879 - "derive_builder 0.20.0", 5880 - "rustversion", 5881 - "vergen-lib", 5882 - ] 5883 - 5884 - [[package]] 5885 - name = "vergen-git2" 5886 - version = "1.0.0" 5887 - source = "registry+https://github.com/rust-lang/crates.io-index" 5888 - checksum = "a62c52cd2b2b8b7ec75fc20111b3022ac3ff83e4fc14b9497cfcfd39c54f9c67" 5889 - dependencies = [ 5890 - "anyhow", 5891 - "derive_builder 0.20.0", 5892 - "git2", 5893 - "rustversion", 5894 - "time", 5895 - "vergen", 5896 - "vergen-lib", 5897 - ] 5898 - 5899 - [[package]] 5900 - name = "vergen-lib" 5901 - version = "0.1.3" 5902 - source = "registry+https://github.com/rust-lang/crates.io-index" 5903 - checksum = "e06bee42361e43b60f363bad49d63798d0f42fb1768091812270eca00c784720" 5904 - dependencies = [ 5905 - "anyhow", 5906 - "derive_builder 0.20.0", 5907 - "getset", 5908 - "rustversion", 5909 - ] 5910 - 5911 - [[package]] 5912 - name = "version_check" 5913 - version = "0.9.4" 5914 - source = "registry+https://github.com/rust-lang/crates.io-index" 5915 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5916 - 5917 - [[package]] 5918 - name = "walkdir" 5919 - version = "2.5.0" 5920 - source = "registry+https://github.com/rust-lang/crates.io-index" 5921 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 5922 - dependencies = [ 5923 - "same-file", 5924 - "winapi-util", 5925 - ] 5926 - 5927 - [[package]] 5928 - name = "wana_kana" 5929 - version = "3.0.0" 5930 - source = "registry+https://github.com/rust-lang/crates.io-index" 5931 - checksum = "477976a5c56fb7b014795df5a2ce08d2de8bcd4d5980844c5bd3978a7fd1c30b" 5932 - dependencies = [ 5933 - "fnv", 5934 - "itertools 0.10.5", 5935 - "lazy_static", 5936 - ] 5937 - 5938 - [[package]] 5939 - name = "want" 5940 - version = "0.3.1" 5941 - source = "registry+https://github.com/rust-lang/crates.io-index" 5942 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 5943 - dependencies = [ 5944 - "try-lock", 5945 - ] 5946 - 5947 - [[package]] 5948 - name = "wasi" 5949 - version = "0.11.0+wasi-snapshot-preview1" 5950 - source = "registry+https://github.com/rust-lang/crates.io-index" 5951 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5952 - 5953 - [[package]] 5954 - name = "wasm-bindgen" 5955 - version = "0.2.92" 5956 - source = "registry+https://github.com/rust-lang/crates.io-index" 5957 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 5958 - dependencies = [ 5959 - "cfg-if", 5960 - "wasm-bindgen-macro", 5961 - ] 5962 - 5963 - [[package]] 5964 - name = "wasm-bindgen-backend" 5965 - version = "0.2.92" 5966 - source = "registry+https://github.com/rust-lang/crates.io-index" 5967 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 5968 - dependencies = [ 5969 - "bumpalo", 5970 - "log", 5971 - "once_cell", 5972 - "proc-macro2", 5973 - "quote", 5974 - "syn 2.0.60", 5975 - "wasm-bindgen-shared", 5976 - ] 5977 - 5978 - [[package]] 5979 - name = "wasm-bindgen-futures" 5980 - version = "0.4.37" 5981 - source = "registry+https://github.com/rust-lang/crates.io-index" 5982 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 5983 - dependencies = [ 5984 - "cfg-if", 5985 - "js-sys", 5986 - "wasm-bindgen", 5987 - "web-sys", 5988 - ] 5989 - 5990 - [[package]] 5991 - name = "wasm-bindgen-macro" 5992 - version = "0.2.92" 5993 - source = "registry+https://github.com/rust-lang/crates.io-index" 5994 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 5995 - dependencies = [ 5996 - "quote", 5997 - "wasm-bindgen-macro-support", 5998 - ] 5999 - 6000 - [[package]] 6001 - name = "wasm-bindgen-macro-support" 6002 - version = "0.2.92" 6003 - source = "registry+https://github.com/rust-lang/crates.io-index" 6004 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 6005 - dependencies = [ 6006 - "proc-macro2", 6007 - "quote", 6008 - "syn 2.0.60", 6009 - "wasm-bindgen-backend", 6010 - "wasm-bindgen-shared", 6011 - ] 6012 - 6013 - [[package]] 6014 - name = "wasm-bindgen-shared" 6015 - version = "0.2.92" 6016 - source = "registry+https://github.com/rust-lang/crates.io-index" 6017 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 6018 - 6019 - [[package]] 6020 - name = "wasm-streams" 6021 - version = "0.4.0" 6022 - source = "registry+https://github.com/rust-lang/crates.io-index" 6023 - checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 6024 - dependencies = [ 6025 - "futures-util", 6026 - "js-sys", 6027 - "wasm-bindgen", 6028 - "wasm-bindgen-futures", 6029 - "web-sys", 6030 - ] 6031 - 6032 - [[package]] 6033 - name = "web-sys" 6034 - version = "0.3.64" 6035 - source = "registry+https://github.com/rust-lang/crates.io-index" 6036 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 6037 - dependencies = [ 6038 - "js-sys", 6039 - "wasm-bindgen", 6040 - ] 6041 - 6042 - [[package]] 6043 - name = "webpki-roots" 6044 - version = "0.26.1" 6045 - source = "registry+https://github.com/rust-lang/crates.io-index" 6046 - checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 6047 - dependencies = [ 6048 - "rustls-pki-types", 6049 - ] 6050 - 6051 - [[package]] 6052 - name = "whatlang" 6053 - version = "0.16.4" 6054 - source = "registry+https://github.com/rust-lang/crates.io-index" 6055 - checksum = "471d1c1645d361eb782a1650b1786a8fb58dd625e681a04c09f5ff7c8764a7b0" 6056 - dependencies = [ 6057 - "hashbrown 0.14.3", 6058 - "once_cell", 6059 - ] 6060 - 6061 - [[package]] 6062 - name = "winapi" 6063 - version = "0.3.9" 6064 - source = "registry+https://github.com/rust-lang/crates.io-index" 6065 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 6066 - dependencies = [ 6067 - "winapi-i686-pc-windows-gnu", 6068 - "winapi-x86_64-pc-windows-gnu", 6069 - ] 6070 - 6071 - [[package]] 6072 - name = "winapi-i686-pc-windows-gnu" 6073 - version = "0.4.0" 6074 - source = "registry+https://github.com/rust-lang/crates.io-index" 6075 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 6076 - 6077 - [[package]] 6078 - name = "winapi-util" 6079 - version = "0.1.6" 6080 - source = "registry+https://github.com/rust-lang/crates.io-index" 6081 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 6082 - dependencies = [ 6083 - "winapi", 6084 - ] 6085 - 6086 - [[package]] 6087 - name = "winapi-x86_64-pc-windows-gnu" 6088 - version = "0.4.0" 6089 - source = "registry+https://github.com/rust-lang/crates.io-index" 6090 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 6091 - 6092 - [[package]] 6093 - name = "windows" 6094 - version = "0.52.0" 6095 - source = "registry+https://github.com/rust-lang/crates.io-index" 6096 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 6097 - dependencies = [ 6098 - "windows-core", 6099 - "windows-targets 0.52.4", 6100 - ] 6101 - 6102 - [[package]] 6103 - name = "windows-core" 6104 - version = "0.52.0" 6105 - source = "registry+https://github.com/rust-lang/crates.io-index" 6106 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 6107 - dependencies = [ 6108 - "windows-targets 0.52.4", 6109 - ] 6110 - 6111 - [[package]] 6112 - name = "windows-sys" 6113 - version = "0.45.0" 6114 - source = "registry+https://github.com/rust-lang/crates.io-index" 6115 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 6116 - dependencies = [ 6117 - "windows-targets 0.42.2", 6118 - ] 6119 - 6120 - [[package]] 6121 - name = "windows-sys" 6122 - version = "0.48.0" 6123 - source = "registry+https://github.com/rust-lang/crates.io-index" 6124 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6125 - dependencies = [ 6126 - "windows-targets 0.48.1", 6127 - ] 6128 - 6129 - [[package]] 6130 - name = "windows-sys" 6131 - version = "0.52.0" 6132 - source = "registry+https://github.com/rust-lang/crates.io-index" 6133 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6134 - dependencies = [ 6135 - "windows-targets 0.52.4", 6136 - ] 6137 - 6138 - [[package]] 6139 - name = "windows-targets" 6140 - version = "0.42.2" 6141 - source = "registry+https://github.com/rust-lang/crates.io-index" 6142 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 6143 - dependencies = [ 6144 - "windows_aarch64_gnullvm 0.42.2", 6145 - "windows_aarch64_msvc 0.42.2", 6146 - "windows_i686_gnu 0.42.2", 6147 - "windows_i686_msvc 0.42.2", 6148 - "windows_x86_64_gnu 0.42.2", 6149 - "windows_x86_64_gnullvm 0.42.2", 6150 - "windows_x86_64_msvc 0.42.2", 6151 - ] 6152 - 6153 - [[package]] 6154 - name = "windows-targets" 6155 - version = "0.48.1" 6156 - source = "registry+https://github.com/rust-lang/crates.io-index" 6157 - checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 6158 - dependencies = [ 6159 - "windows_aarch64_gnullvm 0.48.0", 6160 - "windows_aarch64_msvc 0.48.0", 6161 - "windows_i686_gnu 0.48.0", 6162 - "windows_i686_msvc 0.48.0", 6163 - "windows_x86_64_gnu 0.48.0", 6164 - "windows_x86_64_gnullvm 0.48.0", 6165 - "windows_x86_64_msvc 0.48.0", 6166 - ] 6167 - 6168 - [[package]] 6169 - name = "windows-targets" 6170 - version = "0.52.4" 6171 - source = "registry+https://github.com/rust-lang/crates.io-index" 6172 - checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 6173 - dependencies = [ 6174 - "windows_aarch64_gnullvm 0.52.4", 6175 - "windows_aarch64_msvc 0.52.4", 6176 - "windows_i686_gnu 0.52.4", 6177 - "windows_i686_msvc 0.52.4", 6178 - "windows_x86_64_gnu 0.52.4", 6179 - "windows_x86_64_gnullvm 0.52.4", 6180 - "windows_x86_64_msvc 0.52.4", 6181 - ] 6182 - 6183 - [[package]] 6184 - name = "windows_aarch64_gnullvm" 6185 - version = "0.42.2" 6186 - source = "registry+https://github.com/rust-lang/crates.io-index" 6187 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 6188 - 6189 - [[package]] 6190 - name = "windows_aarch64_gnullvm" 6191 - version = "0.48.0" 6192 - source = "registry+https://github.com/rust-lang/crates.io-index" 6193 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 6194 - 6195 - [[package]] 6196 - name = "windows_aarch64_gnullvm" 6197 - version = "0.52.4" 6198 - source = "registry+https://github.com/rust-lang/crates.io-index" 6199 - checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 6200 - 6201 - [[package]] 6202 - name = "windows_aarch64_msvc" 6203 - version = "0.42.2" 6204 - source = "registry+https://github.com/rust-lang/crates.io-index" 6205 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 6206 - 6207 - [[package]] 6208 - name = "windows_aarch64_msvc" 6209 - version = "0.48.0" 6210 - source = "registry+https://github.com/rust-lang/crates.io-index" 6211 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 6212 - 6213 - [[package]] 6214 - name = "windows_aarch64_msvc" 6215 - version = "0.52.4" 6216 - source = "registry+https://github.com/rust-lang/crates.io-index" 6217 - checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 6218 - 6219 - [[package]] 6220 - name = "windows_i686_gnu" 6221 - version = "0.42.2" 6222 - source = "registry+https://github.com/rust-lang/crates.io-index" 6223 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 6224 - 6225 - [[package]] 6226 - name = "windows_i686_gnu" 6227 - version = "0.48.0" 6228 - source = "registry+https://github.com/rust-lang/crates.io-index" 6229 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 6230 - 6231 - [[package]] 6232 - name = "windows_i686_gnu" 6233 - version = "0.52.4" 6234 - source = "registry+https://github.com/rust-lang/crates.io-index" 6235 - checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 6236 - 6237 - [[package]] 6238 - name = "windows_i686_msvc" 6239 - version = "0.42.2" 6240 - source = "registry+https://github.com/rust-lang/crates.io-index" 6241 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 6242 - 6243 - [[package]] 6244 - name = "windows_i686_msvc" 6245 - version = "0.48.0" 6246 - source = "registry+https://github.com/rust-lang/crates.io-index" 6247 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 6248 - 6249 - [[package]] 6250 - name = "windows_i686_msvc" 6251 - version = "0.52.4" 6252 - source = "registry+https://github.com/rust-lang/crates.io-index" 6253 - checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 6254 - 6255 - [[package]] 6256 - name = "windows_x86_64_gnu" 6257 - version = "0.42.2" 6258 - source = "registry+https://github.com/rust-lang/crates.io-index" 6259 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 6260 - 6261 - [[package]] 6262 - name = "windows_x86_64_gnu" 6263 - version = "0.48.0" 6264 - source = "registry+https://github.com/rust-lang/crates.io-index" 6265 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 6266 - 6267 - [[package]] 6268 - name = "windows_x86_64_gnu" 6269 - version = "0.52.4" 6270 - source = "registry+https://github.com/rust-lang/crates.io-index" 6271 - checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 6272 - 6273 - [[package]] 6274 - name = "windows_x86_64_gnullvm" 6275 - version = "0.42.2" 6276 - source = "registry+https://github.com/rust-lang/crates.io-index" 6277 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 6278 - 6279 - [[package]] 6280 - name = "windows_x86_64_gnullvm" 6281 - version = "0.48.0" 6282 - source = "registry+https://github.com/rust-lang/crates.io-index" 6283 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 6284 - 6285 - [[package]] 6286 - name = "windows_x86_64_gnullvm" 6287 - version = "0.52.4" 6288 - source = "registry+https://github.com/rust-lang/crates.io-index" 6289 - checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 6290 - 6291 - [[package]] 6292 - name = "windows_x86_64_msvc" 6293 - version = "0.42.2" 6294 - source = "registry+https://github.com/rust-lang/crates.io-index" 6295 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 6296 - 6297 - [[package]] 6298 - name = "windows_x86_64_msvc" 6299 - version = "0.48.0" 6300 - source = "registry+https://github.com/rust-lang/crates.io-index" 6301 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 6302 - 6303 - [[package]] 6304 - name = "windows_x86_64_msvc" 6305 - version = "0.52.4" 6306 - source = "registry+https://github.com/rust-lang/crates.io-index" 6307 - checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 6308 - 6309 - [[package]] 6310 - name = "winnow" 6311 - version = "0.5.40" 6312 - source = "registry+https://github.com/rust-lang/crates.io-index" 6313 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 6314 - dependencies = [ 6315 - "memchr", 6316 - ] 6317 - 6318 - [[package]] 6319 - name = "winnow" 6320 - version = "0.6.13" 6321 - source = "registry+https://github.com/rust-lang/crates.io-index" 6322 - checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" 6323 - dependencies = [ 6324 - "memchr", 6325 - ] 6326 - 6327 - [[package]] 6328 - name = "winreg" 6329 - version = "0.52.0" 6330 - source = "registry+https://github.com/rust-lang/crates.io-index" 6331 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 6332 - dependencies = [ 6333 - "cfg-if", 6334 - "windows-sys 0.48.0", 6335 - ] 6336 - 6337 - [[package]] 6338 - name = "wiremock" 6339 - version = "0.6.0" 6340 - source = "registry+https://github.com/rust-lang/crates.io-index" 6341 - checksum = "ec874e1eef0df2dcac546057fe5e29186f09c378181cd7b635b4b7bcc98e9d81" 6342 - dependencies = [ 6343 - "assert-json-diff", 6344 - "async-trait", 6345 - "base64 0.21.7", 6346 - "deadpool", 6347 - "futures", 6348 - "http 1.1.0", 6349 - "http-body-util", 6350 - "hyper", 6351 - "hyper-util", 6352 - "log", 6353 - "once_cell", 6354 - "regex", 6355 - "serde", 6356 - "serde_json", 6357 - "tokio", 6358 - "url", 6359 - ] 6360 - 6361 - [[package]] 6362 - name = "wyz" 6363 - version = "0.5.1" 6364 - source = "registry+https://github.com/rust-lang/crates.io-index" 6365 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 6366 - dependencies = [ 6367 - "tap", 6368 - ] 6369 - 6370 - [[package]] 6371 - name = "xattr" 6372 - version = "1.3.1" 6373 - source = "registry+https://github.com/rust-lang/crates.io-index" 6374 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 6375 - dependencies = [ 6376 - "libc", 6377 - "linux-raw-sys", 6378 - "rustix", 6379 - ] 6380 - 6381 - [[package]] 6382 - name = "xtask" 6383 - version = "1.11.3" 6384 - dependencies = [ 6385 - "anyhow", 6386 - "build-info", 6387 - "cargo_metadata", 6388 - "clap", 6389 - "futures-core", 6390 - "futures-util", 6391 - "reqwest", 6392 - "serde", 6393 - "serde_json", 6394 - "sha2", 6395 - "sysinfo", 6396 - "time", 6397 - "tokio", 6398 - "tracing", 6399 - "tracing-subscriber", 6400 - "tracing-trace", 6401 - "uuid", 6402 - ] 6403 - 6404 - [[package]] 6405 - name = "yada" 6406 - version = "0.5.1" 6407 - source = "registry+https://github.com/rust-lang/crates.io-index" 6408 - checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd" 6409 - 6410 - [[package]] 6411 - name = "yaup" 6412 - version = "0.3.1" 6413 - source = "registry+https://github.com/rust-lang/crates.io-index" 6414 - checksum = "b0144f1a16a199846cb21024da74edd930b43443463292f536b7110b4855b5c6" 6415 - dependencies = [ 6416 - "form_urlencoded", 6417 - "serde", 6418 - "thiserror", 6419 - ] 6420 - 6421 - [[package]] 6422 - name = "yoke" 6423 - version = "0.7.3" 6424 - source = "registry+https://github.com/rust-lang/crates.io-index" 6425 - checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" 6426 - dependencies = [ 6427 - "serde", 6428 - "stable_deref_trait", 6429 - "yoke-derive", 6430 - "zerofrom", 6431 - ] 6432 - 6433 - [[package]] 6434 - name = "yoke-derive" 6435 - version = "0.7.3" 6436 - source = "registry+https://github.com/rust-lang/crates.io-index" 6437 - checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" 6438 - dependencies = [ 6439 - "proc-macro2", 6440 - "quote", 6441 - "syn 2.0.60", 6442 - "synstructure", 6443 - ] 6444 - 6445 - [[package]] 6446 - name = "zerocopy" 6447 - version = "0.7.32" 6448 - source = "registry+https://github.com/rust-lang/crates.io-index" 6449 - checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 6450 - dependencies = [ 6451 - "zerocopy-derive", 6452 - ] 6453 - 6454 - [[package]] 6455 - name = "zerocopy-derive" 6456 - version = "0.7.32" 6457 - source = "registry+https://github.com/rust-lang/crates.io-index" 6458 - checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 6459 - dependencies = [ 6460 - "proc-macro2", 6461 - "quote", 6462 - "syn 2.0.60", 6463 - ] 6464 - 6465 - [[package]] 6466 - name = "zerofrom" 6467 - version = "0.1.3" 6468 - source = "registry+https://github.com/rust-lang/crates.io-index" 6469 - checksum = "655b0814c5c0b19ade497851070c640773304939a6c0fd5f5fb43da0696d05b7" 6470 - dependencies = [ 6471 - "zerofrom-derive", 6472 - ] 6473 - 6474 - [[package]] 6475 - name = "zerofrom-derive" 6476 - version = "0.1.3" 6477 - source = "registry+https://github.com/rust-lang/crates.io-index" 6478 - checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3" 6479 - dependencies = [ 6480 - "proc-macro2", 6481 - "quote", 6482 - "syn 2.0.60", 6483 - "synstructure", 6484 - ] 6485 - 6486 - [[package]] 6487 - name = "zeroize" 6488 - version = "1.8.1" 6489 - source = "registry+https://github.com/rust-lang/crates.io-index" 6490 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 6491 - dependencies = [ 6492 - "zeroize_derive", 6493 - ] 6494 - 6495 - [[package]] 6496 - name = "zeroize_derive" 6497 - version = "1.4.2" 6498 - source = "registry+https://github.com/rust-lang/crates.io-index" 6499 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 6500 - dependencies = [ 6501 - "proc-macro2", 6502 - "quote", 6503 - "syn 2.0.60", 6504 - ] 6505 - 6506 - [[package]] 6507 - name = "zip" 6508 - version = "1.1.4" 6509 - source = "registry+https://github.com/rust-lang/crates.io-index" 6510 - checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164" 6511 - dependencies = [ 6512 - "arbitrary", 6513 - "crc32fast", 6514 - "crossbeam-utils", 6515 - "displaydoc", 6516 - "indexmap", 6517 - "num_enum", 6518 - "thiserror", 6519 - ] 6520 - 6521 - [[package]] 6522 - name = "zip" 6523 - version = "2.1.3" 6524 - source = "registry+https://github.com/rust-lang/crates.io-index" 6525 - checksum = "775a2b471036342aa69bc5a602bc889cb0a06cda00477d0c69566757d5553d39" 6526 - dependencies = [ 6527 - "aes", 6528 - "arbitrary", 6529 - "bzip2", 6530 - "constant_time_eq", 6531 - "crc32fast", 6532 - "crossbeam-utils", 6533 - "deflate64", 6534 - "displaydoc", 6535 - "flate2", 6536 - "hmac", 6537 - "indexmap", 6538 - "lzma-rs", 6539 - "memchr", 6540 - "pbkdf2", 6541 - "rand", 6542 - "sha1", 6543 - "thiserror", 6544 - "time", 6545 - "zeroize", 6546 - "zopfli", 6547 - "zstd", 6548 - ] 6549 - 6550 - [[package]] 6551 - name = "zopfli" 6552 - version = "0.8.1" 6553 - source = "registry+https://github.com/rust-lang/crates.io-index" 6554 - checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 6555 - dependencies = [ 6556 - "bumpalo", 6557 - "crc32fast", 6558 - "lockfree-object-pool", 6559 - "log", 6560 - "once_cell", 6561 - "simd-adler32", 6562 - ] 6563 - 6564 - [[package]] 6565 - name = "zstd" 6566 - version = "0.13.2" 6567 - source = "registry+https://github.com/rust-lang/crates.io-index" 6568 - checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 6569 - dependencies = [ 6570 - "zstd-safe", 6571 - ] 6572 - 6573 - [[package]] 6574 - name = "zstd-safe" 6575 - version = "7.2.0" 6576 - source = "registry+https://github.com/rust-lang/crates.io-index" 6577 - checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa" 6578 - dependencies = [ 6579 - "zstd-sys", 6580 - ] 6581 - 6582 - [[package]] 6583 - name = "zstd-sys" 6584 - version = "2.0.10+zstd.1.5.6" 6585 - source = "registry+https://github.com/rust-lang/crates.io-index" 6586 - checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" 6587 - dependencies = [ 6588 - "cc", 6589 - "pkg-config", 6590 - ]
+2 -8
pkgs/by-name/me/meilisearch/package.nix
··· 22 22 23 23 cargoBuildFlags = [ "--package=meilisearch" ]; 24 24 25 - cargoLock = { 26 - lockFile = ./Cargo.lock; 27 - outputHashes = { 28 - "rhai-1.20.0" = "sha256-lirpciSMM+OJh6Z4Ok3nZyJSdP8SNyUG15T9QqPNjII="; 29 - "hf-hub-0.3.2" = "sha256-tsn76b+/HRvPnZ7cWd8SBcEdnMPtjUEIRJipOJUbz54="; 30 - "tokenizers-0.15.2" = "sha256-lWvCu2hDJFzK6IUBJ4yeL4eZkOA08LHEMfiKXVvkog8="; 31 - }; 32 - }; 25 + useFetchCargoVendor = true; 26 + cargoHash = "sha256-cEJTokDJQuc9Le5+3ObMDNJmEhWEb+Qh0TV9xZkD9D8="; 33 27 34 28 # Default features include mini dashboard which downloads something from the internet. 35 29 buildNoDefaultFeatures = true;
+16
pkgs/by-name/mi/mistral-rs/no-native-cpu.patch
··· 1 + diff --git a/.cargo/config.toml b/.cargo/config.toml 2 + index 4abaaa83d..edc4d6710 100644 3 + --- a/.cargo/config.toml 4 + +++ b/.cargo/config.toml 5 + @@ -1,12 +1,5 @@ 6 + -[target.x86_64-unknown-linux-gnu] 7 + -rustflags = ["-C", "target-cpu=native"] 8 + - 9 + -[target.aarch64-apple-darwin] 10 + -[build] 11 + -rustflags = ["-C", "target-cpu=native"] 12 + - 13 + [target.wasm32-unknown-unknown] 14 + rustflags = ["-C", "target-feature=+simd128"] 15 + 16 + [target.x86_64-apple-darwin]
+4
pkgs/by-name/mi/mistral-rs/package.nix
··· 79 79 hash = "sha256-mkxgssJUBtM1DYOhFfj8YKlW61/gd0cgPtMze7YZ9L8="; 80 80 }; 81 81 82 + patches = [ 83 + ./no-native-cpu.patch 84 + ]; 85 + 82 86 useFetchCargoVendor = true; 83 87 cargoHash = "sha256-YGGtS8gJJQKIgXxMWjO05ikSVdfVNs+cORbJ+Wf88y4="; 84 88
+2 -2
pkgs/by-name/ne/netscanner/package.nix
··· 7 7 }: 8 8 let 9 9 pname = "netscanner"; 10 - version = "0.6.2"; 10 + version = "0.6.3"; 11 11 in 12 12 rustPlatform.buildRustPackage { 13 13 inherit pname version; ··· 18 18 owner = "Chleba"; 19 19 repo = "netscanner"; 20 20 tag = "v${version}"; 21 - hash = "sha256-/8UhnJ4ZPaJ+CQPCeKr1uH0Iw6A4/DARiSukK6+ZZeY="; 21 + hash = "sha256-z39450ebIBHwdiC1FLF6v23la45ad5h5iupF6PAAjzc="; 22 22 }; 23 23 24 24 useFetchCargoVendor = true;
+3 -3
pkgs/by-name/no/node-pre-gyp/package.nix
··· 6 6 7 7 buildNpmPackage rec { 8 8 pname = "node-pre-gyp"; 9 - version = "1.0.11"; 9 + version = "2.0.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mapbox"; 13 13 repo = "node-pre-gyp"; 14 14 tag = "v${version}"; 15 - hash = "sha256-O0PLEy2bEIrypaC+WyQJI5kfkqBBps029CujBKkzZ6o="; 15 + hash = "sha256-i7iBy+X9zBKrrbIwVa61y9cbmHJmqeacXrZk+XGRok8="; 16 16 }; 17 17 18 - npmDepsHash = "sha256-pZEnyovFp+wOz7D73JpNfEsVNkukPe9sGt1oIO8Tvnc="; 18 + npmDepsHash = "sha256-0Xa5bByTskrQ8v2O1FUxtQzRb1ZEV0TvUhe8hh05QHI="; 19 19 20 20 dontNpmBuild = true; 21 21
+2 -2
pkgs/by-name/op/openjfx/23/source.json
··· 1 1 { 2 - "hash": "sha256-H3BPLo7yKWBiiI8sd3wkLJDN9h6jbWj5119cs2YHLwU=", 2 + "hash": "sha256-nJd8X+bj/jWy90GAeSdXmG23+K14iwpWBIJKZMq8UMQ=", 3 3 "owner": "openjdk", 4 4 "repo": "jfx23u", 5 - "rev": "refs/tags/23.0.1+4" 5 + "rev": "refs/tags/23.0.2+3" 6 6 }
+2 -2
pkgs/by-name/pm/pmbootstrap/package.nix
··· 15 15 16 16 python3Packages.buildPythonApplication rec { 17 17 pname = "pmbootstrap"; 18 - version = "3.3.1"; 18 + version = "3.3.2"; 19 19 pyproject = true; 20 20 21 21 src = fetchFromGitLab { 22 22 owner = "postmarketOS"; 23 23 repo = pname; 24 24 tag = version; 25 - hash = "sha256-2xeUuaxHS2mHuBN3EWGNZwn4S6aRmF6cUQI4LWeXLkE="; 25 + hash = "sha256-A/hWJwyx/k9+NNOJBuor2qQi5gRB3Rpp5qnRloFM0FM="; 26 26 domain = "gitlab.postmarketos.org"; 27 27 }; 28 28
-3297
pkgs/by-name/po/pop-launcher/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.24.1" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler2" 16 - version = "2.0.0" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 - 20 - [[package]] 21 - name = "aho-corasick" 22 - version = "1.1.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25 - dependencies = [ 26 - "memchr", 27 - ] 28 - 29 - [[package]] 30 - name = "android-tzdata" 31 - version = "0.1.1" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 34 - 35 - [[package]] 36 - name = "android_system_properties" 37 - version = "0.1.5" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 40 - dependencies = [ 41 - "libc", 42 - ] 43 - 44 - [[package]] 45 - name = "anyhow" 46 - version = "1.0.90" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" 49 - 50 - [[package]] 51 - name = "async-broadcast" 52 - version = "0.7.1" 53 - source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" 55 - dependencies = [ 56 - "event-listener 5.3.1", 57 - "event-listener-strategy", 58 - "futures-core", 59 - "pin-project-lite", 60 - ] 61 - 62 - [[package]] 63 - name = "async-channel" 64 - version = "2.3.1" 65 - source = "registry+https://github.com/rust-lang/crates.io-index" 66 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 67 - dependencies = [ 68 - "concurrent-queue", 69 - "event-listener-strategy", 70 - "futures-core", 71 - "pin-project-lite", 72 - ] 73 - 74 - [[package]] 75 - name = "async-executor" 76 - version = "1.13.1" 77 - source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 79 - dependencies = [ 80 - "async-task", 81 - "concurrent-queue", 82 - "fastrand 2.1.1", 83 - "futures-lite 2.3.0", 84 - "slab", 85 - ] 86 - 87 - [[package]] 88 - name = "async-fs" 89 - version = "2.1.2" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" 92 - dependencies = [ 93 - "async-lock 3.4.0", 94 - "blocking", 95 - "futures-lite 2.3.0", 96 - ] 97 - 98 - [[package]] 99 - name = "async-io" 100 - version = "1.13.0" 101 - source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 103 - dependencies = [ 104 - "async-lock 2.8.0", 105 - "autocfg", 106 - "cfg-if", 107 - "concurrent-queue", 108 - "futures-lite 1.13.0", 109 - "log", 110 - "parking", 111 - "polling 2.8.0", 112 - "rustix 0.37.27", 113 - "slab", 114 - "socket2 0.4.10", 115 - "waker-fn", 116 - ] 117 - 118 - [[package]] 119 - name = "async-io" 120 - version = "2.3.4" 121 - source = "registry+https://github.com/rust-lang/crates.io-index" 122 - checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" 123 - dependencies = [ 124 - "async-lock 3.4.0", 125 - "cfg-if", 126 - "concurrent-queue", 127 - "futures-io", 128 - "futures-lite 2.3.0", 129 - "parking", 130 - "polling 3.7.3", 131 - "rustix 0.38.37", 132 - "slab", 133 - "tracing", 134 - "windows-sys 0.59.0", 135 - ] 136 - 137 - [[package]] 138 - name = "async-lock" 139 - version = "2.8.0" 140 - source = "registry+https://github.com/rust-lang/crates.io-index" 141 - checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 142 - dependencies = [ 143 - "event-listener 2.5.3", 144 - ] 145 - 146 - [[package]] 147 - name = "async-lock" 148 - version = "3.4.0" 149 - source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 151 - dependencies = [ 152 - "event-listener 5.3.1", 153 - "event-listener-strategy", 154 - "pin-project-lite", 155 - ] 156 - 157 - [[package]] 158 - name = "async-oneshot" 159 - version = "0.5.9" 160 - source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "ae47de2a02d543205f3f5457a90b6ecbc9494db70557bd29590ec8f1ddff5463" 162 - dependencies = [ 163 - "futures-micro", 164 - ] 165 - 166 - [[package]] 167 - name = "async-pidfd" 168 - version = "0.1.4" 169 - source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "12177058299bb8e3507695941b6d0d7dc0e4e6515b8bc1bf4609d9e32ef51799" 171 - dependencies = [ 172 - "async-io 1.13.0", 173 - "libc", 174 - ] 175 - 176 - [[package]] 177 - name = "async-process" 178 - version = "2.3.0" 179 - source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" 181 - dependencies = [ 182 - "async-channel", 183 - "async-io 2.3.4", 184 - "async-lock 3.4.0", 185 - "async-signal", 186 - "async-task", 187 - "blocking", 188 - "cfg-if", 189 - "event-listener 5.3.1", 190 - "futures-lite 2.3.0", 191 - "rustix 0.38.37", 192 - "tracing", 193 - ] 194 - 195 - [[package]] 196 - name = "async-recursion" 197 - version = "1.1.1" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 200 - dependencies = [ 201 - "proc-macro2", 202 - "quote", 203 - "syn 2.0.79", 204 - ] 205 - 206 - [[package]] 207 - name = "async-signal" 208 - version = "0.2.10" 209 - source = "registry+https://github.com/rust-lang/crates.io-index" 210 - checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" 211 - dependencies = [ 212 - "async-io 2.3.4", 213 - "async-lock 3.4.0", 214 - "atomic-waker", 215 - "cfg-if", 216 - "futures-core", 217 - "futures-io", 218 - "rustix 0.38.37", 219 - "signal-hook-registry", 220 - "slab", 221 - "windows-sys 0.59.0", 222 - ] 223 - 224 - [[package]] 225 - name = "async-task" 226 - version = "4.7.1" 227 - source = "registry+https://github.com/rust-lang/crates.io-index" 228 - checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 229 - 230 - [[package]] 231 - name = "async-trait" 232 - version = "0.1.83" 233 - source = "registry+https://github.com/rust-lang/crates.io-index" 234 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 235 - dependencies = [ 236 - "proc-macro2", 237 - "quote", 238 - "syn 2.0.79", 239 - ] 240 - 241 - [[package]] 242 - name = "atomic-waker" 243 - version = "1.1.2" 244 - source = "registry+https://github.com/rust-lang/crates.io-index" 245 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 246 - 247 - [[package]] 248 - name = "autocfg" 249 - version = "1.4.0" 250 - source = "registry+https://github.com/rust-lang/crates.io-index" 251 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 252 - 253 - [[package]] 254 - name = "backtrace" 255 - version = "0.3.74" 256 - source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 258 - dependencies = [ 259 - "addr2line", 260 - "cfg-if", 261 - "libc", 262 - "miniz_oxide", 263 - "object", 264 - "rustc-demangle", 265 - "windows-targets 0.52.6", 266 - ] 267 - 268 - [[package]] 269 - name = "base64" 270 - version = "0.21.7" 271 - source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 273 - 274 - [[package]] 275 - name = "base64" 276 - version = "0.22.1" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 279 - 280 - [[package]] 281 - name = "bitflags" 282 - version = "1.3.2" 283 - source = "registry+https://github.com/rust-lang/crates.io-index" 284 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 285 - 286 - [[package]] 287 - name = "bitflags" 288 - version = "2.6.0" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 291 - dependencies = [ 292 - "serde", 293 - ] 294 - 295 - [[package]] 296 - name = "block" 297 - version = "0.1.6" 298 - source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 300 - 301 - [[package]] 302 - name = "block-buffer" 303 - version = "0.10.4" 304 - source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 306 - dependencies = [ 307 - "generic-array", 308 - ] 309 - 310 - [[package]] 311 - name = "blocking" 312 - version = "1.6.1" 313 - source = "registry+https://github.com/rust-lang/crates.io-index" 314 - checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 315 - dependencies = [ 316 - "async-channel", 317 - "async-task", 318 - "futures-io", 319 - "futures-lite 2.3.0", 320 - "piper", 321 - ] 322 - 323 - [[package]] 324 - name = "bumpalo" 325 - version = "3.16.0" 326 - source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 328 - 329 - [[package]] 330 - name = "bytemuck" 331 - version = "1.16.0" 332 - source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5" 334 - dependencies = [ 335 - "bytemuck_derive", 336 - ] 337 - 338 - [[package]] 339 - name = "bytemuck_derive" 340 - version = "1.7.0" 341 - source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b" 343 - dependencies = [ 344 - "proc-macro2", 345 - "quote", 346 - "syn 2.0.79", 347 - ] 348 - 349 - [[package]] 350 - name = "byteorder" 351 - version = "1.5.0" 352 - source = "registry+https://github.com/rust-lang/crates.io-index" 353 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 354 - 355 - [[package]] 356 - name = "bytes" 357 - version = "0.5.6" 358 - source = "registry+https://github.com/rust-lang/crates.io-index" 359 - checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" 360 - 361 - [[package]] 362 - name = "bytes" 363 - version = "1.7.2" 364 - source = "registry+https://github.com/rust-lang/crates.io-index" 365 - checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" 366 - 367 - [[package]] 368 - name = "calloop" 369 - version = "0.13.0" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" 372 - dependencies = [ 373 - "bitflags 2.6.0", 374 - "log", 375 - "polling 3.7.3", 376 - "rustix 0.38.37", 377 - "slab", 378 - "thiserror", 379 - ] 380 - 381 - [[package]] 382 - name = "calloop-wayland-source" 383 - version = "0.3.0" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" 386 - dependencies = [ 387 - "calloop", 388 - "rustix 0.38.37", 389 - "wayland-backend", 390 - "wayland-client", 391 - ] 392 - 393 - [[package]] 394 - name = "cc" 395 - version = "1.1.28" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "2e80e3b6a3ab07840e1cae9b0666a63970dc28e8ed5ffbcdacbfc760c281bfc1" 398 - dependencies = [ 399 - "shlex", 400 - ] 401 - 402 - [[package]] 403 - name = "cfb" 404 - version = "0.7.3" 405 - source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 407 - dependencies = [ 408 - "byteorder", 409 - "fnv", 410 - "uuid", 411 - ] 412 - 413 - [[package]] 414 - name = "cfg-if" 415 - version = "1.0.0" 416 - source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 418 - 419 - [[package]] 420 - name = "cfg_aliases" 421 - version = "0.2.1" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 424 - 425 - [[package]] 426 - name = "chrono" 427 - version = "0.4.38" 428 - source = "registry+https://github.com/rust-lang/crates.io-index" 429 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 430 - dependencies = [ 431 - "android-tzdata", 432 - "iana-time-zone", 433 - "js-sys", 434 - "num-traits", 435 - "serde", 436 - "wasm-bindgen", 437 - "windows-targets 0.52.6", 438 - ] 439 - 440 - [[package]] 441 - name = "concurrent-queue" 442 - version = "2.5.0" 443 - source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 445 - dependencies = [ 446 - "crossbeam-utils", 447 - ] 448 - 449 - [[package]] 450 - name = "const_format" 451 - version = "0.2.33" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b" 454 - dependencies = [ 455 - "const_format_proc_macros", 456 - ] 457 - 458 - [[package]] 459 - name = "const_format_proc_macros" 460 - version = "0.2.33" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1" 463 - dependencies = [ 464 - "proc-macro2", 465 - "quote", 466 - "unicode-xid", 467 - ] 468 - 469 - [[package]] 470 - name = "core-foundation-sys" 471 - version = "0.8.7" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 474 - 475 - [[package]] 476 - name = "cosmic-client-toolkit" 477 - version = "0.1.0" 478 - source = "git+https://github.com/pop-os/cosmic-protocols#91aeb55052a8e6e15a7ddd53e039a9350f16fa69" 479 - dependencies = [ 480 - "cosmic-protocols", 481 - "libc", 482 - "smithay-client-toolkit", 483 - "wayland-client", 484 - ] 485 - 486 - [[package]] 487 - name = "cosmic-protocols" 488 - version = "0.1.0" 489 - source = "git+https://github.com/pop-os/cosmic-protocols#91aeb55052a8e6e15a7ddd53e039a9350f16fa69" 490 - dependencies = [ 491 - "bitflags 2.6.0", 492 - "wayland-backend", 493 - "wayland-client", 494 - "wayland-protocols", 495 - "wayland-protocols-wlr", 496 - "wayland-scanner", 497 - "wayland-server", 498 - ] 499 - 500 - [[package]] 501 - name = "cpufeatures" 502 - version = "0.2.14" 503 - source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 505 - dependencies = [ 506 - "libc", 507 - ] 508 - 509 - [[package]] 510 - name = "crossbeam-utils" 511 - version = "0.8.20" 512 - source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 514 - 515 - [[package]] 516 - name = "crypto-common" 517 - version = "0.1.6" 518 - source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 520 - dependencies = [ 521 - "generic-array", 522 - "typenum", 523 - ] 524 - 525 - [[package]] 526 - name = "cursor-icon" 527 - version = "1.1.0" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 530 - 531 - [[package]] 532 - name = "darling" 533 - version = "0.20.10" 534 - source = "registry+https://github.com/rust-lang/crates.io-index" 535 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 536 - dependencies = [ 537 - "darling_core", 538 - "darling_macro", 539 - ] 540 - 541 - [[package]] 542 - name = "darling_core" 543 - version = "0.20.10" 544 - source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 546 - dependencies = [ 547 - "fnv", 548 - "ident_case", 549 - "proc-macro2", 550 - "quote", 551 - "strsim", 552 - "syn 2.0.79", 553 - ] 554 - 555 - [[package]] 556 - name = "darling_macro" 557 - version = "0.20.10" 558 - source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 560 - dependencies = [ 561 - "darling_core", 562 - "quote", 563 - "syn 2.0.79", 564 - ] 565 - 566 - [[package]] 567 - name = "deranged" 568 - version = "0.3.11" 569 - source = "registry+https://github.com/rust-lang/crates.io-index" 570 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 571 - dependencies = [ 572 - "powerfmt", 573 - "serde", 574 - ] 575 - 576 - [[package]] 577 - name = "digest" 578 - version = "0.10.7" 579 - source = "registry+https://github.com/rust-lang/crates.io-index" 580 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 581 - dependencies = [ 582 - "block-buffer", 583 - "crypto-common", 584 - ] 585 - 586 - [[package]] 587 - name = "dirs" 588 - version = "5.0.1" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 591 - dependencies = [ 592 - "dirs-sys", 593 - ] 594 - 595 - [[package]] 596 - name = "dirs-sys" 597 - version = "0.4.1" 598 - source = "registry+https://github.com/rust-lang/crates.io-index" 599 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 600 - dependencies = [ 601 - "libc", 602 - "option-ext", 603 - "redox_users", 604 - "windows-sys 0.48.0", 605 - ] 606 - 607 - [[package]] 608 - name = "dlib" 609 - version = "0.5.2" 610 - source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 612 - dependencies = [ 613 - "libloading", 614 - ] 615 - 616 - [[package]] 617 - name = "downcast-rs" 618 - version = "1.2.1" 619 - source = "registry+https://github.com/rust-lang/crates.io-index" 620 - checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 621 - 622 - [[package]] 623 - name = "endi" 624 - version = "1.1.0" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 627 - 628 - [[package]] 629 - name = "enumflags2" 630 - version = "0.7.10" 631 - source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" 633 - dependencies = [ 634 - "enumflags2_derive", 635 - "serde", 636 - ] 637 - 638 - [[package]] 639 - name = "enumflags2_derive" 640 - version = "0.7.10" 641 - source = "registry+https://github.com/rust-lang/crates.io-index" 642 - checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" 643 - dependencies = [ 644 - "proc-macro2", 645 - "quote", 646 - "syn 2.0.79", 647 - ] 648 - 649 - [[package]] 650 - name = "equivalent" 651 - version = "1.0.1" 652 - source = "registry+https://github.com/rust-lang/crates.io-index" 653 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 654 - 655 - [[package]] 656 - name = "errno" 657 - version = "0.3.9" 658 - source = "registry+https://github.com/rust-lang/crates.io-index" 659 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 660 - dependencies = [ 661 - "libc", 662 - "windows-sys 0.52.0", 663 - ] 664 - 665 - [[package]] 666 - name = "event-listener" 667 - version = "2.5.3" 668 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 670 - 671 - [[package]] 672 - name = "event-listener" 673 - version = "5.3.1" 674 - source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 676 - dependencies = [ 677 - "concurrent-queue", 678 - "parking", 679 - "pin-project-lite", 680 - ] 681 - 682 - [[package]] 683 - name = "event-listener-strategy" 684 - version = "0.5.2" 685 - source = "registry+https://github.com/rust-lang/crates.io-index" 686 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 687 - dependencies = [ 688 - "event-listener 5.3.1", 689 - "pin-project-lite", 690 - ] 691 - 692 - [[package]] 693 - name = "fastrand" 694 - version = "1.9.0" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 697 - dependencies = [ 698 - "instant", 699 - ] 700 - 701 - [[package]] 702 - name = "fastrand" 703 - version = "2.1.1" 704 - source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 706 - 707 - [[package]] 708 - name = "flume" 709 - version = "0.11.0" 710 - source = "registry+https://github.com/rust-lang/crates.io-index" 711 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 712 - dependencies = [ 713 - "futures-core", 714 - "futures-sink", 715 - "nanorand", 716 - "spin", 717 - ] 718 - 719 - [[package]] 720 - name = "fnv" 721 - version = "1.0.7" 722 - source = "registry+https://github.com/rust-lang/crates.io-index" 723 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 724 - 725 - [[package]] 726 - name = "fork" 727 - version = "0.1.23" 728 - source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "60e74d3423998a57e9d906e49252fb79eb4a04d5cdfe188fb1b7ff9fc076a8ed" 730 - dependencies = [ 731 - "libc", 732 - ] 733 - 734 - [[package]] 735 - name = "fork" 736 - version = "0.2.0" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "05dc8b302e04a1c27f4fe694439ef0f29779ca4edc205b7b58f00db04e29656d" 739 - dependencies = [ 740 - "libc", 741 - ] 742 - 743 - [[package]] 744 - name = "form_urlencoded" 745 - version = "1.2.1" 746 - source = "registry+https://github.com/rust-lang/crates.io-index" 747 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 748 - dependencies = [ 749 - "percent-encoding", 750 - ] 751 - 752 - [[package]] 753 - name = "freedesktop-desktop-entry" 754 - version = "0.6.2" 755 - source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "e33809936d2fa9ac78750c5c04696a7aabdb09f928454957c77a2c8247f5ff98" 757 - dependencies = [ 758 - "dirs", 759 - "gettext-rs", 760 - "log", 761 - "memchr", 762 - "strsim", 763 - "textdistance", 764 - "thiserror", 765 - "xdg", 766 - ] 767 - 768 - [[package]] 769 - name = "futures" 770 - version = "0.3.31" 771 - source = "registry+https://github.com/rust-lang/crates.io-index" 772 - checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 773 - dependencies = [ 774 - "futures-channel", 775 - "futures-core", 776 - "futures-executor", 777 - "futures-io", 778 - "futures-sink", 779 - "futures-task", 780 - "futures-util", 781 - ] 782 - 783 - [[package]] 784 - name = "futures-channel" 785 - version = "0.3.31" 786 - source = "registry+https://github.com/rust-lang/crates.io-index" 787 - checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 788 - dependencies = [ 789 - "futures-core", 790 - "futures-sink", 791 - ] 792 - 793 - [[package]] 794 - name = "futures-core" 795 - version = "0.3.31" 796 - source = "registry+https://github.com/rust-lang/crates.io-index" 797 - checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 798 - 799 - [[package]] 800 - name = "futures-executor" 801 - version = "0.3.31" 802 - source = "registry+https://github.com/rust-lang/crates.io-index" 803 - checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 804 - dependencies = [ 805 - "futures-core", 806 - "futures-task", 807 - "futures-util", 808 - ] 809 - 810 - [[package]] 811 - name = "futures-io" 812 - version = "0.3.31" 813 - source = "registry+https://github.com/rust-lang/crates.io-index" 814 - checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 815 - 816 - [[package]] 817 - name = "futures-lite" 818 - version = "1.13.0" 819 - source = "registry+https://github.com/rust-lang/crates.io-index" 820 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 821 - dependencies = [ 822 - "fastrand 1.9.0", 823 - "futures-core", 824 - "futures-io", 825 - "memchr", 826 - "parking", 827 - "pin-project-lite", 828 - "waker-fn", 829 - ] 830 - 831 - [[package]] 832 - name = "futures-lite" 833 - version = "2.3.0" 834 - source = "registry+https://github.com/rust-lang/crates.io-index" 835 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 836 - dependencies = [ 837 - "fastrand 2.1.1", 838 - "futures-core", 839 - "futures-io", 840 - "parking", 841 - "pin-project-lite", 842 - ] 843 - 844 - [[package]] 845 - name = "futures-macro" 846 - version = "0.3.31" 847 - source = "registry+https://github.com/rust-lang/crates.io-index" 848 - checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 849 - dependencies = [ 850 - "proc-macro2", 851 - "quote", 852 - "syn 2.0.79", 853 - ] 854 - 855 - [[package]] 856 - name = "futures-micro" 857 - version = "0.5.0" 858 - source = "registry+https://github.com/rust-lang/crates.io-index" 859 - checksum = "b460264b3593d68b16a7bc35f7bc226ddfebdf9a1c8db1ed95d5cc6b7168c826" 860 - dependencies = [ 861 - "pin-project-lite", 862 - ] 863 - 864 - [[package]] 865 - name = "futures-sink" 866 - version = "0.3.31" 867 - source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 869 - 870 - [[package]] 871 - name = "futures-task" 872 - version = "0.3.31" 873 - source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 875 - 876 - [[package]] 877 - name = "futures-util" 878 - version = "0.3.31" 879 - source = "registry+https://github.com/rust-lang/crates.io-index" 880 - checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 881 - dependencies = [ 882 - "futures-channel", 883 - "futures-core", 884 - "futures-io", 885 - "futures-macro", 886 - "futures-sink", 887 - "futures-task", 888 - "memchr", 889 - "pin-project-lite", 890 - "pin-utils", 891 - "slab", 892 - ] 893 - 894 - [[package]] 895 - name = "futures_codec" 896 - version = "0.4.1" 897 - source = "registry+https://github.com/rust-lang/crates.io-index" 898 - checksum = "ce54d63f8b0c75023ed920d46fd71d0cbbb830b0ee012726b5b4f506fb6dea5b" 899 - dependencies = [ 900 - "bytes 0.5.6", 901 - "futures", 902 - "memchr", 903 - "pin-project", 904 - ] 905 - 906 - [[package]] 907 - name = "gen-z" 908 - version = "0.1.0" 909 - source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "0e87038e64f38cb7fcd57f54c8d6654ad65712babbf70f38d1834d3150ad2415" 911 - dependencies = [ 912 - "futures", 913 - ] 914 - 915 - [[package]] 916 - name = "generic-array" 917 - version = "0.14.7" 918 - source = "registry+https://github.com/rust-lang/crates.io-index" 919 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 920 - dependencies = [ 921 - "typenum", 922 - "version_check", 923 - ] 924 - 925 - [[package]] 926 - name = "getrandom" 927 - version = "0.2.15" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 930 - dependencies = [ 931 - "cfg-if", 932 - "js-sys", 933 - "libc", 934 - "wasi", 935 - "wasm-bindgen", 936 - ] 937 - 938 - [[package]] 939 - name = "gettext-rs" 940 - version = "0.7.0" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "e49ea8a8fad198aaa1f9655a2524b64b70eb06b2f3ff37da407566c93054f364" 943 - dependencies = [ 944 - "gettext-sys", 945 - "locale_config", 946 - ] 947 - 948 - [[package]] 949 - name = "gettext-sys" 950 - version = "0.21.3" 951 - source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "c63ce2e00f56a206778276704bbe38564c8695249fdc8f354b4ef71c57c3839d" 953 - dependencies = [ 954 - "cc", 955 - "temp-dir", 956 - ] 957 - 958 - [[package]] 959 - name = "gimli" 960 - version = "0.31.0" 961 - source = "registry+https://github.com/rust-lang/crates.io-index" 962 - checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" 963 - 964 - [[package]] 965 - name = "hashbrown" 966 - version = "0.12.3" 967 - source = "registry+https://github.com/rust-lang/crates.io-index" 968 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 969 - 970 - [[package]] 971 - name = "hashbrown" 972 - version = "0.15.0" 973 - source = "registry+https://github.com/rust-lang/crates.io-index" 974 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 975 - 976 - [[package]] 977 - name = "hermit-abi" 978 - version = "0.3.9" 979 - source = "registry+https://github.com/rust-lang/crates.io-index" 980 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 981 - 982 - [[package]] 983 - name = "hermit-abi" 984 - version = "0.4.0" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 987 - 988 - [[package]] 989 - name = "hex" 990 - version = "0.4.3" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 993 - 994 - [[package]] 995 - name = "http" 996 - version = "1.1.0" 997 - source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 999 - dependencies = [ 1000 - "bytes 1.7.2", 1001 - "fnv", 1002 - "itoa", 1003 - ] 1004 - 1005 - [[package]] 1006 - name = "http-body" 1007 - version = "1.0.1" 1008 - source = "registry+https://github.com/rust-lang/crates.io-index" 1009 - checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1010 - dependencies = [ 1011 - "bytes 1.7.2", 1012 - "http", 1013 - ] 1014 - 1015 - [[package]] 1016 - name = "http-body-util" 1017 - version = "0.1.2" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 1020 - dependencies = [ 1021 - "bytes 1.7.2", 1022 - "futures-util", 1023 - "http", 1024 - "http-body", 1025 - "pin-project-lite", 1026 - ] 1027 - 1028 - [[package]] 1029 - name = "httparse" 1030 - version = "1.9.4" 1031 - source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 1033 - 1034 - [[package]] 1035 - name = "human-sort" 1036 - version = "0.2.2" 1037 - source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "140a09c9305e6d5e557e2ed7cbc68e05765a7d4213975b87cb04920689cc6219" 1039 - 1040 - [[package]] 1041 - name = "human_format" 1042 - version = "1.1.0" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "5c3b1f728c459d27b12448862017b96ad4767b1ec2ec5e6434e99f1577f085b8" 1045 - 1046 - [[package]] 1047 - name = "hyper" 1048 - version = "1.4.1" 1049 - source = "registry+https://github.com/rust-lang/crates.io-index" 1050 - checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 1051 - dependencies = [ 1052 - "bytes 1.7.2", 1053 - "futures-channel", 1054 - "futures-util", 1055 - "http", 1056 - "http-body", 1057 - "httparse", 1058 - "itoa", 1059 - "pin-project-lite", 1060 - "smallvec", 1061 - "tokio", 1062 - "want", 1063 - ] 1064 - 1065 - [[package]] 1066 - name = "hyper-rustls" 1067 - version = "0.27.3" 1068 - source = "registry+https://github.com/rust-lang/crates.io-index" 1069 - checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" 1070 - dependencies = [ 1071 - "futures-util", 1072 - "http", 1073 - "hyper", 1074 - "hyper-util", 1075 - "rustls", 1076 - "rustls-pki-types", 1077 - "tokio", 1078 - "tokio-rustls", 1079 - "tower-service", 1080 - "webpki-roots", 1081 - ] 1082 - 1083 - [[package]] 1084 - name = "hyper-util" 1085 - version = "0.1.9" 1086 - source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" 1088 - dependencies = [ 1089 - "bytes 1.7.2", 1090 - "futures-channel", 1091 - "futures-util", 1092 - "http", 1093 - "http-body", 1094 - "hyper", 1095 - "pin-project-lite", 1096 - "socket2 0.5.7", 1097 - "tokio", 1098 - "tower-service", 1099 - "tracing", 1100 - ] 1101 - 1102 - [[package]] 1103 - name = "iana-time-zone" 1104 - version = "0.1.61" 1105 - source = "registry+https://github.com/rust-lang/crates.io-index" 1106 - checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 1107 - dependencies = [ 1108 - "android_system_properties", 1109 - "core-foundation-sys", 1110 - "iana-time-zone-haiku", 1111 - "js-sys", 1112 - "wasm-bindgen", 1113 - "windows-core", 1114 - ] 1115 - 1116 - [[package]] 1117 - name = "iana-time-zone-haiku" 1118 - version = "0.1.2" 1119 - source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1121 - dependencies = [ 1122 - "cc", 1123 - ] 1124 - 1125 - [[package]] 1126 - name = "ident_case" 1127 - version = "1.0.1" 1128 - source = "registry+https://github.com/rust-lang/crates.io-index" 1129 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1130 - 1131 - [[package]] 1132 - name = "idna" 1133 - version = "0.5.0" 1134 - source = "registry+https://github.com/rust-lang/crates.io-index" 1135 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1136 - dependencies = [ 1137 - "unicode-bidi", 1138 - "unicode-normalization", 1139 - ] 1140 - 1141 - [[package]] 1142 - name = "indexmap" 1143 - version = "1.9.3" 1144 - source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1146 - dependencies = [ 1147 - "autocfg", 1148 - "hashbrown 0.12.3", 1149 - "serde", 1150 - ] 1151 - 1152 - [[package]] 1153 - name = "indexmap" 1154 - version = "2.6.0" 1155 - source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 1157 - dependencies = [ 1158 - "equivalent", 1159 - "hashbrown 0.15.0", 1160 - "serde", 1161 - ] 1162 - 1163 - [[package]] 1164 - name = "infer" 1165 - version = "0.16.0" 1166 - source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847" 1168 - dependencies = [ 1169 - "cfb", 1170 - ] 1171 - 1172 - [[package]] 1173 - name = "instant" 1174 - version = "0.1.13" 1175 - source = "registry+https://github.com/rust-lang/crates.io-index" 1176 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1177 - dependencies = [ 1178 - "cfg-if", 1179 - ] 1180 - 1181 - [[package]] 1182 - name = "io-lifetimes" 1183 - version = "1.0.11" 1184 - source = "registry+https://github.com/rust-lang/crates.io-index" 1185 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1186 - dependencies = [ 1187 - "hermit-abi 0.3.9", 1188 - "libc", 1189 - "windows-sys 0.48.0", 1190 - ] 1191 - 1192 - [[package]] 1193 - name = "io-lifetimes" 1194 - version = "2.0.3" 1195 - source = "registry+https://github.com/rust-lang/crates.io-index" 1196 - checksum = "5a611371471e98973dbcab4e0ec66c31a10bc356eeb4d54a0e05eac8158fe38c" 1197 - 1198 - [[package]] 1199 - name = "ipnet" 1200 - version = "2.10.0" 1201 - source = "registry+https://github.com/rust-lang/crates.io-index" 1202 - checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" 1203 - 1204 - [[package]] 1205 - name = "itoa" 1206 - version = "1.0.11" 1207 - source = "registry+https://github.com/rust-lang/crates.io-index" 1208 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1209 - 1210 - [[package]] 1211 - name = "js-sys" 1212 - version = "0.3.70" 1213 - source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" 1215 - dependencies = [ 1216 - "wasm-bindgen", 1217 - ] 1218 - 1219 - [[package]] 1220 - name = "lazy_static" 1221 - version = "1.4.0" 1222 - source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1224 - 1225 - [[package]] 1226 - name = "libc" 1227 - version = "0.2.161" 1228 - source = "registry+https://github.com/rust-lang/crates.io-index" 1229 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 1230 - 1231 - [[package]] 1232 - name = "libloading" 1233 - version = "0.8.3" 1234 - source = "registry+https://github.com/rust-lang/crates.io-index" 1235 - checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 1236 - dependencies = [ 1237 - "cfg-if", 1238 - "windows-targets 0.52.6", 1239 - ] 1240 - 1241 - [[package]] 1242 - name = "libmimalloc-sys" 1243 - version = "0.1.39" 1244 - source = "registry+https://github.com/rust-lang/crates.io-index" 1245 - checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44" 1246 - dependencies = [ 1247 - "cc", 1248 - "libc", 1249 - ] 1250 - 1251 - [[package]] 1252 - name = "libredox" 1253 - version = "0.1.3" 1254 - source = "registry+https://github.com/rust-lang/crates.io-index" 1255 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1256 - dependencies = [ 1257 - "bitflags 2.6.0", 1258 - "libc", 1259 - ] 1260 - 1261 - [[package]] 1262 - name = "linux-raw-sys" 1263 - version = "0.3.8" 1264 - source = "registry+https://github.com/rust-lang/crates.io-index" 1265 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1266 - 1267 - [[package]] 1268 - name = "linux-raw-sys" 1269 - version = "0.4.14" 1270 - source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1272 - 1273 - [[package]] 1274 - name = "locale_config" 1275 - version = "0.3.0" 1276 - source = "registry+https://github.com/rust-lang/crates.io-index" 1277 - checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934" 1278 - dependencies = [ 1279 - "lazy_static", 1280 - "objc", 1281 - "objc-foundation", 1282 - "regex", 1283 - "winapi", 1284 - ] 1285 - 1286 - [[package]] 1287 - name = "lock_api" 1288 - version = "0.4.12" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1291 - dependencies = [ 1292 - "autocfg", 1293 - "scopeguard", 1294 - ] 1295 - 1296 - [[package]] 1297 - name = "log" 1298 - version = "0.4.22" 1299 - source = "registry+https://github.com/rust-lang/crates.io-index" 1300 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1301 - 1302 - [[package]] 1303 - name = "malloc_buf" 1304 - version = "0.0.6" 1305 - source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1307 - dependencies = [ 1308 - "libc", 1309 - ] 1310 - 1311 - [[package]] 1312 - name = "matchers" 1313 - version = "0.1.0" 1314 - source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1316 - dependencies = [ 1317 - "regex-automata 0.1.10", 1318 - ] 1319 - 1320 - [[package]] 1321 - name = "memchr" 1322 - version = "2.7.4" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1325 - 1326 - [[package]] 1327 - name = "memmap2" 1328 - version = "0.8.0" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 1331 - dependencies = [ 1332 - "libc", 1333 - ] 1334 - 1335 - [[package]] 1336 - name = "memmap2" 1337 - version = "0.9.4" 1338 - source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1340 - dependencies = [ 1341 - "libc", 1342 - ] 1343 - 1344 - [[package]] 1345 - name = "memoffset" 1346 - version = "0.9.1" 1347 - source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1349 - dependencies = [ 1350 - "autocfg", 1351 - ] 1352 - 1353 - [[package]] 1354 - name = "mimalloc" 1355 - version = "0.1.43" 1356 - source = "registry+https://github.com/rust-lang/crates.io-index" 1357 - checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633" 1358 - dependencies = [ 1359 - "libmimalloc-sys", 1360 - ] 1361 - 1362 - [[package]] 1363 - name = "mime" 1364 - version = "0.3.17" 1365 - source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1367 - 1368 - [[package]] 1369 - name = "mime_guess" 1370 - version = "2.0.5" 1371 - source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1373 - dependencies = [ 1374 - "mime", 1375 - "unicase", 1376 - ] 1377 - 1378 - [[package]] 1379 - name = "miniz_oxide" 1380 - version = "0.8.0" 1381 - source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 1383 - dependencies = [ 1384 - "adler2", 1385 - ] 1386 - 1387 - [[package]] 1388 - name = "mio" 1389 - version = "1.0.2" 1390 - source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 1392 - dependencies = [ 1393 - "hermit-abi 0.3.9", 1394 - "libc", 1395 - "wasi", 1396 - "windows-sys 0.52.0", 1397 - ] 1398 - 1399 - [[package]] 1400 - name = "nanorand" 1401 - version = "0.7.0" 1402 - source = "registry+https://github.com/rust-lang/crates.io-index" 1403 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 1404 - dependencies = [ 1405 - "getrandom", 1406 - ] 1407 - 1408 - [[package]] 1409 - name = "new_mime_guess" 1410 - version = "4.0.4" 1411 - source = "registry+https://github.com/rust-lang/crates.io-index" 1412 - checksum = "02a2dfb3559d53e90b709376af1c379462f7fb3085a0177deb73e6ea0d99eff4" 1413 - dependencies = [ 1414 - "mime", 1415 - "unicase", 1416 - ] 1417 - 1418 - [[package]] 1419 - name = "nix" 1420 - version = "0.29.0" 1421 - source = "registry+https://github.com/rust-lang/crates.io-index" 1422 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 1423 - dependencies = [ 1424 - "bitflags 2.6.0", 1425 - "cfg-if", 1426 - "cfg_aliases", 1427 - "libc", 1428 - "memoffset", 1429 - ] 1430 - 1431 - [[package]] 1432 - name = "num-conv" 1433 - version = "0.1.0" 1434 - source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1436 - 1437 - [[package]] 1438 - name = "num-traits" 1439 - version = "0.2.19" 1440 - source = "registry+https://github.com/rust-lang/crates.io-index" 1441 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1442 - dependencies = [ 1443 - "autocfg", 1444 - ] 1445 - 1446 - [[package]] 1447 - name = "num_cpus" 1448 - version = "1.16.0" 1449 - source = "registry+https://github.com/rust-lang/crates.io-index" 1450 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1451 - dependencies = [ 1452 - "hermit-abi 0.3.9", 1453 - "libc", 1454 - ] 1455 - 1456 - [[package]] 1457 - name = "numtoa" 1458 - version = "0.2.4" 1459 - source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "6aa2c4e539b869820a2b82e1aef6ff40aa85e65decdd5185e83fb4b1249cd00f" 1461 - 1462 - [[package]] 1463 - name = "objc" 1464 - version = "0.2.7" 1465 - source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1467 - dependencies = [ 1468 - "malloc_buf", 1469 - ] 1470 - 1471 - [[package]] 1472 - name = "objc-foundation" 1473 - version = "0.1.1" 1474 - source = "registry+https://github.com/rust-lang/crates.io-index" 1475 - checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1476 - dependencies = [ 1477 - "block", 1478 - "objc", 1479 - "objc_id", 1480 - ] 1481 - 1482 - [[package]] 1483 - name = "objc_id" 1484 - version = "0.1.1" 1485 - source = "registry+https://github.com/rust-lang/crates.io-index" 1486 - checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1487 - dependencies = [ 1488 - "objc", 1489 - ] 1490 - 1491 - [[package]] 1492 - name = "object" 1493 - version = "0.36.4" 1494 - source = "registry+https://github.com/rust-lang/crates.io-index" 1495 - checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" 1496 - dependencies = [ 1497 - "memchr", 1498 - ] 1499 - 1500 - [[package]] 1501 - name = "once_cell" 1502 - version = "1.20.2" 1503 - source = "registry+https://github.com/rust-lang/crates.io-index" 1504 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 1505 - 1506 - [[package]] 1507 - name = "option-ext" 1508 - version = "0.2.0" 1509 - source = "registry+https://github.com/rust-lang/crates.io-index" 1510 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1511 - 1512 - [[package]] 1513 - name = "ordered-stream" 1514 - version = "0.2.0" 1515 - source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 1517 - dependencies = [ 1518 - "futures-core", 1519 - "pin-project-lite", 1520 - ] 1521 - 1522 - [[package]] 1523 - name = "parking" 1524 - version = "2.2.1" 1525 - source = "registry+https://github.com/rust-lang/crates.io-index" 1526 - checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1527 - 1528 - [[package]] 1529 - name = "percent-encoding" 1530 - version = "2.3.1" 1531 - source = "registry+https://github.com/rust-lang/crates.io-index" 1532 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1533 - 1534 - [[package]] 1535 - name = "pin-project" 1536 - version = "0.4.30" 1537 - source = "registry+https://github.com/rust-lang/crates.io-index" 1538 - checksum = "3ef0f924a5ee7ea9cbcea77529dba45f8a9ba9f622419fe3386ca581a3ae9d5a" 1539 - dependencies = [ 1540 - "pin-project-internal", 1541 - ] 1542 - 1543 - [[package]] 1544 - name = "pin-project-internal" 1545 - version = "0.4.30" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "851c8d0ce9bebe43790dedfc86614c23494ac9f423dd618d3a61fc693eafe61e" 1548 - dependencies = [ 1549 - "proc-macro2", 1550 - "quote", 1551 - "syn 1.0.109", 1552 - ] 1553 - 1554 - [[package]] 1555 - name = "pin-project-lite" 1556 - version = "0.2.14" 1557 - source = "registry+https://github.com/rust-lang/crates.io-index" 1558 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1559 - 1560 - [[package]] 1561 - name = "pin-utils" 1562 - version = "0.1.0" 1563 - source = "registry+https://github.com/rust-lang/crates.io-index" 1564 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1565 - 1566 - [[package]] 1567 - name = "piper" 1568 - version = "0.2.4" 1569 - source = "registry+https://github.com/rust-lang/crates.io-index" 1570 - checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 1571 - dependencies = [ 1572 - "atomic-waker", 1573 - "fastrand 2.1.1", 1574 - "futures-io", 1575 - ] 1576 - 1577 - [[package]] 1578 - name = "pkg-config" 1579 - version = "0.3.30" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1582 - 1583 - [[package]] 1584 - name = "polling" 1585 - version = "2.8.0" 1586 - source = "registry+https://github.com/rust-lang/crates.io-index" 1587 - checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 1588 - dependencies = [ 1589 - "autocfg", 1590 - "bitflags 1.3.2", 1591 - "cfg-if", 1592 - "concurrent-queue", 1593 - "libc", 1594 - "log", 1595 - "pin-project-lite", 1596 - "windows-sys 0.48.0", 1597 - ] 1598 - 1599 - [[package]] 1600 - name = "polling" 1601 - version = "3.7.3" 1602 - source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" 1604 - dependencies = [ 1605 - "cfg-if", 1606 - "concurrent-queue", 1607 - "hermit-abi 0.4.0", 1608 - "pin-project-lite", 1609 - "rustix 0.38.37", 1610 - "tracing", 1611 - "windows-sys 0.59.0", 1612 - ] 1613 - 1614 - [[package]] 1615 - name = "pop-launcher" 1616 - version = "1.2.4" 1617 - dependencies = [ 1618 - "const_format", 1619 - "dirs", 1620 - "futures", 1621 - "serde", 1622 - "serde_json", 1623 - "serde_with", 1624 - "tokio", 1625 - "tokio-stream", 1626 - ] 1627 - 1628 - [[package]] 1629 - name = "pop-launcher-bin" 1630 - version = "1.2.4" 1631 - dependencies = [ 1632 - "dirs", 1633 - "mimalloc", 1634 - "pop-launcher-toolkit", 1635 - "tokio", 1636 - "tracing", 1637 - "tracing-subscriber", 1638 - ] 1639 - 1640 - [[package]] 1641 - name = "pop-launcher-plugins" 1642 - version = "1.2.4" 1643 - dependencies = [ 1644 - "anyhow", 1645 - "async-pidfd", 1646 - "bytes 1.7.2", 1647 - "cosmic-client-toolkit", 1648 - "dirs", 1649 - "flume", 1650 - "fork 0.2.0", 1651 - "freedesktop-desktop-entry", 1652 - "futures", 1653 - "human-sort", 1654 - "human_format", 1655 - "new_mime_guess", 1656 - "pop-launcher", 1657 - "recently-used-xbel", 1658 - "regex", 1659 - "reqwest", 1660 - "ron", 1661 - "serde", 1662 - "serde_json", 1663 - "slab", 1664 - "smithay-client-toolkit", 1665 - "strsim", 1666 - "switcheroo-control", 1667 - "sysfs-class", 1668 - "tokio", 1669 - "tracing", 1670 - "url", 1671 - "urlencoding", 1672 - "zbus", 1673 - "zvariant", 1674 - ] 1675 - 1676 - [[package]] 1677 - name = "pop-launcher-service" 1678 - version = "1.2.4" 1679 - dependencies = [ 1680 - "anyhow", 1681 - "async-oneshot", 1682 - "async-trait", 1683 - "dirs", 1684 - "flume", 1685 - "futures", 1686 - "futures_codec", 1687 - "gen-z", 1688 - "num_cpus", 1689 - "pop-launcher", 1690 - "regex", 1691 - "ron", 1692 - "serde", 1693 - "serde_json", 1694 - "serde_with", 1695 - "slab", 1696 - "strsim", 1697 - "tokio", 1698 - "tokio-stream", 1699 - "toml", 1700 - "tracing", 1701 - ] 1702 - 1703 - [[package]] 1704 - name = "pop-launcher-toolkit" 1705 - version = "1.2.4" 1706 - dependencies = [ 1707 - "async-trait", 1708 - "dirs", 1709 - "fork 0.1.23", 1710 - "futures", 1711 - "pop-launcher", 1712 - "pop-launcher-plugins", 1713 - "pop-launcher-service", 1714 - "tokio", 1715 - "tracing", 1716 - "tracing-subscriber", 1717 - ] 1718 - 1719 - [[package]] 1720 - name = "powerfmt" 1721 - version = "0.2.0" 1722 - source = "registry+https://github.com/rust-lang/crates.io-index" 1723 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1724 - 1725 - [[package]] 1726 - name = "ppv-lite86" 1727 - version = "0.2.20" 1728 - source = "registry+https://github.com/rust-lang/crates.io-index" 1729 - checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 1730 - dependencies = [ 1731 - "zerocopy", 1732 - ] 1733 - 1734 - [[package]] 1735 - name = "proc-macro-crate" 1736 - version = "3.2.0" 1737 - source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" 1739 - dependencies = [ 1740 - "toml_edit", 1741 - ] 1742 - 1743 - [[package]] 1744 - name = "proc-macro2" 1745 - version = "1.0.87" 1746 - source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a" 1748 - dependencies = [ 1749 - "unicode-ident", 1750 - ] 1751 - 1752 - [[package]] 1753 - name = "quick-xml" 1754 - version = "0.31.0" 1755 - source = "registry+https://github.com/rust-lang/crates.io-index" 1756 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 1757 - dependencies = [ 1758 - "memchr", 1759 - ] 1760 - 1761 - [[package]] 1762 - name = "quick-xml" 1763 - version = "0.36.2" 1764 - source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" 1766 - dependencies = [ 1767 - "memchr", 1768 - "serde", 1769 - ] 1770 - 1771 - [[package]] 1772 - name = "quinn" 1773 - version = "0.11.5" 1774 - source = "registry+https://github.com/rust-lang/crates.io-index" 1775 - checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" 1776 - dependencies = [ 1777 - "bytes 1.7.2", 1778 - "pin-project-lite", 1779 - "quinn-proto", 1780 - "quinn-udp", 1781 - "rustc-hash", 1782 - "rustls", 1783 - "socket2 0.5.7", 1784 - "thiserror", 1785 - "tokio", 1786 - "tracing", 1787 - ] 1788 - 1789 - [[package]] 1790 - name = "quinn-proto" 1791 - version = "0.11.8" 1792 - source = "registry+https://github.com/rust-lang/crates.io-index" 1793 - checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 1794 - dependencies = [ 1795 - "bytes 1.7.2", 1796 - "rand", 1797 - "ring", 1798 - "rustc-hash", 1799 - "rustls", 1800 - "slab", 1801 - "thiserror", 1802 - "tinyvec", 1803 - "tracing", 1804 - ] 1805 - 1806 - [[package]] 1807 - name = "quinn-udp" 1808 - version = "0.5.5" 1809 - source = "registry+https://github.com/rust-lang/crates.io-index" 1810 - checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" 1811 - dependencies = [ 1812 - "libc", 1813 - "once_cell", 1814 - "socket2 0.5.7", 1815 - "tracing", 1816 - "windows-sys 0.59.0", 1817 - ] 1818 - 1819 - [[package]] 1820 - name = "quote" 1821 - version = "1.0.37" 1822 - source = "registry+https://github.com/rust-lang/crates.io-index" 1823 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 1824 - dependencies = [ 1825 - "proc-macro2", 1826 - ] 1827 - 1828 - [[package]] 1829 - name = "rand" 1830 - version = "0.8.5" 1831 - source = "registry+https://github.com/rust-lang/crates.io-index" 1832 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1833 - dependencies = [ 1834 - "libc", 1835 - "rand_chacha", 1836 - "rand_core", 1837 - ] 1838 - 1839 - [[package]] 1840 - name = "rand_chacha" 1841 - version = "0.3.1" 1842 - source = "registry+https://github.com/rust-lang/crates.io-index" 1843 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1844 - dependencies = [ 1845 - "ppv-lite86", 1846 - "rand_core", 1847 - ] 1848 - 1849 - [[package]] 1850 - name = "rand_core" 1851 - version = "0.6.4" 1852 - source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1854 - dependencies = [ 1855 - "getrandom", 1856 - ] 1857 - 1858 - [[package]] 1859 - name = "recently-used-xbel" 1860 - version = "1.1.0" 1861 - source = "registry+https://github.com/rust-lang/crates.io-index" 1862 - checksum = "079a81183e41e5cf17fd9ec55db30d6be6cddfad7fd619862efac27f1be28c9b" 1863 - dependencies = [ 1864 - "chrono", 1865 - "dirs", 1866 - "infer", 1867 - "mime_guess", 1868 - "quick-xml 0.36.2", 1869 - "serde", 1870 - "thiserror", 1871 - "url", 1872 - ] 1873 - 1874 - [[package]] 1875 - name = "redox_users" 1876 - version = "0.4.6" 1877 - source = "registry+https://github.com/rust-lang/crates.io-index" 1878 - checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 1879 - dependencies = [ 1880 - "getrandom", 1881 - "libredox", 1882 - "thiserror", 1883 - ] 1884 - 1885 - [[package]] 1886 - name = "regex" 1887 - version = "1.11.0" 1888 - source = "registry+https://github.com/rust-lang/crates.io-index" 1889 - checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 1890 - dependencies = [ 1891 - "aho-corasick", 1892 - "memchr", 1893 - "regex-automata 0.4.8", 1894 - "regex-syntax 0.8.5", 1895 - ] 1896 - 1897 - [[package]] 1898 - name = "regex-automata" 1899 - version = "0.1.10" 1900 - source = "registry+https://github.com/rust-lang/crates.io-index" 1901 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1902 - dependencies = [ 1903 - "regex-syntax 0.6.29", 1904 - ] 1905 - 1906 - [[package]] 1907 - name = "regex-automata" 1908 - version = "0.4.8" 1909 - source = "registry+https://github.com/rust-lang/crates.io-index" 1910 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 1911 - dependencies = [ 1912 - "aho-corasick", 1913 - "memchr", 1914 - "regex-syntax 0.8.5", 1915 - ] 1916 - 1917 - [[package]] 1918 - name = "regex-syntax" 1919 - version = "0.6.29" 1920 - source = "registry+https://github.com/rust-lang/crates.io-index" 1921 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1922 - 1923 - [[package]] 1924 - name = "regex-syntax" 1925 - version = "0.8.5" 1926 - source = "registry+https://github.com/rust-lang/crates.io-index" 1927 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1928 - 1929 - [[package]] 1930 - name = "reqwest" 1931 - version = "0.12.8" 1932 - source = "registry+https://github.com/rust-lang/crates.io-index" 1933 - checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" 1934 - dependencies = [ 1935 - "base64 0.22.1", 1936 - "bytes 1.7.2", 1937 - "futures-core", 1938 - "futures-util", 1939 - "http", 1940 - "http-body", 1941 - "http-body-util", 1942 - "hyper", 1943 - "hyper-rustls", 1944 - "hyper-util", 1945 - "ipnet", 1946 - "js-sys", 1947 - "log", 1948 - "mime", 1949 - "once_cell", 1950 - "percent-encoding", 1951 - "pin-project-lite", 1952 - "quinn", 1953 - "rustls", 1954 - "rustls-pemfile", 1955 - "rustls-pki-types", 1956 - "serde", 1957 - "serde_json", 1958 - "serde_urlencoded", 1959 - "sync_wrapper", 1960 - "tokio", 1961 - "tokio-rustls", 1962 - "tower-service", 1963 - "url", 1964 - "wasm-bindgen", 1965 - "wasm-bindgen-futures", 1966 - "web-sys", 1967 - "webpki-roots", 1968 - "windows-registry", 1969 - ] 1970 - 1971 - [[package]] 1972 - name = "ring" 1973 - version = "0.17.8" 1974 - source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 1976 - dependencies = [ 1977 - "cc", 1978 - "cfg-if", 1979 - "getrandom", 1980 - "libc", 1981 - "spin", 1982 - "untrusted", 1983 - "windows-sys 0.52.0", 1984 - ] 1985 - 1986 - [[package]] 1987 - name = "ron" 1988 - version = "0.8.1" 1989 - source = "registry+https://github.com/rust-lang/crates.io-index" 1990 - checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 1991 - dependencies = [ 1992 - "base64 0.21.7", 1993 - "bitflags 2.6.0", 1994 - "serde", 1995 - "serde_derive", 1996 - ] 1997 - 1998 - [[package]] 1999 - name = "rustc-demangle" 2000 - version = "0.1.24" 2001 - source = "registry+https://github.com/rust-lang/crates.io-index" 2002 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 2003 - 2004 - [[package]] 2005 - name = "rustc-hash" 2006 - version = "2.0.0" 2007 - source = "registry+https://github.com/rust-lang/crates.io-index" 2008 - checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 2009 - 2010 - [[package]] 2011 - name = "rustix" 2012 - version = "0.37.27" 2013 - source = "registry+https://github.com/rust-lang/crates.io-index" 2014 - checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 2015 - dependencies = [ 2016 - "bitflags 1.3.2", 2017 - "errno", 2018 - "io-lifetimes 1.0.11", 2019 - "libc", 2020 - "linux-raw-sys 0.3.8", 2021 - "windows-sys 0.48.0", 2022 - ] 2023 - 2024 - [[package]] 2025 - name = "rustix" 2026 - version = "0.38.37" 2027 - source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 2029 - dependencies = [ 2030 - "bitflags 2.6.0", 2031 - "errno", 2032 - "libc", 2033 - "linux-raw-sys 0.4.14", 2034 - "windows-sys 0.52.0", 2035 - ] 2036 - 2037 - [[package]] 2038 - name = "rustls" 2039 - version = "0.23.13" 2040 - source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8" 2042 - dependencies = [ 2043 - "once_cell", 2044 - "ring", 2045 - "rustls-pki-types", 2046 - "rustls-webpki", 2047 - "subtle", 2048 - "zeroize", 2049 - ] 2050 - 2051 - [[package]] 2052 - name = "rustls-pemfile" 2053 - version = "2.1.3" 2054 - source = "registry+https://github.com/rust-lang/crates.io-index" 2055 - checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" 2056 - dependencies = [ 2057 - "base64 0.22.1", 2058 - "rustls-pki-types", 2059 - ] 2060 - 2061 - [[package]] 2062 - name = "rustls-pki-types" 2063 - version = "1.8.0" 2064 - source = "registry+https://github.com/rust-lang/crates.io-index" 2065 - checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" 2066 - 2067 - [[package]] 2068 - name = "rustls-webpki" 2069 - version = "0.102.8" 2070 - source = "registry+https://github.com/rust-lang/crates.io-index" 2071 - checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 2072 - dependencies = [ 2073 - "ring", 2074 - "rustls-pki-types", 2075 - "untrusted", 2076 - ] 2077 - 2078 - [[package]] 2079 - name = "ryu" 2080 - version = "1.0.18" 2081 - source = "registry+https://github.com/rust-lang/crates.io-index" 2082 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 2083 - 2084 - [[package]] 2085 - name = "scoped-tls" 2086 - version = "1.0.1" 2087 - source = "registry+https://github.com/rust-lang/crates.io-index" 2088 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2089 - 2090 - [[package]] 2091 - name = "scopeguard" 2092 - version = "1.2.0" 2093 - source = "registry+https://github.com/rust-lang/crates.io-index" 2094 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2095 - 2096 - [[package]] 2097 - name = "serde" 2098 - version = "1.0.210" 2099 - source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 2101 - dependencies = [ 2102 - "serde_derive", 2103 - ] 2104 - 2105 - [[package]] 2106 - name = "serde_derive" 2107 - version = "1.0.210" 2108 - source = "registry+https://github.com/rust-lang/crates.io-index" 2109 - checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 2110 - dependencies = [ 2111 - "proc-macro2", 2112 - "quote", 2113 - "syn 2.0.79", 2114 - ] 2115 - 2116 - [[package]] 2117 - name = "serde_json" 2118 - version = "1.0.129" 2119 - source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "6dbcf9b78a125ee667ae19388837dd12294b858d101fdd393cb9d5501ef09eb2" 2121 - dependencies = [ 2122 - "itoa", 2123 - "memchr", 2124 - "ryu", 2125 - "serde", 2126 - ] 2127 - 2128 - [[package]] 2129 - name = "serde_repr" 2130 - version = "0.1.19" 2131 - source = "registry+https://github.com/rust-lang/crates.io-index" 2132 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 2133 - dependencies = [ 2134 - "proc-macro2", 2135 - "quote", 2136 - "syn 2.0.79", 2137 - ] 2138 - 2139 - [[package]] 2140 - name = "serde_spanned" 2141 - version = "0.6.8" 2142 - source = "registry+https://github.com/rust-lang/crates.io-index" 2143 - checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 2144 - dependencies = [ 2145 - "serde", 2146 - ] 2147 - 2148 - [[package]] 2149 - name = "serde_urlencoded" 2150 - version = "0.7.1" 2151 - source = "registry+https://github.com/rust-lang/crates.io-index" 2152 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2153 - dependencies = [ 2154 - "form_urlencoded", 2155 - "itoa", 2156 - "ryu", 2157 - "serde", 2158 - ] 2159 - 2160 - [[package]] 2161 - name = "serde_with" 2162 - version = "3.11.0" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" 2165 - dependencies = [ 2166 - "base64 0.22.1", 2167 - "chrono", 2168 - "hex", 2169 - "indexmap 1.9.3", 2170 - "indexmap 2.6.0", 2171 - "serde", 2172 - "serde_derive", 2173 - "serde_json", 2174 - "serde_with_macros", 2175 - "time", 2176 - ] 2177 - 2178 - [[package]] 2179 - name = "serde_with_macros" 2180 - version = "3.11.0" 2181 - source = "registry+https://github.com/rust-lang/crates.io-index" 2182 - checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d" 2183 - dependencies = [ 2184 - "darling", 2185 - "proc-macro2", 2186 - "quote", 2187 - "syn 2.0.79", 2188 - ] 2189 - 2190 - [[package]] 2191 - name = "sha1" 2192 - version = "0.10.6" 2193 - source = "registry+https://github.com/rust-lang/crates.io-index" 2194 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2195 - dependencies = [ 2196 - "cfg-if", 2197 - "cpufeatures", 2198 - "digest", 2199 - ] 2200 - 2201 - [[package]] 2202 - name = "sharded-slab" 2203 - version = "0.1.7" 2204 - source = "registry+https://github.com/rust-lang/crates.io-index" 2205 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2206 - dependencies = [ 2207 - "lazy_static", 2208 - ] 2209 - 2210 - [[package]] 2211 - name = "shlex" 2212 - version = "1.3.0" 2213 - source = "registry+https://github.com/rust-lang/crates.io-index" 2214 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2215 - 2216 - [[package]] 2217 - name = "signal-hook-registry" 2218 - version = "1.4.2" 2219 - source = "registry+https://github.com/rust-lang/crates.io-index" 2220 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 2221 - dependencies = [ 2222 - "libc", 2223 - ] 2224 - 2225 - [[package]] 2226 - name = "slab" 2227 - version = "0.4.9" 2228 - source = "registry+https://github.com/rust-lang/crates.io-index" 2229 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2230 - dependencies = [ 2231 - "autocfg", 2232 - ] 2233 - 2234 - [[package]] 2235 - name = "smallvec" 2236 - version = "1.13.2" 2237 - source = "registry+https://github.com/rust-lang/crates.io-index" 2238 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2239 - 2240 - [[package]] 2241 - name = "smithay-client-toolkit" 2242 - version = "0.19.2" 2243 - source = "registry+https://github.com/rust-lang/crates.io-index" 2244 - checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016" 2245 - dependencies = [ 2246 - "bitflags 2.6.0", 2247 - "bytemuck", 2248 - "calloop", 2249 - "calloop-wayland-source", 2250 - "cursor-icon", 2251 - "libc", 2252 - "log", 2253 - "memmap2 0.9.4", 2254 - "pkg-config", 2255 - "rustix 0.38.37", 2256 - "thiserror", 2257 - "wayland-backend", 2258 - "wayland-client", 2259 - "wayland-csd-frame", 2260 - "wayland-cursor", 2261 - "wayland-protocols", 2262 - "wayland-protocols-wlr", 2263 - "wayland-scanner", 2264 - "xkbcommon", 2265 - "xkeysym", 2266 - ] 2267 - 2268 - [[package]] 2269 - name = "socket2" 2270 - version = "0.4.10" 2271 - source = "registry+https://github.com/rust-lang/crates.io-index" 2272 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2273 - dependencies = [ 2274 - "libc", 2275 - "winapi", 2276 - ] 2277 - 2278 - [[package]] 2279 - name = "socket2" 2280 - version = "0.5.7" 2281 - source = "registry+https://github.com/rust-lang/crates.io-index" 2282 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 2283 - dependencies = [ 2284 - "libc", 2285 - "windows-sys 0.52.0", 2286 - ] 2287 - 2288 - [[package]] 2289 - name = "spin" 2290 - version = "0.9.8" 2291 - source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2293 - dependencies = [ 2294 - "lock_api", 2295 - ] 2296 - 2297 - [[package]] 2298 - name = "static_assertions" 2299 - version = "1.1.0" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2302 - 2303 - [[package]] 2304 - name = "strsim" 2305 - version = "0.11.1" 2306 - source = "registry+https://github.com/rust-lang/crates.io-index" 2307 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2308 - 2309 - [[package]] 2310 - name = "subtle" 2311 - version = "2.6.1" 2312 - source = "registry+https://github.com/rust-lang/crates.io-index" 2313 - checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2314 - 2315 - [[package]] 2316 - name = "switcheroo-control" 2317 - version = "0.1.0" 2318 - source = "git+https://github.com/pop-os/dbus-settings-bindings#931f5db558bf3fcb572ff4e18f7f1618a7430046" 2319 - dependencies = [ 2320 - "zbus", 2321 - ] 2322 - 2323 - [[package]] 2324 - name = "syn" 2325 - version = "1.0.109" 2326 - source = "registry+https://github.com/rust-lang/crates.io-index" 2327 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2328 - dependencies = [ 2329 - "proc-macro2", 2330 - "quote", 2331 - "unicode-ident", 2332 - ] 2333 - 2334 - [[package]] 2335 - name = "syn" 2336 - version = "2.0.79" 2337 - source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" 2339 - dependencies = [ 2340 - "proc-macro2", 2341 - "quote", 2342 - "unicode-ident", 2343 - ] 2344 - 2345 - [[package]] 2346 - name = "sync_wrapper" 2347 - version = "1.0.1" 2348 - source = "registry+https://github.com/rust-lang/crates.io-index" 2349 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 2350 - dependencies = [ 2351 - "futures-core", 2352 - ] 2353 - 2354 - [[package]] 2355 - name = "sysfs-class" 2356 - version = "0.1.3" 2357 - source = "registry+https://github.com/rust-lang/crates.io-index" 2358 - checksum = "5e1bbcf869732c45a77898f7f61ed6d411dfc37613517e444842f58d428856d1" 2359 - dependencies = [ 2360 - "numtoa", 2361 - ] 2362 - 2363 - [[package]] 2364 - name = "temp-dir" 2365 - version = "0.1.13" 2366 - source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "1f227968ec00f0e5322f9b8173c7a0cbcff6181a0a5b28e9892491c286277231" 2368 - 2369 - [[package]] 2370 - name = "tempfile" 2371 - version = "3.13.0" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 2374 - dependencies = [ 2375 - "cfg-if", 2376 - "fastrand 2.1.1", 2377 - "once_cell", 2378 - "rustix 0.38.37", 2379 - "windows-sys 0.59.0", 2380 - ] 2381 - 2382 - [[package]] 2383 - name = "textdistance" 2384 - version = "1.0.2" 2385 - source = "registry+https://github.com/rust-lang/crates.io-index" 2386 - checksum = "d321c8576c2b47e43953e9cce236550d4cd6af0a6ce518fe084340082ca6037b" 2387 - 2388 - [[package]] 2389 - name = "thiserror" 2390 - version = "1.0.64" 2391 - source = "registry+https://github.com/rust-lang/crates.io-index" 2392 - checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 2393 - dependencies = [ 2394 - "thiserror-impl", 2395 - ] 2396 - 2397 - [[package]] 2398 - name = "thiserror-impl" 2399 - version = "1.0.64" 2400 - source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 2402 - dependencies = [ 2403 - "proc-macro2", 2404 - "quote", 2405 - "syn 2.0.79", 2406 - ] 2407 - 2408 - [[package]] 2409 - name = "thread_local" 2410 - version = "1.1.8" 2411 - source = "registry+https://github.com/rust-lang/crates.io-index" 2412 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2413 - dependencies = [ 2414 - "cfg-if", 2415 - "once_cell", 2416 - ] 2417 - 2418 - [[package]] 2419 - name = "time" 2420 - version = "0.3.36" 2421 - source = "registry+https://github.com/rust-lang/crates.io-index" 2422 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2423 - dependencies = [ 2424 - "deranged", 2425 - "itoa", 2426 - "num-conv", 2427 - "powerfmt", 2428 - "serde", 2429 - "time-core", 2430 - "time-macros", 2431 - ] 2432 - 2433 - [[package]] 2434 - name = "time-core" 2435 - version = "0.1.2" 2436 - source = "registry+https://github.com/rust-lang/crates.io-index" 2437 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2438 - 2439 - [[package]] 2440 - name = "time-macros" 2441 - version = "0.2.18" 2442 - source = "registry+https://github.com/rust-lang/crates.io-index" 2443 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2444 - dependencies = [ 2445 - "num-conv", 2446 - "time-core", 2447 - ] 2448 - 2449 - [[package]] 2450 - name = "tinyvec" 2451 - version = "1.8.0" 2452 - source = "registry+https://github.com/rust-lang/crates.io-index" 2453 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 2454 - dependencies = [ 2455 - "tinyvec_macros", 2456 - ] 2457 - 2458 - [[package]] 2459 - name = "tinyvec_macros" 2460 - version = "0.1.1" 2461 - source = "registry+https://github.com/rust-lang/crates.io-index" 2462 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2463 - 2464 - [[package]] 2465 - name = "tokio" 2466 - version = "1.40.0" 2467 - source = "registry+https://github.com/rust-lang/crates.io-index" 2468 - checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" 2469 - dependencies = [ 2470 - "backtrace", 2471 - "bytes 1.7.2", 2472 - "libc", 2473 - "mio", 2474 - "pin-project-lite", 2475 - "signal-hook-registry", 2476 - "socket2 0.5.7", 2477 - "tokio-macros", 2478 - "windows-sys 0.52.0", 2479 - ] 2480 - 2481 - [[package]] 2482 - name = "tokio-macros" 2483 - version = "2.4.0" 2484 - source = "registry+https://github.com/rust-lang/crates.io-index" 2485 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 2486 - dependencies = [ 2487 - "proc-macro2", 2488 - "quote", 2489 - "syn 2.0.79", 2490 - ] 2491 - 2492 - [[package]] 2493 - name = "tokio-rustls" 2494 - version = "0.26.0" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 2497 - dependencies = [ 2498 - "rustls", 2499 - "rustls-pki-types", 2500 - "tokio", 2501 - ] 2502 - 2503 - [[package]] 2504 - name = "tokio-stream" 2505 - version = "0.1.16" 2506 - source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" 2508 - dependencies = [ 2509 - "futures-core", 2510 - "pin-project-lite", 2511 - "tokio", 2512 - ] 2513 - 2514 - [[package]] 2515 - name = "toml" 2516 - version = "0.8.19" 2517 - source = "registry+https://github.com/rust-lang/crates.io-index" 2518 - checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 2519 - dependencies = [ 2520 - "serde", 2521 - "serde_spanned", 2522 - "toml_datetime", 2523 - "toml_edit", 2524 - ] 2525 - 2526 - [[package]] 2527 - name = "toml_datetime" 2528 - version = "0.6.8" 2529 - source = "registry+https://github.com/rust-lang/crates.io-index" 2530 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 2531 - dependencies = [ 2532 - "serde", 2533 - ] 2534 - 2535 - [[package]] 2536 - name = "toml_edit" 2537 - version = "0.22.22" 2538 - source = "registry+https://github.com/rust-lang/crates.io-index" 2539 - checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 2540 - dependencies = [ 2541 - "indexmap 2.6.0", 2542 - "serde", 2543 - "serde_spanned", 2544 - "toml_datetime", 2545 - "winnow", 2546 - ] 2547 - 2548 - [[package]] 2549 - name = "tower-service" 2550 - version = "0.3.3" 2551 - source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2553 - 2554 - [[package]] 2555 - name = "tracing" 2556 - version = "0.1.40" 2557 - source = "registry+https://github.com/rust-lang/crates.io-index" 2558 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2559 - dependencies = [ 2560 - "pin-project-lite", 2561 - "tracing-attributes", 2562 - "tracing-core", 2563 - ] 2564 - 2565 - [[package]] 2566 - name = "tracing-attributes" 2567 - version = "0.1.27" 2568 - source = "registry+https://github.com/rust-lang/crates.io-index" 2569 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2570 - dependencies = [ 2571 - "proc-macro2", 2572 - "quote", 2573 - "syn 2.0.79", 2574 - ] 2575 - 2576 - [[package]] 2577 - name = "tracing-core" 2578 - version = "0.1.32" 2579 - source = "registry+https://github.com/rust-lang/crates.io-index" 2580 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2581 - dependencies = [ 2582 - "once_cell", 2583 - ] 2584 - 2585 - [[package]] 2586 - name = "tracing-subscriber" 2587 - version = "0.3.18" 2588 - source = "registry+https://github.com/rust-lang/crates.io-index" 2589 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 2590 - dependencies = [ 2591 - "chrono", 2592 - "matchers", 2593 - "once_cell", 2594 - "regex", 2595 - "sharded-slab", 2596 - "thread_local", 2597 - "tracing", 2598 - "tracing-core", 2599 - ] 2600 - 2601 - [[package]] 2602 - name = "try-lock" 2603 - version = "0.2.5" 2604 - source = "registry+https://github.com/rust-lang/crates.io-index" 2605 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2606 - 2607 - [[package]] 2608 - name = "typenum" 2609 - version = "1.17.0" 2610 - source = "registry+https://github.com/rust-lang/crates.io-index" 2611 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2612 - 2613 - [[package]] 2614 - name = "uds_windows" 2615 - version = "1.1.0" 2616 - source = "registry+https://github.com/rust-lang/crates.io-index" 2617 - checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 2618 - dependencies = [ 2619 - "memoffset", 2620 - "tempfile", 2621 - "winapi", 2622 - ] 2623 - 2624 - [[package]] 2625 - name = "unicase" 2626 - version = "2.7.0" 2627 - source = "registry+https://github.com/rust-lang/crates.io-index" 2628 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 2629 - dependencies = [ 2630 - "version_check", 2631 - ] 2632 - 2633 - [[package]] 2634 - name = "unicode-bidi" 2635 - version = "0.3.17" 2636 - source = "registry+https://github.com/rust-lang/crates.io-index" 2637 - checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 2638 - 2639 - [[package]] 2640 - name = "unicode-ident" 2641 - version = "1.0.13" 2642 - source = "registry+https://github.com/rust-lang/crates.io-index" 2643 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 2644 - 2645 - [[package]] 2646 - name = "unicode-normalization" 2647 - version = "0.1.24" 2648 - source = "registry+https://github.com/rust-lang/crates.io-index" 2649 - checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 2650 - dependencies = [ 2651 - "tinyvec", 2652 - ] 2653 - 2654 - [[package]] 2655 - name = "unicode-xid" 2656 - version = "0.2.6" 2657 - source = "registry+https://github.com/rust-lang/crates.io-index" 2658 - checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 2659 - 2660 - [[package]] 2661 - name = "untrusted" 2662 - version = "0.9.0" 2663 - source = "registry+https://github.com/rust-lang/crates.io-index" 2664 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2665 - 2666 - [[package]] 2667 - name = "url" 2668 - version = "2.5.2" 2669 - source = "registry+https://github.com/rust-lang/crates.io-index" 2670 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 2671 - dependencies = [ 2672 - "form_urlencoded", 2673 - "idna", 2674 - "percent-encoding", 2675 - ] 2676 - 2677 - [[package]] 2678 - name = "urlencoding" 2679 - version = "2.1.3" 2680 - source = "registry+https://github.com/rust-lang/crates.io-index" 2681 - checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 2682 - 2683 - [[package]] 2684 - name = "uuid" 2685 - version = "1.11.0" 2686 - source = "registry+https://github.com/rust-lang/crates.io-index" 2687 - checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" 2688 - 2689 - [[package]] 2690 - name = "version_check" 2691 - version = "0.9.5" 2692 - source = "registry+https://github.com/rust-lang/crates.io-index" 2693 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2694 - 2695 - [[package]] 2696 - name = "waker-fn" 2697 - version = "1.2.0" 2698 - source = "registry+https://github.com/rust-lang/crates.io-index" 2699 - checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 2700 - 2701 - [[package]] 2702 - name = "want" 2703 - version = "0.3.1" 2704 - source = "registry+https://github.com/rust-lang/crates.io-index" 2705 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2706 - dependencies = [ 2707 - "try-lock", 2708 - ] 2709 - 2710 - [[package]] 2711 - name = "wasi" 2712 - version = "0.11.0+wasi-snapshot-preview1" 2713 - source = "registry+https://github.com/rust-lang/crates.io-index" 2714 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2715 - 2716 - [[package]] 2717 - name = "wasm-bindgen" 2718 - version = "0.2.93" 2719 - source = "registry+https://github.com/rust-lang/crates.io-index" 2720 - checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" 2721 - dependencies = [ 2722 - "cfg-if", 2723 - "once_cell", 2724 - "wasm-bindgen-macro", 2725 - ] 2726 - 2727 - [[package]] 2728 - name = "wasm-bindgen-backend" 2729 - version = "0.2.93" 2730 - source = "registry+https://github.com/rust-lang/crates.io-index" 2731 - checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" 2732 - dependencies = [ 2733 - "bumpalo", 2734 - "log", 2735 - "once_cell", 2736 - "proc-macro2", 2737 - "quote", 2738 - "syn 2.0.79", 2739 - "wasm-bindgen-shared", 2740 - ] 2741 - 2742 - [[package]] 2743 - name = "wasm-bindgen-futures" 2744 - version = "0.4.43" 2745 - source = "registry+https://github.com/rust-lang/crates.io-index" 2746 - checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" 2747 - dependencies = [ 2748 - "cfg-if", 2749 - "js-sys", 2750 - "wasm-bindgen", 2751 - "web-sys", 2752 - ] 2753 - 2754 - [[package]] 2755 - name = "wasm-bindgen-macro" 2756 - version = "0.2.93" 2757 - source = "registry+https://github.com/rust-lang/crates.io-index" 2758 - checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" 2759 - dependencies = [ 2760 - "quote", 2761 - "wasm-bindgen-macro-support", 2762 - ] 2763 - 2764 - [[package]] 2765 - name = "wasm-bindgen-macro-support" 2766 - version = "0.2.93" 2767 - source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" 2769 - dependencies = [ 2770 - "proc-macro2", 2771 - "quote", 2772 - "syn 2.0.79", 2773 - "wasm-bindgen-backend", 2774 - "wasm-bindgen-shared", 2775 - ] 2776 - 2777 - [[package]] 2778 - name = "wasm-bindgen-shared" 2779 - version = "0.2.93" 2780 - source = "registry+https://github.com/rust-lang/crates.io-index" 2781 - checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" 2782 - 2783 - [[package]] 2784 - name = "wayland-backend" 2785 - version = "0.3.4" 2786 - source = "registry+https://github.com/rust-lang/crates.io-index" 2787 - checksum = "34e9e6b6d4a2bb4e7e69433e0b35c7923b95d4dc8503a84d25ec917a4bbfdf07" 2788 - dependencies = [ 2789 - "cc", 2790 - "downcast-rs", 2791 - "rustix 0.38.37", 2792 - "scoped-tls", 2793 - "smallvec", 2794 - "wayland-sys", 2795 - ] 2796 - 2797 - [[package]] 2798 - name = "wayland-client" 2799 - version = "0.31.3" 2800 - source = "registry+https://github.com/rust-lang/crates.io-index" 2801 - checksum = "1e63801c85358a431f986cffa74ba9599ff571fc5774ac113ed3b490c19a1133" 2802 - dependencies = [ 2803 - "bitflags 2.6.0", 2804 - "rustix 0.38.37", 2805 - "wayland-backend", 2806 - "wayland-scanner", 2807 - ] 2808 - 2809 - [[package]] 2810 - name = "wayland-csd-frame" 2811 - version = "0.3.0" 2812 - source = "registry+https://github.com/rust-lang/crates.io-index" 2813 - checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 2814 - dependencies = [ 2815 - "bitflags 2.6.0", 2816 - "cursor-icon", 2817 - "wayland-backend", 2818 - ] 2819 - 2820 - [[package]] 2821 - name = "wayland-cursor" 2822 - version = "0.31.3" 2823 - source = "registry+https://github.com/rust-lang/crates.io-index" 2824 - checksum = "a206e8b2b53b1d3fcb9428fec72bc278ce539e2fa81fe2bfc1ab27703d5187b9" 2825 - dependencies = [ 2826 - "rustix 0.38.37", 2827 - "wayland-client", 2828 - "xcursor", 2829 - ] 2830 - 2831 - [[package]] 2832 - name = "wayland-protocols" 2833 - version = "0.32.1" 2834 - source = "registry+https://github.com/rust-lang/crates.io-index" 2835 - checksum = "83d0f1056570486e26a3773ec633885124d79ae03827de05ba6c85f79904026c" 2836 - dependencies = [ 2837 - "bitflags 2.6.0", 2838 - "wayland-backend", 2839 - "wayland-client", 2840 - "wayland-scanner", 2841 - "wayland-server", 2842 - ] 2843 - 2844 - [[package]] 2845 - name = "wayland-protocols-wlr" 2846 - version = "0.3.1" 2847 - source = "registry+https://github.com/rust-lang/crates.io-index" 2848 - checksum = "a7dab47671043d9f5397035975fe1cac639e5bca5cc0b3c32d09f01612e34d24" 2849 - dependencies = [ 2850 - "bitflags 2.6.0", 2851 - "wayland-backend", 2852 - "wayland-client", 2853 - "wayland-protocols", 2854 - "wayland-scanner", 2855 - "wayland-server", 2856 - ] 2857 - 2858 - [[package]] 2859 - name = "wayland-scanner" 2860 - version = "0.31.2" 2861 - source = "registry+https://github.com/rust-lang/crates.io-index" 2862 - checksum = "67da50b9f80159dec0ea4c11c13e24ef9e7574bd6ce24b01860a175010cea565" 2863 - dependencies = [ 2864 - "proc-macro2", 2865 - "quick-xml 0.31.0", 2866 - "quote", 2867 - ] 2868 - 2869 - [[package]] 2870 - name = "wayland-server" 2871 - version = "0.31.2" 2872 - source = "registry+https://github.com/rust-lang/crates.io-index" 2873 - checksum = "63e89118bd072ba6ce0f9c2c92fa41f72d1d78a138d2abc497a80a8264565559" 2874 - dependencies = [ 2875 - "bitflags 2.6.0", 2876 - "downcast-rs", 2877 - "io-lifetimes 2.0.3", 2878 - "rustix 0.38.37", 2879 - "wayland-backend", 2880 - "wayland-scanner", 2881 - ] 2882 - 2883 - [[package]] 2884 - name = "wayland-sys" 2885 - version = "0.31.2" 2886 - source = "registry+https://github.com/rust-lang/crates.io-index" 2887 - checksum = "105b1842da6554f91526c14a2a2172897b7f745a805d62af4ce698706be79c12" 2888 - dependencies = [ 2889 - "dlib", 2890 - "log", 2891 - "pkg-config", 2892 - ] 2893 - 2894 - [[package]] 2895 - name = "web-sys" 2896 - version = "0.3.70" 2897 - source = "registry+https://github.com/rust-lang/crates.io-index" 2898 - checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" 2899 - dependencies = [ 2900 - "js-sys", 2901 - "wasm-bindgen", 2902 - ] 2903 - 2904 - [[package]] 2905 - name = "webpki-roots" 2906 - version = "0.26.6" 2907 - source = "registry+https://github.com/rust-lang/crates.io-index" 2908 - checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 2909 - dependencies = [ 2910 - "rustls-pki-types", 2911 - ] 2912 - 2913 - [[package]] 2914 - name = "winapi" 2915 - version = "0.3.9" 2916 - source = "registry+https://github.com/rust-lang/crates.io-index" 2917 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2918 - dependencies = [ 2919 - "winapi-i686-pc-windows-gnu", 2920 - "winapi-x86_64-pc-windows-gnu", 2921 - ] 2922 - 2923 - [[package]] 2924 - name = "winapi-i686-pc-windows-gnu" 2925 - version = "0.4.0" 2926 - source = "registry+https://github.com/rust-lang/crates.io-index" 2927 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2928 - 2929 - [[package]] 2930 - name = "winapi-x86_64-pc-windows-gnu" 2931 - version = "0.4.0" 2932 - source = "registry+https://github.com/rust-lang/crates.io-index" 2933 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2934 - 2935 - [[package]] 2936 - name = "windows-core" 2937 - version = "0.52.0" 2938 - source = "registry+https://github.com/rust-lang/crates.io-index" 2939 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2940 - dependencies = [ 2941 - "windows-targets 0.52.6", 2942 - ] 2943 - 2944 - [[package]] 2945 - name = "windows-registry" 2946 - version = "0.2.0" 2947 - source = "registry+https://github.com/rust-lang/crates.io-index" 2948 - checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 2949 - dependencies = [ 2950 - "windows-result", 2951 - "windows-strings", 2952 - "windows-targets 0.52.6", 2953 - ] 2954 - 2955 - [[package]] 2956 - name = "windows-result" 2957 - version = "0.2.0" 2958 - source = "registry+https://github.com/rust-lang/crates.io-index" 2959 - checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 2960 - dependencies = [ 2961 - "windows-targets 0.52.6", 2962 - ] 2963 - 2964 - [[package]] 2965 - name = "windows-strings" 2966 - version = "0.1.0" 2967 - source = "registry+https://github.com/rust-lang/crates.io-index" 2968 - checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 2969 - dependencies = [ 2970 - "windows-result", 2971 - "windows-targets 0.52.6", 2972 - ] 2973 - 2974 - [[package]] 2975 - name = "windows-sys" 2976 - version = "0.48.0" 2977 - source = "registry+https://github.com/rust-lang/crates.io-index" 2978 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2979 - dependencies = [ 2980 - "windows-targets 0.48.5", 2981 - ] 2982 - 2983 - [[package]] 2984 - name = "windows-sys" 2985 - version = "0.52.0" 2986 - source = "registry+https://github.com/rust-lang/crates.io-index" 2987 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2988 - dependencies = [ 2989 - "windows-targets 0.52.6", 2990 - ] 2991 - 2992 - [[package]] 2993 - name = "windows-sys" 2994 - version = "0.59.0" 2995 - source = "registry+https://github.com/rust-lang/crates.io-index" 2996 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 2997 - dependencies = [ 2998 - "windows-targets 0.52.6", 2999 - ] 3000 - 3001 - [[package]] 3002 - name = "windows-targets" 3003 - version = "0.48.5" 3004 - source = "registry+https://github.com/rust-lang/crates.io-index" 3005 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3006 - dependencies = [ 3007 - "windows_aarch64_gnullvm 0.48.5", 3008 - "windows_aarch64_msvc 0.48.5", 3009 - "windows_i686_gnu 0.48.5", 3010 - "windows_i686_msvc 0.48.5", 3011 - "windows_x86_64_gnu 0.48.5", 3012 - "windows_x86_64_gnullvm 0.48.5", 3013 - "windows_x86_64_msvc 0.48.5", 3014 - ] 3015 - 3016 - [[package]] 3017 - name = "windows-targets" 3018 - version = "0.52.6" 3019 - source = "registry+https://github.com/rust-lang/crates.io-index" 3020 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3021 - dependencies = [ 3022 - "windows_aarch64_gnullvm 0.52.6", 3023 - "windows_aarch64_msvc 0.52.6", 3024 - "windows_i686_gnu 0.52.6", 3025 - "windows_i686_gnullvm", 3026 - "windows_i686_msvc 0.52.6", 3027 - "windows_x86_64_gnu 0.52.6", 3028 - "windows_x86_64_gnullvm 0.52.6", 3029 - "windows_x86_64_msvc 0.52.6", 3030 - ] 3031 - 3032 - [[package]] 3033 - name = "windows_aarch64_gnullvm" 3034 - version = "0.48.5" 3035 - source = "registry+https://github.com/rust-lang/crates.io-index" 3036 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3037 - 3038 - [[package]] 3039 - name = "windows_aarch64_gnullvm" 3040 - version = "0.52.6" 3041 - source = "registry+https://github.com/rust-lang/crates.io-index" 3042 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3043 - 3044 - [[package]] 3045 - name = "windows_aarch64_msvc" 3046 - version = "0.48.5" 3047 - source = "registry+https://github.com/rust-lang/crates.io-index" 3048 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3049 - 3050 - [[package]] 3051 - name = "windows_aarch64_msvc" 3052 - version = "0.52.6" 3053 - source = "registry+https://github.com/rust-lang/crates.io-index" 3054 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3055 - 3056 - [[package]] 3057 - name = "windows_i686_gnu" 3058 - version = "0.48.5" 3059 - source = "registry+https://github.com/rust-lang/crates.io-index" 3060 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3061 - 3062 - [[package]] 3063 - name = "windows_i686_gnu" 3064 - version = "0.52.6" 3065 - source = "registry+https://github.com/rust-lang/crates.io-index" 3066 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3067 - 3068 - [[package]] 3069 - name = "windows_i686_gnullvm" 3070 - version = "0.52.6" 3071 - source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3073 - 3074 - [[package]] 3075 - name = "windows_i686_msvc" 3076 - version = "0.48.5" 3077 - source = "registry+https://github.com/rust-lang/crates.io-index" 3078 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3079 - 3080 - [[package]] 3081 - name = "windows_i686_msvc" 3082 - version = "0.52.6" 3083 - source = "registry+https://github.com/rust-lang/crates.io-index" 3084 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3085 - 3086 - [[package]] 3087 - name = "windows_x86_64_gnu" 3088 - version = "0.48.5" 3089 - source = "registry+https://github.com/rust-lang/crates.io-index" 3090 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3091 - 3092 - [[package]] 3093 - name = "windows_x86_64_gnu" 3094 - version = "0.52.6" 3095 - source = "registry+https://github.com/rust-lang/crates.io-index" 3096 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3097 - 3098 - [[package]] 3099 - name = "windows_x86_64_gnullvm" 3100 - version = "0.48.5" 3101 - source = "registry+https://github.com/rust-lang/crates.io-index" 3102 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3103 - 3104 - [[package]] 3105 - name = "windows_x86_64_gnullvm" 3106 - version = "0.52.6" 3107 - source = "registry+https://github.com/rust-lang/crates.io-index" 3108 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3109 - 3110 - [[package]] 3111 - name = "windows_x86_64_msvc" 3112 - version = "0.48.5" 3113 - source = "registry+https://github.com/rust-lang/crates.io-index" 3114 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3115 - 3116 - [[package]] 3117 - name = "windows_x86_64_msvc" 3118 - version = "0.52.6" 3119 - source = "registry+https://github.com/rust-lang/crates.io-index" 3120 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3121 - 3122 - [[package]] 3123 - name = "winnow" 3124 - version = "0.6.20" 3125 - source = "registry+https://github.com/rust-lang/crates.io-index" 3126 - checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 3127 - dependencies = [ 3128 - "memchr", 3129 - ] 3130 - 3131 - [[package]] 3132 - name = "xcursor" 3133 - version = "0.3.5" 3134 - source = "registry+https://github.com/rust-lang/crates.io-index" 3135 - checksum = "6a0ccd7b4a5345edfcd0c3535718a4e9ff7798ffc536bb5b5a0e26ff84732911" 3136 - 3137 - [[package]] 3138 - name = "xdg" 3139 - version = "2.5.2" 3140 - source = "registry+https://github.com/rust-lang/crates.io-index" 3141 - checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 3142 - 3143 - [[package]] 3144 - name = "xdg-home" 3145 - version = "1.3.0" 3146 - source = "registry+https://github.com/rust-lang/crates.io-index" 3147 - checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" 3148 - dependencies = [ 3149 - "libc", 3150 - "windows-sys 0.59.0", 3151 - ] 3152 - 3153 - [[package]] 3154 - name = "xkbcommon" 3155 - version = "0.7.0" 3156 - source = "registry+https://github.com/rust-lang/crates.io-index" 3157 - checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" 3158 - dependencies = [ 3159 - "libc", 3160 - "memmap2 0.8.0", 3161 - "xkeysym", 3162 - ] 3163 - 3164 - [[package]] 3165 - name = "xkeysym" 3166 - version = "0.2.1" 3167 - source = "registry+https://github.com/rust-lang/crates.io-index" 3168 - checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" 3169 - dependencies = [ 3170 - "bytemuck", 3171 - ] 3172 - 3173 - [[package]] 3174 - name = "zbus" 3175 - version = "4.4.0" 3176 - source = "registry+https://github.com/rust-lang/crates.io-index" 3177 - checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725" 3178 - dependencies = [ 3179 - "async-broadcast", 3180 - "async-executor", 3181 - "async-fs", 3182 - "async-io 2.3.4", 3183 - "async-lock 3.4.0", 3184 - "async-process", 3185 - "async-recursion", 3186 - "async-task", 3187 - "async-trait", 3188 - "blocking", 3189 - "enumflags2", 3190 - "event-listener 5.3.1", 3191 - "futures-core", 3192 - "futures-sink", 3193 - "futures-util", 3194 - "hex", 3195 - "nix", 3196 - "ordered-stream", 3197 - "rand", 3198 - "serde", 3199 - "serde_repr", 3200 - "sha1", 3201 - "static_assertions", 3202 - "tracing", 3203 - "uds_windows", 3204 - "windows-sys 0.52.0", 3205 - "xdg-home", 3206 - "zbus_macros", 3207 - "zbus_names", 3208 - "zvariant", 3209 - ] 3210 - 3211 - [[package]] 3212 - name = "zbus_macros" 3213 - version = "4.4.0" 3214 - source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" 3216 - dependencies = [ 3217 - "proc-macro-crate", 3218 - "proc-macro2", 3219 - "quote", 3220 - "syn 2.0.79", 3221 - "zvariant_utils", 3222 - ] 3223 - 3224 - [[package]] 3225 - name = "zbus_names" 3226 - version = "3.0.0" 3227 - source = "registry+https://github.com/rust-lang/crates.io-index" 3228 - checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" 3229 - dependencies = [ 3230 - "serde", 3231 - "static_assertions", 3232 - "zvariant", 3233 - ] 3234 - 3235 - [[package]] 3236 - name = "zerocopy" 3237 - version = "0.7.35" 3238 - source = "registry+https://github.com/rust-lang/crates.io-index" 3239 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 3240 - dependencies = [ 3241 - "byteorder", 3242 - "zerocopy-derive", 3243 - ] 3244 - 3245 - [[package]] 3246 - name = "zerocopy-derive" 3247 - version = "0.7.35" 3248 - source = "registry+https://github.com/rust-lang/crates.io-index" 3249 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 3250 - dependencies = [ 3251 - "proc-macro2", 3252 - "quote", 3253 - "syn 2.0.79", 3254 - ] 3255 - 3256 - [[package]] 3257 - name = "zeroize" 3258 - version = "1.8.1" 3259 - source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 3261 - 3262 - [[package]] 3263 - name = "zvariant" 3264 - version = "4.2.0" 3265 - source = "registry+https://github.com/rust-lang/crates.io-index" 3266 - checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" 3267 - dependencies = [ 3268 - "endi", 3269 - "enumflags2", 3270 - "serde", 3271 - "static_assertions", 3272 - "zvariant_derive", 3273 - ] 3274 - 3275 - [[package]] 3276 - name = "zvariant_derive" 3277 - version = "4.2.0" 3278 - source = "registry+https://github.com/rust-lang/crates.io-index" 3279 - checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" 3280 - dependencies = [ 3281 - "proc-macro-crate", 3282 - "proc-macro2", 3283 - "quote", 3284 - "syn 2.0.79", 3285 - "zvariant_utils", 3286 - ] 3287 - 3288 - [[package]] 3289 - name = "zvariant_utils" 3290 - version = "2.1.0" 3291 - source = "registry+https://github.com/rust-lang/crates.io-index" 3292 - checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" 3293 - dependencies = [ 3294 - "proc-macro2", 3295 - "quote", 3296 - "syn 2.0.79", 3297 - ]
+3 -7
pkgs/by-name/po/pop-launcher/package.nix
··· 29 29 libxkbcommon 30 30 ]; 31 31 32 - cargoLock = { 33 - lockFile = ./Cargo.lock; 34 - outputHashes = { 35 - "cosmic-client-toolkit-0.1.0" = "sha256-6XM6kcM2CEGAziCkal4uO0EL1nEWOKb3rFs7hFh6r7Y="; 36 - "switcheroo-control-0.1.0" = "sha256-mklNPKVMO6iFrxki2DwiL5K78KiWpGxksisYldaASIE="; 37 - }; 38 - }; 32 + useFetchCargoVendor = true; 33 + cargoHash = "sha256-Htre2gzAlNfxBkBvMMtjYbUcuwNw+tB4DI18iBA+g34="; 34 + 39 35 cargoBuildFlags = [ 40 36 "--package" 41 37 "pop-launcher-bin"
+2 -2
pkgs/by-name/pr/prefect/package.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "prefect"; 10 - version = "3.2.13"; 10 + version = "3.2.14"; 11 11 pyproject = true; 12 12 13 13 # Trying to install from source is challenging ··· 16 16 # Source will be missing sdist, uv.lock, ui artefacts ... 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-NJL3KTvSIzUX1JMa/Lfpx2UzsAgqjU/mbndnkG2evTA="; 19 + hash = "sha256-DmPpiilxKp8uakcRJGaP1AD4AuOre1okk5h7bb5T2tE="; 20 20 }; 21 21 22 22 pythonRelaxDeps = [
+3 -3
pkgs/by-name/pr/proto/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "proto"; 14 - version = "0.47.4"; 14 + version = "0.47.8"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "moonrepo"; 18 18 repo = "proto"; 19 19 rev = "v${version}"; 20 - hash = "sha256-rCn27Lw75a1LOiQTEjQNHal8WuHKBhQVMuPiETpcuT0="; 20 + hash = "sha256-RWUm96jn+2SFRteO0tO8Teis6hN9SBHgDID1zIYqOzM="; 21 21 }; 22 22 23 23 useFetchCargoVendor = true; 24 - cargoHash = "sha256-XCu0jf6mnPSdaeODe0PQ14YeIg02a9iNLBYkLPcenQ4="; 24 + cargoHash = "sha256-OQLom6k8987QK64YBTDP/YmyGwuaTQmnHcnX0rvntKM="; 25 25 26 26 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 27 27 darwin.apple_sdk.frameworks.SystemConfiguration
+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.5"; 9 + version = "1.36.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "protocolbuffers"; 13 13 repo = "protobuf-go"; 14 14 rev = "v${version}"; 15 - hash = "sha256-fotgvzHRRCDWRyGM9nP+BFhE0vN5/0jQlb5moOhDAWc="; 15 + hash = "sha256-6Wx1XoHZS1RM0hpgVE85U7huVS4IK+AroTE2zpZR4VI="; 16 16 }; 17 17 18 18 vendorHash = "sha256-nGI/Bd6eMEoY0sBwWEtyhFowHVvwLKjbT4yfzFz6Z3E=";
+2 -2
pkgs/by-name/re/redpanda-client/package.nix
··· 7 7 stdenv, 8 8 }: 9 9 let 10 - version = "24.3.7"; 10 + version = "24.3.8"; 11 11 src = fetchFromGitHub { 12 12 owner = "redpanda-data"; 13 13 repo = "redpanda"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-2FpJMJau5rrKLUaW7nrE7pMf0zi2cW64+Hlk2lPvHxY="; 15 + sha256 = "sha256-7ufF1OXFtT+OZY6UiDDiaohe4witVPEaO9zZaM6wldA="; 16 16 }; 17 17 in 18 18 buildGoModule rec {
+3 -3
pkgs/by-name/rq/rqlite/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "rqlite"; 9 - version = "8.36.13"; 9 + version = "8.36.14"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rqlite"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-1yDz9rbjJCzl0pXvrMoAHdv4O9DAnE9HN6LQm3wp6kI="; 15 + sha256 = "sha256-dEs9xMJyy2QdZ4N3E65fjN5EXmQW6KIqWhy+92ac5yg="; 16 16 }; 17 17 18 - vendorHash = "sha256-kdBYU0+8G/XspBXWPXTUy3vwbM90irM8xIpQgTMtRrA="; 18 + vendorHash = "sha256-AOebt6kA0WCgEbSySfIPzRp0QnNtwdnPlEFJJSDO978="; 19 19 20 20 subPackages = [ 21 21 "cmd/rqlite"
+3 -3
pkgs/by-name/rs/rsclock/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "rsClock"; 9 - version = "0.1.11"; 9 + version = "0.1.12"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "valebes"; 13 13 repo = "rsClock"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-z+WGi1Jl+YkdAc4Nu818vi+OXg54GfAM6PbWYkgptpo="; 15 + sha256 = "sha256-l5750zP90KnB+OIg1WOikQ6OgQZK4iwVvGBN3jegjGc="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-Dt3TCqQWwBcQ/6ZGhsMS7aA0jsvxRrdYkKSwynOlad8="; 19 + cargoHash = "sha256-Bnec98FEG2aWUa2IoBOLy0K6mqggcSwOBL3S5+0mSkU="; 20 20 21 21 meta = with lib; { 22 22 description = "Simple terminal clock written in Rust";
+3 -3
pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "sequoia-chameleon-gnupg"; 14 - version = "0.13.0"; 14 + version = "0.13.1"; 15 15 16 16 src = fetchFromGitLab { 17 17 owner = "sequoia-pgp"; 18 18 repo = "sequoia-chameleon-gnupg"; 19 19 rev = "v${version}"; 20 - hash = "sha256-K8IFuc+ykXKnx5NiWeLzCkVpgvi4apbJl6AKrBvVIaA="; 20 + hash = "sha256-K9aeWrqJGPx2RymCXWNdNUTXXtO4NNm6Rd3jz+YxEi0="; 21 21 }; 22 22 23 23 useFetchCargoVendor = true; 24 - cargoHash = "sha256-lFeE/orMcb5an2MFlh94RaCh0fVEP8EP97CYNW56O4o="; 24 + cargoHash = "sha256-d+Ew05pYpUepqsYLTcI3j2qcplXn2hDACyzXXDx6hNg="; 25 25 26 26 nativeBuildInputs = [ 27 27 rustPlatform.bindgenHook
+2 -2
pkgs/by-name/st/stevenblack-blocklist/package.nix
··· 6 6 }: 7 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 8 pname = "stevenblack-blocklist"; 9 - version = "3.15.24"; 9 + version = "3.15.26"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "StevenBlack"; 13 13 repo = "hosts"; 14 14 tag = finalAttrs.version; 15 - hash = "sha256-34JVDJ6X1naRj+eFbuWSRxdfF5GX8FCTSFXNe78q1S8="; 15 + hash = "sha256-D8Ebr02/O4avw/+60o8oZYII9pGz1veb+Gox6XOdQdg="; 16 16 }; 17 17 18 18 outputs = [
+10
pkgs/by-name/sy/systemtap-sdt/package.nix
··· 1 + { linuxPackages }: 2 + linuxPackages.systemtap.override { 3 + withStap = false; 4 + } 5 + // { 6 + meta = linuxPackages.systemtap.meta // { 7 + description = "Build USDT tracepoints with the 'dtrace' executable on Linux"; 8 + mainProgram = "dtrace"; 9 + }; 10 + }
+3 -3
pkgs/by-name/te/terragrunt/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "terragrunt"; 11 - version = "0.76.1"; 11 + version = "0.76.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "gruntwork-io"; 15 15 repo = pname; 16 16 tag = "v${version}"; 17 - hash = "sha256-VYoqKowP7LivXTifl0Qv3OnVyaIhhuA28jrvkaLSPFA="; 17 + hash = "sha256-xhJUkjdMkOI8E7HxazBfl05FF0XzwlFsEgW+WEv0EGg="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ ··· 26 26 make generate-mocks 27 27 ''; 28 28 29 - vendorHash = "sha256-UhOb1Djup9Cwrv9vYeD/DZe20dwSKYRpJa4V3ZCsPwQ="; 29 + vendorHash = "sha256-sPgA1LMbYMcrlN+4no3DhJ0TVMEnGEgGhQMy+g0nrtg="; 30 30 31 31 doCheck = false; 32 32
+25 -9
pkgs/by-name/ti/ticktick/package.nix
··· 14 14 xdg-utils, 15 15 systemd, 16 16 }: 17 + let 18 + baseUrl = "https://d2atcrkye2ik4e.cloudfront.net/download"; 19 + in 17 20 stdenv.mkDerivation (finalAttrs: { 18 21 pname = "ticktick"; 19 22 version = "6.0.21"; 20 23 21 - src = fetchurl { 22 - url = "https://d2atcrkye2ik4e.cloudfront.net/download/linux/linux_deb_x64/ticktick-${finalAttrs.version}-amd64.deb"; 23 - hash = "sha256-e5N20FL2c6XdkDax0SMGigLuatXKZxb9c53sqQ5XVtM="; 24 - }; 24 + src = 25 + if stdenv.hostPlatform.system == "x86_64-linux" then 26 + fetchurl { 27 + url = "${baseUrl}/linux/linux_deb_x64/ticktick-${finalAttrs.version}-amd64.deb"; 28 + hash = "sha256-e5N20FL2c6XdkDax0SMGigLuatXKZxb9c53sqQ5XVtM="; 29 + } 30 + else if stdenv.hostPlatform.system == "aarch64-linux" then 31 + fetchurl { 32 + url = "${baseUrl}/linux/linux_deb_arm64/ticktick-${finalAttrs.version}-arm64.deb"; 33 + hash = "sha256-6/nzPL+TeEE31S0ngmsUFPZEfWtt4PVAEkMqSa8OpYI="; 34 + } 35 + else 36 + throw "Unsupported system: ${stdenv.hostPlatform.system}"; 25 37 26 38 nativeBuildInputs = [ 27 39 wrapGAppsHook3 ··· 40 52 ]; 41 53 42 54 # Needed to make the process get past zygote_linux fork()'ing 43 - runtimeDependencies = [ 44 - systemd 45 - ]; 55 + runtimeDependencies = [ systemd ]; 46 56 47 57 unpackPhase = '' 48 58 runHook preUnpack ··· 71 81 description = "Powerful to-do & task management app with seamless cloud synchronization across all your devices"; 72 82 homepage = "https://ticktick.com/home/"; 73 83 license = licenses.unfree; 74 - maintainers = with maintainers; [ hbjydev ]; 75 - platforms = [ "x86_64-linux" ]; 84 + maintainers = with maintainers; [ 85 + hbjydev 86 + jonocodes 87 + ]; 88 + platforms = [ 89 + "x86_64-linux" 90 + "aarch64-linux" 91 + ]; 76 92 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 77 93 }; 78 94 })
+2 -2
pkgs/by-name/un/unrar/package.nix
··· 6 6 7 7 stdenv.mkDerivation (finalAttrs: { 8 8 pname = "unrar"; 9 - version = "7.1.5"; 9 + version = "7.1.6"; 10 10 11 11 src = fetchzip { 12 12 url = "https://www.rarlab.com/rar/unrarsrc-${finalAttrs.version}.tar.gz"; 13 13 stripRoot = false; 14 - hash = "sha256-D5FrzE3zkAFPOzAw+jt6+KVjNVbUcsjiPlIqOe/XZ8A="; 14 + hash = "sha256-2Ur4J+BUWB7SaSwFzMSDwALFMelhB7r1tlvW2fcTWXg="; 15 15 }; 16 16 17 17 sourceRoot = finalAttrs.src.name;
+2 -2
pkgs/by-name/vc/vcpkg-tool/package.nix
··· 24 24 }: 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "vcpkg-tool"; 27 - version = "2025-01-29"; 27 + version = "2025-03-13"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "microsoft"; 31 31 repo = "vcpkg-tool"; 32 32 rev = finalAttrs.version; 33 - hash = "sha256-eCeq7HKjK0aTsPqFP8jP6gIrzcF6YBEJG1MdbQse42Y="; 33 + hash = "sha256-tu6mN9y2lYsf71LUmRPMdZHE6VIWODOOQFs8+v0KIt8="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+2 -2
pkgs/by-name/vi/virtnbdbackup/package.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "virtnbdbackup"; 10 - version = "2.22"; 10 + version = "2.23"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "abbbi"; 14 14 repo = "virtnbdbackup"; 15 15 tag = "v${version}"; 16 - hash = "sha256-mJF6PYWGC65t9ckb256XsdGtV94jeJclGD3dpE6sW+U="; 16 + hash = "sha256-lek2UND7Qmg2ar8YvCDSOVO/TqmiMff/mRLgfyVkAvg="; 17 17 }; 18 18 19 19 build-system = with python3Packages; [
+3 -3
pkgs/by-name/vs/vsce/package.nix
··· 12 12 13 13 buildNpmPackage rec { 14 14 pname = "vsce"; 15 - version = "3.2.2"; 15 + version = "3.3.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "microsoft"; 19 19 repo = "vscode-vsce"; 20 20 rev = "v${version}"; 21 - hash = "sha256-zWs3DVb9BThCdjqQLfK4Z6wvph3oibVBdj+h3n33Lns="; 21 + hash = "sha256-z2OxVK/zbKr1AvWO74aoZHU/e3GPCF0QMINdNhbzNXc="; 22 22 }; 23 23 24 - npmDepsHash = "sha256-9tD2an6878XEXWbO5Jsplibd6lbzNBufdHJJ89mjMig="; 24 + npmDepsHash = "sha256-RIurea4cdH47q9axGtNTIZMeDOAqqdjovaE34A7M2uI="; 25 25 26 26 postPatch = '' 27 27 substituteInPlace package.json --replace-fail '"version": "0.0.0"' '"version": "${version}"'
-3529
pkgs/by-name/wa/watchmate/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 = "aes" 22 - version = "0.8.4" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 25 - dependencies = [ 26 - "cfg-if", 27 - "cipher", 28 - "cpufeatures", 29 - ] 30 - 31 - [[package]] 32 - name = "aho-corasick" 33 - version = "1.1.2" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 36 - dependencies = [ 37 - "memchr", 38 - ] 39 - 40 - [[package]] 41 - name = "android-tzdata" 42 - version = "0.1.1" 43 - source = "registry+https://github.com/rust-lang/crates.io-index" 44 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 45 - 46 - [[package]] 47 - name = "android_system_properties" 48 - version = "0.1.5" 49 - source = "registry+https://github.com/rust-lang/crates.io-index" 50 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 51 - dependencies = [ 52 - "libc", 53 - ] 54 - 55 - [[package]] 56 - name = "anstream" 57 - version = "0.6.13" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" 60 - dependencies = [ 61 - "anstyle", 62 - "anstyle-parse", 63 - "anstyle-query", 64 - "anstyle-wincon", 65 - "colorchoice", 66 - "utf8parse", 67 - ] 68 - 69 - [[package]] 70 - name = "anstyle" 71 - version = "1.0.6" 72 - source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 74 - 75 - [[package]] 76 - name = "anstyle-parse" 77 - version = "0.2.3" 78 - source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 80 - dependencies = [ 81 - "utf8parse", 82 - ] 83 - 84 - [[package]] 85 - name = "anstyle-query" 86 - version = "1.0.2" 87 - source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 89 - dependencies = [ 90 - "windows-sys 0.52.0", 91 - ] 92 - 93 - [[package]] 94 - name = "anstyle-wincon" 95 - version = "3.0.2" 96 - source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 98 - dependencies = [ 99 - "anstyle", 100 - "windows-sys 0.52.0", 101 - ] 102 - 103 - [[package]] 104 - name = "anyhow" 105 - version = "1.0.80" 106 - source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" 108 - 109 - [[package]] 110 - name = "ashpd" 111 - version = "0.6.8" 112 - source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "4ac22eda5891cc086690cb6fa10121c0390de0e3b04eb269f2d766b00d3f2d81" 114 - dependencies = [ 115 - "enumflags2", 116 - "futures-channel", 117 - "futures-util", 118 - "gdk4-wayland", 119 - "gdk4-x11", 120 - "gtk4", 121 - "once_cell", 122 - "rand", 123 - "serde", 124 - "serde_repr", 125 - "tokio", 126 - "url", 127 - "zbus", 128 - ] 129 - 130 - [[package]] 131 - name = "async-broadcast" 132 - version = "0.5.1" 133 - source = "registry+https://github.com/rust-lang/crates.io-index" 134 - checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 135 - dependencies = [ 136 - "event-listener 2.5.3", 137 - "futures-core", 138 - ] 139 - 140 - [[package]] 141 - name = "async-channel" 142 - version = "2.2.0" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" 145 - dependencies = [ 146 - "concurrent-queue", 147 - "event-listener 5.2.0", 148 - "event-listener-strategy 0.5.0", 149 - "futures-core", 150 - "pin-project-lite", 151 - ] 152 - 153 - [[package]] 154 - name = "async-executor" 155 - version = "1.8.0" 156 - source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 158 - dependencies = [ 159 - "async-lock 3.3.0", 160 - "async-task", 161 - "concurrent-queue", 162 - "fastrand 2.0.1", 163 - "futures-lite 2.2.0", 164 - "slab", 165 - ] 166 - 167 - [[package]] 168 - name = "async-fs" 169 - version = "1.6.0" 170 - source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 172 - dependencies = [ 173 - "async-lock 2.8.0", 174 - "autocfg", 175 - "blocking", 176 - "futures-lite 1.13.0", 177 - ] 178 - 179 - [[package]] 180 - name = "async-io" 181 - version = "1.13.0" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 184 - dependencies = [ 185 - "async-lock 2.8.0", 186 - "autocfg", 187 - "cfg-if", 188 - "concurrent-queue", 189 - "futures-lite 1.13.0", 190 - "log", 191 - "parking", 192 - "polling 2.8.0", 193 - "rustix 0.37.27", 194 - "slab", 195 - "socket2 0.4.10", 196 - "waker-fn", 197 - ] 198 - 199 - [[package]] 200 - name = "async-io" 201 - version = "2.3.1" 202 - source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" 204 - dependencies = [ 205 - "async-lock 3.3.0", 206 - "cfg-if", 207 - "concurrent-queue", 208 - "futures-io", 209 - "futures-lite 2.2.0", 210 - "parking", 211 - "polling 3.5.0", 212 - "rustix 0.38.31", 213 - "slab", 214 - "tracing", 215 - "windows-sys 0.52.0", 216 - ] 217 - 218 - [[package]] 219 - name = "async-lock" 220 - version = "2.8.0" 221 - source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 223 - dependencies = [ 224 - "event-listener 2.5.3", 225 - ] 226 - 227 - [[package]] 228 - name = "async-lock" 229 - version = "3.3.0" 230 - source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 232 - dependencies = [ 233 - "event-listener 4.0.3", 234 - "event-listener-strategy 0.4.0", 235 - "pin-project-lite", 236 - ] 237 - 238 - [[package]] 239 - name = "async-process" 240 - version = "1.8.1" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 243 - dependencies = [ 244 - "async-io 1.13.0", 245 - "async-lock 2.8.0", 246 - "async-signal", 247 - "blocking", 248 - "cfg-if", 249 - "event-listener 3.1.0", 250 - "futures-lite 1.13.0", 251 - "rustix 0.38.31", 252 - "windows-sys 0.48.0", 253 - ] 254 - 255 - [[package]] 256 - name = "async-recursion" 257 - version = "1.0.5" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 260 - dependencies = [ 261 - "proc-macro2", 262 - "quote", 263 - "syn 2.0.52", 264 - ] 265 - 266 - [[package]] 267 - name = "async-signal" 268 - version = "0.2.5" 269 - source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 271 - dependencies = [ 272 - "async-io 2.3.1", 273 - "async-lock 2.8.0", 274 - "atomic-waker", 275 - "cfg-if", 276 - "futures-core", 277 - "futures-io", 278 - "rustix 0.38.31", 279 - "signal-hook-registry", 280 - "slab", 281 - "windows-sys 0.48.0", 282 - ] 283 - 284 - [[package]] 285 - name = "async-task" 286 - version = "4.7.0" 287 - source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 289 - 290 - [[package]] 291 - name = "async-trait" 292 - version = "0.1.77" 293 - source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 295 - dependencies = [ 296 - "proc-macro2", 297 - "quote", 298 - "syn 2.0.52", 299 - ] 300 - 301 - [[package]] 302 - name = "atomic-waker" 303 - version = "1.1.2" 304 - source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 306 - 307 - [[package]] 308 - name = "autocfg" 309 - version = "1.1.0" 310 - source = "registry+https://github.com/rust-lang/crates.io-index" 311 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 312 - 313 - [[package]] 314 - name = "backtrace" 315 - version = "0.3.69" 316 - source = "registry+https://github.com/rust-lang/crates.io-index" 317 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 318 - dependencies = [ 319 - "addr2line", 320 - "cc", 321 - "cfg-if", 322 - "libc", 323 - "miniz_oxide", 324 - "object", 325 - "rustc-demangle", 326 - ] 327 - 328 - [[package]] 329 - name = "base64" 330 - version = "0.21.7" 331 - source = "registry+https://github.com/rust-lang/crates.io-index" 332 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 333 - 334 - [[package]] 335 - name = "base64ct" 336 - version = "1.6.0" 337 - source = "registry+https://github.com/rust-lang/crates.io-index" 338 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 339 - 340 - [[package]] 341 - name = "bitflags" 342 - version = "1.3.2" 343 - source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 345 - 346 - [[package]] 347 - name = "bitflags" 348 - version = "2.4.2" 349 - source = "registry+https://github.com/rust-lang/crates.io-index" 350 - checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 351 - 352 - [[package]] 353 - name = "block-buffer" 354 - version = "0.10.4" 355 - source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 357 - dependencies = [ 358 - "generic-array", 359 - ] 360 - 361 - [[package]] 362 - name = "blocking" 363 - version = "1.5.1" 364 - source = "registry+https://github.com/rust-lang/crates.io-index" 365 - checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 366 - dependencies = [ 367 - "async-channel", 368 - "async-lock 3.3.0", 369 - "async-task", 370 - "fastrand 2.0.1", 371 - "futures-io", 372 - "futures-lite 2.2.0", 373 - "piper", 374 - "tracing", 375 - ] 376 - 377 - [[package]] 378 - name = "bluer" 379 - version = "0.17.0" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "108df43a349f623b6fc6b190b08a0e05720872bba4e2333d7fa7dd102dd80912" 382 - dependencies = [ 383 - "custom_debug", 384 - "dbus", 385 - "dbus-crossroads", 386 - "dbus-tokio", 387 - "displaydoc", 388 - "futures", 389 - "hex", 390 - "lazy_static", 391 - "libc", 392 - "log", 393 - "macaddr", 394 - "nix 0.27.1", 395 - "num-derive", 396 - "num-traits", 397 - "pin-project", 398 - "serde", 399 - "serde_json", 400 - "strum", 401 - "tokio", 402 - "tokio-stream", 403 - "uuid", 404 - ] 405 - 406 - [[package]] 407 - name = "bumpalo" 408 - version = "3.15.3" 409 - source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b" 411 - 412 - [[package]] 413 - name = "byteorder" 414 - version = "1.5.0" 415 - source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 417 - 418 - [[package]] 419 - name = "bytes" 420 - version = "1.5.0" 421 - source = "registry+https://github.com/rust-lang/crates.io-index" 422 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 423 - 424 - [[package]] 425 - name = "bzip2" 426 - version = "0.4.4" 427 - source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 429 - dependencies = [ 430 - "bzip2-sys", 431 - "libc", 432 - ] 433 - 434 - [[package]] 435 - name = "bzip2-sys" 436 - version = "0.1.11+1.0.8" 437 - source = "registry+https://github.com/rust-lang/crates.io-index" 438 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 439 - dependencies = [ 440 - "cc", 441 - "libc", 442 - "pkg-config", 443 - ] 444 - 445 - [[package]] 446 - name = "cairo-rs" 447 - version = "0.18.5" 448 - source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 450 - dependencies = [ 451 - "bitflags 2.4.2", 452 - "cairo-sys-rs", 453 - "glib", 454 - "libc", 455 - "once_cell", 456 - "thiserror", 457 - ] 458 - 459 - [[package]] 460 - name = "cairo-sys-rs" 461 - version = "0.18.2" 462 - source = "registry+https://github.com/rust-lang/crates.io-index" 463 - checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 464 - dependencies = [ 465 - "glib-sys", 466 - "libc", 467 - "system-deps", 468 - ] 469 - 470 - [[package]] 471 - name = "cc" 472 - version = "1.0.88" 473 - source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc" 475 - dependencies = [ 476 - "libc", 477 - ] 478 - 479 - [[package]] 480 - name = "cfg-expr" 481 - version = "0.15.7" 482 - source = "registry+https://github.com/rust-lang/crates.io-index" 483 - checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d" 484 - dependencies = [ 485 - "smallvec", 486 - "target-lexicon", 487 - ] 488 - 489 - [[package]] 490 - name = "cfg-if" 491 - version = "1.0.0" 492 - source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 494 - 495 - [[package]] 496 - name = "chrono" 497 - version = "0.4.34" 498 - source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" 500 - dependencies = [ 501 - "android-tzdata", 502 - "iana-time-zone", 503 - "js-sys", 504 - "num-traits", 505 - "wasm-bindgen", 506 - "windows-targets 0.52.4", 507 - ] 508 - 509 - [[package]] 510 - name = "cipher" 511 - version = "0.4.4" 512 - source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 514 - dependencies = [ 515 - "crypto-common", 516 - "inout", 517 - ] 518 - 519 - [[package]] 520 - name = "colorchoice" 521 - version = "1.0.0" 522 - source = "registry+https://github.com/rust-lang/crates.io-index" 523 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 524 - 525 - [[package]] 526 - name = "concurrent-queue" 527 - version = "2.4.0" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 530 - dependencies = [ 531 - "crossbeam-utils", 532 - ] 533 - 534 - [[package]] 535 - name = "constant_time_eq" 536 - version = "0.1.5" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 539 - 540 - [[package]] 541 - name = "core-foundation" 542 - version = "0.9.4" 543 - source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 545 - dependencies = [ 546 - "core-foundation-sys", 547 - "libc", 548 - ] 549 - 550 - [[package]] 551 - name = "core-foundation-sys" 552 - version = "0.8.6" 553 - source = "registry+https://github.com/rust-lang/crates.io-index" 554 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 555 - 556 - [[package]] 557 - name = "cpufeatures" 558 - version = "0.2.12" 559 - source = "registry+https://github.com/rust-lang/crates.io-index" 560 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 561 - dependencies = [ 562 - "libc", 563 - ] 564 - 565 - [[package]] 566 - name = "crc32fast" 567 - version = "1.4.0" 568 - source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 570 - dependencies = [ 571 - "cfg-if", 572 - ] 573 - 574 - [[package]] 575 - name = "crossbeam-utils" 576 - version = "0.8.19" 577 - source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 579 - 580 - [[package]] 581 - name = "crypto-common" 582 - version = "0.1.6" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 585 - dependencies = [ 586 - "generic-array", 587 - "typenum", 588 - ] 589 - 590 - [[package]] 591 - name = "custom_debug" 592 - version = "0.6.1" 593 - source = "registry+https://github.com/rust-lang/crates.io-index" 594 - checksum = "14e715bf0e503e909c7076c052e39dd215202e8edeb32f1c194fd630c314d256" 595 - dependencies = [ 596 - "custom_debug_derive", 597 - ] 598 - 599 - [[package]] 600 - name = "custom_debug_derive" 601 - version = "0.6.1" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "f731440b39c73910e253cb465ec1fac97732b3c7af215639881ec0c2a38f4f69" 604 - dependencies = [ 605 - "darling", 606 - "itertools", 607 - "proc-macro2", 608 - "quote", 609 - "syn 2.0.52", 610 - "synstructure", 611 - ] 612 - 613 - [[package]] 614 - name = "darling" 615 - version = "0.20.8" 616 - source = "registry+https://github.com/rust-lang/crates.io-index" 617 - checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" 618 - dependencies = [ 619 - "darling_core", 620 - "darling_macro", 621 - ] 622 - 623 - [[package]] 624 - name = "darling_core" 625 - version = "0.20.8" 626 - source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" 628 - dependencies = [ 629 - "fnv", 630 - "ident_case", 631 - "proc-macro2", 632 - "quote", 633 - "strsim", 634 - "syn 2.0.52", 635 - ] 636 - 637 - [[package]] 638 - name = "darling_macro" 639 - version = "0.20.8" 640 - source = "registry+https://github.com/rust-lang/crates.io-index" 641 - checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" 642 - dependencies = [ 643 - "darling_core", 644 - "quote", 645 - "syn 2.0.52", 646 - ] 647 - 648 - [[package]] 649 - name = "dbus" 650 - version = "0.9.7" 651 - source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 653 - dependencies = [ 654 - "futures-channel", 655 - "futures-util", 656 - "libc", 657 - "libdbus-sys", 658 - "winapi", 659 - ] 660 - 661 - [[package]] 662 - name = "dbus-crossroads" 663 - version = "0.5.2" 664 - source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "3a4c83437187544ba5142427746835061b330446ca8902eabd70e4afb8f76de0" 666 - dependencies = [ 667 - "dbus", 668 - ] 669 - 670 - [[package]] 671 - name = "dbus-tokio" 672 - version = "0.7.6" 673 - source = "registry+https://github.com/rust-lang/crates.io-index" 674 - checksum = "007688d459bc677131c063a3a77fb899526e17b7980f390b69644bdbc41fad13" 675 - dependencies = [ 676 - "dbus", 677 - "libc", 678 - "tokio", 679 - ] 680 - 681 - [[package]] 682 - name = "deranged" 683 - version = "0.3.11" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 686 - dependencies = [ 687 - "powerfmt", 688 - ] 689 - 690 - [[package]] 691 - name = "derivative" 692 - version = "2.2.0" 693 - source = "registry+https://github.com/rust-lang/crates.io-index" 694 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 695 - dependencies = [ 696 - "proc-macro2", 697 - "quote", 698 - "syn 1.0.109", 699 - ] 700 - 701 - [[package]] 702 - name = "digest" 703 - version = "0.10.7" 704 - source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 706 - dependencies = [ 707 - "block-buffer", 708 - "crypto-common", 709 - "subtle", 710 - ] 711 - 712 - [[package]] 713 - name = "displaydoc" 714 - version = "0.2.4" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 717 - dependencies = [ 718 - "proc-macro2", 719 - "quote", 720 - "syn 2.0.52", 721 - ] 722 - 723 - [[package]] 724 - name = "either" 725 - version = "1.10.0" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 728 - 729 - [[package]] 730 - name = "encoding_rs" 731 - version = "0.8.33" 732 - source = "registry+https://github.com/rust-lang/crates.io-index" 733 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 734 - dependencies = [ 735 - "cfg-if", 736 - ] 737 - 738 - [[package]] 739 - name = "enumflags2" 740 - version = "0.7.9" 741 - source = "registry+https://github.com/rust-lang/crates.io-index" 742 - checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" 743 - dependencies = [ 744 - "enumflags2_derive", 745 - "serde", 746 - ] 747 - 748 - [[package]] 749 - name = "enumflags2_derive" 750 - version = "0.7.9" 751 - source = "registry+https://github.com/rust-lang/crates.io-index" 752 - checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" 753 - dependencies = [ 754 - "proc-macro2", 755 - "quote", 756 - "syn 2.0.52", 757 - ] 758 - 759 - [[package]] 760 - name = "env_filter" 761 - version = "0.1.0" 762 - source = "registry+https://github.com/rust-lang/crates.io-index" 763 - checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 764 - dependencies = [ 765 - "log", 766 - "regex", 767 - ] 768 - 769 - [[package]] 770 - name = "env_logger" 771 - version = "0.11.2" 772 - source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" 774 - dependencies = [ 775 - "anstream", 776 - "anstyle", 777 - "env_filter", 778 - "humantime", 779 - "log", 780 - ] 781 - 782 - [[package]] 783 - name = "equivalent" 784 - version = "1.0.1" 785 - source = "registry+https://github.com/rust-lang/crates.io-index" 786 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 787 - 788 - [[package]] 789 - name = "errno" 790 - version = "0.3.8" 791 - source = "registry+https://github.com/rust-lang/crates.io-index" 792 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 793 - dependencies = [ 794 - "libc", 795 - "windows-sys 0.52.0", 796 - ] 797 - 798 - [[package]] 799 - name = "event-listener" 800 - version = "2.5.3" 801 - source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 803 - 804 - [[package]] 805 - name = "event-listener" 806 - version = "3.1.0" 807 - source = "registry+https://github.com/rust-lang/crates.io-index" 808 - checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 809 - dependencies = [ 810 - "concurrent-queue", 811 - "parking", 812 - "pin-project-lite", 813 - ] 814 - 815 - [[package]] 816 - name = "event-listener" 817 - version = "4.0.3" 818 - source = "registry+https://github.com/rust-lang/crates.io-index" 819 - checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 820 - dependencies = [ 821 - "concurrent-queue", 822 - "parking", 823 - "pin-project-lite", 824 - ] 825 - 826 - [[package]] 827 - name = "event-listener" 828 - version = "5.2.0" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" 831 - dependencies = [ 832 - "concurrent-queue", 833 - "parking", 834 - "pin-project-lite", 835 - ] 836 - 837 - [[package]] 838 - name = "event-listener-strategy" 839 - version = "0.4.0" 840 - source = "registry+https://github.com/rust-lang/crates.io-index" 841 - checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 842 - dependencies = [ 843 - "event-listener 4.0.3", 844 - "pin-project-lite", 845 - ] 846 - 847 - [[package]] 848 - name = "event-listener-strategy" 849 - version = "0.5.0" 850 - source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" 852 - dependencies = [ 853 - "event-listener 5.2.0", 854 - "pin-project-lite", 855 - ] 856 - 857 - [[package]] 858 - name = "fastrand" 859 - version = "1.9.0" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 862 - dependencies = [ 863 - "instant", 864 - ] 865 - 866 - [[package]] 867 - name = "fastrand" 868 - version = "2.0.1" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 871 - 872 - [[package]] 873 - name = "field-offset" 874 - version = "0.3.6" 875 - source = "registry+https://github.com/rust-lang/crates.io-index" 876 - checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 877 - dependencies = [ 878 - "memoffset 0.9.0", 879 - "rustc_version", 880 - ] 881 - 882 - [[package]] 883 - name = "flate2" 884 - version = "1.0.28" 885 - source = "registry+https://github.com/rust-lang/crates.io-index" 886 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 887 - dependencies = [ 888 - "crc32fast", 889 - "miniz_oxide", 890 - ] 891 - 892 - [[package]] 893 - name = "flume" 894 - version = "0.11.0" 895 - source = "registry+https://github.com/rust-lang/crates.io-index" 896 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 897 - dependencies = [ 898 - "futures-core", 899 - "futures-sink", 900 - "nanorand", 901 - "spin", 902 - ] 903 - 904 - [[package]] 905 - name = "fnv" 906 - version = "1.0.7" 907 - source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 909 - 910 - [[package]] 911 - name = "foreign-types" 912 - version = "0.3.2" 913 - source = "registry+https://github.com/rust-lang/crates.io-index" 914 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 915 - dependencies = [ 916 - "foreign-types-shared", 917 - ] 918 - 919 - [[package]] 920 - name = "foreign-types-shared" 921 - version = "0.1.1" 922 - source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 924 - 925 - [[package]] 926 - name = "form_urlencoded" 927 - version = "1.2.1" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 930 - dependencies = [ 931 - "percent-encoding", 932 - ] 933 - 934 - [[package]] 935 - name = "fragile" 936 - version = "2.0.0" 937 - source = "registry+https://github.com/rust-lang/crates.io-index" 938 - checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" 939 - 940 - [[package]] 941 - name = "futures" 942 - version = "0.3.30" 943 - source = "registry+https://github.com/rust-lang/crates.io-index" 944 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 945 - dependencies = [ 946 - "futures-channel", 947 - "futures-core", 948 - "futures-executor", 949 - "futures-io", 950 - "futures-sink", 951 - "futures-task", 952 - "futures-util", 953 - ] 954 - 955 - [[package]] 956 - name = "futures-channel" 957 - version = "0.3.30" 958 - source = "registry+https://github.com/rust-lang/crates.io-index" 959 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 960 - dependencies = [ 961 - "futures-core", 962 - "futures-sink", 963 - ] 964 - 965 - [[package]] 966 - name = "futures-core" 967 - version = "0.3.30" 968 - source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 970 - 971 - [[package]] 972 - name = "futures-executor" 973 - version = "0.3.30" 974 - source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 976 - dependencies = [ 977 - "futures-core", 978 - "futures-task", 979 - "futures-util", 980 - ] 981 - 982 - [[package]] 983 - name = "futures-io" 984 - version = "0.3.30" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 987 - 988 - [[package]] 989 - name = "futures-lite" 990 - version = "1.13.0" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 993 - dependencies = [ 994 - "fastrand 1.9.0", 995 - "futures-core", 996 - "futures-io", 997 - "memchr", 998 - "parking", 999 - "pin-project-lite", 1000 - "waker-fn", 1001 - ] 1002 - 1003 - [[package]] 1004 - name = "futures-lite" 1005 - version = "2.2.0" 1006 - source = "registry+https://github.com/rust-lang/crates.io-index" 1007 - checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 1008 - dependencies = [ 1009 - "fastrand 2.0.1", 1010 - "futures-core", 1011 - "futures-io", 1012 - "parking", 1013 - "pin-project-lite", 1014 - ] 1015 - 1016 - [[package]] 1017 - name = "futures-macro" 1018 - version = "0.3.30" 1019 - source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1021 - dependencies = [ 1022 - "proc-macro2", 1023 - "quote", 1024 - "syn 2.0.52", 1025 - ] 1026 - 1027 - [[package]] 1028 - name = "futures-sink" 1029 - version = "0.3.30" 1030 - source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1032 - 1033 - [[package]] 1034 - name = "futures-task" 1035 - version = "0.3.30" 1036 - source = "registry+https://github.com/rust-lang/crates.io-index" 1037 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1038 - 1039 - [[package]] 1040 - name = "futures-util" 1041 - version = "0.3.30" 1042 - source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1044 - dependencies = [ 1045 - "futures-channel", 1046 - "futures-core", 1047 - "futures-io", 1048 - "futures-macro", 1049 - "futures-sink", 1050 - "futures-task", 1051 - "memchr", 1052 - "pin-project-lite", 1053 - "pin-utils", 1054 - "slab", 1055 - ] 1056 - 1057 - [[package]] 1058 - name = "gdk-pixbuf" 1059 - version = "0.18.5" 1060 - source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 1062 - dependencies = [ 1063 - "gdk-pixbuf-sys", 1064 - "gio", 1065 - "glib", 1066 - "libc", 1067 - "once_cell", 1068 - ] 1069 - 1070 - [[package]] 1071 - name = "gdk-pixbuf-sys" 1072 - version = "0.18.0" 1073 - source = "registry+https://github.com/rust-lang/crates.io-index" 1074 - checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1075 - dependencies = [ 1076 - "gio-sys", 1077 - "glib-sys", 1078 - "gobject-sys", 1079 - "libc", 1080 - "system-deps", 1081 - ] 1082 - 1083 - [[package]] 1084 - name = "gdk4" 1085 - version = "0.7.3" 1086 - source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "7edb019ad581f8ecf8ea8e4baa6df7c483a95b5a59be3140be6a9c3b0c632af6" 1088 - dependencies = [ 1089 - "cairo-rs", 1090 - "gdk-pixbuf", 1091 - "gdk4-sys", 1092 - "gio", 1093 - "glib", 1094 - "libc", 1095 - "pango", 1096 - ] 1097 - 1098 - [[package]] 1099 - name = "gdk4-sys" 1100 - version = "0.7.2" 1101 - source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "dbab43f332a3cf1df9974da690b5bb0e26720ed09a228178ce52175372dcfef0" 1103 - dependencies = [ 1104 - "cairo-sys-rs", 1105 - "gdk-pixbuf-sys", 1106 - "gio-sys", 1107 - "glib-sys", 1108 - "gobject-sys", 1109 - "libc", 1110 - "pango-sys", 1111 - "pkg-config", 1112 - "system-deps", 1113 - ] 1114 - 1115 - [[package]] 1116 - name = "gdk4-wayland" 1117 - version = "0.7.2" 1118 - source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "0db9102ff11e55bd65e153c1192abc21ddfa45ede90622e423d4e4a0e5d5f313" 1120 - dependencies = [ 1121 - "gdk4", 1122 - "gdk4-wayland-sys", 1123 - "gio", 1124 - "glib", 1125 - "libc", 1126 - ] 1127 - 1128 - [[package]] 1129 - name = "gdk4-wayland-sys" 1130 - version = "0.7.2" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "d48159be256ae0212d5a2b9884627197d08082c7168b28775b53a0f9885d5624" 1133 - dependencies = [ 1134 - "glib-sys", 1135 - "libc", 1136 - "system-deps", 1137 - ] 1138 - 1139 - [[package]] 1140 - name = "gdk4-x11" 1141 - version = "0.7.2" 1142 - source = "registry+https://github.com/rust-lang/crates.io-index" 1143 - checksum = "28c9bbf8ea1ea8469e74c3fdfafc142c9e14810a27f89ddb01b5e9076a60a450" 1144 - dependencies = [ 1145 - "gdk4", 1146 - "gdk4-x11-sys", 1147 - "gio", 1148 - "glib", 1149 - "libc", 1150 - ] 1151 - 1152 - [[package]] 1153 - name = "gdk4-x11-sys" 1154 - version = "0.7.2" 1155 - source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "a3de1709370758192369f5329aa593847797f1c693c95e8a261e9b2e06a5f125" 1157 - dependencies = [ 1158 - "gdk4-sys", 1159 - "glib-sys", 1160 - "libc", 1161 - "system-deps", 1162 - ] 1163 - 1164 - [[package]] 1165 - name = "generic-array" 1166 - version = "0.14.7" 1167 - source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1169 - dependencies = [ 1170 - "typenum", 1171 - "version_check", 1172 - ] 1173 - 1174 - [[package]] 1175 - name = "getrandom" 1176 - version = "0.2.12" 1177 - source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1179 - dependencies = [ 1180 - "cfg-if", 1181 - "js-sys", 1182 - "libc", 1183 - "wasi", 1184 - "wasm-bindgen", 1185 - ] 1186 - 1187 - [[package]] 1188 - name = "gimli" 1189 - version = "0.28.1" 1190 - source = "registry+https://github.com/rust-lang/crates.io-index" 1191 - checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1192 - 1193 - [[package]] 1194 - name = "gio" 1195 - version = "0.18.4" 1196 - source = "registry+https://github.com/rust-lang/crates.io-index" 1197 - checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1198 - dependencies = [ 1199 - "futures-channel", 1200 - "futures-core", 1201 - "futures-io", 1202 - "futures-util", 1203 - "gio-sys", 1204 - "glib", 1205 - "libc", 1206 - "once_cell", 1207 - "pin-project-lite", 1208 - "smallvec", 1209 - "thiserror", 1210 - ] 1211 - 1212 - [[package]] 1213 - name = "gio-sys" 1214 - version = "0.18.1" 1215 - source = "registry+https://github.com/rust-lang/crates.io-index" 1216 - checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1217 - dependencies = [ 1218 - "glib-sys", 1219 - "gobject-sys", 1220 - "libc", 1221 - "system-deps", 1222 - "winapi", 1223 - ] 1224 - 1225 - [[package]] 1226 - name = "glib" 1227 - version = "0.18.5" 1228 - source = "registry+https://github.com/rust-lang/crates.io-index" 1229 - checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 1230 - dependencies = [ 1231 - "bitflags 2.4.2", 1232 - "futures-channel", 1233 - "futures-core", 1234 - "futures-executor", 1235 - "futures-task", 1236 - "futures-util", 1237 - "gio-sys", 1238 - "glib-macros", 1239 - "glib-sys", 1240 - "gobject-sys", 1241 - "libc", 1242 - "memchr", 1243 - "once_cell", 1244 - "smallvec", 1245 - "thiserror", 1246 - ] 1247 - 1248 - [[package]] 1249 - name = "glib-macros" 1250 - version = "0.18.5" 1251 - source = "registry+https://github.com/rust-lang/crates.io-index" 1252 - checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 1253 - dependencies = [ 1254 - "heck", 1255 - "proc-macro-crate 2.0.2", 1256 - "proc-macro-error", 1257 - "proc-macro2", 1258 - "quote", 1259 - "syn 2.0.52", 1260 - ] 1261 - 1262 - [[package]] 1263 - name = "glib-sys" 1264 - version = "0.18.1" 1265 - source = "registry+https://github.com/rust-lang/crates.io-index" 1266 - checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1267 - dependencies = [ 1268 - "libc", 1269 - "system-deps", 1270 - ] 1271 - 1272 - [[package]] 1273 - name = "gobject-sys" 1274 - version = "0.18.0" 1275 - source = "registry+https://github.com/rust-lang/crates.io-index" 1276 - checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 1277 - dependencies = [ 1278 - "glib-sys", 1279 - "libc", 1280 - "system-deps", 1281 - ] 1282 - 1283 - [[package]] 1284 - name = "graphene-rs" 1285 - version = "0.18.1" 1286 - source = "registry+https://github.com/rust-lang/crates.io-index" 1287 - checksum = "3b2228cda1505613a7a956cca69076892cfbda84fc2b7a62b94a41a272c0c401" 1288 - dependencies = [ 1289 - "glib", 1290 - "graphene-sys", 1291 - "libc", 1292 - ] 1293 - 1294 - [[package]] 1295 - name = "graphene-sys" 1296 - version = "0.18.1" 1297 - source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "cc4144cee8fc8788f2a9b73dc5f1d4e1189d1f95305c4cb7bd9c1af1cfa31f59" 1299 - dependencies = [ 1300 - "glib-sys", 1301 - "libc", 1302 - "pkg-config", 1303 - "system-deps", 1304 - ] 1305 - 1306 - [[package]] 1307 - name = "gsk4" 1308 - version = "0.7.3" 1309 - source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "0d958e351d2f210309b32d081c832d7de0aca0b077aa10d88336c6379bd01f7e" 1311 - dependencies = [ 1312 - "cairo-rs", 1313 - "gdk4", 1314 - "glib", 1315 - "graphene-rs", 1316 - "gsk4-sys", 1317 - "libc", 1318 - "pango", 1319 - ] 1320 - 1321 - [[package]] 1322 - name = "gsk4-sys" 1323 - version = "0.7.3" 1324 - source = "registry+https://github.com/rust-lang/crates.io-index" 1325 - checksum = "12bd9e3effea989f020e8f1ff3fa3b8c63ba93d43b899c11a118868853a56d55" 1326 - dependencies = [ 1327 - "cairo-sys-rs", 1328 - "gdk4-sys", 1329 - "glib-sys", 1330 - "gobject-sys", 1331 - "graphene-sys", 1332 - "libc", 1333 - "pango-sys", 1334 - "system-deps", 1335 - ] 1336 - 1337 - [[package]] 1338 - name = "gtk4" 1339 - version = "0.7.3" 1340 - source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "5aeb51aa3e9728575a053e1f43543cd9992ac2477e1b186ad824fd4adfb70842" 1342 - dependencies = [ 1343 - "cairo-rs", 1344 - "field-offset", 1345 - "futures-channel", 1346 - "gdk-pixbuf", 1347 - "gdk4", 1348 - "gio", 1349 - "glib", 1350 - "graphene-rs", 1351 - "gsk4", 1352 - "gtk4-macros", 1353 - "gtk4-sys", 1354 - "libc", 1355 - "pango", 1356 - ] 1357 - 1358 - [[package]] 1359 - name = "gtk4-macros" 1360 - version = "0.7.2" 1361 - source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "d57ec49cf9b657f69a05bca8027cff0a8dfd0c49e812be026fc7311f2163832f" 1363 - dependencies = [ 1364 - "anyhow", 1365 - "proc-macro-crate 1.3.1", 1366 - "proc-macro-error", 1367 - "proc-macro2", 1368 - "quote", 1369 - "syn 1.0.109", 1370 - ] 1371 - 1372 - [[package]] 1373 - name = "gtk4-sys" 1374 - version = "0.7.3" 1375 - source = "registry+https://github.com/rust-lang/crates.io-index" 1376 - checksum = "54d8c4aa23638ce9faa2caf7e2a27d4a1295af2155c8e8d28c4d4eeca7a65eb8" 1377 - dependencies = [ 1378 - "cairo-sys-rs", 1379 - "gdk-pixbuf-sys", 1380 - "gdk4-sys", 1381 - "gio-sys", 1382 - "glib-sys", 1383 - "gobject-sys", 1384 - "graphene-sys", 1385 - "gsk4-sys", 1386 - "libc", 1387 - "pango-sys", 1388 - "system-deps", 1389 - ] 1390 - 1391 - [[package]] 1392 - name = "gvdb" 1393 - version = "0.5.3" 1394 - source = "registry+https://github.com/rust-lang/crates.io-index" 1395 - checksum = "0bb9136c388a1e7b3017d18fe7c2f263b0a2b13f215c48e8eb44935d413ce0f9" 1396 - dependencies = [ 1397 - "byteorder", 1398 - "flate2", 1399 - "quick-xml", 1400 - "safe-transmute", 1401 - "serde", 1402 - "serde_json", 1403 - "walkdir", 1404 - "zvariant", 1405 - ] 1406 - 1407 - [[package]] 1408 - name = "h2" 1409 - version = "0.3.24" 1410 - source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 1412 - dependencies = [ 1413 - "bytes", 1414 - "fnv", 1415 - "futures-core", 1416 - "futures-sink", 1417 - "futures-util", 1418 - "http", 1419 - "indexmap", 1420 - "slab", 1421 - "tokio", 1422 - "tokio-util", 1423 - "tracing", 1424 - ] 1425 - 1426 - [[package]] 1427 - name = "hashbrown" 1428 - version = "0.14.3" 1429 - source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1431 - 1432 - [[package]] 1433 - name = "heck" 1434 - version = "0.4.1" 1435 - source = "registry+https://github.com/rust-lang/crates.io-index" 1436 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1437 - 1438 - [[package]] 1439 - name = "hermit-abi" 1440 - version = "0.3.9" 1441 - source = "registry+https://github.com/rust-lang/crates.io-index" 1442 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1443 - 1444 - [[package]] 1445 - name = "hex" 1446 - version = "0.4.3" 1447 - source = "registry+https://github.com/rust-lang/crates.io-index" 1448 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1449 - 1450 - [[package]] 1451 - name = "hmac" 1452 - version = "0.12.1" 1453 - source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1455 - dependencies = [ 1456 - "digest", 1457 - ] 1458 - 1459 - [[package]] 1460 - name = "http" 1461 - version = "0.2.11" 1462 - source = "registry+https://github.com/rust-lang/crates.io-index" 1463 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1464 - dependencies = [ 1465 - "bytes", 1466 - "fnv", 1467 - "itoa", 1468 - ] 1469 - 1470 - [[package]] 1471 - name = "http-body" 1472 - version = "0.4.6" 1473 - source = "registry+https://github.com/rust-lang/crates.io-index" 1474 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1475 - dependencies = [ 1476 - "bytes", 1477 - "http", 1478 - "pin-project-lite", 1479 - ] 1480 - 1481 - [[package]] 1482 - name = "httparse" 1483 - version = "1.8.0" 1484 - source = "registry+https://github.com/rust-lang/crates.io-index" 1485 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1486 - 1487 - [[package]] 1488 - name = "httpdate" 1489 - version = "1.0.3" 1490 - source = "registry+https://github.com/rust-lang/crates.io-index" 1491 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1492 - 1493 - [[package]] 1494 - name = "humantime" 1495 - version = "2.1.0" 1496 - source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1498 - 1499 - [[package]] 1500 - name = "hyper" 1501 - version = "0.14.28" 1502 - source = "registry+https://github.com/rust-lang/crates.io-index" 1503 - checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1504 - dependencies = [ 1505 - "bytes", 1506 - "futures-channel", 1507 - "futures-core", 1508 - "futures-util", 1509 - "h2", 1510 - "http", 1511 - "http-body", 1512 - "httparse", 1513 - "httpdate", 1514 - "itoa", 1515 - "pin-project-lite", 1516 - "socket2 0.5.6", 1517 - "tokio", 1518 - "tower-service", 1519 - "tracing", 1520 - "want", 1521 - ] 1522 - 1523 - [[package]] 1524 - name = "hyper-tls" 1525 - version = "0.5.0" 1526 - source = "registry+https://github.com/rust-lang/crates.io-index" 1527 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1528 - dependencies = [ 1529 - "bytes", 1530 - "hyper", 1531 - "native-tls", 1532 - "tokio", 1533 - "tokio-native-tls", 1534 - ] 1535 - 1536 - [[package]] 1537 - name = "iana-time-zone" 1538 - version = "0.1.60" 1539 - source = "registry+https://github.com/rust-lang/crates.io-index" 1540 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1541 - dependencies = [ 1542 - "android_system_properties", 1543 - "core-foundation-sys", 1544 - "iana-time-zone-haiku", 1545 - "js-sys", 1546 - "wasm-bindgen", 1547 - "windows-core", 1548 - ] 1549 - 1550 - [[package]] 1551 - name = "iana-time-zone-haiku" 1552 - version = "0.1.2" 1553 - source = "registry+https://github.com/rust-lang/crates.io-index" 1554 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1555 - dependencies = [ 1556 - "cc", 1557 - ] 1558 - 1559 - [[package]] 1560 - name = "ident_case" 1561 - version = "1.0.1" 1562 - source = "registry+https://github.com/rust-lang/crates.io-index" 1563 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1564 - 1565 - [[package]] 1566 - name = "idna" 1567 - version = "0.5.0" 1568 - source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1570 - dependencies = [ 1571 - "unicode-bidi", 1572 - "unicode-normalization", 1573 - ] 1574 - 1575 - [[package]] 1576 - name = "indexmap" 1577 - version = "2.2.5" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" 1580 - dependencies = [ 1581 - "equivalent", 1582 - "hashbrown", 1583 - ] 1584 - 1585 - [[package]] 1586 - name = "infinitime" 1587 - version = "0.1.0" 1588 - dependencies = [ 1589 - "anyhow", 1590 - "bluer", 1591 - "chrono", 1592 - "futures", 1593 - "log", 1594 - "mpris2-zbus", 1595 - "reqwest", 1596 - "serde", 1597 - "serde_json", 1598 - "tokio", 1599 - "uuid", 1600 - "version-compare", 1601 - "zbus", 1602 - "zip", 1603 - ] 1604 - 1605 - [[package]] 1606 - name = "inout" 1607 - version = "0.1.3" 1608 - source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1610 - dependencies = [ 1611 - "generic-array", 1612 - ] 1613 - 1614 - [[package]] 1615 - name = "instant" 1616 - version = "0.1.12" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1619 - dependencies = [ 1620 - "cfg-if", 1621 - ] 1622 - 1623 - [[package]] 1624 - name = "io-lifetimes" 1625 - version = "1.0.11" 1626 - source = "registry+https://github.com/rust-lang/crates.io-index" 1627 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1628 - dependencies = [ 1629 - "hermit-abi", 1630 - "libc", 1631 - "windows-sys 0.48.0", 1632 - ] 1633 - 1634 - [[package]] 1635 - name = "ipnet" 1636 - version = "2.9.0" 1637 - source = "registry+https://github.com/rust-lang/crates.io-index" 1638 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1639 - 1640 - [[package]] 1641 - name = "itertools" 1642 - version = "0.12.1" 1643 - source = "registry+https://github.com/rust-lang/crates.io-index" 1644 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1645 - dependencies = [ 1646 - "either", 1647 - ] 1648 - 1649 - [[package]] 1650 - name = "itoa" 1651 - version = "1.0.10" 1652 - source = "registry+https://github.com/rust-lang/crates.io-index" 1653 - checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1654 - 1655 - [[package]] 1656 - name = "js-sys" 1657 - version = "0.3.68" 1658 - source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 1660 - dependencies = [ 1661 - "wasm-bindgen", 1662 - ] 1663 - 1664 - [[package]] 1665 - name = "lazy_static" 1666 - version = "1.4.0" 1667 - source = "registry+https://github.com/rust-lang/crates.io-index" 1668 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1669 - 1670 - [[package]] 1671 - name = "libadwaita" 1672 - version = "0.5.3" 1673 - source = "registry+https://github.com/rust-lang/crates.io-index" 1674 - checksum = "2fe7e70c06507ed10a16cda707f358fbe60fe0dc237498f78c686ade92fd979c" 1675 - dependencies = [ 1676 - "gdk-pixbuf", 1677 - "gdk4", 1678 - "gio", 1679 - "glib", 1680 - "gtk4", 1681 - "libadwaita-sys", 1682 - "libc", 1683 - "pango", 1684 - ] 1685 - 1686 - [[package]] 1687 - name = "libadwaita-sys" 1688 - version = "0.5.3" 1689 - source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "5e10aaa38de1d53374f90deeb4535209adc40cc5dba37f9704724169bceec69a" 1691 - dependencies = [ 1692 - "gdk4-sys", 1693 - "gio-sys", 1694 - "glib-sys", 1695 - "gobject-sys", 1696 - "gtk4-sys", 1697 - "libc", 1698 - "pango-sys", 1699 - "system-deps", 1700 - ] 1701 - 1702 - [[package]] 1703 - name = "libc" 1704 - version = "0.2.153" 1705 - source = "registry+https://github.com/rust-lang/crates.io-index" 1706 - checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1707 - 1708 - [[package]] 1709 - name = "libdbus-sys" 1710 - version = "0.2.5" 1711 - source = "registry+https://github.com/rust-lang/crates.io-index" 1712 - checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" 1713 - dependencies = [ 1714 - "pkg-config", 1715 - ] 1716 - 1717 - [[package]] 1718 - name = "linux-raw-sys" 1719 - version = "0.3.8" 1720 - source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1722 - 1723 - [[package]] 1724 - name = "linux-raw-sys" 1725 - version = "0.4.13" 1726 - source = "registry+https://github.com/rust-lang/crates.io-index" 1727 - checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1728 - 1729 - [[package]] 1730 - name = "lock_api" 1731 - version = "0.4.11" 1732 - source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1734 - dependencies = [ 1735 - "autocfg", 1736 - "scopeguard", 1737 - ] 1738 - 1739 - [[package]] 1740 - name = "log" 1741 - version = "0.4.21" 1742 - source = "registry+https://github.com/rust-lang/crates.io-index" 1743 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1744 - 1745 - [[package]] 1746 - name = "macaddr" 1747 - version = "1.0.1" 1748 - source = "registry+https://github.com/rust-lang/crates.io-index" 1749 - checksum = "baee0bbc17ce759db233beb01648088061bf678383130602a298e6998eedb2d8" 1750 - 1751 - [[package]] 1752 - name = "memchr" 1753 - version = "2.7.1" 1754 - source = "registry+https://github.com/rust-lang/crates.io-index" 1755 - checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1756 - 1757 - [[package]] 1758 - name = "memoffset" 1759 - version = "0.7.1" 1760 - source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1762 - dependencies = [ 1763 - "autocfg", 1764 - ] 1765 - 1766 - [[package]] 1767 - name = "memoffset" 1768 - version = "0.9.0" 1769 - source = "registry+https://github.com/rust-lang/crates.io-index" 1770 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1771 - dependencies = [ 1772 - "autocfg", 1773 - ] 1774 - 1775 - [[package]] 1776 - name = "mime" 1777 - version = "0.3.17" 1778 - source = "registry+https://github.com/rust-lang/crates.io-index" 1779 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1780 - 1781 - [[package]] 1782 - name = "miniz_oxide" 1783 - version = "0.7.2" 1784 - source = "registry+https://github.com/rust-lang/crates.io-index" 1785 - checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1786 - dependencies = [ 1787 - "adler", 1788 - ] 1789 - 1790 - [[package]] 1791 - name = "mio" 1792 - version = "0.8.11" 1793 - source = "registry+https://github.com/rust-lang/crates.io-index" 1794 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 1795 - dependencies = [ 1796 - "libc", 1797 - "wasi", 1798 - "windows-sys 0.48.0", 1799 - ] 1800 - 1801 - [[package]] 1802 - name = "mpris2-zbus" 1803 - version = "0.1.0" 1804 - source = "git+https://github.com/pop-os/dbus-settings-bindings#8b9767f6cedede2def12941ce89e14bfcd913aeb" 1805 - dependencies = [ 1806 - "serde", 1807 - "thiserror", 1808 - "time", 1809 - "zbus", 1810 - "zvariant", 1811 - ] 1812 - 1813 - [[package]] 1814 - name = "nanorand" 1815 - version = "0.7.0" 1816 - source = "registry+https://github.com/rust-lang/crates.io-index" 1817 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 1818 - dependencies = [ 1819 - "getrandom", 1820 - ] 1821 - 1822 - [[package]] 1823 - name = "native-tls" 1824 - version = "0.2.11" 1825 - source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1827 - dependencies = [ 1828 - "lazy_static", 1829 - "libc", 1830 - "log", 1831 - "openssl", 1832 - "openssl-probe", 1833 - "openssl-sys", 1834 - "schannel", 1835 - "security-framework", 1836 - "security-framework-sys", 1837 - "tempfile", 1838 - ] 1839 - 1840 - [[package]] 1841 - name = "nix" 1842 - version = "0.26.4" 1843 - source = "registry+https://github.com/rust-lang/crates.io-index" 1844 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 1845 - dependencies = [ 1846 - "bitflags 1.3.2", 1847 - "cfg-if", 1848 - "libc", 1849 - "memoffset 0.7.1", 1850 - ] 1851 - 1852 - [[package]] 1853 - name = "nix" 1854 - version = "0.27.1" 1855 - source = "registry+https://github.com/rust-lang/crates.io-index" 1856 - checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 1857 - dependencies = [ 1858 - "bitflags 2.4.2", 1859 - "cfg-if", 1860 - "libc", 1861 - ] 1862 - 1863 - [[package]] 1864 - name = "num-conv" 1865 - version = "0.1.0" 1866 - source = "registry+https://github.com/rust-lang/crates.io-index" 1867 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1868 - 1869 - [[package]] 1870 - name = "num-derive" 1871 - version = "0.4.2" 1872 - source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 1874 - dependencies = [ 1875 - "proc-macro2", 1876 - "quote", 1877 - "syn 2.0.52", 1878 - ] 1879 - 1880 - [[package]] 1881 - name = "num-traits" 1882 - version = "0.2.18" 1883 - source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 1885 - dependencies = [ 1886 - "autocfg", 1887 - ] 1888 - 1889 - [[package]] 1890 - name = "num_cpus" 1891 - version = "1.16.0" 1892 - source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1894 - dependencies = [ 1895 - "hermit-abi", 1896 - "libc", 1897 - ] 1898 - 1899 - [[package]] 1900 - name = "object" 1901 - version = "0.32.2" 1902 - source = "registry+https://github.com/rust-lang/crates.io-index" 1903 - checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1904 - dependencies = [ 1905 - "memchr", 1906 - ] 1907 - 1908 - [[package]] 1909 - name = "once_cell" 1910 - version = "1.19.0" 1911 - source = "registry+https://github.com/rust-lang/crates.io-index" 1912 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1913 - 1914 - [[package]] 1915 - name = "openssl" 1916 - version = "0.10.64" 1917 - source = "registry+https://github.com/rust-lang/crates.io-index" 1918 - checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 1919 - dependencies = [ 1920 - "bitflags 2.4.2", 1921 - "cfg-if", 1922 - "foreign-types", 1923 - "libc", 1924 - "once_cell", 1925 - "openssl-macros", 1926 - "openssl-sys", 1927 - ] 1928 - 1929 - [[package]] 1930 - name = "openssl-macros" 1931 - version = "0.1.1" 1932 - source = "registry+https://github.com/rust-lang/crates.io-index" 1933 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1934 - dependencies = [ 1935 - "proc-macro2", 1936 - "quote", 1937 - "syn 2.0.52", 1938 - ] 1939 - 1940 - [[package]] 1941 - name = "openssl-probe" 1942 - version = "0.1.5" 1943 - source = "registry+https://github.com/rust-lang/crates.io-index" 1944 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1945 - 1946 - [[package]] 1947 - name = "openssl-sys" 1948 - version = "0.9.101" 1949 - source = "registry+https://github.com/rust-lang/crates.io-index" 1950 - checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" 1951 - dependencies = [ 1952 - "cc", 1953 - "libc", 1954 - "pkg-config", 1955 - "vcpkg", 1956 - ] 1957 - 1958 - [[package]] 1959 - name = "ordered-stream" 1960 - version = "0.2.0" 1961 - source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 1963 - dependencies = [ 1964 - "futures-core", 1965 - "pin-project-lite", 1966 - ] 1967 - 1968 - [[package]] 1969 - name = "pango" 1970 - version = "0.18.3" 1971 - source = "registry+https://github.com/rust-lang/crates.io-index" 1972 - checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 1973 - dependencies = [ 1974 - "gio", 1975 - "glib", 1976 - "libc", 1977 - "once_cell", 1978 - "pango-sys", 1979 - ] 1980 - 1981 - [[package]] 1982 - name = "pango-sys" 1983 - version = "0.18.0" 1984 - source = "registry+https://github.com/rust-lang/crates.io-index" 1985 - checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 1986 - dependencies = [ 1987 - "glib-sys", 1988 - "gobject-sys", 1989 - "libc", 1990 - "system-deps", 1991 - ] 1992 - 1993 - [[package]] 1994 - name = "parking" 1995 - version = "2.2.0" 1996 - source = "registry+https://github.com/rust-lang/crates.io-index" 1997 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 1998 - 1999 - [[package]] 2000 - name = "password-hash" 2001 - version = "0.4.2" 2002 - source = "registry+https://github.com/rust-lang/crates.io-index" 2003 - checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2004 - dependencies = [ 2005 - "base64ct", 2006 - "rand_core", 2007 - "subtle", 2008 - ] 2009 - 2010 - [[package]] 2011 - name = "pbkdf2" 2012 - version = "0.11.0" 2013 - source = "registry+https://github.com/rust-lang/crates.io-index" 2014 - checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2015 - dependencies = [ 2016 - "digest", 2017 - "hmac", 2018 - "password-hash", 2019 - "sha2", 2020 - ] 2021 - 2022 - [[package]] 2023 - name = "percent-encoding" 2024 - version = "2.3.1" 2025 - source = "registry+https://github.com/rust-lang/crates.io-index" 2026 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2027 - 2028 - [[package]] 2029 - name = "pin-project" 2030 - version = "1.1.4" 2031 - source = "registry+https://github.com/rust-lang/crates.io-index" 2032 - checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" 2033 - dependencies = [ 2034 - "pin-project-internal", 2035 - ] 2036 - 2037 - [[package]] 2038 - name = "pin-project-internal" 2039 - version = "1.1.4" 2040 - source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" 2042 - dependencies = [ 2043 - "proc-macro2", 2044 - "quote", 2045 - "syn 2.0.52", 2046 - ] 2047 - 2048 - [[package]] 2049 - name = "pin-project-lite" 2050 - version = "0.2.13" 2051 - source = "registry+https://github.com/rust-lang/crates.io-index" 2052 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2053 - 2054 - [[package]] 2055 - name = "pin-utils" 2056 - version = "0.1.0" 2057 - source = "registry+https://github.com/rust-lang/crates.io-index" 2058 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2059 - 2060 - [[package]] 2061 - name = "piper" 2062 - version = "0.2.1" 2063 - source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 2065 - dependencies = [ 2066 - "atomic-waker", 2067 - "fastrand 2.0.1", 2068 - "futures-io", 2069 - ] 2070 - 2071 - [[package]] 2072 - name = "pkg-config" 2073 - version = "0.3.30" 2074 - source = "registry+https://github.com/rust-lang/crates.io-index" 2075 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2076 - 2077 - [[package]] 2078 - name = "polling" 2079 - version = "2.8.0" 2080 - source = "registry+https://github.com/rust-lang/crates.io-index" 2081 - checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 2082 - dependencies = [ 2083 - "autocfg", 2084 - "bitflags 1.3.2", 2085 - "cfg-if", 2086 - "concurrent-queue", 2087 - "libc", 2088 - "log", 2089 - "pin-project-lite", 2090 - "windows-sys 0.48.0", 2091 - ] 2092 - 2093 - [[package]] 2094 - name = "polling" 2095 - version = "3.5.0" 2096 - source = "registry+https://github.com/rust-lang/crates.io-index" 2097 - checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" 2098 - dependencies = [ 2099 - "cfg-if", 2100 - "concurrent-queue", 2101 - "pin-project-lite", 2102 - "rustix 0.38.31", 2103 - "tracing", 2104 - "windows-sys 0.52.0", 2105 - ] 2106 - 2107 - [[package]] 2108 - name = "powerfmt" 2109 - version = "0.2.0" 2110 - source = "registry+https://github.com/rust-lang/crates.io-index" 2111 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2112 - 2113 - [[package]] 2114 - name = "ppv-lite86" 2115 - version = "0.2.17" 2116 - source = "registry+https://github.com/rust-lang/crates.io-index" 2117 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2118 - 2119 - [[package]] 2120 - name = "proc-macro-crate" 2121 - version = "1.3.1" 2122 - source = "registry+https://github.com/rust-lang/crates.io-index" 2123 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2124 - dependencies = [ 2125 - "once_cell", 2126 - "toml_edit 0.19.15", 2127 - ] 2128 - 2129 - [[package]] 2130 - name = "proc-macro-crate" 2131 - version = "2.0.2" 2132 - source = "registry+https://github.com/rust-lang/crates.io-index" 2133 - checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" 2134 - dependencies = [ 2135 - "toml_datetime", 2136 - "toml_edit 0.20.2", 2137 - ] 2138 - 2139 - [[package]] 2140 - name = "proc-macro-error" 2141 - version = "1.0.4" 2142 - source = "registry+https://github.com/rust-lang/crates.io-index" 2143 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2144 - dependencies = [ 2145 - "proc-macro-error-attr", 2146 - "proc-macro2", 2147 - "quote", 2148 - "syn 1.0.109", 2149 - "version_check", 2150 - ] 2151 - 2152 - [[package]] 2153 - name = "proc-macro-error-attr" 2154 - version = "1.0.4" 2155 - source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2157 - dependencies = [ 2158 - "proc-macro2", 2159 - "quote", 2160 - "version_check", 2161 - ] 2162 - 2163 - [[package]] 2164 - name = "proc-macro2" 2165 - version = "1.0.78" 2166 - source = "registry+https://github.com/rust-lang/crates.io-index" 2167 - checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 2168 - dependencies = [ 2169 - "unicode-ident", 2170 - ] 2171 - 2172 - [[package]] 2173 - name = "quick-xml" 2174 - version = "0.31.0" 2175 - source = "registry+https://github.com/rust-lang/crates.io-index" 2176 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2177 - dependencies = [ 2178 - "memchr", 2179 - "serde", 2180 - ] 2181 - 2182 - [[package]] 2183 - name = "quote" 2184 - version = "1.0.35" 2185 - source = "registry+https://github.com/rust-lang/crates.io-index" 2186 - checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2187 - dependencies = [ 2188 - "proc-macro2", 2189 - ] 2190 - 2191 - [[package]] 2192 - name = "rand" 2193 - version = "0.8.5" 2194 - source = "registry+https://github.com/rust-lang/crates.io-index" 2195 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2196 - dependencies = [ 2197 - "libc", 2198 - "rand_chacha", 2199 - "rand_core", 2200 - ] 2201 - 2202 - [[package]] 2203 - name = "rand_chacha" 2204 - version = "0.3.1" 2205 - source = "registry+https://github.com/rust-lang/crates.io-index" 2206 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2207 - dependencies = [ 2208 - "ppv-lite86", 2209 - "rand_core", 2210 - ] 2211 - 2212 - [[package]] 2213 - name = "rand_core" 2214 - version = "0.6.4" 2215 - source = "registry+https://github.com/rust-lang/crates.io-index" 2216 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2217 - dependencies = [ 2218 - "getrandom", 2219 - ] 2220 - 2221 - [[package]] 2222 - name = "regex" 2223 - version = "1.10.3" 2224 - source = "registry+https://github.com/rust-lang/crates.io-index" 2225 - checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2226 - dependencies = [ 2227 - "aho-corasick", 2228 - "memchr", 2229 - "regex-automata", 2230 - "regex-syntax", 2231 - ] 2232 - 2233 - [[package]] 2234 - name = "regex-automata" 2235 - version = "0.4.5" 2236 - source = "registry+https://github.com/rust-lang/crates.io-index" 2237 - checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 2238 - dependencies = [ 2239 - "aho-corasick", 2240 - "memchr", 2241 - "regex-syntax", 2242 - ] 2243 - 2244 - [[package]] 2245 - name = "regex-syntax" 2246 - version = "0.8.2" 2247 - source = "registry+https://github.com/rust-lang/crates.io-index" 2248 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2249 - 2250 - [[package]] 2251 - name = "relm4" 2252 - version = "0.7.0-rc.1" 2253 - source = "registry+https://github.com/rust-lang/crates.io-index" 2254 - checksum = "b7497b6d4d07b10f8d5384a657d40fb814de5fc900785322129ec459527c7af1" 2255 - dependencies = [ 2256 - "async-trait", 2257 - "flume", 2258 - "fragile", 2259 - "futures", 2260 - "gtk4", 2261 - "libadwaita", 2262 - "once_cell", 2263 - "relm4-macros", 2264 - "tokio", 2265 - "tracing", 2266 - ] 2267 - 2268 - [[package]] 2269 - name = "relm4-components" 2270 - version = "0.7.0-rc.1" 2271 - source = "registry+https://github.com/rust-lang/crates.io-index" 2272 - checksum = "d8fbe20184f217314e9f034db0f01267407de3887892252015861d6a207384e8" 2273 - dependencies = [ 2274 - "once_cell", 2275 - "relm4", 2276 - "tracker", 2277 - ] 2278 - 2279 - [[package]] 2280 - name = "relm4-icons" 2281 - version = "0.7.0-alpha.2" 2282 - source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "f0d2413577ec528e0a4de8d05e7b1f6840e60f2cf14a70b16dfd8d862654c06c" 2284 - dependencies = [ 2285 - "gtk4", 2286 - "gvdb", 2287 - ] 2288 - 2289 - [[package]] 2290 - name = "relm4-macros" 2291 - version = "0.7.0-rc.1" 2292 - source = "registry+https://github.com/rust-lang/crates.io-index" 2293 - checksum = "830b999c06b80fc53dac4e1b20382fde949b15cfd3342e71f53fed5346237a4f" 2294 - dependencies = [ 2295 - "proc-macro2", 2296 - "quote", 2297 - "syn 2.0.52", 2298 - ] 2299 - 2300 - [[package]] 2301 - name = "reqwest" 2302 - version = "0.11.24" 2303 - source = "registry+https://github.com/rust-lang/crates.io-index" 2304 - checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" 2305 - dependencies = [ 2306 - "base64", 2307 - "bytes", 2308 - "encoding_rs", 2309 - "futures-core", 2310 - "futures-util", 2311 - "h2", 2312 - "http", 2313 - "http-body", 2314 - "hyper", 2315 - "hyper-tls", 2316 - "ipnet", 2317 - "js-sys", 2318 - "log", 2319 - "mime", 2320 - "native-tls", 2321 - "once_cell", 2322 - "percent-encoding", 2323 - "pin-project-lite", 2324 - "rustls-pemfile", 2325 - "serde", 2326 - "serde_json", 2327 - "serde_urlencoded", 2328 - "sync_wrapper", 2329 - "system-configuration", 2330 - "tokio", 2331 - "tokio-native-tls", 2332 - "tower-service", 2333 - "url", 2334 - "wasm-bindgen", 2335 - "wasm-bindgen-futures", 2336 - "web-sys", 2337 - "winreg", 2338 - ] 2339 - 2340 - [[package]] 2341 - name = "rustc-demangle" 2342 - version = "0.1.23" 2343 - source = "registry+https://github.com/rust-lang/crates.io-index" 2344 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2345 - 2346 - [[package]] 2347 - name = "rustc_version" 2348 - version = "0.4.0" 2349 - source = "registry+https://github.com/rust-lang/crates.io-index" 2350 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2351 - dependencies = [ 2352 - "semver", 2353 - ] 2354 - 2355 - [[package]] 2356 - name = "rustix" 2357 - version = "0.37.27" 2358 - source = "registry+https://github.com/rust-lang/crates.io-index" 2359 - checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 2360 - dependencies = [ 2361 - "bitflags 1.3.2", 2362 - "errno", 2363 - "io-lifetimes", 2364 - "libc", 2365 - "linux-raw-sys 0.3.8", 2366 - "windows-sys 0.48.0", 2367 - ] 2368 - 2369 - [[package]] 2370 - name = "rustix" 2371 - version = "0.38.31" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 2374 - dependencies = [ 2375 - "bitflags 2.4.2", 2376 - "errno", 2377 - "libc", 2378 - "linux-raw-sys 0.4.13", 2379 - "windows-sys 0.52.0", 2380 - ] 2381 - 2382 - [[package]] 2383 - name = "rustls-pemfile" 2384 - version = "1.0.4" 2385 - source = "registry+https://github.com/rust-lang/crates.io-index" 2386 - checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2387 - dependencies = [ 2388 - "base64", 2389 - ] 2390 - 2391 - [[package]] 2392 - name = "rustversion" 2393 - version = "1.0.14" 2394 - source = "registry+https://github.com/rust-lang/crates.io-index" 2395 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2396 - 2397 - [[package]] 2398 - name = "ryu" 2399 - version = "1.0.17" 2400 - source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 2402 - 2403 - [[package]] 2404 - name = "safe-transmute" 2405 - version = "0.11.2" 2406 - source = "registry+https://github.com/rust-lang/crates.io-index" 2407 - checksum = "98a01dab6acf992653be49205bdd549f32f17cb2803e8eacf1560bf97259aae8" 2408 - 2409 - [[package]] 2410 - name = "same-file" 2411 - version = "1.0.6" 2412 - source = "registry+https://github.com/rust-lang/crates.io-index" 2413 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2414 - dependencies = [ 2415 - "winapi-util", 2416 - ] 2417 - 2418 - [[package]] 2419 - name = "schannel" 2420 - version = "0.1.23" 2421 - source = "registry+https://github.com/rust-lang/crates.io-index" 2422 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 2423 - dependencies = [ 2424 - "windows-sys 0.52.0", 2425 - ] 2426 - 2427 - [[package]] 2428 - name = "scopeguard" 2429 - version = "1.2.0" 2430 - source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2432 - 2433 - [[package]] 2434 - name = "security-framework" 2435 - version = "2.9.2" 2436 - source = "registry+https://github.com/rust-lang/crates.io-index" 2437 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 2438 - dependencies = [ 2439 - "bitflags 1.3.2", 2440 - "core-foundation", 2441 - "core-foundation-sys", 2442 - "libc", 2443 - "security-framework-sys", 2444 - ] 2445 - 2446 - [[package]] 2447 - name = "security-framework-sys" 2448 - version = "2.9.1" 2449 - source = "registry+https://github.com/rust-lang/crates.io-index" 2450 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 2451 - dependencies = [ 2452 - "core-foundation-sys", 2453 - "libc", 2454 - ] 2455 - 2456 - [[package]] 2457 - name = "semver" 2458 - version = "1.0.22" 2459 - source = "registry+https://github.com/rust-lang/crates.io-index" 2460 - checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 2461 - 2462 - [[package]] 2463 - name = "serde" 2464 - version = "1.0.197" 2465 - source = "registry+https://github.com/rust-lang/crates.io-index" 2466 - checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 2467 - dependencies = [ 2468 - "serde_derive", 2469 - ] 2470 - 2471 - [[package]] 2472 - name = "serde_derive" 2473 - version = "1.0.197" 2474 - source = "registry+https://github.com/rust-lang/crates.io-index" 2475 - checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 2476 - dependencies = [ 2477 - "proc-macro2", 2478 - "quote", 2479 - "syn 2.0.52", 2480 - ] 2481 - 2482 - [[package]] 2483 - name = "serde_json" 2484 - version = "1.0.114" 2485 - source = "registry+https://github.com/rust-lang/crates.io-index" 2486 - checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 2487 - dependencies = [ 2488 - "itoa", 2489 - "ryu", 2490 - "serde", 2491 - ] 2492 - 2493 - [[package]] 2494 - name = "serde_repr" 2495 - version = "0.1.18" 2496 - source = "registry+https://github.com/rust-lang/crates.io-index" 2497 - checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 2498 - dependencies = [ 2499 - "proc-macro2", 2500 - "quote", 2501 - "syn 2.0.52", 2502 - ] 2503 - 2504 - [[package]] 2505 - name = "serde_spanned" 2506 - version = "0.6.5" 2507 - source = "registry+https://github.com/rust-lang/crates.io-index" 2508 - checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 2509 - dependencies = [ 2510 - "serde", 2511 - ] 2512 - 2513 - [[package]] 2514 - name = "serde_urlencoded" 2515 - version = "0.7.1" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2518 - dependencies = [ 2519 - "form_urlencoded", 2520 - "itoa", 2521 - "ryu", 2522 - "serde", 2523 - ] 2524 - 2525 - [[package]] 2526 - name = "sha1" 2527 - version = "0.10.6" 2528 - source = "registry+https://github.com/rust-lang/crates.io-index" 2529 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2530 - dependencies = [ 2531 - "cfg-if", 2532 - "cpufeatures", 2533 - "digest", 2534 - ] 2535 - 2536 - [[package]] 2537 - name = "sha2" 2538 - version = "0.10.8" 2539 - source = "registry+https://github.com/rust-lang/crates.io-index" 2540 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 2541 - dependencies = [ 2542 - "cfg-if", 2543 - "cpufeatures", 2544 - "digest", 2545 - ] 2546 - 2547 - [[package]] 2548 - name = "signal-hook-registry" 2549 - version = "1.4.1" 2550 - source = "registry+https://github.com/rust-lang/crates.io-index" 2551 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2552 - dependencies = [ 2553 - "libc", 2554 - ] 2555 - 2556 - [[package]] 2557 - name = "slab" 2558 - version = "0.4.9" 2559 - source = "registry+https://github.com/rust-lang/crates.io-index" 2560 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2561 - dependencies = [ 2562 - "autocfg", 2563 - ] 2564 - 2565 - [[package]] 2566 - name = "smallvec" 2567 - version = "1.13.1" 2568 - source = "registry+https://github.com/rust-lang/crates.io-index" 2569 - checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2570 - 2571 - [[package]] 2572 - name = "socket2" 2573 - version = "0.4.10" 2574 - source = "registry+https://github.com/rust-lang/crates.io-index" 2575 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2576 - dependencies = [ 2577 - "libc", 2578 - "winapi", 2579 - ] 2580 - 2581 - [[package]] 2582 - name = "socket2" 2583 - version = "0.5.6" 2584 - source = "registry+https://github.com/rust-lang/crates.io-index" 2585 - checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 2586 - dependencies = [ 2587 - "libc", 2588 - "windows-sys 0.52.0", 2589 - ] 2590 - 2591 - [[package]] 2592 - name = "spin" 2593 - version = "0.9.8" 2594 - source = "registry+https://github.com/rust-lang/crates.io-index" 2595 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2596 - dependencies = [ 2597 - "lock_api", 2598 - ] 2599 - 2600 - [[package]] 2601 - name = "static_assertions" 2602 - version = "1.1.0" 2603 - source = "registry+https://github.com/rust-lang/crates.io-index" 2604 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2605 - 2606 - [[package]] 2607 - name = "strsim" 2608 - version = "0.10.0" 2609 - source = "registry+https://github.com/rust-lang/crates.io-index" 2610 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2611 - 2612 - [[package]] 2613 - name = "strum" 2614 - version = "0.26.1" 2615 - source = "registry+https://github.com/rust-lang/crates.io-index" 2616 - checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" 2617 - dependencies = [ 2618 - "strum_macros", 2619 - ] 2620 - 2621 - [[package]] 2622 - name = "strum_macros" 2623 - version = "0.26.1" 2624 - source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "7a3417fc93d76740d974a01654a09777cb500428cc874ca9f45edfe0c4d4cd18" 2626 - dependencies = [ 2627 - "heck", 2628 - "proc-macro2", 2629 - "quote", 2630 - "rustversion", 2631 - "syn 2.0.52", 2632 - ] 2633 - 2634 - [[package]] 2635 - name = "subtle" 2636 - version = "2.5.0" 2637 - source = "registry+https://github.com/rust-lang/crates.io-index" 2638 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2639 - 2640 - [[package]] 2641 - name = "syn" 2642 - version = "1.0.109" 2643 - source = "registry+https://github.com/rust-lang/crates.io-index" 2644 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2645 - dependencies = [ 2646 - "proc-macro2", 2647 - "quote", 2648 - "unicode-ident", 2649 - ] 2650 - 2651 - [[package]] 2652 - name = "syn" 2653 - version = "2.0.52" 2654 - source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" 2656 - dependencies = [ 2657 - "proc-macro2", 2658 - "quote", 2659 - "unicode-ident", 2660 - ] 2661 - 2662 - [[package]] 2663 - name = "sync_wrapper" 2664 - version = "0.1.2" 2665 - source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 2667 - 2668 - [[package]] 2669 - name = "synstructure" 2670 - version = "0.13.1" 2671 - source = "registry+https://github.com/rust-lang/crates.io-index" 2672 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2673 - dependencies = [ 2674 - "proc-macro2", 2675 - "quote", 2676 - "syn 2.0.52", 2677 - ] 2678 - 2679 - [[package]] 2680 - name = "system-configuration" 2681 - version = "0.5.1" 2682 - source = "registry+https://github.com/rust-lang/crates.io-index" 2683 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 2684 - dependencies = [ 2685 - "bitflags 1.3.2", 2686 - "core-foundation", 2687 - "system-configuration-sys", 2688 - ] 2689 - 2690 - [[package]] 2691 - name = "system-configuration-sys" 2692 - version = "0.5.0" 2693 - source = "registry+https://github.com/rust-lang/crates.io-index" 2694 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 2695 - dependencies = [ 2696 - "core-foundation-sys", 2697 - "libc", 2698 - ] 2699 - 2700 - [[package]] 2701 - name = "system-deps" 2702 - version = "6.2.0" 2703 - source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 2705 - dependencies = [ 2706 - "cfg-expr", 2707 - "heck", 2708 - "pkg-config", 2709 - "toml", 2710 - "version-compare", 2711 - ] 2712 - 2713 - [[package]] 2714 - name = "target-lexicon" 2715 - version = "0.12.14" 2716 - source = "registry+https://github.com/rust-lang/crates.io-index" 2717 - checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 2718 - 2719 - [[package]] 2720 - name = "tempfile" 2721 - version = "3.10.1" 2722 - source = "registry+https://github.com/rust-lang/crates.io-index" 2723 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 2724 - dependencies = [ 2725 - "cfg-if", 2726 - "fastrand 2.0.1", 2727 - "rustix 0.38.31", 2728 - "windows-sys 0.52.0", 2729 - ] 2730 - 2731 - [[package]] 2732 - name = "thiserror" 2733 - version = "1.0.57" 2734 - source = "registry+https://github.com/rust-lang/crates.io-index" 2735 - checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" 2736 - dependencies = [ 2737 - "thiserror-impl", 2738 - ] 2739 - 2740 - [[package]] 2741 - name = "thiserror-impl" 2742 - version = "1.0.57" 2743 - source = "registry+https://github.com/rust-lang/crates.io-index" 2744 - checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" 2745 - dependencies = [ 2746 - "proc-macro2", 2747 - "quote", 2748 - "syn 2.0.52", 2749 - ] 2750 - 2751 - [[package]] 2752 - name = "time" 2753 - version = "0.3.36" 2754 - source = "registry+https://github.com/rust-lang/crates.io-index" 2755 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2756 - dependencies = [ 2757 - "deranged", 2758 - "num-conv", 2759 - "powerfmt", 2760 - "serde", 2761 - "time-core", 2762 - "time-macros", 2763 - ] 2764 - 2765 - [[package]] 2766 - name = "time-core" 2767 - version = "0.1.2" 2768 - source = "registry+https://github.com/rust-lang/crates.io-index" 2769 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2770 - 2771 - [[package]] 2772 - name = "time-macros" 2773 - version = "0.2.18" 2774 - source = "registry+https://github.com/rust-lang/crates.io-index" 2775 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2776 - dependencies = [ 2777 - "num-conv", 2778 - "time-core", 2779 - ] 2780 - 2781 - [[package]] 2782 - name = "tinyvec" 2783 - version = "1.6.0" 2784 - source = "registry+https://github.com/rust-lang/crates.io-index" 2785 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2786 - dependencies = [ 2787 - "tinyvec_macros", 2788 - ] 2789 - 2790 - [[package]] 2791 - name = "tinyvec_macros" 2792 - version = "0.1.1" 2793 - source = "registry+https://github.com/rust-lang/crates.io-index" 2794 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2795 - 2796 - [[package]] 2797 - name = "tokio" 2798 - version = "1.36.0" 2799 - source = "registry+https://github.com/rust-lang/crates.io-index" 2800 - checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 2801 - dependencies = [ 2802 - "backtrace", 2803 - "bytes", 2804 - "libc", 2805 - "mio", 2806 - "num_cpus", 2807 - "pin-project-lite", 2808 - "signal-hook-registry", 2809 - "socket2 0.5.6", 2810 - "tokio-macros", 2811 - "tracing", 2812 - "windows-sys 0.48.0", 2813 - ] 2814 - 2815 - [[package]] 2816 - name = "tokio-macros" 2817 - version = "2.2.0" 2818 - source = "registry+https://github.com/rust-lang/crates.io-index" 2819 - checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 2820 - dependencies = [ 2821 - "proc-macro2", 2822 - "quote", 2823 - "syn 2.0.52", 2824 - ] 2825 - 2826 - [[package]] 2827 - name = "tokio-native-tls" 2828 - version = "0.3.1" 2829 - source = "registry+https://github.com/rust-lang/crates.io-index" 2830 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2831 - dependencies = [ 2832 - "native-tls", 2833 - "tokio", 2834 - ] 2835 - 2836 - [[package]] 2837 - name = "tokio-stream" 2838 - version = "0.1.14" 2839 - source = "registry+https://github.com/rust-lang/crates.io-index" 2840 - checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 2841 - dependencies = [ 2842 - "futures-core", 2843 - "pin-project-lite", 2844 - "tokio", 2845 - ] 2846 - 2847 - [[package]] 2848 - name = "tokio-util" 2849 - version = "0.7.10" 2850 - source = "registry+https://github.com/rust-lang/crates.io-index" 2851 - checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 2852 - dependencies = [ 2853 - "bytes", 2854 - "futures-core", 2855 - "futures-sink", 2856 - "pin-project-lite", 2857 - "tokio", 2858 - "tracing", 2859 - ] 2860 - 2861 - [[package]] 2862 - name = "toml" 2863 - version = "0.8.2" 2864 - source = "registry+https://github.com/rust-lang/crates.io-index" 2865 - checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 2866 - dependencies = [ 2867 - "serde", 2868 - "serde_spanned", 2869 - "toml_datetime", 2870 - "toml_edit 0.20.2", 2871 - ] 2872 - 2873 - [[package]] 2874 - name = "toml_datetime" 2875 - version = "0.6.3" 2876 - source = "registry+https://github.com/rust-lang/crates.io-index" 2877 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 2878 - dependencies = [ 2879 - "serde", 2880 - ] 2881 - 2882 - [[package]] 2883 - name = "toml_edit" 2884 - version = "0.19.15" 2885 - source = "registry+https://github.com/rust-lang/crates.io-index" 2886 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 2887 - dependencies = [ 2888 - "indexmap", 2889 - "toml_datetime", 2890 - "winnow", 2891 - ] 2892 - 2893 - [[package]] 2894 - name = "toml_edit" 2895 - version = "0.20.2" 2896 - source = "registry+https://github.com/rust-lang/crates.io-index" 2897 - checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 2898 - dependencies = [ 2899 - "indexmap", 2900 - "serde", 2901 - "serde_spanned", 2902 - "toml_datetime", 2903 - "winnow", 2904 - ] 2905 - 2906 - [[package]] 2907 - name = "tower-service" 2908 - version = "0.3.2" 2909 - source = "registry+https://github.com/rust-lang/crates.io-index" 2910 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2911 - 2912 - [[package]] 2913 - name = "tracing" 2914 - version = "0.1.40" 2915 - source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2917 - dependencies = [ 2918 - "pin-project-lite", 2919 - "tracing-attributes", 2920 - "tracing-core", 2921 - ] 2922 - 2923 - [[package]] 2924 - name = "tracing-attributes" 2925 - version = "0.1.27" 2926 - source = "registry+https://github.com/rust-lang/crates.io-index" 2927 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2928 - dependencies = [ 2929 - "proc-macro2", 2930 - "quote", 2931 - "syn 2.0.52", 2932 - ] 2933 - 2934 - [[package]] 2935 - name = "tracing-core" 2936 - version = "0.1.32" 2937 - source = "registry+https://github.com/rust-lang/crates.io-index" 2938 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2939 - dependencies = [ 2940 - "once_cell", 2941 - ] 2942 - 2943 - [[package]] 2944 - name = "tracker" 2945 - version = "0.2.1" 2946 - source = "registry+https://github.com/rust-lang/crates.io-index" 2947 - checksum = "ff9636d15e370187f6bf55b79ce62ebf4221998bc0ba1774d7fa208b007f6bf8" 2948 - dependencies = [ 2949 - "tracker-macros", 2950 - ] 2951 - 2952 - [[package]] 2953 - name = "tracker-macros" 2954 - version = "0.2.1" 2955 - source = "registry+https://github.com/rust-lang/crates.io-index" 2956 - checksum = "ca029746fbe0efda3298205de77bf759d7fef23ac97902641e0b49a623b0455f" 2957 - dependencies = [ 2958 - "proc-macro2", 2959 - "quote", 2960 - "syn 2.0.52", 2961 - ] 2962 - 2963 - [[package]] 2964 - name = "try-lock" 2965 - version = "0.2.5" 2966 - source = "registry+https://github.com/rust-lang/crates.io-index" 2967 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2968 - 2969 - [[package]] 2970 - name = "typenum" 2971 - version = "1.17.0" 2972 - source = "registry+https://github.com/rust-lang/crates.io-index" 2973 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2974 - 2975 - [[package]] 2976 - name = "uds_windows" 2977 - version = "1.1.0" 2978 - source = "registry+https://github.com/rust-lang/crates.io-index" 2979 - checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 2980 - dependencies = [ 2981 - "memoffset 0.9.0", 2982 - "tempfile", 2983 - "winapi", 2984 - ] 2985 - 2986 - [[package]] 2987 - name = "unicode-bidi" 2988 - version = "0.3.15" 2989 - source = "registry+https://github.com/rust-lang/crates.io-index" 2990 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2991 - 2992 - [[package]] 2993 - name = "unicode-ident" 2994 - version = "1.0.12" 2995 - source = "registry+https://github.com/rust-lang/crates.io-index" 2996 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2997 - 2998 - [[package]] 2999 - name = "unicode-normalization" 3000 - version = "0.1.23" 3001 - source = "registry+https://github.com/rust-lang/crates.io-index" 3002 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 3003 - dependencies = [ 3004 - "tinyvec", 3005 - ] 3006 - 3007 - [[package]] 3008 - name = "url" 3009 - version = "2.5.0" 3010 - source = "registry+https://github.com/rust-lang/crates.io-index" 3011 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 3012 - dependencies = [ 3013 - "form_urlencoded", 3014 - "idna", 3015 - "percent-encoding", 3016 - "serde", 3017 - ] 3018 - 3019 - [[package]] 3020 - name = "utf8parse" 3021 - version = "0.2.1" 3022 - source = "registry+https://github.com/rust-lang/crates.io-index" 3023 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 3024 - 3025 - [[package]] 3026 - name = "uuid" 3027 - version = "1.7.0" 3028 - source = "registry+https://github.com/rust-lang/crates.io-index" 3029 - checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 3030 - dependencies = [ 3031 - "getrandom", 3032 - ] 3033 - 3034 - [[package]] 3035 - name = "vcpkg" 3036 - version = "0.2.15" 3037 - source = "registry+https://github.com/rust-lang/crates.io-index" 3038 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3039 - 3040 - [[package]] 3041 - name = "version-compare" 3042 - version = "0.1.1" 3043 - source = "registry+https://github.com/rust-lang/crates.io-index" 3044 - checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 3045 - 3046 - [[package]] 3047 - name = "version_check" 3048 - version = "0.9.4" 3049 - source = "registry+https://github.com/rust-lang/crates.io-index" 3050 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3051 - 3052 - [[package]] 3053 - name = "waker-fn" 3054 - version = "1.1.1" 3055 - source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 3057 - 3058 - [[package]] 3059 - name = "walkdir" 3060 - version = "2.5.0" 3061 - source = "registry+https://github.com/rust-lang/crates.io-index" 3062 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3063 - dependencies = [ 3064 - "same-file", 3065 - "winapi-util", 3066 - ] 3067 - 3068 - [[package]] 3069 - name = "want" 3070 - version = "0.3.1" 3071 - source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3073 - dependencies = [ 3074 - "try-lock", 3075 - ] 3076 - 3077 - [[package]] 3078 - name = "wasi" 3079 - version = "0.11.0+wasi-snapshot-preview1" 3080 - source = "registry+https://github.com/rust-lang/crates.io-index" 3081 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3082 - 3083 - [[package]] 3084 - name = "wasm-bindgen" 3085 - version = "0.2.91" 3086 - source = "registry+https://github.com/rust-lang/crates.io-index" 3087 - checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 3088 - dependencies = [ 3089 - "cfg-if", 3090 - "wasm-bindgen-macro", 3091 - ] 3092 - 3093 - [[package]] 3094 - name = "wasm-bindgen-backend" 3095 - version = "0.2.91" 3096 - source = "registry+https://github.com/rust-lang/crates.io-index" 3097 - checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 3098 - dependencies = [ 3099 - "bumpalo", 3100 - "log", 3101 - "once_cell", 3102 - "proc-macro2", 3103 - "quote", 3104 - "syn 2.0.52", 3105 - "wasm-bindgen-shared", 3106 - ] 3107 - 3108 - [[package]] 3109 - name = "wasm-bindgen-futures" 3110 - version = "0.4.41" 3111 - source = "registry+https://github.com/rust-lang/crates.io-index" 3112 - checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 3113 - dependencies = [ 3114 - "cfg-if", 3115 - "js-sys", 3116 - "wasm-bindgen", 3117 - "web-sys", 3118 - ] 3119 - 3120 - [[package]] 3121 - name = "wasm-bindgen-macro" 3122 - version = "0.2.91" 3123 - source = "registry+https://github.com/rust-lang/crates.io-index" 3124 - checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 3125 - dependencies = [ 3126 - "quote", 3127 - "wasm-bindgen-macro-support", 3128 - ] 3129 - 3130 - [[package]] 3131 - name = "wasm-bindgen-macro-support" 3132 - version = "0.2.91" 3133 - source = "registry+https://github.com/rust-lang/crates.io-index" 3134 - checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 3135 - dependencies = [ 3136 - "proc-macro2", 3137 - "quote", 3138 - "syn 2.0.52", 3139 - "wasm-bindgen-backend", 3140 - "wasm-bindgen-shared", 3141 - ] 3142 - 3143 - [[package]] 3144 - name = "wasm-bindgen-shared" 3145 - version = "0.2.91" 3146 - source = "registry+https://github.com/rust-lang/crates.io-index" 3147 - checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 3148 - 3149 - [[package]] 3150 - name = "watchmate" 3151 - version = "0.5.2" 3152 - dependencies = [ 3153 - "anyhow", 3154 - "ashpd", 3155 - "env_logger", 3156 - "futures", 3157 - "infinitime", 3158 - "log", 3159 - "relm4", 3160 - "relm4-components", 3161 - "relm4-icons", 3162 - "version-compare", 3163 - ] 3164 - 3165 - [[package]] 3166 - name = "web-sys" 3167 - version = "0.3.68" 3168 - source = "registry+https://github.com/rust-lang/crates.io-index" 3169 - checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 3170 - dependencies = [ 3171 - "js-sys", 3172 - "wasm-bindgen", 3173 - ] 3174 - 3175 - [[package]] 3176 - name = "winapi" 3177 - version = "0.3.9" 3178 - source = "registry+https://github.com/rust-lang/crates.io-index" 3179 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3180 - dependencies = [ 3181 - "winapi-i686-pc-windows-gnu", 3182 - "winapi-x86_64-pc-windows-gnu", 3183 - ] 3184 - 3185 - [[package]] 3186 - name = "winapi-i686-pc-windows-gnu" 3187 - version = "0.4.0" 3188 - source = "registry+https://github.com/rust-lang/crates.io-index" 3189 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3190 - 3191 - [[package]] 3192 - name = "winapi-util" 3193 - version = "0.1.6" 3194 - source = "registry+https://github.com/rust-lang/crates.io-index" 3195 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 3196 - dependencies = [ 3197 - "winapi", 3198 - ] 3199 - 3200 - [[package]] 3201 - name = "winapi-x86_64-pc-windows-gnu" 3202 - version = "0.4.0" 3203 - source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3205 - 3206 - [[package]] 3207 - name = "windows-core" 3208 - version = "0.52.0" 3209 - source = "registry+https://github.com/rust-lang/crates.io-index" 3210 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3211 - dependencies = [ 3212 - "windows-targets 0.52.4", 3213 - ] 3214 - 3215 - [[package]] 3216 - name = "windows-sys" 3217 - version = "0.48.0" 3218 - source = "registry+https://github.com/rust-lang/crates.io-index" 3219 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3220 - dependencies = [ 3221 - "windows-targets 0.48.5", 3222 - ] 3223 - 3224 - [[package]] 3225 - name = "windows-sys" 3226 - version = "0.52.0" 3227 - source = "registry+https://github.com/rust-lang/crates.io-index" 3228 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3229 - dependencies = [ 3230 - "windows-targets 0.52.4", 3231 - ] 3232 - 3233 - [[package]] 3234 - name = "windows-targets" 3235 - version = "0.48.5" 3236 - source = "registry+https://github.com/rust-lang/crates.io-index" 3237 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3238 - dependencies = [ 3239 - "windows_aarch64_gnullvm 0.48.5", 3240 - "windows_aarch64_msvc 0.48.5", 3241 - "windows_i686_gnu 0.48.5", 3242 - "windows_i686_msvc 0.48.5", 3243 - "windows_x86_64_gnu 0.48.5", 3244 - "windows_x86_64_gnullvm 0.48.5", 3245 - "windows_x86_64_msvc 0.48.5", 3246 - ] 3247 - 3248 - [[package]] 3249 - name = "windows-targets" 3250 - version = "0.52.4" 3251 - source = "registry+https://github.com/rust-lang/crates.io-index" 3252 - checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 3253 - dependencies = [ 3254 - "windows_aarch64_gnullvm 0.52.4", 3255 - "windows_aarch64_msvc 0.52.4", 3256 - "windows_i686_gnu 0.52.4", 3257 - "windows_i686_msvc 0.52.4", 3258 - "windows_x86_64_gnu 0.52.4", 3259 - "windows_x86_64_gnullvm 0.52.4", 3260 - "windows_x86_64_msvc 0.52.4", 3261 - ] 3262 - 3263 - [[package]] 3264 - name = "windows_aarch64_gnullvm" 3265 - version = "0.48.5" 3266 - source = "registry+https://github.com/rust-lang/crates.io-index" 3267 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3268 - 3269 - [[package]] 3270 - name = "windows_aarch64_gnullvm" 3271 - version = "0.52.4" 3272 - source = "registry+https://github.com/rust-lang/crates.io-index" 3273 - checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 3274 - 3275 - [[package]] 3276 - name = "windows_aarch64_msvc" 3277 - version = "0.48.5" 3278 - source = "registry+https://github.com/rust-lang/crates.io-index" 3279 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3280 - 3281 - [[package]] 3282 - name = "windows_aarch64_msvc" 3283 - version = "0.52.4" 3284 - source = "registry+https://github.com/rust-lang/crates.io-index" 3285 - checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 3286 - 3287 - [[package]] 3288 - name = "windows_i686_gnu" 3289 - version = "0.48.5" 3290 - source = "registry+https://github.com/rust-lang/crates.io-index" 3291 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3292 - 3293 - [[package]] 3294 - name = "windows_i686_gnu" 3295 - version = "0.52.4" 3296 - source = "registry+https://github.com/rust-lang/crates.io-index" 3297 - checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 3298 - 3299 - [[package]] 3300 - name = "windows_i686_msvc" 3301 - version = "0.48.5" 3302 - source = "registry+https://github.com/rust-lang/crates.io-index" 3303 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3304 - 3305 - [[package]] 3306 - name = "windows_i686_msvc" 3307 - version = "0.52.4" 3308 - source = "registry+https://github.com/rust-lang/crates.io-index" 3309 - checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 3310 - 3311 - [[package]] 3312 - name = "windows_x86_64_gnu" 3313 - version = "0.48.5" 3314 - source = "registry+https://github.com/rust-lang/crates.io-index" 3315 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3316 - 3317 - [[package]] 3318 - name = "windows_x86_64_gnu" 3319 - version = "0.52.4" 3320 - source = "registry+https://github.com/rust-lang/crates.io-index" 3321 - checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 3322 - 3323 - [[package]] 3324 - name = "windows_x86_64_gnullvm" 3325 - version = "0.48.5" 3326 - source = "registry+https://github.com/rust-lang/crates.io-index" 3327 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3328 - 3329 - [[package]] 3330 - name = "windows_x86_64_gnullvm" 3331 - version = "0.52.4" 3332 - source = "registry+https://github.com/rust-lang/crates.io-index" 3333 - checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 3334 - 3335 - [[package]] 3336 - name = "windows_x86_64_msvc" 3337 - version = "0.48.5" 3338 - source = "registry+https://github.com/rust-lang/crates.io-index" 3339 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3340 - 3341 - [[package]] 3342 - name = "windows_x86_64_msvc" 3343 - version = "0.52.4" 3344 - source = "registry+https://github.com/rust-lang/crates.io-index" 3345 - checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 3346 - 3347 - [[package]] 3348 - name = "winnow" 3349 - version = "0.5.40" 3350 - source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 3352 - dependencies = [ 3353 - "memchr", 3354 - ] 3355 - 3356 - [[package]] 3357 - name = "winreg" 3358 - version = "0.50.0" 3359 - source = "registry+https://github.com/rust-lang/crates.io-index" 3360 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 3361 - dependencies = [ 3362 - "cfg-if", 3363 - "windows-sys 0.48.0", 3364 - ] 3365 - 3366 - [[package]] 3367 - name = "xdg-home" 3368 - version = "1.1.0" 3369 - source = "registry+https://github.com/rust-lang/crates.io-index" 3370 - checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" 3371 - dependencies = [ 3372 - "libc", 3373 - "winapi", 3374 - ] 3375 - 3376 - [[package]] 3377 - name = "zbus" 3378 - version = "3.15.2" 3379 - source = "registry+https://github.com/rust-lang/crates.io-index" 3380 - checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6" 3381 - dependencies = [ 3382 - "async-broadcast", 3383 - "async-executor", 3384 - "async-fs", 3385 - "async-io 1.13.0", 3386 - "async-lock 2.8.0", 3387 - "async-process", 3388 - "async-recursion", 3389 - "async-task", 3390 - "async-trait", 3391 - "blocking", 3392 - "byteorder", 3393 - "derivative", 3394 - "enumflags2", 3395 - "event-listener 2.5.3", 3396 - "futures-core", 3397 - "futures-sink", 3398 - "futures-util", 3399 - "hex", 3400 - "nix 0.26.4", 3401 - "once_cell", 3402 - "ordered-stream", 3403 - "rand", 3404 - "serde", 3405 - "serde_repr", 3406 - "sha1", 3407 - "static_assertions", 3408 - "tokio", 3409 - "tracing", 3410 - "uds_windows", 3411 - "winapi", 3412 - "xdg-home", 3413 - "zbus_macros", 3414 - "zbus_names", 3415 - "zvariant", 3416 - ] 3417 - 3418 - [[package]] 3419 - name = "zbus_macros" 3420 - version = "3.15.2" 3421 - source = "registry+https://github.com/rust-lang/crates.io-index" 3422 - checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5" 3423 - dependencies = [ 3424 - "proc-macro-crate 1.3.1", 3425 - "proc-macro2", 3426 - "quote", 3427 - "regex", 3428 - "syn 1.0.109", 3429 - "zvariant_utils", 3430 - ] 3431 - 3432 - [[package]] 3433 - name = "zbus_names" 3434 - version = "2.6.1" 3435 - source = "registry+https://github.com/rust-lang/crates.io-index" 3436 - checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d" 3437 - dependencies = [ 3438 - "serde", 3439 - "static_assertions", 3440 - "zvariant", 3441 - ] 3442 - 3443 - [[package]] 3444 - name = "zip" 3445 - version = "0.6.6" 3446 - source = "registry+https://github.com/rust-lang/crates.io-index" 3447 - checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 3448 - dependencies = [ 3449 - "aes", 3450 - "byteorder", 3451 - "bzip2", 3452 - "constant_time_eq", 3453 - "crc32fast", 3454 - "crossbeam-utils", 3455 - "flate2", 3456 - "hmac", 3457 - "pbkdf2", 3458 - "sha1", 3459 - "time", 3460 - "zstd", 3461 - ] 3462 - 3463 - [[package]] 3464 - name = "zstd" 3465 - version = "0.11.2+zstd.1.5.2" 3466 - source = "registry+https://github.com/rust-lang/crates.io-index" 3467 - checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 3468 - dependencies = [ 3469 - "zstd-safe", 3470 - ] 3471 - 3472 - [[package]] 3473 - name = "zstd-safe" 3474 - version = "5.0.2+zstd.1.5.2" 3475 - source = "registry+https://github.com/rust-lang/crates.io-index" 3476 - checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 3477 - dependencies = [ 3478 - "libc", 3479 - "zstd-sys", 3480 - ] 3481 - 3482 - [[package]] 3483 - name = "zstd-sys" 3484 - version = "2.0.9+zstd.1.5.5" 3485 - source = "registry+https://github.com/rust-lang/crates.io-index" 3486 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 3487 - dependencies = [ 3488 - "cc", 3489 - "pkg-config", 3490 - ] 3491 - 3492 - [[package]] 3493 - name = "zvariant" 3494 - version = "3.15.2" 3495 - source = "registry+https://github.com/rust-lang/crates.io-index" 3496 - checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db" 3497 - dependencies = [ 3498 - "byteorder", 3499 - "enumflags2", 3500 - "libc", 3501 - "serde", 3502 - "static_assertions", 3503 - "url", 3504 - "zvariant_derive", 3505 - ] 3506 - 3507 - [[package]] 3508 - name = "zvariant_derive" 3509 - version = "3.15.2" 3510 - source = "registry+https://github.com/rust-lang/crates.io-index" 3511 - checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9" 3512 - dependencies = [ 3513 - "proc-macro-crate 1.3.1", 3514 - "proc-macro2", 3515 - "quote", 3516 - "syn 1.0.109", 3517 - "zvariant_utils", 3518 - ] 3519 - 3520 - [[package]] 3521 - name = "zvariant_utils" 3522 - version = "1.0.1" 3523 - source = "registry+https://github.com/rust-lang/crates.io-index" 3524 - checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 3525 - dependencies = [ 3526 - "proc-macro2", 3527 - "quote", 3528 - "syn 1.0.109", 3529 - ]
+2 -6
pkgs/by-name/wa/watchmate/package.nix
··· 25 25 hash = "sha256-fHWxn7hFx/9cnLlCHIC6hIJaLd1U3Ii9mJgTJ+Hw63M="; 26 26 }; 27 27 28 - cargoLock = { 29 - lockFile = ./Cargo.lock; 30 - outputHashes = { 31 - "mpris2-zbus-0.1.0" = "sha256-a/cvbB0M9cUd8RP5XxgHRbJ/i/UKAEK4DTwwUU69IuY="; 32 - }; 33 - }; 28 + useFetchCargoVendor = true; 29 + cargoHash = "sha256-9OR0+OIUpDu37BDC1QJ0r4P/T+DtuHIStFfYT/kPXBE="; 34 30 35 31 nativeBuildInputs = [ 36 32 pkg-config
-2419
pkgs/by-name/wp/wprs/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 = "adler" 7 - version = "1.0.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 - 11 - [[package]] 12 - name = "ahash" 13 - version = "0.7.8" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 16 - dependencies = [ 17 - "getrandom", 18 - "once_cell", 19 - "version_check", 20 - ] 21 - 22 - [[package]] 23 - name = "aho-corasick" 24 - version = "1.1.3" 25 - source = "registry+https://github.com/rust-lang/crates.io-index" 26 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 27 - dependencies = [ 28 - "memchr", 29 - ] 30 - 31 - [[package]] 32 - name = "anes" 33 - version = "0.1.6" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 36 - 37 - [[package]] 38 - name = "anstyle" 39 - version = "1.0.7" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 42 - 43 - [[package]] 44 - name = "anyhow" 45 - version = "1.0.86" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 48 - 49 - [[package]] 50 - name = "appendlist" 51 - version = "1.4.0" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "e149dc73cd30538307e7ffa2acd3d2221148eaeed4871f246657b1c3eaa1cbd2" 54 - 55 - [[package]] 56 - name = "approx" 57 - version = "0.4.0" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278" 60 - dependencies = [ 61 - "num-traits", 62 - ] 63 - 64 - [[package]] 65 - name = "arrayref" 66 - version = "0.3.7" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 69 - 70 - [[package]] 71 - name = "arrayvec" 72 - version = "0.7.4" 73 - source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 75 - 76 - [[package]] 77 - name = "autocfg" 78 - version = "1.3.0" 79 - source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 81 - 82 - [[package]] 83 - name = "base64" 84 - version = "0.21.7" 85 - source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 87 - 88 - [[package]] 89 - name = "bimap" 90 - version = "0.6.3" 91 - source = "registry+https://github.com/rust-lang/crates.io-index" 92 - checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7" 93 - 94 - [[package]] 95 - name = "bit-set" 96 - version = "0.5.3" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 99 - dependencies = [ 100 - "bit-vec", 101 - ] 102 - 103 - [[package]] 104 - name = "bit-vec" 105 - version = "0.6.3" 106 - source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 108 - 109 - [[package]] 110 - name = "bitflags" 111 - version = "1.3.2" 112 - source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 114 - 115 - [[package]] 116 - name = "bitflags" 117 - version = "2.5.0" 118 - source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 120 - dependencies = [ 121 - "serde", 122 - ] 123 - 124 - [[package]] 125 - name = "bitvec" 126 - version = "1.0.1" 127 - source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 129 - dependencies = [ 130 - "funty", 131 - "radium", 132 - "tap", 133 - "wyz", 134 - ] 135 - 136 - [[package]] 137 - name = "blake3" 138 - version = "1.5.1" 139 - source = "registry+https://github.com/rust-lang/crates.io-index" 140 - checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" 141 - dependencies = [ 142 - "arrayref", 143 - "arrayvec", 144 - "cc", 145 - "cfg-if", 146 - "constant_time_eq", 147 - ] 148 - 149 - [[package]] 150 - name = "bpaf" 151 - version = "0.9.12" 152 - source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "3280efcf6d66bc77c2cf9b67dc8acee47a217d9be67dd590b3230dffe663724d" 154 - 155 - [[package]] 156 - name = "bumpalo" 157 - version = "3.16.0" 158 - source = "registry+https://github.com/rust-lang/crates.io-index" 159 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 160 - 161 - [[package]] 162 - name = "bytecheck" 163 - version = "0.6.12" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 166 - dependencies = [ 167 - "bytecheck_derive", 168 - "ptr_meta", 169 - "simdutf8", 170 - ] 171 - 172 - [[package]] 173 - name = "bytecheck_derive" 174 - version = "0.6.12" 175 - source = "registry+https://github.com/rust-lang/crates.io-index" 176 - checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 177 - dependencies = [ 178 - "proc-macro2", 179 - "quote", 180 - "syn 1.0.109", 181 - ] 182 - 183 - [[package]] 184 - name = "bytemuck" 185 - version = "1.16.0" 186 - source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5" 188 - dependencies = [ 189 - "bytemuck_derive", 190 - ] 191 - 192 - [[package]] 193 - name = "bytemuck_derive" 194 - version = "1.7.0" 195 - source = "registry+https://github.com/rust-lang/crates.io-index" 196 - checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b" 197 - dependencies = [ 198 - "proc-macro2", 199 - "quote", 200 - "syn 2.0.66", 201 - ] 202 - 203 - [[package]] 204 - name = "byteorder" 205 - version = "1.5.0" 206 - source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 208 - 209 - [[package]] 210 - name = "bytes" 211 - version = "1.6.0" 212 - source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 214 - 215 - [[package]] 216 - name = "calloop" 217 - version = "0.13.0" 218 - source = "registry+https://github.com/rust-lang/crates.io-index" 219 - checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" 220 - dependencies = [ 221 - "bitflags 2.5.0", 222 - "log", 223 - "polling", 224 - "rustix", 225 - "slab", 226 - "thiserror", 227 - ] 228 - 229 - [[package]] 230 - name = "calloop-wayland-source" 231 - version = "0.3.0" 232 - source = "registry+https://github.com/rust-lang/crates.io-index" 233 - checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" 234 - dependencies = [ 235 - "calloop", 236 - "rustix", 237 - "wayland-backend", 238 - "wayland-client", 239 - ] 240 - 241 - [[package]] 242 - name = "camino" 243 - version = "1.1.7" 244 - source = "registry+https://github.com/rust-lang/crates.io-index" 245 - checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" 246 - 247 - [[package]] 248 - name = "cast" 249 - version = "0.3.0" 250 - source = "registry+https://github.com/rust-lang/crates.io-index" 251 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 252 - 253 - [[package]] 254 - name = "cc" 255 - version = "1.0.99" 256 - source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" 258 - dependencies = [ 259 - "jobserver", 260 - "libc", 261 - "once_cell", 262 - ] 263 - 264 - [[package]] 265 - name = "cfg-if" 266 - version = "1.0.0" 267 - source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 269 - 270 - [[package]] 271 - name = "cfg_aliases" 272 - version = "0.2.1" 273 - source = "registry+https://github.com/rust-lang/crates.io-index" 274 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 275 - 276 - [[package]] 277 - name = "cgmath" 278 - version = "0.18.0" 279 - source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "1a98d30140e3296250832bbaaff83b27dcd6fa3cc70fb6f1f3e5c9c0023b5317" 281 - dependencies = [ 282 - "approx", 283 - "num-traits", 284 - ] 285 - 286 - [[package]] 287 - name = "ciborium" 288 - version = "0.2.2" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 291 - dependencies = [ 292 - "ciborium-io", 293 - "ciborium-ll", 294 - "serde", 295 - ] 296 - 297 - [[package]] 298 - name = "ciborium-io" 299 - version = "0.2.2" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 302 - 303 - [[package]] 304 - name = "ciborium-ll" 305 - version = "0.2.2" 306 - source = "registry+https://github.com/rust-lang/crates.io-index" 307 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 308 - dependencies = [ 309 - "ciborium-io", 310 - "half", 311 - ] 312 - 313 - [[package]] 314 - name = "clap" 315 - version = "4.5.7" 316 - source = "registry+https://github.com/rust-lang/crates.io-index" 317 - checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f" 318 - dependencies = [ 319 - "clap_builder", 320 - ] 321 - 322 - [[package]] 323 - name = "clap_builder" 324 - version = "4.5.7" 325 - source = "registry+https://github.com/rust-lang/crates.io-index" 326 - checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f" 327 - dependencies = [ 328 - "anstyle", 329 - "clap_lex", 330 - ] 331 - 332 - [[package]] 333 - name = "clap_lex" 334 - version = "0.7.1" 335 - source = "registry+https://github.com/rust-lang/crates.io-index" 336 - checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 337 - 338 - [[package]] 339 - name = "concurrent-queue" 340 - version = "2.5.0" 341 - source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 343 - dependencies = [ 344 - "crossbeam-utils", 345 - ] 346 - 347 - [[package]] 348 - name = "constant_time_eq" 349 - version = "0.3.0" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 352 - 353 - [[package]] 354 - name = "crc32fast" 355 - version = "1.4.2" 356 - source = "registry+https://github.com/rust-lang/crates.io-index" 357 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 358 - dependencies = [ 359 - "cfg-if", 360 - ] 361 - 362 - [[package]] 363 - name = "criterion" 364 - version = "0.5.1" 365 - source = "registry+https://github.com/rust-lang/crates.io-index" 366 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 367 - dependencies = [ 368 - "anes", 369 - "cast", 370 - "ciborium", 371 - "clap", 372 - "criterion-plot", 373 - "is-terminal", 374 - "itertools 0.10.5", 375 - "num-traits", 376 - "once_cell", 377 - "oorandom", 378 - "plotters", 379 - "rayon", 380 - "regex", 381 - "serde", 382 - "serde_derive", 383 - "serde_json", 384 - "tinytemplate", 385 - "walkdir", 386 - ] 387 - 388 - [[package]] 389 - name = "criterion-plot" 390 - version = "0.5.0" 391 - source = "registry+https://github.com/rust-lang/crates.io-index" 392 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 393 - dependencies = [ 394 - "cast", 395 - "itertools 0.10.5", 396 - ] 397 - 398 - [[package]] 399 - name = "crossbeam-channel" 400 - version = "0.5.13" 401 - source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 403 - dependencies = [ 404 - "crossbeam-utils", 405 - ] 406 - 407 - [[package]] 408 - name = "crossbeam-deque" 409 - version = "0.8.5" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 412 - dependencies = [ 413 - "crossbeam-epoch", 414 - "crossbeam-utils", 415 - ] 416 - 417 - [[package]] 418 - name = "crossbeam-epoch" 419 - version = "0.9.18" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 422 - dependencies = [ 423 - "crossbeam-utils", 424 - ] 425 - 426 - [[package]] 427 - name = "crossbeam-utils" 428 - version = "0.8.20" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 431 - 432 - [[package]] 433 - name = "crunchy" 434 - version = "0.2.2" 435 - source = "registry+https://github.com/rust-lang/crates.io-index" 436 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 437 - 438 - [[package]] 439 - name = "cursor-icon" 440 - version = "1.1.0" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 443 - 444 - [[package]] 445 - name = "divbuf" 446 - version = "0.3.2-pre" 447 - source = "git+https://github.com/asomers/divbuf#6de6bc3c444e7895f6c95605466f711fe06310f4" 448 - 449 - [[package]] 450 - name = "dlib" 451 - version = "0.5.2" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 454 - dependencies = [ 455 - "libloading", 456 - ] 457 - 458 - [[package]] 459 - name = "downcast-rs" 460 - version = "1.2.1" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 463 - 464 - [[package]] 465 - name = "drm-fourcc" 466 - version = "2.2.0" 467 - source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4" 469 - 470 - [[package]] 471 - name = "either" 472 - version = "1.12.0" 473 - source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" 475 - 476 - [[package]] 477 - name = "encoding_rs" 478 - version = "0.8.34" 479 - source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 481 - dependencies = [ 482 - "cfg-if", 483 - ] 484 - 485 - [[package]] 486 - name = "enum-as-inner" 487 - version = "0.6.0" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 490 - dependencies = [ 491 - "heck", 492 - "proc-macro2", 493 - "quote", 494 - "syn 2.0.66", 495 - ] 496 - 497 - [[package]] 498 - name = "equivalent" 499 - version = "1.0.1" 500 - source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 502 - 503 - [[package]] 504 - name = "errno" 505 - version = "0.3.9" 506 - source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 508 - dependencies = [ 509 - "libc", 510 - "windows-sys", 511 - ] 512 - 513 - [[package]] 514 - name = "fallible-iterator" 515 - version = "0.3.0" 516 - source = "registry+https://github.com/rust-lang/crates.io-index" 517 - checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 518 - 519 - [[package]] 520 - name = "fastrand" 521 - version = "2.1.0" 522 - source = "registry+https://github.com/rust-lang/crates.io-index" 523 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 524 - 525 - [[package]] 526 - name = "fdeflate" 527 - version = "0.3.4" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 530 - dependencies = [ 531 - "simd-adler32", 532 - ] 533 - 534 - [[package]] 535 - name = "flate2" 536 - version = "1.0.30" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 539 - dependencies = [ 540 - "crc32fast", 541 - "miniz_oxide", 542 - ] 543 - 544 - [[package]] 545 - name = "fnv" 546 - version = "1.0.7" 547 - source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 549 - 550 - [[package]] 551 - name = "funty" 552 - version = "2.0.0" 553 - source = "registry+https://github.com/rust-lang/crates.io-index" 554 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 555 - 556 - [[package]] 557 - name = "generator" 558 - version = "0.8.1" 559 - source = "registry+https://github.com/rust-lang/crates.io-index" 560 - checksum = "186014d53bc231d0090ef8d6f03e0920c54d85a5ed22f4f2f74315ec56cf83fb" 561 - dependencies = [ 562 - "cc", 563 - "cfg-if", 564 - "libc", 565 - "log", 566 - "rustversion", 567 - "windows", 568 - ] 569 - 570 - [[package]] 571 - name = "gethostname" 572 - version = "0.4.3" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 575 - dependencies = [ 576 - "libc", 577 - "windows-targets 0.48.5", 578 - ] 579 - 580 - [[package]] 581 - name = "getrandom" 582 - version = "0.2.15" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 585 - dependencies = [ 586 - "cfg-if", 587 - "libc", 588 - "wasi", 589 - ] 590 - 591 - [[package]] 592 - name = "glob" 593 - version = "0.3.1" 594 - source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 596 - 597 - [[package]] 598 - name = "half" 599 - version = "2.4.1" 600 - source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 602 - dependencies = [ 603 - "cfg-if", 604 - "crunchy", 605 - ] 606 - 607 - [[package]] 608 - name = "hashbrown" 609 - version = "0.12.3" 610 - source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 612 - dependencies = [ 613 - "ahash", 614 - ] 615 - 616 - [[package]] 617 - name = "hashbrown" 618 - version = "0.14.5" 619 - source = "registry+https://github.com/rust-lang/crates.io-index" 620 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 621 - 622 - [[package]] 623 - name = "heck" 624 - version = "0.4.1" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 627 - 628 - [[package]] 629 - name = "hermit-abi" 630 - version = "0.3.9" 631 - source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 633 - 634 - [[package]] 635 - name = "home" 636 - version = "0.5.9" 637 - source = "registry+https://github.com/rust-lang/crates.io-index" 638 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 639 - dependencies = [ 640 - "windows-sys", 641 - ] 642 - 643 - [[package]] 644 - name = "indexmap" 645 - version = "2.2.6" 646 - source = "registry+https://github.com/rust-lang/crates.io-index" 647 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 648 - dependencies = [ 649 - "equivalent", 650 - "hashbrown 0.14.5", 651 - ] 652 - 653 - [[package]] 654 - name = "io-lifetimes" 655 - version = "2.0.3" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "5a611371471e98973dbcab4e0ec66c31a10bc356eeb4d54a0e05eac8158fe38c" 658 - 659 - [[package]] 660 - name = "is-terminal" 661 - version = "0.4.12" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 664 - dependencies = [ 665 - "hermit-abi", 666 - "libc", 667 - "windows-sys", 668 - ] 669 - 670 - [[package]] 671 - name = "itertools" 672 - version = "0.10.5" 673 - source = "registry+https://github.com/rust-lang/crates.io-index" 674 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 675 - dependencies = [ 676 - "either", 677 - ] 678 - 679 - [[package]] 680 - name = "itertools" 681 - version = "0.13.0" 682 - source = "registry+https://github.com/rust-lang/crates.io-index" 683 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 684 - dependencies = [ 685 - "either", 686 - ] 687 - 688 - [[package]] 689 - name = "itoa" 690 - version = "1.0.11" 691 - source = "registry+https://github.com/rust-lang/crates.io-index" 692 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 693 - 694 - [[package]] 695 - name = "jobserver" 696 - version = "0.1.31" 697 - source = "registry+https://github.com/rust-lang/crates.io-index" 698 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 699 - dependencies = [ 700 - "libc", 701 - ] 702 - 703 - [[package]] 704 - name = "js-sys" 705 - version = "0.3.69" 706 - source = "registry+https://github.com/rust-lang/crates.io-index" 707 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 708 - dependencies = [ 709 - "wasm-bindgen", 710 - ] 711 - 712 - [[package]] 713 - name = "lagoon" 714 - version = "0.1.3" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "d646ad46f3aec5825bb57e0245ad9b9396ae2600102e23d029e5d8274c3e9ae4" 717 - dependencies = [ 718 - "crossbeam-channel", 719 - "num_cpus", 720 - "scopeguard", 721 - "spin", 722 - ] 723 - 724 - [[package]] 725 - name = "lazy_static" 726 - version = "1.4.0" 727 - source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 729 - 730 - [[package]] 731 - name = "libc" 732 - version = "0.2.155" 733 - source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 735 - 736 - [[package]] 737 - name = "libloading" 738 - version = "0.8.3" 739 - source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 741 - dependencies = [ 742 - "cfg-if", 743 - "windows-targets 0.52.5", 744 - ] 745 - 746 - [[package]] 747 - name = "libm" 748 - version = "0.2.8" 749 - source = "registry+https://github.com/rust-lang/crates.io-index" 750 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 751 - 752 - [[package]] 753 - name = "linux-raw-sys" 754 - version = "0.4.14" 755 - source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 757 - 758 - [[package]] 759 - name = "lock_api" 760 - version = "0.4.12" 761 - source = "registry+https://github.com/rust-lang/crates.io-index" 762 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 763 - dependencies = [ 764 - "autocfg", 765 - "scopeguard", 766 - ] 767 - 768 - [[package]] 769 - name = "log" 770 - version = "0.4.21" 771 - source = "registry+https://github.com/rust-lang/crates.io-index" 772 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 773 - 774 - [[package]] 775 - name = "loom" 776 - version = "0.7.2" 777 - source = "registry+https://github.com/rust-lang/crates.io-index" 778 - checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 779 - dependencies = [ 780 - "cfg-if", 781 - "generator", 782 - "scoped-tls", 783 - "tracing", 784 - "tracing-subscriber", 785 - ] 786 - 787 - [[package]] 788 - name = "matchers" 789 - version = "0.1.0" 790 - source = "registry+https://github.com/rust-lang/crates.io-index" 791 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 792 - dependencies = [ 793 - "regex-automata 0.1.10", 794 - ] 795 - 796 - [[package]] 797 - name = "memchr" 798 - version = "2.7.2" 799 - source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 801 - 802 - [[package]] 803 - name = "memmap2" 804 - version = "0.8.0" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 807 - dependencies = [ 808 - "libc", 809 - ] 810 - 811 - [[package]] 812 - name = "memmap2" 813 - version = "0.9.4" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 816 - dependencies = [ 817 - "libc", 818 - ] 819 - 820 - [[package]] 821 - name = "memoffset" 822 - version = "0.9.1" 823 - source = "registry+https://github.com/rust-lang/crates.io-index" 824 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 825 - dependencies = [ 826 - "autocfg", 827 - ] 828 - 829 - [[package]] 830 - name = "merkle_hash" 831 - version = "3.6.1" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "0fad8dc52477aa6f1751748a5ee1c6d50db7092e8dab1d687840dfa23e2ae4e5" 834 - dependencies = [ 835 - "anyhow", 836 - "blake3", 837 - "camino", 838 - "rayon", 839 - ] 840 - 841 - [[package]] 842 - name = "miniz_oxide" 843 - version = "0.7.3" 844 - source = "registry+https://github.com/rust-lang/crates.io-index" 845 - checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" 846 - dependencies = [ 847 - "adler", 848 - "simd-adler32", 849 - ] 850 - 851 - [[package]] 852 - name = "nix" 853 - version = "0.29.0" 854 - source = "registry+https://github.com/rust-lang/crates.io-index" 855 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 856 - dependencies = [ 857 - "bitflags 2.5.0", 858 - "cfg-if", 859 - "cfg_aliases", 860 - "libc", 861 - "memoffset", 862 - ] 863 - 864 - [[package]] 865 - name = "nu-ansi-term" 866 - version = "0.46.0" 867 - source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 869 - dependencies = [ 870 - "overload", 871 - "winapi", 872 - ] 873 - 874 - [[package]] 875 - name = "num-traits" 876 - version = "0.2.19" 877 - source = "registry+https://github.com/rust-lang/crates.io-index" 878 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 879 - dependencies = [ 880 - "autocfg", 881 - "libm", 882 - ] 883 - 884 - [[package]] 885 - name = "num_cpus" 886 - version = "1.16.0" 887 - source = "registry+https://github.com/rust-lang/crates.io-index" 888 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 889 - dependencies = [ 890 - "hermit-abi", 891 - "libc", 892 - ] 893 - 894 - [[package]] 895 - name = "num_enum" 896 - version = "0.7.2" 897 - source = "registry+https://github.com/rust-lang/crates.io-index" 898 - checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 899 - dependencies = [ 900 - "num_enum_derive", 901 - ] 902 - 903 - [[package]] 904 - name = "num_enum_derive" 905 - version = "0.7.2" 906 - source = "registry+https://github.com/rust-lang/crates.io-index" 907 - checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 908 - dependencies = [ 909 - "proc-macro-crate", 910 - "proc-macro2", 911 - "quote", 912 - "syn 2.0.66", 913 - ] 914 - 915 - [[package]] 916 - name = "once_cell" 917 - version = "1.19.0" 918 - source = "registry+https://github.com/rust-lang/crates.io-index" 919 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 920 - 921 - [[package]] 922 - name = "oorandom" 923 - version = "11.1.3" 924 - source = "registry+https://github.com/rust-lang/crates.io-index" 925 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 926 - 927 - [[package]] 928 - name = "optional_struct" 929 - version = "0.3.2" 930 - source = "registry+https://github.com/rust-lang/crates.io-index" 931 - checksum = "0a6a5805fc07abb78282acc68420a70902e585f80538cc9050f20128129bc4af" 932 - dependencies = [ 933 - "optional_struct_export", 934 - ] 935 - 936 - [[package]] 937 - name = "optional_struct_export" 938 - version = "0.3.2" 939 - source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "d104275df932249fcae2db0bd2e34b8e690be925aaee5cca5251b928fe71230a" 941 - dependencies = [ 942 - "optional_struct_macro_impl", 943 - "quote", 944 - ] 945 - 946 - [[package]] 947 - name = "optional_struct_macro_impl" 948 - version = "0.3.2" 949 - source = "registry+https://github.com/rust-lang/crates.io-index" 950 - checksum = "f3314c27f4503e50bd5f7632cd51fef7ac7b1a4af161db616647f190052ffd92" 951 - dependencies = [ 952 - "proc-macro2", 953 - "quote", 954 - "syn 2.0.66", 955 - ] 956 - 957 - [[package]] 958 - name = "overload" 959 - version = "0.1.1" 960 - source = "registry+https://github.com/rust-lang/crates.io-index" 961 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 962 - 963 - [[package]] 964 - name = "parking_lot" 965 - version = "0.12.3" 966 - source = "registry+https://github.com/rust-lang/crates.io-index" 967 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 968 - dependencies = [ 969 - "lock_api", 970 - "parking_lot_core", 971 - ] 972 - 973 - [[package]] 974 - name = "parking_lot_core" 975 - version = "0.9.10" 976 - source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 978 - dependencies = [ 979 - "cfg-if", 980 - "libc", 981 - "redox_syscall 0.5.1", 982 - "smallvec", 983 - "windows-targets 0.52.5", 984 - ] 985 - 986 - [[package]] 987 - name = "pin-project-lite" 988 - version = "0.2.14" 989 - source = "registry+https://github.com/rust-lang/crates.io-index" 990 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 991 - 992 - [[package]] 993 - name = "pkg-config" 994 - version = "0.3.30" 995 - source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 997 - 998 - [[package]] 999 - name = "plotters" 1000 - version = "0.3.6" 1001 - source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3" 1003 - dependencies = [ 1004 - "num-traits", 1005 - "plotters-backend", 1006 - "plotters-svg", 1007 - "wasm-bindgen", 1008 - "web-sys", 1009 - ] 1010 - 1011 - [[package]] 1012 - name = "plotters-backend" 1013 - version = "0.3.6" 1014 - source = "registry+https://github.com/rust-lang/crates.io-index" 1015 - checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7" 1016 - 1017 - [[package]] 1018 - name = "plotters-svg" 1019 - version = "0.3.6" 1020 - source = "registry+https://github.com/rust-lang/crates.io-index" 1021 - checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705" 1022 - dependencies = [ 1023 - "plotters-backend", 1024 - ] 1025 - 1026 - [[package]] 1027 - name = "png" 1028 - version = "0.17.13" 1029 - source = "registry+https://github.com/rust-lang/crates.io-index" 1030 - checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 1031 - dependencies = [ 1032 - "bitflags 1.3.2", 1033 - "crc32fast", 1034 - "fdeflate", 1035 - "flate2", 1036 - "miniz_oxide", 1037 - ] 1038 - 1039 - [[package]] 1040 - name = "polling" 1041 - version = "3.7.1" 1042 - source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "5e6a007746f34ed64099e88783b0ae369eaa3da6392868ba262e2af9b8fbaea1" 1044 - dependencies = [ 1045 - "cfg-if", 1046 - "concurrent-queue", 1047 - "hermit-abi", 1048 - "pin-project-lite", 1049 - "rustix", 1050 - "tracing", 1051 - "windows-sys", 1052 - ] 1053 - 1054 - [[package]] 1055 - name = "ppv-lite86" 1056 - version = "0.2.17" 1057 - source = "registry+https://github.com/rust-lang/crates.io-index" 1058 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1059 - 1060 - [[package]] 1061 - name = "proc-macro-crate" 1062 - version = "3.1.0" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 1065 - dependencies = [ 1066 - "toml_edit 0.21.1", 1067 - ] 1068 - 1069 - [[package]] 1070 - name = "proc-macro2" 1071 - version = "1.0.85" 1072 - source = "registry+https://github.com/rust-lang/crates.io-index" 1073 - checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" 1074 - dependencies = [ 1075 - "unicode-ident", 1076 - ] 1077 - 1078 - [[package]] 1079 - name = "profiling" 1080 - version = "1.0.15" 1081 - source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58" 1083 - dependencies = [ 1084 - "profiling-procmacros", 1085 - ] 1086 - 1087 - [[package]] 1088 - name = "profiling-procmacros" 1089 - version = "1.0.15" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd" 1092 - dependencies = [ 1093 - "quote", 1094 - "syn 2.0.66", 1095 - ] 1096 - 1097 - [[package]] 1098 - name = "proptest" 1099 - version = "1.4.0" 1100 - source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" 1102 - dependencies = [ 1103 - "bit-set", 1104 - "bit-vec", 1105 - "bitflags 2.5.0", 1106 - "lazy_static", 1107 - "num-traits", 1108 - "rand", 1109 - "rand_chacha", 1110 - "rand_xorshift", 1111 - "regex-syntax 0.8.4", 1112 - "rusty-fork", 1113 - "tempfile", 1114 - "unarray", 1115 - ] 1116 - 1117 - [[package]] 1118 - name = "ptr_meta" 1119 - version = "0.1.4" 1120 - source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 1122 - dependencies = [ 1123 - "ptr_meta_derive", 1124 - ] 1125 - 1126 - [[package]] 1127 - name = "ptr_meta_derive" 1128 - version = "0.1.4" 1129 - source = "registry+https://github.com/rust-lang/crates.io-index" 1130 - checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 1131 - dependencies = [ 1132 - "proc-macro2", 1133 - "quote", 1134 - "syn 1.0.109", 1135 - ] 1136 - 1137 - [[package]] 1138 - name = "quick-error" 1139 - version = "1.2.3" 1140 - source = "registry+https://github.com/rust-lang/crates.io-index" 1141 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 1142 - 1143 - [[package]] 1144 - name = "quick-xml" 1145 - version = "0.31.0" 1146 - source = "registry+https://github.com/rust-lang/crates.io-index" 1147 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 1148 - dependencies = [ 1149 - "memchr", 1150 - ] 1151 - 1152 - [[package]] 1153 - name = "quote" 1154 - version = "1.0.36" 1155 - source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1157 - dependencies = [ 1158 - "proc-macro2", 1159 - ] 1160 - 1161 - [[package]] 1162 - name = "radium" 1163 - version = "0.7.0" 1164 - source = "registry+https://github.com/rust-lang/crates.io-index" 1165 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 1166 - 1167 - [[package]] 1168 - name = "rand" 1169 - version = "0.8.5" 1170 - source = "registry+https://github.com/rust-lang/crates.io-index" 1171 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1172 - dependencies = [ 1173 - "libc", 1174 - "rand_chacha", 1175 - "rand_core", 1176 - ] 1177 - 1178 - [[package]] 1179 - name = "rand_chacha" 1180 - version = "0.3.1" 1181 - source = "registry+https://github.com/rust-lang/crates.io-index" 1182 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1183 - dependencies = [ 1184 - "ppv-lite86", 1185 - "rand_core", 1186 - ] 1187 - 1188 - [[package]] 1189 - name = "rand_core" 1190 - version = "0.6.4" 1191 - source = "registry+https://github.com/rust-lang/crates.io-index" 1192 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1193 - dependencies = [ 1194 - "getrandom", 1195 - ] 1196 - 1197 - [[package]] 1198 - name = "rand_xorshift" 1199 - version = "0.3.0" 1200 - source = "registry+https://github.com/rust-lang/crates.io-index" 1201 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 1202 - dependencies = [ 1203 - "rand_core", 1204 - ] 1205 - 1206 - [[package]] 1207 - name = "rayon" 1208 - version = "1.10.0" 1209 - source = "registry+https://github.com/rust-lang/crates.io-index" 1210 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1211 - dependencies = [ 1212 - "either", 1213 - "rayon-core", 1214 - ] 1215 - 1216 - [[package]] 1217 - name = "rayon-core" 1218 - version = "1.12.1" 1219 - source = "registry+https://github.com/rust-lang/crates.io-index" 1220 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1221 - dependencies = [ 1222 - "crossbeam-deque", 1223 - "crossbeam-utils", 1224 - ] 1225 - 1226 - [[package]] 1227 - name = "redox_syscall" 1228 - version = "0.4.1" 1229 - source = "registry+https://github.com/rust-lang/crates.io-index" 1230 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 1231 - dependencies = [ 1232 - "bitflags 1.3.2", 1233 - ] 1234 - 1235 - [[package]] 1236 - name = "redox_syscall" 1237 - version = "0.5.1" 1238 - source = "registry+https://github.com/rust-lang/crates.io-index" 1239 - checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 1240 - dependencies = [ 1241 - "bitflags 2.5.0", 1242 - ] 1243 - 1244 - [[package]] 1245 - name = "regex" 1246 - version = "1.10.5" 1247 - source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 1249 - dependencies = [ 1250 - "aho-corasick", 1251 - "memchr", 1252 - "regex-automata 0.4.7", 1253 - "regex-syntax 0.8.4", 1254 - ] 1255 - 1256 - [[package]] 1257 - name = "regex-automata" 1258 - version = "0.1.10" 1259 - source = "registry+https://github.com/rust-lang/crates.io-index" 1260 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1261 - dependencies = [ 1262 - "regex-syntax 0.6.29", 1263 - ] 1264 - 1265 - [[package]] 1266 - name = "regex-automata" 1267 - version = "0.4.7" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 1270 - dependencies = [ 1271 - "aho-corasick", 1272 - "memchr", 1273 - "regex-syntax 0.8.4", 1274 - ] 1275 - 1276 - [[package]] 1277 - name = "regex-syntax" 1278 - version = "0.6.29" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1281 - 1282 - [[package]] 1283 - name = "regex-syntax" 1284 - version = "0.8.4" 1285 - source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 1287 - 1288 - [[package]] 1289 - name = "rend" 1290 - version = "0.4.2" 1291 - source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 1293 - dependencies = [ 1294 - "bytecheck", 1295 - ] 1296 - 1297 - [[package]] 1298 - name = "rkyv" 1299 - version = "0.7.44" 1300 - source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 1302 - dependencies = [ 1303 - "bitvec", 1304 - "bytecheck", 1305 - "bytes", 1306 - "hashbrown 0.12.3", 1307 - "ptr_meta", 1308 - "rend", 1309 - "rkyv_derive", 1310 - "seahash", 1311 - "tinyvec", 1312 - "uuid", 1313 - ] 1314 - 1315 - [[package]] 1316 - name = "rkyv_derive" 1317 - version = "0.7.44" 1318 - source = "registry+https://github.com/rust-lang/crates.io-index" 1319 - checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 1320 - dependencies = [ 1321 - "proc-macro2", 1322 - "quote", 1323 - "syn 1.0.109", 1324 - ] 1325 - 1326 - [[package]] 1327 - name = "ron" 1328 - version = "0.8.1" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 1331 - dependencies = [ 1332 - "base64", 1333 - "bitflags 2.5.0", 1334 - "serde", 1335 - "serde_derive", 1336 - ] 1337 - 1338 - [[package]] 1339 - name = "rustix" 1340 - version = "0.38.34" 1341 - source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1343 - dependencies = [ 1344 - "bitflags 2.5.0", 1345 - "errno", 1346 - "libc", 1347 - "linux-raw-sys", 1348 - "windows-sys", 1349 - ] 1350 - 1351 - [[package]] 1352 - name = "rustversion" 1353 - version = "1.0.17" 1354 - source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1356 - 1357 - [[package]] 1358 - name = "rusty-fork" 1359 - version = "0.3.0" 1360 - source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 1362 - dependencies = [ 1363 - "fnv", 1364 - "quick-error", 1365 - "tempfile", 1366 - "wait-timeout", 1367 - ] 1368 - 1369 - [[package]] 1370 - name = "ryu" 1371 - version = "1.0.18" 1372 - source = "registry+https://github.com/rust-lang/crates.io-index" 1373 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1374 - 1375 - [[package]] 1376 - name = "same-file" 1377 - version = "1.0.6" 1378 - source = "registry+https://github.com/rust-lang/crates.io-index" 1379 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1380 - dependencies = [ 1381 - "winapi-util", 1382 - ] 1383 - 1384 - [[package]] 1385 - name = "scan_fmt" 1386 - version = "0.2.6" 1387 - source = "registry+https://github.com/rust-lang/crates.io-index" 1388 - checksum = "0b53b0a5db882a8e2fdaae0a43f7b39e7e9082389e978398bdf223a55b581248" 1389 - 1390 - [[package]] 1391 - name = "scoped-tls" 1392 - version = "1.0.1" 1393 - source = "registry+https://github.com/rust-lang/crates.io-index" 1394 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1395 - 1396 - [[package]] 1397 - name = "scopeguard" 1398 - version = "1.2.0" 1399 - source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1401 - 1402 - [[package]] 1403 - name = "seahash" 1404 - version = "4.1.0" 1405 - source = "registry+https://github.com/rust-lang/crates.io-index" 1406 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 1407 - 1408 - [[package]] 1409 - name = "serde" 1410 - version = "1.0.203" 1411 - source = "registry+https://github.com/rust-lang/crates.io-index" 1412 - checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 1413 - dependencies = [ 1414 - "serde_derive", 1415 - ] 1416 - 1417 - [[package]] 1418 - name = "serde_derive" 1419 - version = "1.0.203" 1420 - source = "registry+https://github.com/rust-lang/crates.io-index" 1421 - checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 1422 - dependencies = [ 1423 - "proc-macro2", 1424 - "quote", 1425 - "syn 2.0.66", 1426 - ] 1427 - 1428 - [[package]] 1429 - name = "serde_json" 1430 - version = "1.0.117" 1431 - source = "registry+https://github.com/rust-lang/crates.io-index" 1432 - checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 1433 - dependencies = [ 1434 - "itoa", 1435 - "ryu", 1436 - "serde", 1437 - ] 1438 - 1439 - [[package]] 1440 - name = "serde_spanned" 1441 - version = "0.6.6" 1442 - source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 1444 - dependencies = [ 1445 - "serde", 1446 - ] 1447 - 1448 - [[package]] 1449 - name = "sharded-slab" 1450 - version = "0.1.7" 1451 - source = "registry+https://github.com/rust-lang/crates.io-index" 1452 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1453 - dependencies = [ 1454 - "lazy_static", 1455 - ] 1456 - 1457 - [[package]] 1458 - name = "simd-adler32" 1459 - version = "0.3.7" 1460 - source = "registry+https://github.com/rust-lang/crates.io-index" 1461 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 1462 - 1463 - [[package]] 1464 - name = "simdutf8" 1465 - version = "0.1.4" 1466 - source = "registry+https://github.com/rust-lang/crates.io-index" 1467 - checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 1468 - 1469 - [[package]] 1470 - name = "slab" 1471 - version = "0.4.9" 1472 - source = "registry+https://github.com/rust-lang/crates.io-index" 1473 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1474 - dependencies = [ 1475 - "autocfg", 1476 - ] 1477 - 1478 - [[package]] 1479 - name = "smallvec" 1480 - version = "1.13.2" 1481 - source = "registry+https://github.com/rust-lang/crates.io-index" 1482 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1483 - 1484 - [[package]] 1485 - name = "smithay" 1486 - version = "0.3.0" 1487 - source = "git+https://github.com/Smithay/smithay.git#6169b213fb663d85d2e139d3bbe44dfae1ec9328" 1488 - dependencies = [ 1489 - "appendlist", 1490 - "bitflags 2.5.0", 1491 - "calloop", 1492 - "cgmath", 1493 - "cursor-icon", 1494 - "downcast-rs", 1495 - "drm-fourcc", 1496 - "encoding_rs", 1497 - "errno", 1498 - "indexmap", 1499 - "lazy_static", 1500 - "libc", 1501 - "once_cell", 1502 - "profiling", 1503 - "rand", 1504 - "rustix", 1505 - "scan_fmt", 1506 - "scopeguard", 1507 - "smallvec", 1508 - "tempfile", 1509 - "thiserror", 1510 - "tracing", 1511 - "wayland-protocols", 1512 - "wayland-protocols-misc", 1513 - "wayland-protocols-wlr", 1514 - "wayland-server", 1515 - "x11rb", 1516 - "xkbcommon", 1517 - ] 1518 - 1519 - [[package]] 1520 - name = "smithay-client-toolkit" 1521 - version = "0.19.1" 1522 - source = "git+https://github.com/Smithay/client-toolkit.git#ac2c420cae253242dc5650b7a347573e2a036c86" 1523 - dependencies = [ 1524 - "bitflags 2.5.0", 1525 - "bytemuck", 1526 - "calloop", 1527 - "calloop-wayland-source", 1528 - "cursor-icon", 1529 - "libc", 1530 - "log", 1531 - "memmap2 0.9.4", 1532 - "pkg-config", 1533 - "rustix", 1534 - "thiserror", 1535 - "wayland-backend", 1536 - "wayland-client", 1537 - "wayland-csd-frame", 1538 - "wayland-cursor", 1539 - "wayland-protocols", 1540 - "wayland-protocols-wlr", 1541 - "wayland-scanner", 1542 - "xkbcommon", 1543 - "xkeysym", 1544 - ] 1545 - 1546 - [[package]] 1547 - name = "spin" 1548 - version = "0.9.8" 1549 - source = "registry+https://github.com/rust-lang/crates.io-index" 1550 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1551 - dependencies = [ 1552 - "lock_api", 1553 - ] 1554 - 1555 - [[package]] 1556 - name = "static_assertions" 1557 - version = "1.1.0" 1558 - source = "registry+https://github.com/rust-lang/crates.io-index" 1559 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1560 - 1561 - [[package]] 1562 - name = "syn" 1563 - version = "1.0.109" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1566 - dependencies = [ 1567 - "proc-macro2", 1568 - "quote", 1569 - "unicode-ident", 1570 - ] 1571 - 1572 - [[package]] 1573 - name = "syn" 1574 - version = "2.0.66" 1575 - source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" 1577 - dependencies = [ 1578 - "proc-macro2", 1579 - "quote", 1580 - "unicode-ident", 1581 - ] 1582 - 1583 - [[package]] 1584 - name = "sysctl" 1585 - version = "0.5.5" 1586 - source = "registry+https://github.com/rust-lang/crates.io-index" 1587 - checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea" 1588 - dependencies = [ 1589 - "bitflags 2.5.0", 1590 - "byteorder", 1591 - "enum-as-inner", 1592 - "libc", 1593 - "thiserror", 1594 - "walkdir", 1595 - ] 1596 - 1597 - [[package]] 1598 - name = "tap" 1599 - version = "1.0.1" 1600 - source = "registry+https://github.com/rust-lang/crates.io-index" 1601 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 1602 - 1603 - [[package]] 1604 - name = "tempfile" 1605 - version = "3.10.1" 1606 - source = "registry+https://github.com/rust-lang/crates.io-index" 1607 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 1608 - dependencies = [ 1609 - "cfg-if", 1610 - "fastrand", 1611 - "rustix", 1612 - "windows-sys", 1613 - ] 1614 - 1615 - [[package]] 1616 - name = "termcolor" 1617 - version = "1.4.1" 1618 - source = "registry+https://github.com/rust-lang/crates.io-index" 1619 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 1620 - dependencies = [ 1621 - "winapi-util", 1622 - ] 1623 - 1624 - [[package]] 1625 - name = "thiserror" 1626 - version = "1.0.61" 1627 - source = "registry+https://github.com/rust-lang/crates.io-index" 1628 - checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 1629 - dependencies = [ 1630 - "thiserror-impl", 1631 - ] 1632 - 1633 - [[package]] 1634 - name = "thiserror-impl" 1635 - version = "1.0.61" 1636 - source = "registry+https://github.com/rust-lang/crates.io-index" 1637 - checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 1638 - dependencies = [ 1639 - "proc-macro2", 1640 - "quote", 1641 - "syn 2.0.66", 1642 - ] 1643 - 1644 - [[package]] 1645 - name = "thread_local" 1646 - version = "1.1.8" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 1649 - dependencies = [ 1650 - "cfg-if", 1651 - "once_cell", 1652 - ] 1653 - 1654 - [[package]] 1655 - name = "tinytemplate" 1656 - version = "1.2.1" 1657 - source = "registry+https://github.com/rust-lang/crates.io-index" 1658 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 1659 - dependencies = [ 1660 - "serde", 1661 - "serde_json", 1662 - ] 1663 - 1664 - [[package]] 1665 - name = "tinyvec" 1666 - version = "1.6.0" 1667 - source = "registry+https://github.com/rust-lang/crates.io-index" 1668 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1669 - dependencies = [ 1670 - "tinyvec_macros", 1671 - ] 1672 - 1673 - [[package]] 1674 - name = "tinyvec_macros" 1675 - version = "0.1.1" 1676 - source = "registry+https://github.com/rust-lang/crates.io-index" 1677 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1678 - 1679 - [[package]] 1680 - name = "toml" 1681 - version = "0.8.14" 1682 - source = "registry+https://github.com/rust-lang/crates.io-index" 1683 - checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" 1684 - dependencies = [ 1685 - "serde", 1686 - "serde_spanned", 1687 - "toml_datetime", 1688 - "toml_edit 0.22.14", 1689 - ] 1690 - 1691 - [[package]] 1692 - name = "toml_datetime" 1693 - version = "0.6.6" 1694 - source = "registry+https://github.com/rust-lang/crates.io-index" 1695 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 1696 - dependencies = [ 1697 - "serde", 1698 - ] 1699 - 1700 - [[package]] 1701 - name = "toml_edit" 1702 - version = "0.21.1" 1703 - source = "registry+https://github.com/rust-lang/crates.io-index" 1704 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 1705 - dependencies = [ 1706 - "indexmap", 1707 - "toml_datetime", 1708 - "winnow 0.5.40", 1709 - ] 1710 - 1711 - [[package]] 1712 - name = "toml_edit" 1713 - version = "0.22.14" 1714 - source = "registry+https://github.com/rust-lang/crates.io-index" 1715 - checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" 1716 - dependencies = [ 1717 - "indexmap", 1718 - "serde", 1719 - "serde_spanned", 1720 - "toml_datetime", 1721 - "winnow 0.6.13", 1722 - ] 1723 - 1724 - [[package]] 1725 - name = "tracing" 1726 - version = "0.1.40" 1727 - source = "registry+https://github.com/rust-lang/crates.io-index" 1728 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1729 - dependencies = [ 1730 - "pin-project-lite", 1731 - "tracing-attributes", 1732 - "tracing-core", 1733 - ] 1734 - 1735 - [[package]] 1736 - name = "tracing-attributes" 1737 - version = "0.1.27" 1738 - source = "registry+https://github.com/rust-lang/crates.io-index" 1739 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 1740 - dependencies = [ 1741 - "proc-macro2", 1742 - "quote", 1743 - "syn 2.0.66", 1744 - ] 1745 - 1746 - [[package]] 1747 - name = "tracing-core" 1748 - version = "0.1.32" 1749 - source = "registry+https://github.com/rust-lang/crates.io-index" 1750 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1751 - dependencies = [ 1752 - "once_cell", 1753 - "valuable", 1754 - ] 1755 - 1756 - [[package]] 1757 - name = "tracing-log" 1758 - version = "0.2.0" 1759 - source = "registry+https://github.com/rust-lang/crates.io-index" 1760 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1761 - dependencies = [ 1762 - "log", 1763 - "once_cell", 1764 - "tracing-core", 1765 - ] 1766 - 1767 - [[package]] 1768 - name = "tracing-subscriber" 1769 - version = "0.3.18" 1770 - source = "registry+https://github.com/rust-lang/crates.io-index" 1771 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 1772 - dependencies = [ 1773 - "matchers", 1774 - "nu-ansi-term", 1775 - "once_cell", 1776 - "parking_lot", 1777 - "regex", 1778 - "sharded-slab", 1779 - "smallvec", 1780 - "thread_local", 1781 - "tracing", 1782 - "tracing-core", 1783 - "tracing-log", 1784 - ] 1785 - 1786 - [[package]] 1787 - name = "tracing-tracy" 1788 - version = "0.11.0" 1789 - source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "6024d04f84a69fd0d1dc1eee3a2b070bd246530a0582f9982ae487cb6c703614" 1791 - dependencies = [ 1792 - "tracing-core", 1793 - "tracing-subscriber", 1794 - "tracy-client", 1795 - ] 1796 - 1797 - [[package]] 1798 - name = "tracy-client" 1799 - version = "0.17.0" 1800 - source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "59fb931a64ff88984f86d3e9bcd1ae8843aa7fe44dd0f8097527bc172351741d" 1802 - dependencies = [ 1803 - "loom", 1804 - "once_cell", 1805 - "tracy-client-sys", 1806 - ] 1807 - 1808 - [[package]] 1809 - name = "tracy-client-sys" 1810 - version = "0.22.2" 1811 - source = "registry+https://github.com/rust-lang/crates.io-index" 1812 - checksum = "9d104d610dfa9dd154535102cc9c6164ae1fa37842bc2d9e83f9ac82b0ae0882" 1813 - dependencies = [ 1814 - "cc", 1815 - ] 1816 - 1817 - [[package]] 1818 - name = "trybuild" 1819 - version = "1.0.96" 1820 - source = "registry+https://github.com/rust-lang/crates.io-index" 1821 - checksum = "33a5f13f11071020bb12de7a16b925d2d58636175c20c11dc5f96cb64bb6c9b3" 1822 - dependencies = [ 1823 - "glob", 1824 - "serde", 1825 - "serde_derive", 1826 - "serde_json", 1827 - "termcolor", 1828 - "toml", 1829 - ] 1830 - 1831 - [[package]] 1832 - name = "unarray" 1833 - version = "0.1.4" 1834 - source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 1836 - 1837 - [[package]] 1838 - name = "unicode-ident" 1839 - version = "1.0.12" 1840 - source = "registry+https://github.com/rust-lang/crates.io-index" 1841 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1842 - 1843 - [[package]] 1844 - name = "uuid" 1845 - version = "1.8.0" 1846 - source = "registry+https://github.com/rust-lang/crates.io-index" 1847 - checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 1848 - 1849 - [[package]] 1850 - name = "valuable" 1851 - version = "0.1.0" 1852 - source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 1854 - 1855 - [[package]] 1856 - name = "version_check" 1857 - version = "0.9.4" 1858 - source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1860 - 1861 - [[package]] 1862 - name = "wait-timeout" 1863 - version = "0.2.0" 1864 - source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 1866 - dependencies = [ 1867 - "libc", 1868 - ] 1869 - 1870 - [[package]] 1871 - name = "walkdir" 1872 - version = "2.5.0" 1873 - source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1875 - dependencies = [ 1876 - "same-file", 1877 - "winapi-util", 1878 - ] 1879 - 1880 - [[package]] 1881 - name = "wasi" 1882 - version = "0.11.0+wasi-snapshot-preview1" 1883 - source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1885 - 1886 - [[package]] 1887 - name = "wasite" 1888 - version = "0.1.0" 1889 - source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 1891 - 1892 - [[package]] 1893 - name = "wasm-bindgen" 1894 - version = "0.2.92" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 1897 - dependencies = [ 1898 - "cfg-if", 1899 - "wasm-bindgen-macro", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "wasm-bindgen-backend" 1904 - version = "0.2.92" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 1907 - dependencies = [ 1908 - "bumpalo", 1909 - "log", 1910 - "once_cell", 1911 - "proc-macro2", 1912 - "quote", 1913 - "syn 2.0.66", 1914 - "wasm-bindgen-shared", 1915 - ] 1916 - 1917 - [[package]] 1918 - name = "wasm-bindgen-macro" 1919 - version = "0.2.92" 1920 - source = "registry+https://github.com/rust-lang/crates.io-index" 1921 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 1922 - dependencies = [ 1923 - "quote", 1924 - "wasm-bindgen-macro-support", 1925 - ] 1926 - 1927 - [[package]] 1928 - name = "wasm-bindgen-macro-support" 1929 - version = "0.2.92" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 1932 - dependencies = [ 1933 - "proc-macro2", 1934 - "quote", 1935 - "syn 2.0.66", 1936 - "wasm-bindgen-backend", 1937 - "wasm-bindgen-shared", 1938 - ] 1939 - 1940 - [[package]] 1941 - name = "wasm-bindgen-shared" 1942 - version = "0.2.92" 1943 - source = "registry+https://github.com/rust-lang/crates.io-index" 1944 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 1945 - 1946 - [[package]] 1947 - name = "wayland-backend" 1948 - version = "0.3.4" 1949 - source = "registry+https://github.com/rust-lang/crates.io-index" 1950 - checksum = "34e9e6b6d4a2bb4e7e69433e0b35c7923b95d4dc8503a84d25ec917a4bbfdf07" 1951 - dependencies = [ 1952 - "cc", 1953 - "downcast-rs", 1954 - "rustix", 1955 - "scoped-tls", 1956 - "smallvec", 1957 - "wayland-sys", 1958 - ] 1959 - 1960 - [[package]] 1961 - name = "wayland-client" 1962 - version = "0.31.3" 1963 - source = "registry+https://github.com/rust-lang/crates.io-index" 1964 - checksum = "1e63801c85358a431f986cffa74ba9599ff571fc5774ac113ed3b490c19a1133" 1965 - dependencies = [ 1966 - "bitflags 2.5.0", 1967 - "rustix", 1968 - "wayland-backend", 1969 - "wayland-scanner", 1970 - ] 1971 - 1972 - [[package]] 1973 - name = "wayland-csd-frame" 1974 - version = "0.3.0" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 1977 - dependencies = [ 1978 - "bitflags 2.5.0", 1979 - "cursor-icon", 1980 - "wayland-backend", 1981 - ] 1982 - 1983 - [[package]] 1984 - name = "wayland-cursor" 1985 - version = "0.31.3" 1986 - source = "registry+https://github.com/rust-lang/crates.io-index" 1987 - checksum = "a206e8b2b53b1d3fcb9428fec72bc278ce539e2fa81fe2bfc1ab27703d5187b9" 1988 - dependencies = [ 1989 - "rustix", 1990 - "wayland-client", 1991 - "xcursor", 1992 - ] 1993 - 1994 - [[package]] 1995 - name = "wayland-protocols" 1996 - version = "0.32.1" 1997 - source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "83d0f1056570486e26a3773ec633885124d79ae03827de05ba6c85f79904026c" 1999 - dependencies = [ 2000 - "bitflags 2.5.0", 2001 - "wayland-backend", 2002 - "wayland-client", 2003 - "wayland-scanner", 2004 - "wayland-server", 2005 - ] 2006 - 2007 - [[package]] 2008 - name = "wayland-protocols-misc" 2009 - version = "0.3.1" 2010 - source = "registry+https://github.com/rust-lang/crates.io-index" 2011 - checksum = "e76311e1866c955afbbc46ae97e57542acda1dc9b0298358263a8550b5247331" 2012 - dependencies = [ 2013 - "bitflags 2.5.0", 2014 - "wayland-backend", 2015 - "wayland-protocols", 2016 - "wayland-scanner", 2017 - "wayland-server", 2018 - ] 2019 - 2020 - [[package]] 2021 - name = "wayland-protocols-wlr" 2022 - version = "0.3.1" 2023 - source = "registry+https://github.com/rust-lang/crates.io-index" 2024 - checksum = "a7dab47671043d9f5397035975fe1cac639e5bca5cc0b3c32d09f01612e34d24" 2025 - dependencies = [ 2026 - "bitflags 2.5.0", 2027 - "wayland-backend", 2028 - "wayland-client", 2029 - "wayland-protocols", 2030 - "wayland-scanner", 2031 - "wayland-server", 2032 - ] 2033 - 2034 - [[package]] 2035 - name = "wayland-scanner" 2036 - version = "0.31.2" 2037 - source = "registry+https://github.com/rust-lang/crates.io-index" 2038 - checksum = "67da50b9f80159dec0ea4c11c13e24ef9e7574bd6ce24b01860a175010cea565" 2039 - dependencies = [ 2040 - "proc-macro2", 2041 - "quick-xml", 2042 - "quote", 2043 - ] 2044 - 2045 - [[package]] 2046 - name = "wayland-server" 2047 - version = "0.31.2" 2048 - source = "registry+https://github.com/rust-lang/crates.io-index" 2049 - checksum = "63e89118bd072ba6ce0f9c2c92fa41f72d1d78a138d2abc497a80a8264565559" 2050 - dependencies = [ 2051 - "bitflags 2.5.0", 2052 - "downcast-rs", 2053 - "io-lifetimes", 2054 - "rustix", 2055 - "wayland-backend", 2056 - "wayland-scanner", 2057 - ] 2058 - 2059 - [[package]] 2060 - name = "wayland-sys" 2061 - version = "0.31.2" 2062 - source = "registry+https://github.com/rust-lang/crates.io-index" 2063 - checksum = "105b1842da6554f91526c14a2a2172897b7f745a805d62af4ce698706be79c12" 2064 - dependencies = [ 2065 - "dlib", 2066 - "log", 2067 - "pkg-config", 2068 - ] 2069 - 2070 - [[package]] 2071 - name = "web-sys" 2072 - version = "0.3.69" 2073 - source = "registry+https://github.com/rust-lang/crates.io-index" 2074 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 2075 - dependencies = [ 2076 - "js-sys", 2077 - "wasm-bindgen", 2078 - ] 2079 - 2080 - [[package]] 2081 - name = "whoami" 2082 - version = "1.5.1" 2083 - source = "registry+https://github.com/rust-lang/crates.io-index" 2084 - checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" 2085 - dependencies = [ 2086 - "redox_syscall 0.4.1", 2087 - "wasite", 2088 - "web-sys", 2089 - ] 2090 - 2091 - [[package]] 2092 - name = "winapi" 2093 - version = "0.3.9" 2094 - source = "registry+https://github.com/rust-lang/crates.io-index" 2095 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2096 - dependencies = [ 2097 - "winapi-i686-pc-windows-gnu", 2098 - "winapi-x86_64-pc-windows-gnu", 2099 - ] 2100 - 2101 - [[package]] 2102 - name = "winapi-i686-pc-windows-gnu" 2103 - version = "0.4.0" 2104 - source = "registry+https://github.com/rust-lang/crates.io-index" 2105 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2106 - 2107 - [[package]] 2108 - name = "winapi-util" 2109 - version = "0.1.8" 2110 - source = "registry+https://github.com/rust-lang/crates.io-index" 2111 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 2112 - dependencies = [ 2113 - "windows-sys", 2114 - ] 2115 - 2116 - [[package]] 2117 - name = "winapi-x86_64-pc-windows-gnu" 2118 - version = "0.4.0" 2119 - source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2121 - 2122 - [[package]] 2123 - name = "windows" 2124 - version = "0.54.0" 2125 - source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 2127 - dependencies = [ 2128 - "windows-core", 2129 - "windows-targets 0.52.5", 2130 - ] 2131 - 2132 - [[package]] 2133 - name = "windows-core" 2134 - version = "0.54.0" 2135 - source = "registry+https://github.com/rust-lang/crates.io-index" 2136 - checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 2137 - dependencies = [ 2138 - "windows-result", 2139 - "windows-targets 0.52.5", 2140 - ] 2141 - 2142 - [[package]] 2143 - name = "windows-result" 2144 - version = "0.1.2" 2145 - source = "registry+https://github.com/rust-lang/crates.io-index" 2146 - checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 2147 - dependencies = [ 2148 - "windows-targets 0.52.5", 2149 - ] 2150 - 2151 - [[package]] 2152 - name = "windows-sys" 2153 - version = "0.52.0" 2154 - source = "registry+https://github.com/rust-lang/crates.io-index" 2155 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2156 - dependencies = [ 2157 - "windows-targets 0.52.5", 2158 - ] 2159 - 2160 - [[package]] 2161 - name = "windows-targets" 2162 - version = "0.48.5" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2165 - dependencies = [ 2166 - "windows_aarch64_gnullvm 0.48.5", 2167 - "windows_aarch64_msvc 0.48.5", 2168 - "windows_i686_gnu 0.48.5", 2169 - "windows_i686_msvc 0.48.5", 2170 - "windows_x86_64_gnu 0.48.5", 2171 - "windows_x86_64_gnullvm 0.48.5", 2172 - "windows_x86_64_msvc 0.48.5", 2173 - ] 2174 - 2175 - [[package]] 2176 - name = "windows-targets" 2177 - version = "0.52.5" 2178 - source = "registry+https://github.com/rust-lang/crates.io-index" 2179 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 2180 - dependencies = [ 2181 - "windows_aarch64_gnullvm 0.52.5", 2182 - "windows_aarch64_msvc 0.52.5", 2183 - "windows_i686_gnu 0.52.5", 2184 - "windows_i686_gnullvm", 2185 - "windows_i686_msvc 0.52.5", 2186 - "windows_x86_64_gnu 0.52.5", 2187 - "windows_x86_64_gnullvm 0.52.5", 2188 - "windows_x86_64_msvc 0.52.5", 2189 - ] 2190 - 2191 - [[package]] 2192 - name = "windows_aarch64_gnullvm" 2193 - version = "0.48.5" 2194 - source = "registry+https://github.com/rust-lang/crates.io-index" 2195 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2196 - 2197 - [[package]] 2198 - name = "windows_aarch64_gnullvm" 2199 - version = "0.52.5" 2200 - source = "registry+https://github.com/rust-lang/crates.io-index" 2201 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 2202 - 2203 - [[package]] 2204 - name = "windows_aarch64_msvc" 2205 - version = "0.48.5" 2206 - source = "registry+https://github.com/rust-lang/crates.io-index" 2207 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2208 - 2209 - [[package]] 2210 - name = "windows_aarch64_msvc" 2211 - version = "0.52.5" 2212 - source = "registry+https://github.com/rust-lang/crates.io-index" 2213 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 2214 - 2215 - [[package]] 2216 - name = "windows_i686_gnu" 2217 - version = "0.48.5" 2218 - source = "registry+https://github.com/rust-lang/crates.io-index" 2219 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2220 - 2221 - [[package]] 2222 - name = "windows_i686_gnu" 2223 - version = "0.52.5" 2224 - source = "registry+https://github.com/rust-lang/crates.io-index" 2225 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 2226 - 2227 - [[package]] 2228 - name = "windows_i686_gnullvm" 2229 - version = "0.52.5" 2230 - source = "registry+https://github.com/rust-lang/crates.io-index" 2231 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 2232 - 2233 - [[package]] 2234 - name = "windows_i686_msvc" 2235 - version = "0.48.5" 2236 - source = "registry+https://github.com/rust-lang/crates.io-index" 2237 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2238 - 2239 - [[package]] 2240 - name = "windows_i686_msvc" 2241 - version = "0.52.5" 2242 - source = "registry+https://github.com/rust-lang/crates.io-index" 2243 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 2244 - 2245 - [[package]] 2246 - name = "windows_x86_64_gnu" 2247 - version = "0.48.5" 2248 - source = "registry+https://github.com/rust-lang/crates.io-index" 2249 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2250 - 2251 - [[package]] 2252 - name = "windows_x86_64_gnu" 2253 - version = "0.52.5" 2254 - source = "registry+https://github.com/rust-lang/crates.io-index" 2255 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 2256 - 2257 - [[package]] 2258 - name = "windows_x86_64_gnullvm" 2259 - version = "0.48.5" 2260 - source = "registry+https://github.com/rust-lang/crates.io-index" 2261 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2262 - 2263 - [[package]] 2264 - name = "windows_x86_64_gnullvm" 2265 - version = "0.52.5" 2266 - source = "registry+https://github.com/rust-lang/crates.io-index" 2267 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 2268 - 2269 - [[package]] 2270 - name = "windows_x86_64_msvc" 2271 - version = "0.48.5" 2272 - source = "registry+https://github.com/rust-lang/crates.io-index" 2273 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2274 - 2275 - [[package]] 2276 - name = "windows_x86_64_msvc" 2277 - version = "0.52.5" 2278 - source = "registry+https://github.com/rust-lang/crates.io-index" 2279 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 2280 - 2281 - [[package]] 2282 - name = "winnow" 2283 - version = "0.5.40" 2284 - source = "registry+https://github.com/rust-lang/crates.io-index" 2285 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 2286 - dependencies = [ 2287 - "memchr", 2288 - ] 2289 - 2290 - [[package]] 2291 - name = "winnow" 2292 - version = "0.6.13" 2293 - source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" 2295 - dependencies = [ 2296 - "memchr", 2297 - ] 2298 - 2299 - [[package]] 2300 - name = "wprs" 2301 - version = "0.1.0" 2302 - dependencies = [ 2303 - "anyhow", 2304 - "arrayref", 2305 - "bimap", 2306 - "bpaf", 2307 - "bytemuck", 2308 - "criterion", 2309 - "crossbeam-channel", 2310 - "divbuf", 2311 - "enum-as-inner", 2312 - "fallible-iterator", 2313 - "home", 2314 - "itertools 0.13.0", 2315 - "lagoon", 2316 - "merkle_hash", 2317 - "nix", 2318 - "num_enum", 2319 - "optional_struct", 2320 - "png", 2321 - "proptest", 2322 - "rkyv", 2323 - "ron", 2324 - "serde", 2325 - "serde_derive", 2326 - "serde_json", 2327 - "smithay", 2328 - "smithay-client-toolkit", 2329 - "static_assertions", 2330 - "sysctl", 2331 - "tracing", 2332 - "tracing-subscriber", 2333 - "tracing-tracy", 2334 - "tracy-client", 2335 - "trybuild", 2336 - "whoami", 2337 - "x11rb", 2338 - "zstd", 2339 - ] 2340 - 2341 - [[package]] 2342 - name = "wyz" 2343 - version = "0.5.1" 2344 - source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 2346 - dependencies = [ 2347 - "tap", 2348 - ] 2349 - 2350 - [[package]] 2351 - name = "x11rb" 2352 - version = "0.13.1" 2353 - source = "registry+https://github.com/rust-lang/crates.io-index" 2354 - checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" 2355 - dependencies = [ 2356 - "gethostname", 2357 - "rustix", 2358 - "x11rb-protocol", 2359 - ] 2360 - 2361 - [[package]] 2362 - name = "x11rb-protocol" 2363 - version = "0.13.1" 2364 - source = "registry+https://github.com/rust-lang/crates.io-index" 2365 - checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" 2366 - 2367 - [[package]] 2368 - name = "xcursor" 2369 - version = "0.3.5" 2370 - source = "registry+https://github.com/rust-lang/crates.io-index" 2371 - checksum = "6a0ccd7b4a5345edfcd0c3535718a4e9ff7798ffc536bb5b5a0e26ff84732911" 2372 - 2373 - [[package]] 2374 - name = "xkbcommon" 2375 - version = "0.7.0" 2376 - source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" 2378 - dependencies = [ 2379 - "libc", 2380 - "memmap2 0.8.0", 2381 - "xkeysym", 2382 - ] 2383 - 2384 - [[package]] 2385 - name = "xkeysym" 2386 - version = "0.2.1" 2387 - source = "registry+https://github.com/rust-lang/crates.io-index" 2388 - checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" 2389 - dependencies = [ 2390 - "bytemuck", 2391 - ] 2392 - 2393 - [[package]] 2394 - name = "zstd" 2395 - version = "0.13.1" 2396 - source = "registry+https://github.com/rust-lang/crates.io-index" 2397 - checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" 2398 - dependencies = [ 2399 - "zstd-safe", 2400 - ] 2401 - 2402 - [[package]] 2403 - name = "zstd-safe" 2404 - version = "7.1.0" 2405 - source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" 2407 - dependencies = [ 2408 - "zstd-sys", 2409 - ] 2410 - 2411 - [[package]] 2412 - name = "zstd-sys" 2413 - version = "2.0.10+zstd.1.5.6" 2414 - source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" 2416 - dependencies = [ 2417 - "cc", 2418 - "pkg-config", 2419 - ]
+2 -9
pkgs/by-name/wp/wprs/package.nix
··· 28 28 (python3.withPackages (pp: with pp; [ psutil ])) 29 29 ]; 30 30 31 - cargoLock = { 32 - lockFile = ./Cargo.lock; 33 - 34 - outputHashes = { 35 - "divbuf-0.3.2-pre" = "sha256-xV0RWT4xu/LTVUGQSrafOgJ+X7FlnH7Cz6KreKSlCjw="; 36 - "smithay-0.3.0" = "sha256-lqAJACmkJ6Ap/zRGjJjwJbQOynUPPhXAApHS60jYLxo="; 37 - "smithay-client-toolkit-0.19.1" = "sha256-Sw/eM5rjaKVVFaEYaYj09jsxaLZTpD2IdQGpr/o0Fpc="; 38 - }; 39 - }; 31 + useFetchCargoVendor = true; 32 + cargoHash = "sha256-caf1d7SdAEc5RUDQCQkxlYw073gIUwlnvlVaX8gJGmc="; 40 33 41 34 preFixup = '' 42 35 cp wprs "$out/bin/wprs"
+2 -2
pkgs/by-name/xk/xk6/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "xk6"; 12 - version = "0.14.4-4c1"; 12 + version = "0.15.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "grafana"; 16 16 repo = "xk6"; 17 17 tag = "v${version}"; 18 - hash = "sha256-r8DbE6H4VFFzRq2uKj+N2mgN/V0w5PVWf3FvmB0YwbM="; 18 + hash = "sha256-sRrzsxMm6e4qIcW4+Ok/Dlccbzd0xmRskXPJ+frmXjA="; 19 19 }; 20 20 21 21 vendorHash = null;
+45
pkgs/by-name/xp/xpra-html5/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + stdenvNoCC, 5 + python3, 6 + uglify-js, 7 + gitUpdater, 8 + }: 9 + stdenvNoCC.mkDerivation (finalAttrs: { 10 + name = "xpra-html5"; 11 + version = "17"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "Xpra-org"; 15 + repo = "xpra-html5"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-SwP7NazsiUyDD4LUziCwN0X9GTQVq0lYM2jXqNaXLEA="; 18 + }; 19 + 20 + buildInputs = [ 21 + python3 22 + uglify-js 23 + ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + python $src/setup.py install $out /share/xpra/www /share/xpra/www 28 + runHook postInstall 29 + ''; 30 + 31 + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 32 + 33 + meta = { 34 + homepage = "https://xpra.org/"; 35 + downloadPage = "https://xpra.org/src/"; 36 + description = "HTML5 client for Xpra"; 37 + changelog = "https://github.com/Xpra-org/xpra-html5/releases/tag/v${finalAttrs.version}"; 38 + platforms = lib.platforms.linux; 39 + license = lib.licenses.mpl20; 40 + maintainers = with lib.maintainers; [ 41 + catern 42 + lucasew 43 + ]; 44 + }; 45 + })
+2 -10
pkgs/by-name/yt/yt-dlp/package.nix
··· 17 17 # The websites yt-dlp deals with are a very moving target. That means that 18 18 # downloads break constantly. Because of that, updates should always be backported 19 19 # to the latest stable release. 20 - version = "2025.3.21"; 20 + version = "2025.3.25"; 21 21 pyproject = true; 22 22 23 23 src = fetchPypi { 24 24 inherit version; 25 25 pname = "yt_dlp"; 26 - hash = "sha256-W89HsolyVOo4FpNajd5H0kO/9VZ4LM7WsWorhea2gro="; 26 + hash = "sha256-x/QlFvnfMdrvU8yiWQI5QBzzHbfE6spnZnz9gvLgric="; 27 27 }; 28 28 29 29 build-system = with python3Packages; [ ··· 74 74 75 75 # Requires network 76 76 doCheck = false; 77 - 78 - # curl-cffi 0.7.2 and 0.7.3 are broken, but 0.7.4 is fixed 79 - # https://github.com/lexiforest/curl_cffi/issues/394 80 - postPatch = '' 81 - substituteInPlace yt_dlp/networking/_curlcffi.py \ 82 - --replace-fail "(0, 7, 0) <= curl_cffi_version < (0, 7, 2)" \ 83 - "((0, 7, 0) <= curl_cffi_version < (0, 7, 2)) or curl_cffi_version >= (0, 7, 4)" 84 - ''; 85 77 86 78 postInstall = lib.optionalString withAlias '' 87 79 ln -s "$out/bin/yt-dlp" "$out/bin/youtube-dl"
+3 -3
pkgs/by-name/zi/zizmor/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "zizmor"; 11 - version = "1.5.1"; 11 + version = "1.5.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "woodruffw"; 15 15 repo = "zizmor"; 16 16 tag = "v${version}"; 17 - hash = "sha256-G0cayE8UDahLYZl2HG8315YYUOhH5u6L/VRWHqqavPk="; 17 + hash = "sha256-KBQ63SAV8eUIfj1TnQQ636DRnLXj+JO4GDiVX1xS9nw="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-CRjr4X525t7xaFsnX3gOy4+HJis5T8nw6zrhkW60Bpw="; 21 + cargoHash = "sha256-BMDsV89CcppcuTx1PYyqZO5ZeWDJruudmNjlwnb+QZI="; 22 22 23 23 nativeInstallCheckInputs = [ versionCheckHook ]; 24 24
+3 -3
pkgs/by-name/zs/zsh-abbr/package.nix
··· 6 6 }: 7 7 stdenv.mkDerivation rec { 8 8 pname = "zsh-abbr"; 9 - version = "6.1.0"; 9 + version = "6.2.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "olets"; 13 13 repo = "zsh-abbr"; 14 - rev = "v${version}"; 15 - hash = "sha256-M2HBVC72RA0OUBUz8AaJMEsGMNrRzS2Kz8QLSplxP9o="; 14 + tag = "v${version}"; 15 + hash = "sha256-idwCtAwXa7qNZlKE8KdS9cUgEOCSdf6tec0YuXINcl8="; 16 16 fetchSubmodules = true; 17 17 }; 18 18
+38 -3
pkgs/development/cuda-modules/cudnn/releases.nix
··· 10 10 { 11 11 version = "8.9.5.30"; 12 12 minCudaVersion = "12.0"; 13 - maxCudaVersion = "12.4"; 13 + maxCudaVersion = "12.8"; 14 14 url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-aarch64/cudnn-linux-aarch64-8.9.5.30_cuda12-archive.tar.xz"; 15 15 hash = "sha256-BJH3sC9VwiB362eL8xTB+RdSS9UHz1tlgjm/mKRyM6E="; 16 16 } ··· 27 27 maxCudaVersion = "12.8"; 28 28 url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-aarch64/cudnn-linux-aarch64-9.7.1.26_cuda12-archive.tar.xz"; 29 29 hash = "sha256-jDPWAXKOiJYpblPwg5FUSh7F0Dgg59LLnd+pX9y7r1w="; 30 + } 31 + { 32 + version = "9.8.0.87"; 33 + minCudaVersion = "12.0"; 34 + maxCudaVersion = "12.8"; 35 + url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-aarch64/cudnn-linux-aarch64-9.8.0.87_cuda12-archive.tar.xz"; 36 + hash = "sha256-8D7OP/B9FxnwYhiXOoeXzsG+OHzDF7qrW7EY3JiBmec="; 30 37 } 31 38 ]; 32 39 # powerpc ··· 85 92 { 86 93 version = "8.9.7.29"; 87 94 minCudaVersion = "12.0"; 88 - maxCudaVersion = "12.4"; 95 + maxCudaVersion = "12.8"; 89 96 url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-sbsa/cudnn-linux-sbsa-8.9.7.29_cuda12-archive.tar.xz"; 90 97 hash = "sha256-6Yt8gAEHheXVygHuTOm1sMjHNYfqb4ZIvjTT+NHUe9E="; 91 98 } ··· 117 124 url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-sbsa/cudnn-linux-sbsa-9.7.1.26_cuda11-archive.tar.xz"; 118 125 hash = "sha256-JcpY/ylUAaj37bzrJlerSDxO5KgPmpL40Mvl8VquHN4="; 119 126 } 127 + { 128 + version = "9.8.0.87"; 129 + minCudaVersion = "12.0"; 130 + maxCudaVersion = "12.8"; 131 + url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-sbsa/cudnn-linux-sbsa-9.8.0.87_cuda12-archive.tar.xz"; 132 + hash = "sha256-IvYvR08MuzW+9UCtsdhB2mPJzT33azxOQwEPQ2ss2Fw="; 133 + } 134 + { 135 + version = "9.8.0.87"; 136 + minCudaVersion = "11.8"; 137 + maxCudaVersion = "11.8"; 138 + url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-sbsa/cudnn-linux-sbsa-9.8.0.87_cuda11-archive.tar.xz"; 139 + hash = "sha256-j/EXcV+zMjAy0bSJiAEXVWrYteV6kGAUPwy3I4TbdxA="; 140 + } 120 141 ]; 121 142 # x86_64 122 143 linux-x86_64 = [ ··· 207 228 { 208 229 version = "8.9.7.29"; 209 230 minCudaVersion = "12.0"; 210 - maxCudaVersion = "12.4"; 231 + maxCudaVersion = "12.8"; 211 232 url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-8.9.7.29_cuda12-archive.tar.xz"; 212 233 hash = "sha256-R1MzYlx+QqevPKCy91BqEG4wyTsaoAgc2cE++24h47s="; 213 234 } ··· 238 259 maxCudaVersion = "11.8"; 239 260 url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-9.7.1.26_cuda11-archive.tar.xz"; 240 261 hash = "sha256-c6rfLRtyGjS9e5CQjQKQYlfyrdvSRs+NtY4h1o2FXqI="; 262 + } 263 + { 264 + version = "9.8.0.87"; 265 + minCudaVersion = "12.0"; 266 + maxCudaVersion = "12.8"; 267 + url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-9.8.0.87_cuda12-archive.tar.xz"; 268 + hash = "sha256-MhubM7sSh0BNk9VnLTUvFv6rxLIgrGrguG5LJ/JX3PQ="; 269 + } 270 + { 271 + version = "9.8.0.87"; 272 + minCudaVersion = "11.8"; 273 + maxCudaVersion = "11.8"; 274 + url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-9.8.0.87_cuda11-archive.tar.xz"; 275 + hash = "sha256-z03674MR2YfWQKMi9mjNUkCsPlMCq+lhfdmRtbJTJ1g="; 241 276 } 242 277 ]; 243 278 };
+8 -5
pkgs/development/cuda-modules/gpus.nix
··· 26 26 # Many thanks to Arnon Shimoni for maintaining a list of these architectures and capabilities. 27 27 # Without your work, this would have been much more difficult. 28 28 # https://arnon.dk/matching-sm-architectures-arch-and-gencode-for-various-nvidia-cards/ 29 + # 30 + # https://en.wikipedia.org/wiki/CUDA#GPUs_supported 31 + 29 32 [ 30 33 { 31 34 # Tesla K40 ··· 55 58 maxCudaVersion = null; 56 59 } 57 60 { 58 - # Quadro M6000 , GeForce 900, GTX-970, GTX-980, GTX Titan X 61 + # Quadro M6000, GeForce 900, GTX-970, GTX-980, GTX Titan X 59 62 archName = "Maxwell"; 60 63 computeCapability = "5.2"; 61 64 isJetson = false; ··· 199 202 computeCapability = "10.0a"; 200 203 isJetson = false; 201 204 minCudaVersion = "12.8"; 202 - dontDefaultAfter = null; 205 + dontDefaultAfter = "12.0"; # disable to reduce size of OnnxRuntime and Torch CUDA binaries 203 206 maxCudaVersion = null; 204 207 } 205 208 { ··· 208 211 computeCapability = "10.1"; 209 212 isJetson = false; 210 213 minCudaVersion = "12.8"; 211 - dontDefaultAfter = null; 214 + dontDefaultAfter = "12.0"; # disable to reduce size of OnnxRuntime and Torch CUDA binaries 212 215 maxCudaVersion = null; 213 216 } 214 217 { ··· 217 220 computeCapability = "10.1a"; 218 221 isJetson = false; 219 222 minCudaVersion = "12.8"; 220 - dontDefaultAfter = null; 223 + dontDefaultAfter = "12.0"; # disable to reduce size of OnnxRuntime and Torch CUDA binaries 221 224 maxCudaVersion = null; 222 225 } 223 226 { ··· 235 238 computeCapability = "12.0a"; 236 239 isJetson = false; 237 240 minCudaVersion = "12.8"; 238 - dontDefaultAfter = null; 241 + dontDefaultAfter = "12.0"; # disable to reduce size of OnnxRuntime and Torch CUDA binaries 239 242 maxCudaVersion = null; 240 243 } 241 244 ]
+20 -20
pkgs/development/libraries/onnxruntime/default.nix
··· 66 66 67 67 nativeBuildInputs = [ cmake gbenchmark gtest ]; 68 68 cmakeFlags = [ 69 - "-DUSE_SYSTEM_GOOGLEBENCHMARK=ON" 70 - "-DUSE_SYSTEM_GOOGLETEST=ON" 71 - "-DUSE_SYSTEM_LIBS=ON" 69 + (lib.cmakeBool "USE_SYSTEM_GOOGLEBENCHMARK" true) 70 + (lib.cmakeBool "USE_SYSTEM_GOOGLETEST" true) 71 + (lib.cmakeBool "USE_SYSTEM_LIBS" true) 72 72 # 'clog' tests set 'CXX_STANDARD 11'; this conflicts with our 'gtest'. 73 - "-DCLOG_BUILD_TESTS=OFF" 73 + (lib.cmakeBool "CLOG_BUILD_TESTS" false) 74 74 ]; 75 75 }; 76 76 ··· 178 178 cmakeDir = "../cmake"; 179 179 180 180 cmakeFlags = [ 181 - "-DABSL_ENABLE_INSTALL=ON" 182 - "-DFETCHCONTENT_FULLY_DISCONNECTED=ON" 183 - "-DFETCHCONTENT_QUIET=OFF" 184 - "-DFETCHCONTENT_SOURCE_DIR_ABSEIL_CPP=${abseil-cpp_202407.src}" 185 - "-DFETCHCONTENT_SOURCE_DIR_DLPACK=${dlpack}" 186 - "-DFETCHCONTENT_SOURCE_DIR_FLATBUFFERS=${flatbuffers_23.src}" 187 - "-DFETCHCONTENT_SOURCE_DIR_MP11=${mp11}" 188 - "-DFETCHCONTENT_SOURCE_DIR_ONNX=${onnx}" 189 - "-DFETCHCONTENT_SOURCE_DIR_RE2=${re2.src}" 190 - "-DFETCHCONTENT_SOURCE_DIR_SAFEINT=${safeint}" 191 - "-DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS" 181 + (lib.cmakeBool "ABSL_ENABLE_INSTALL" true) 182 + (lib.cmakeBool "FETCHCONTENT_FULLY_DISCONNECTED" true) 183 + (lib.cmakeBool "FETCHCONTENT_QUIET" false) 184 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_ABSEIL_CPP" "${abseil-cpp_202407.src}") 185 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_DLPACK" "${dlpack}") 186 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_FLATBUFFERS" "${flatbuffers_23.src}") 187 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_MP11" "${mp11}") 188 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_ONNX" "${onnx}") 189 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_RE2" "${re2.src}") 190 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_SAFEINT" "${safeint}") 191 + (lib.cmakeFeature "FETCHCONTENT_TRY_FIND_PACKAGE_MODE" "ALWAYS") 192 192 # fails to find protoc on darwin, so specify it 193 - "-DONNX_CUSTOM_PROTOC_EXECUTABLE=${protobuf_21}/bin/protoc" 194 - "-Donnxruntime_BUILD_SHARED_LIB=ON" 193 + (lib.cmakeFeature "ONNX_CUSTOM_PROTOC_EXECUTABLE" "${protobuf_21}/bin/protoc") 194 + (lib.cmakeBool "onnxruntime_BUILD_SHARED_LIB" true) 195 195 (lib.cmakeBool "onnxruntime_BUILD_UNIT_TESTS" doCheck) 196 - "-Donnxruntime_ENABLE_LTO=ON" 197 - "-Donnxruntime_USE_FULL_PROTOBUF=OFF" 196 + (lib.cmakeBool "onnxruntime_USE_FULL_PROTOBUF" false) 198 197 (lib.cmakeBool "onnxruntime_USE_CUDA" cudaSupport) 199 198 (lib.cmakeBool "onnxruntime_USE_NCCL" (cudaSupport && ncclSupport)) 199 + (lib.cmakeBool "onnxruntime_ENABLE_LTO" (!cudaSupport || cudaPackages.cudaOlder "12.8")) 200 200 ] ++ lib.optionals pythonSupport [ 201 - "-Donnxruntime_ENABLE_PYTHON=ON" 201 + (lib.cmakeBool "onnxruntime_ENABLE_PYTHON" true) 202 202 ] ++ lib.optionals cudaSupport [ 203 203 (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_CUTLASS" "${cutlass}") 204 204 (lib.cmakeFeature "onnxruntime_CUDNN_HOME" "${cudaPackages.cudnn}")
+4
pkgs/development/ocaml-modules/janestreet/0.17.nix
··· 765 765 janestreet_cpuid = janePackage { 766 766 pname = "janestreet_cpuid"; 767 767 hash = "sha256-3ZwEZQSkJJyFW5/+C9x8nW6+GrfVwccNFPlcs7qNcjQ="; 768 + patches = fetchpatch { 769 + url = "https://github.com/janestreet/janestreet_cpuid/commit/55223d9708388fe990553669d881f78a811979b9.patch"; 770 + hash = "sha256-aggT6GGMkQj4rRkSZK4hoPRzEfpC8z9qnIROptMDf9E="; 771 + }; 768 772 meta.description = "A library for parsing CPU capabilities out of the `cpuid` instruction"; 769 773 propagatedBuildInputs = [ 770 774 core
+42 -36
pkgs/development/ocaml-modules/uutf/default.nix
··· 8 8 cmdliner, 9 9 topkg, 10 10 uchar, 11 + version ? 12 + if lib.versionAtLeast ocaml.version "4.08" then 13 + "1.0.4" 14 + else if lib.versionAtLeast ocaml.version "4.03" then 15 + "1.0.3" 16 + else 17 + throw "uutf is not available with OCaml ${ocaml.version}", 11 18 }: 12 - let 13 - pname = "uutf"; 14 - in 15 19 16 - lib.throwIfNot (lib.versionAtLeast ocaml.version "4.03") 17 - "${pname} is not available with OCaml ${ocaml.version}" 20 + stdenv.mkDerivation { 21 + name = "ocaml${ocaml.version}-uutf-${version}"; 22 + inherit version; 18 23 19 - stdenv.mkDerivation 20 - rec { 21 - name = "ocaml${ocaml.version}-${pname}-${version}"; 22 - version = "1.0.3"; 24 + src = fetchurl { 25 + url = "https://erratique.ch/software/uutf/releases/uutf-${version}.tbz"; 26 + hash = 27 + { 28 + "1.0.3" = "sha256-h3KlYT0ecCmM4U3zMkGjaF8h5O9r20zwP+mF+x7KBWg="; 29 + "1.0.4" = "sha256-p6V45q+RSaiJThjjtHWchWWTemnGyaznowu/BIRhnKg="; 30 + } 31 + ."${version}"; 32 + }; 23 33 24 - src = fetchurl { 25 - url = "https://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; 26 - sha256 = "sha256-h3KlYT0ecCmM4U3zMkGjaF8h5O9r20zwP+mF+x7KBWg="; 27 - }; 28 - 29 - nativeBuildInputs = [ 30 - ocaml 31 - ocamlbuild 32 - findlib 33 - topkg 34 - ]; 35 - buildInputs = [ 36 - topkg 37 - cmdliner 38 - ]; 39 - propagatedBuildInputs = [ uchar ]; 34 + nativeBuildInputs = [ 35 + ocaml 36 + ocamlbuild 37 + findlib 38 + topkg 39 + ]; 40 + buildInputs = [ 41 + topkg 42 + cmdliner 43 + ]; 44 + propagatedBuildInputs = [ uchar ]; 40 45 41 - strictDeps = true; 46 + strictDeps = true; 42 47 43 - inherit (topkg) buildPhase installPhase; 48 + inherit (topkg) buildPhase installPhase; 44 49 45 - meta = with lib; { 46 - description = "Non-blocking streaming Unicode codec for OCaml"; 47 - homepage = "https://erratique.ch/software/uutf"; 48 - license = licenses.bsd3; 49 - maintainers = [ maintainers.vbgl ]; 50 - mainProgram = "utftrip"; 51 - inherit (ocaml.meta) platforms; 52 - }; 53 - } 50 + meta = with lib; { 51 + description = "Non-blocking streaming Unicode codec for OCaml"; 52 + homepage = "https://erratique.ch/software/uutf"; 53 + changelog = "https://raw.githubusercontent.com/dbuenzli/uutf/refs/tags/v${version}/CHANGES.md"; 54 + license = licenses.isc; 55 + maintainers = [ maintainers.vbgl ]; 56 + mainProgram = "utftrip"; 57 + inherit (ocaml.meta) platforms; 58 + }; 59 + }
+3 -3
pkgs/development/python-modules/accelerate/default.nix
··· 33 33 34 34 buildPythonPackage rec { 35 35 pname = "accelerate"; 36 - version = "1.3.0"; 36 + version = "1.5.2"; 37 37 pyproject = true; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "huggingface"; 41 41 repo = "accelerate"; 42 42 tag = "v${version}"; 43 - hash = "sha256-HcbvQL8nASsZcfjAoPbQKNoEkSLp5Vmus2MEa3Dv6Po="; 43 + hash = "sha256-J4eDm/PcyKK3256l6CAWUj4AWTB6neTKgxbBmul0BPE="; 44 44 }; 45 45 46 46 buildInputs = [ llvmPackages.openmp ]; ··· 67 67 ]; 68 68 69 69 preCheck = lib.optionalString config.cudaSupport '' 70 - export TRITON_PTXAS_PATH="${cudatoolkit}/bin/ptxas" 70 + export TRITON_PTXAS_PATH="${lib.getExe' cudatoolkit "ptxas"}" 71 71 ''; 72 72 pytestFlagsArray = [ "tests" ]; 73 73 disabledTests =
+2 -2
pkgs/development/python-modules/aerosandbox/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "aerosandbox"; 19 - version = "4.2.6"; 19 + version = "4.2.8"; 20 20 format = "wheel"; 21 21 22 22 src = fetchPypi { ··· 25 25 26 26 python = "py3"; 27 27 dist = "py3"; 28 - hash = "sha256-jS1Eh/+2WXZkQC4pt1Rwvw7plJC1NFFC08gqzEyGir4="; 28 + hash = "sha256-+rrZzaBWyc9a20bUlsB0iDqYkn+ldlKT0lFfCy2yeXk="; 29 29 }; 30 30 31 31 build-system = [ setuptools ];
+9 -4
pkgs/development/python-modules/bitstruct/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 + setuptools, 5 6 pythonOlder, 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "bitstruct"; 10 - version = "8.19.0"; 11 - format = "setuptools"; 11 + version = "8.20.0"; 12 + pyproject = true; 13 + 14 + build-system = [ 15 + setuptools 16 + ]; 12 17 13 - disabled = pythonOlder "3.7"; 18 + disabled = pythonOlder "3.8"; 14 19 15 20 src = fetchPypi { 16 21 inherit pname version; 17 - hash = "sha256-11up3e2FwX6IWiCaAOuOJI7kB2IUny8qeTYMqFdGfaw="; 22 + hash = "sha256-9rFqkwlzE/KmwUZkDJPl+YijnDM2T4wgpChqwcXtXa4="; 18 23 }; 19 24 20 25 pythonImportsCheck = [ "bitstruct" ];
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 359 359 360 360 buildPythonPackage rec { 361 361 pname = "boto3-stubs"; 362 - version = "1.37.18"; 362 + version = "1.37.19"; 363 363 pyproject = true; 364 364 365 365 disabled = pythonOlder "3.7"; ··· 367 367 src = fetchPypi { 368 368 pname = "boto3_stubs"; 369 369 inherit version; 370 - hash = "sha256-MOz436qEhGn1UnnkEkj/RrHs9eLuezspLj7DkzLi+Q4="; 370 + hash = "sha256-lcZlsTdbZXgGf9w6eFS1jspxCyiCQL0c0smxlU4/X10="; 371 371 }; 372 372 373 373 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "botocore-stubs"; 13 - version = "1.37.18"; 13 + version = "1.37.19"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 18 18 src = fetchPypi { 19 19 pname = "botocore_stubs"; 20 20 inherit version; 21 - hash = "sha256-k3ybeH5PeEAZ8yH6HYilBZZcJfQl6BC95F4jt8pWQoI="; 21 + hash = "sha256-2Pz5QdEP+a9xz3pL2ksuT0WNeA98aR+TgRoTDWNpY/E="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ setuptools ];
+5 -5
pkgs/development/python-modules/cloup/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "cloup"; 14 - version = "3.0.5"; 15 - format = "setuptools"; 14 + version = "3.0.7"; 15 + pyproject = true; 16 16 17 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.9"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-ySsmHHu34TAEkw8/tLPtrY3i0fEplNzdvgW8IZkEQ8U="; 21 + hash = "sha256-yFLgoFQapDPGqzGpuLUD9j2Ygekd2vA4TWknll8rQhw="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ setuptools-scm ]; 25 25 26 - propagatedBuildInputs = [ click ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; 26 + propagatedBuildInputs = [ click ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ]; 27 27 28 28 nativeCheckInputs = [ pytestCheckHook ]; 29 29
+20 -12
pkgs/development/python-modules/compressed-tensors/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 setuptools, ··· 19 20 # Release on PyPI is missing the `utils` directory, which `setup.py` wants to import 20 21 src = fetchFromGitHub { 21 22 owner = "neuralmagic"; 22 - repo = pname; 23 + repo = "compressed-tensors"; 23 24 tag = version; 24 25 hash = "sha256-PxW8zseDUF0EOh7E/N8swwgFTfvkoTpp+d3ngAUpFNU="; 25 26 }; ··· 42 43 pytestCheckHook 43 44 ]; 44 45 45 - disabledTests = [ 46 - # these try to download models from HF Hub 47 - "test_get_observer_token_count" 48 - "test_kv_cache_quantization" 49 - "test_target_prioritization" 50 - "test_load_compressed_sharded" 51 - "test_save_compressed_model" 52 - "test_apply_tinyllama_dynamic_activations" 53 - ]; 46 + disabledTests = 47 + [ 48 + # these try to download models from HF Hub 49 + "test_get_observer_token_count" 50 + "test_kv_cache_quantization" 51 + "test_target_prioritization" 52 + "test_load_compressed_sharded" 53 + "test_save_compressed_model" 54 + "test_apply_tinyllama_dynamic_activations" 55 + ] 56 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 57 + # No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package 58 + "test_composability" 59 + "test_missing_and_unexpected_keys_on_compression" 60 + ]; 54 61 55 62 disabledTestPaths = [ 56 63 # these try to download models from HF Hub 57 64 "tests/test_quantization/lifecycle/test_apply.py" 58 65 ]; 59 66 60 - meta = with lib; { 67 + meta = { 61 68 description = "A safetensors extension to efficiently store sparse quantized tensors on disk"; 62 69 homepage = "https://github.com/neuralmagic/compressed-tensors"; 63 - license = licenses.asl20; 70 + changelog = "https://github.com/neuralmagic/compressed-tensors/releases/tag/${version}"; 71 + license = lib.licenses.asl20; 64 72 maintainers = [ ]; 65 73 }; 66 74 }
+2 -2
pkgs/development/python-modules/cyclopts/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "cyclopts"; 22 - version = "3.10.1"; 22 + version = "3.11.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 28 28 owner = "BrianPugh"; 29 29 repo = "cyclopts"; 30 30 tag = "v${version}"; 31 - hash = "sha256-OJpAY0h3MEbzm4Z3MExQjPM8RCpGW8moWLMKSvClRmw="; 31 + hash = "sha256-NtYtF8VJOLovRCqMV/ej1QvKiLrRQGmo4GUOU1myHPo="; 32 32 }; 33 33 34 34 build-system = [
+4 -2
pkgs/development/python-modules/dash/default.nix
··· 16 16 dash-core-components, 17 17 dash-table, 18 18 importlib-metadata, 19 + stringcase, 19 20 typing-extensions, 20 21 requests, 21 22 retrying, ··· 36 37 37 38 buildPythonPackage rec { 38 39 pname = "dash"; 39 - version = "2.18.2"; 40 + version = "3.0.0"; 40 41 pyproject = true; 41 42 42 43 src = fetchFromGitHub { 43 44 owner = "plotly"; 44 45 repo = "dash"; 45 46 tag = "v${version}"; 46 - hash = "sha256-qbvsYlf3byaT/4b+/BDvCgnaBKthL/J79y0CWh5Yid4="; 47 + hash = "sha256-plGYBMwVQLBar48nv2BIH7ttfXM8Dnb3E0sPOZ2Et2M="; 47 48 }; 48 49 49 50 nativeBuildInputs = [ ··· 82 83 dash-core-components 83 84 dash-table 84 85 importlib-metadata 86 + stringcase 85 87 typing-extensions 86 88 requests 87 89 retrying
+5
pkgs/development/python-modules/dask-awkward/default.nix
··· 72 72 "test_basic_root_works" 73 73 # Flaky. https://github.com/dask-contrib/dask-awkward/issues/506. 74 74 "test_distance_behavior" 75 + 76 + # RuntimeError: Attempting to use an asynchronous Client in a synchronous context of `dask.compute` 77 + # https://github.com/dask-contrib/dask-awkward/issues/573 78 + "test_persist" 79 + "test_ravel_fail" 75 80 ]; 76 81 77 82 __darwinAllowLocalNetworking = true;
+6 -2
pkgs/development/python-modules/dask-ml/default.nix
··· 69 69 ]; 70 70 71 71 disabledTestPaths = [ 72 - # AttributeError: module 'numpy' has no attribute 'product' 73 - "tests/test_svd.py" 72 + # RuntimeError: Attempting to use an asynchronous Client in a synchronous context of `dask.compute` 73 + # https://github.com/dask/dask-ml/issues/1016 74 + "tests/model_selection/test_hyperband.py" 75 + "tests/model_selection/test_incremental.py" 76 + "tests/model_selection/test_incremental_warns.py" 77 + "tests/model_selection/test_successive_halving.py" 74 78 ]; 75 79 76 80 disabledTests = [
+3 -3
pkgs/development/python-modules/dask/default.nix
··· 38 38 39 39 buildPythonPackage rec { 40 40 pname = "dask"; 41 - version = "2025.2.0"; 41 + version = "2025.3.0"; 42 42 pyproject = true; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "dask"; 46 46 repo = "dask"; 47 47 tag = version; 48 - hash = "sha256-PpgzlaVWKW+aLbFtDztNjBMI79pmsiS3uN8su75Rako="; 48 + hash = "sha256-j25+DfWReonXKqxkX9OVHjKo+Indh13rlBE5PyGe69c="; 49 49 }; 50 50 51 51 postPatch = '' ··· 67 67 click 68 68 cloudpickle 69 69 fsspec 70 + importlib-metadata 70 71 packaging 71 72 partd 72 73 pyyaml 73 - importlib-metadata 74 74 toolz 75 75 ]; 76 76
+3 -3
pkgs/development/python-modules/databricks-sql-connector/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "databricks-sql-connector"; 23 - version = "3.7.1"; 23 + version = "4.0.1"; 24 24 format = "pyproject"; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = "databricks"; 30 30 repo = "databricks-sql-python"; 31 31 tag = "v${version}"; 32 - hash = "sha256-nq8+rkwY6WyxtdqWcSncyzeC8x50Iu6747f4J79mTws="; 32 + hash = "sha256-/CWaWjDlgmaUY4Z6Nb0qfQ6gQR6u4FxkM/B/nOfAAYo="; 33 33 }; 34 34 35 35 pythonRelaxDeps = [ ··· 64 64 meta = with lib; { 65 65 description = "Databricks SQL Connector for Python"; 66 66 homepage = "https://docs.databricks.com/dev-tools/python-sql-connector.html"; 67 - changelog = "https://github.com/databricks/databricks-sql-python/blob/v${version}/CHANGELOG.md"; 67 + changelog = "https://github.com/databricks/databricks-sql-python/blob/${src.tag}/CHANGELOG.md"; 68 68 license = licenses.asl20; 69 69 maintainers = with maintainers; [ harvidsen ]; 70 70 };
+1
pkgs/development/python-modules/deepsearch-toolkit/default.nix
··· 57 57 ]; 58 58 59 59 pythonRelaxDeps = [ 60 + "certifi" 60 61 "urllib3" 61 62 ]; 62 63
+2 -2
pkgs/development/python-modules/distributed/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "distributed"; 31 - version = "2025.2.0"; 31 + version = "2025.3.0"; 32 32 pyproject = true; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "dask"; 36 36 repo = "distributed"; 37 37 tag = version; 38 - hash = "sha256-bpyON5rrZ+Xf6Vkmyd8UXe/MQJ9jEhjVE+5YkAJ5AeM="; 38 + hash = "sha256-+vegdEXhQi3ns5iMs6FavKnAlRNIWCUNyZENVBWZsuQ="; 39 39 }; 40 40 41 41 postPatch = ''
+2 -2
pkgs/development/python-modules/ephem/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "ephem"; 10 - version = "4.1.6"; 10 + version = "4.2"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-DtLk6nb52z7t4iBK2rivPxcIIBx8BO6FEecQpUymQl8="; 15 + hash = "sha256-PE/WT0U+j0DPhiQgpw2pWnG2SHrOdejgz4XXNwfbYGU="; 16 16 }; 17 17 18 18 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/extract-msg/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "extract-msg"; 19 - version = "0.53.2"; 19 + version = "0.54.0"; 20 20 pyproject = true; 21 21 22 22 disabled = pythonOlder "3.7"; ··· 25 25 owner = "TeamMsgExtractor"; 26 26 repo = "msg-extractor"; 27 27 tag = "v${version}"; 28 - hash = "sha256-aPYTkJn1v5JW0Q2zCOKinlVpkRyPilaiClCwhFXJ4GI="; 28 + hash = "sha256-R02rhwIbXGMynYXqE8TYLG4YvmyEW2Yt8N0hm/dPTv0="; 29 29 }; 30 30 31 31 pythonRelaxDeps = [
+14 -9
pkgs/development/python-modules/gradio/default.nix
··· 301 301 "test_updates_stored_up_to_capacity" 302 302 "test_varying_output_forms_with_generators" 303 303 ]; 304 - disabledTestPaths = [ 305 - # 100% touches network 306 - "test/test_networking.py" 307 - "client/python/test/test_client.py" 308 - # makes pytest freeze 50% of the time 309 - "test/test_interfaces.py" 304 + disabledTestPaths = 305 + [ 306 + # 100% touches network 307 + "test/test_networking.py" 308 + "client/python/test/test_client.py" 309 + # makes pytest freeze 50% of the time 310 + "test/test_interfaces.py" 310 311 311 - # Local network tests dependant on port availability (port 7860-7959) 312 - "test/test_routes.py" 313 - ]; 312 + # Local network tests dependant on port availability (port 7860-7959) 313 + "test/test_routes.py" 314 + ] 315 + ++ lib.optionals (stdenv.hostPlatform.isDarwin) [ 316 + # No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package 317 + "test/test_pipelines.py" 318 + ]; 314 319 pytestFlagsArray = [ 315 320 "-x" # abort on first failure 316 321 "-m 'not flaky'"
+2 -2
pkgs/development/python-modules/jianpu-ly/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "jianpu-ly"; 11 - version = "1.839"; 11 + version = "1.842"; 12 12 pyproject = true; 13 13 14 14 src = fetchPypi { 15 15 inherit version; 16 16 pname = "jianpu_ly"; 17 - hash = "sha256-KFBG/iJeFt2dHHNvhPZlvWxAEO4kLPpNW4R1HRWuUUg="; 17 + hash = "sha256-boxatNwmmog5axYQfINhs4VVnoHPyBw7Q8rLFQfnRTU="; 18 18 }; 19 19 20 20 dependencies = [ lilypond ];
+2 -2
pkgs/development/python-modules/kubernetes/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "kubernetes"; 25 - version = "31.0.0"; 25 + version = "32.0.1"; 26 26 pyproject = true; 27 27 28 28 disabled = pythonOlder "3.6"; ··· 31 31 owner = "kubernetes-client"; 32 32 repo = "python"; 33 33 tag = "v${version}"; 34 - hash = "sha256-Qjf5ovXOlzN1vMOZag+v8AtMfC/0+4JGz7LlBfBBI4Q="; 34 + hash = "sha256-pQuo2oLWMmq4dHTqJYL+Z1xg3ZoYp9ZzLDT7jWIsglo="; 35 35 }; 36 36 37 37 build-system = [
+4 -4
pkgs/development/python-modules/mypy-boto3/default.nix
··· 694 694 "sha256-/YnQXdkazAjklYHhxykdLgQ1ciLXODg37e2NwLnqtJI="; 695 695 696 696 mypy-boto3-iotwireless = 697 - buildMypyBoto3Package "iotwireless" "1.37.0" 698 - "sha256-ZSBmESqXR8TXFP4BnE9Xj5UBErBgooNCbLk9G3lpJwI="; 697 + buildMypyBoto3Package "iotwireless" "1.37.19" 698 + "sha256-AOMp/Xagz6ybETbi0/pql+pyaTrup2cov/mUuU0PyWI="; 699 699 700 700 mypy-boto3-ivs = 701 701 buildMypyBoto3Package "ivs" "1.37.0" ··· 1294 1294 "sha256-7VbfcklEJdTn0OBI8jIcwXUU+ju+38QQu7i3CcS/9WQ="; 1295 1295 1296 1296 mypy-boto3-ssm = 1297 - buildMypyBoto3Package "ssm" "1.37.4" 1298 - "sha256-fnhpeIqk24UXEniZChFadkJbLebbKAdKHxZrlG7MpSI="; 1297 + buildMypyBoto3Package "ssm" "1.37.19" 1298 + "sha256-bopkgSzOq7haz6di3A/v4GVJfSJ0oJU266uxygLPhfk="; 1299 1299 1300 1300 mypy-boto3-ssm-contacts = 1301 1301 buildMypyBoto3Package "ssm-contacts" "1.37.0"
+2 -2
pkgs/development/python-modules/napari-npe2/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "napari-npe2"; 22 - version = "0.7.7"; 22 + version = "0.7.8"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 28 28 owner = "napari"; 29 29 repo = "npe2"; 30 30 tag = "v${version}"; 31 - hash = "sha256-HjMf5J1n5NKqtunRQ7cqZiTZMTNmcq5j++O03Sxwvqw="; 31 + hash = "sha256-J15CmJ1L173M54fCo4oTV9XP7946c0aHzLqKjTvzG0g="; 32 32 }; 33 33 34 34 build-system = [
+45
pkgs/development/python-modules/numpy-financial/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytestCheckHook, 6 + meson, 7 + meson-python, 8 + numpy, 9 + setuptools, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "numpy-financial"; 14 + version = "1.0.0"; 15 + pyproject = true; 16 + 17 + src = fetchFromGitHub { 18 + owner = "numpy"; 19 + repo = "numpy-financial"; 20 + tag = "v${version}"; 21 + hash = "sha256-6hSi5Y292Ikfb2m2SLvIHJS0nZcGKgGzvybgmpxReWI="; 22 + }; 23 + 24 + build-system = [ 25 + meson 26 + meson-python 27 + setuptools 28 + ]; 29 + 30 + dependencies = [ numpy ]; 31 + 32 + nativeCheckInputs = [ 33 + pytestCheckHook 34 + ]; 35 + 36 + pythonImportsCheck = [ "numpy_financial" ]; 37 + 38 + meta = { 39 + homepage = "https://numpy.org/numpy-financial/"; 40 + changelog = "https://github.com/numpy/numpy-financial/releases/tag/v${version}"; 41 + description = "Collection of elementary financial functions"; 42 + license = lib.licenses.bsd3; 43 + maintainers = with lib.maintainers; [ flokli ]; 44 + }; 45 + }
+9
pkgs/development/python-modules/odc-stac/default.nix
··· 39 39 hash = "sha256-uudBzxVGt3RW4ppDrFYfA9LMa2xPfs3FTBzVS19FjB4="; 40 40 }; 41 41 42 + # ImportError: cannot import name 'quote' from 'dask.base' 43 + # https://github.com/dask/dask/issues/11843 44 + postPatch = '' 45 + substituteInPlace odc/loader/_builder.py \ 46 + --replace-fail \ 47 + "from dask.base import quote, tokenize" \ 48 + "from dask.base import tokenize; from dask.core import quote" 49 + ''; 50 + 42 51 build-system = [ 43 52 setuptools 44 53 ];
+75 -15
pkgs/development/python-modules/peft/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pythonOlder, 5 + 6 + # build-system 6 7 setuptools, 8 + 9 + # dependencies 10 + accelerate, 11 + huggingface-hub, 7 12 numpy, 8 13 packaging, 9 14 psutil, 10 15 pyyaml, 16 + safetensors, 11 17 torch, 18 + tqdm, 12 19 transformers, 13 - accelerate, 20 + 21 + # tests 22 + datasets, 23 + diffusers, 24 + parameterized, 25 + pytest-cov-stub, 26 + pytest-xdist, 27 + pytestCheckHook, 28 + scipy, 14 29 }: 15 30 16 31 buildPythonPackage rec { 17 32 pname = "peft"; 18 - version = "0.14.0"; 19 - format = "pyproject"; 20 - 21 - disabled = pythonOlder "3.8"; 33 + version = "0.15.0"; 34 + pyproject = true; 22 35 23 36 src = fetchFromGitHub { 24 37 owner = "huggingface"; 25 - repo = pname; 38 + repo = "peft"; 26 39 tag = "v${version}"; 27 - hash = "sha256-Bo8nqhxL6st/Nk9wSqly7FH+RNkT0baB+1bbTIolUis="; 40 + hash = "sha256-vR0FoBDsSMQiSGgqMegPqPvDgq00fqF7d+jKvqgeCAg="; 28 41 }; 29 42 30 - nativeBuildInputs = [ setuptools ]; 43 + build-system = [ setuptools ]; 31 44 32 - propagatedBuildInputs = [ 45 + dependencies = [ 46 + accelerate 47 + huggingface-hub 33 48 numpy 34 49 packaging 35 50 psutil 36 51 pyyaml 52 + safetensors 37 53 torch 54 + tqdm 38 55 transformers 39 - accelerate 40 56 ]; 41 57 42 - doCheck = false; # tries to download pretrained models 43 58 pythonImportsCheck = [ "peft" ]; 44 59 45 - meta = with lib; { 60 + nativeCheckInputs = [ 61 + datasets 62 + diffusers 63 + parameterized 64 + pytest-cov-stub 65 + pytest-xdist 66 + pytestCheckHook 67 + scipy 68 + ]; 69 + 70 + pytestFlagsArray = [ "tests" ]; 71 + 72 + disabledTestPaths = [ 73 + # ValueError: Can't find 'adapter_config.json' 74 + "tests/test_config.py" 75 + 76 + # Require internet access to download a dataset 77 + "tests/test_adaption_prompt.py" 78 + "tests/test_auto.py" 79 + "tests/test_boft.py" 80 + "tests/test_cpt.py" 81 + "tests/test_custom_models.py" 82 + "tests/test_decoder_models.py" 83 + "tests/test_encoder_decoder_models.py" 84 + "tests/test_feature_extraction_models.py" 85 + "tests/test_helpers.py" 86 + "tests/test_hub_features.py" 87 + "tests/test_incremental_pca.py" 88 + "tests/test_initialization.py" 89 + "tests/test_mixed.py" 90 + "tests/test_multitask_prompt_tuning.py" 91 + "tests/test_other.py" 92 + "tests/test_other.py" 93 + "tests/test_poly.py" 94 + "tests/test_stablediffusion.py" 95 + "tests/test_trainable_tokens.py" 96 + "tests/test_tuners_utils.py" 97 + "tests/test_vision_models.py" 98 + "tests/test_xlora.py" 99 + ]; 100 + 101 + meta = { 46 102 homepage = "https://github.com/huggingface/peft"; 47 103 description = "State-of-the art parameter-efficient fine tuning"; 48 104 changelog = "https://github.com/huggingface/peft/releases/tag/v${version}"; 49 - license = licenses.asl20; 50 - maintainers = with maintainers; [ bcdarwin ]; 105 + license = lib.licenses.asl20; 106 + maintainers = with lib.maintainers; [ bcdarwin ]; 107 + badPlatforms = [ 108 + # No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package 109 + lib.systems.inspect.patterns.isDarwin 110 + ]; 51 111 }; 52 112 }
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "publicsuffixlist"; 14 - version = "1.0.2.20250316"; 14 + version = "1.0.2.20250319"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-NXY0nwXeRyZuY8MfJLi4bKlxgL4EplKGLHZLogZrqHs="; 21 + hash = "sha256-OBBkjnDzMGKiwLb1Mnkcw/0IwaeJyoSSQh3YVuF1aRo="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pylibacl/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pylibacl"; 10 - version = "0.7.0"; 10 + version = "0.7.2"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-7UludMpUUtXUzr4j3yKepGJzWpZSi5+ijjzh96K+0xo="; 15 + hash = "sha256-VsFehn/kxyRTG7+XQHWJy7+NvShajYT+fsyQ/DIjeNc="; 16 16 }; 17 17 18 18 # ERROR: testExtended (tests.test_acls.AclExtensions)
+4 -5
pkgs/development/python-modules/sentence-transformers/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pythonOlder, 6 5 7 6 # build-system 8 7 setuptools, ··· 15 14 pillow, 16 15 scikit-learn, 17 16 scipy, 18 - sentencepiece, 19 - tokenizers, 20 17 torch, 21 18 tqdm, 22 19 transformers, ··· 30 27 pname = "sentence-transformers"; 31 28 version = "3.4.1"; 32 29 pyproject = true; 33 - 34 - disabled = pythonOlder "3.9"; 35 30 36 31 src = fetchFromGitHub { 37 32 owner = "UKPLab"; ··· 114 109 changelog = "https://github.com/UKPLab/sentence-transformers/releases/tag/v${version}"; 115 110 license = lib.licenses.asl20; 116 111 maintainers = with lib.maintainers; [ dit7ya ]; 112 + badPlatforms = [ 113 + # No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package 114 + lib.systems.inspect.patterns.isDarwin 115 + ]; 117 116 }; 118 117 }
+16 -1
pkgs/development/python-modules/smolagents/default.nix
··· 20 20 pytest-datadir, 21 21 pytestCheckHook, 22 22 python-dotenv, 23 - rank-bm25, 24 23 requests, 25 24 rich, 26 25 setuptools, ··· 127 126 ++ lib.optionals stdenv.isDarwin [ 128 127 # Missing dependencies 129 128 "test_get_mlx" 129 + 130 + # Fatal Python error: Aborted 131 + # thread '<unnamed>' panicked, Attempted to create a NULL object. 132 + # duckduckgo_search/duckduckgo_search.py", line 83 in __init__ 133 + "TestDuckDuckGoSearchTool" 134 + "test_init_agent_with_different_toolsets" 135 + "test_multiagents_save" 136 + "test_new_instance" 130 137 ]; 138 + 139 + disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ 140 + # No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package 141 + "tests/test_final_answer.py" 142 + "tests/test_types.py" 143 + ]; 144 + 145 + __darwinAllowLocalNetworking = true; 131 146 132 147 meta = { 133 148 description = "Barebones library for agents";
+10 -7
pkgs/development/python-modules/sparsezoo/default.nix
··· 11 11 geocoder, 12 12 numpy, 13 13 onnx, 14 - pyyaml, 15 - requests, 16 - tqdm, 17 14 pandas, 18 15 protobuf, 19 16 py-machineid, 20 17 pydantic, 18 + pyyaml, 19 + requests, 20 + tqdm, 21 21 22 22 # checks 23 23 matplotlib, ··· 38 38 39 39 build-system = [ setuptools ]; 40 40 41 - pythonRelaxDeps = [ "onnx" ]; 41 + pythonRelaxDeps = [ 42 + "numpy" 43 + "onnx" 44 + ]; 42 45 43 46 dependencies = [ 44 47 click 45 48 geocoder 46 49 numpy 47 50 onnx 48 - pyyaml 49 - requests 50 - tqdm 51 51 pandas 52 52 protobuf 53 53 py-machineid 54 54 pydantic 55 + pyyaml 56 + requests 57 + tqdm 55 58 ]; 56 59 57 60 pythonImportsCheck = [ "sparsezoo" ];
+18 -8
pkgs/development/python-modules/thespian/default.nix
··· 1 1 { 2 - fetchPypi, 2 + lib, 3 3 buildPythonPackage, 4 - lib, 4 + fetchPypi, 5 + setuptools, 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 - version = "3.10.7"; 9 - format = "setuptools"; 10 9 pname = "thespian"; 10 + version = "4.0.0"; 11 + pyproject = true; 11 12 12 13 src = fetchPypi { 13 14 inherit pname version; 14 15 extension = "zip"; 15 - hash = "sha256-HcHvZtMpBtNXq9Yp2ayeHTuIf7gpBUb6xZqjaECbfgo="; 16 + hash = "sha256-92krWgkXCmH7Qa0Q+0cY2KKwKjDeJYLA8I0DtSmoRog="; 16 17 }; 17 18 19 + build-system = [ 20 + setuptools 21 + ]; 22 + 18 23 # Do not run the test suite: it takes a long time and uses 19 24 # significant system resources, including requiring localhost 20 25 # network operations. Thespian tests are performed via its Travis 21 26 # CI configuration and do not need to be duplicated here. 22 27 doCheck = false; 23 28 24 - meta = with lib; { 29 + pythonImportsCheck = [ 30 + "thespian" 31 + "thespian.actors" 32 + ]; 33 + 34 + meta = { 25 35 description = "Python Actor concurrency library"; 26 36 homepage = "http://thespianpy.com/"; 27 - license = licenses.mit; 28 - maintainers = [ maintainers.kquick ]; 37 + license = lib.licenses.mit; 38 + maintainers = [ lib.maintainers.kquick ]; 29 39 }; 30 40 }
+2 -2
pkgs/development/python-modules/transformers/default.nix
··· 58 58 59 59 buildPythonPackage rec { 60 60 pname = "transformers"; 61 - version = "4.50.0"; 61 + version = "4.50.1"; 62 62 pyproject = true; 63 63 64 64 src = fetchFromGitHub { 65 65 owner = "huggingface"; 66 66 repo = "transformers"; 67 67 tag = "v${version}"; 68 - hash = "sha256-/scrMPUY43n+XAMbwWCtmiJKXscXGLrklyDg9XZTaqw="; 68 + hash = "sha256-PIJB4iW493I3932Yq3tyGom82cMY1uduc53bs1xCPgU="; 69 69 }; 70 70 71 71 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/unstructured-inference/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "unstructured-inference"; 26 - version = "0.8.9"; 26 + version = "0.8.10"; 27 27 format = "setuptools"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "Unstructured-IO"; 31 31 repo = "unstructured-inference"; 32 32 tag = version; 33 - hash = "sha256-4wfZFu0551jbpeSYq6RHrDpThm+B2tygVwLlggPkbog="; 33 + hash = "sha256-c5brGGY1PPuKYUb1UOvyKFZC4ph0pGRagHuTLKPXErY="; 34 34 }; 35 35 36 36 propagatedBuildInputs =
+1 -1
pkgs/development/tools/profiling/systemtap/default.nix
··· 11 11 gnumake, 12 12 python3, 13 13 nixosTests, 14 - withStap ? true, # avoid cyclic dependency with glib 14 + withStap ? true, # avoid cyclic dependency with glib, reduce closure size substantially 15 15 }: 16 16 17 17 let
pkgs/development/tools/rufo/Gemfile pkgs/by-name/ru/rufo/Gemfile
pkgs/development/tools/rufo/Gemfile.lock pkgs/by-name/ru/rufo/Gemfile.lock
pkgs/development/tools/rufo/default.nix pkgs/by-name/ru/rufo/package.nix
pkgs/development/tools/rufo/gemset.nix pkgs/by-name/ru/rufo/gemset.nix
-10
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 39 39 "sha256": "05jvvv3khadvfgdrv43fcrnm606jk4064a7qivkvnk1vc08gbjj4", 40 40 "version": "6.1.131" 41 41 }, 42 - "6.11": { 43 - "patch": { 44 - "extra": "-hardened1", 45 - "name": "linux-hardened-v6.11.11-hardened1.patch", 46 - "sha256": "09y9bglln7br53pwzb3yqafkaklfwn1hx5qpwp6x1s817bj7bhxx", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/v6.11.11-hardened1/linux-hardened-v6.11.11-hardened1.patch" 48 - }, 49 - "sha256": "1z2913y38clnlmhvwj49h7p4pic24s4d8np7nmd4lk7m2xz8w532", 50 - "version": "6.11.11" 51 - }, 52 42 "6.12": { 53 43 "patch": { 54 44 "extra": "-hardened1",
+9 -24
pkgs/os-specific/linux/xone/default.nix
··· 3 3 lib, 4 4 fetchFromGitHub, 5 5 kernel, 6 - fetchpatch, 7 6 }: 8 7 9 8 stdenv.mkDerivation (finalAttrs: { 10 9 pname = "xone"; 11 - version = "0.3-unstable-2024-04-25"; 10 + version = "0.3-unstable-2024-12-23"; 12 11 13 12 src = fetchFromGitHub { 14 - owner = "medusalix"; 13 + owner = "dlundqvist"; 15 14 repo = "xone"; 16 - rev = "29ec3577e52a50f876440c81267f609575c5161e"; 17 - hash = "sha256-ZKIV8KtrFEyabQYzWpxz2BvOAXKV36ufTI87VpIfkFs="; 15 + rev = "6b9d59aed71f6de543c481c33df4705d4a590a31"; 16 + hash = "sha256-MpxP2cb0KEPKaarjfX/yCbkxIFTwwEwVpTMhFcis+A4="; 18 17 }; 19 18 20 - patches = [ 21 - # Fix build on kernel 6.11 22 - # https://github.com/medusalix/xone/pull/48 23 - (fetchpatch { 24 - name = "kernel-6.11.patch"; 25 - url = "https://github.com/medusalix/xone/commit/28df566c38e0ee500fd5f74643fc35f21a4ff696.patch"; 26 - hash = "sha256-X14oZmxqqZJoBZxPXGZ9R8BAugx/hkSOgXlGwR5QCm8="; 27 - }) 28 - # Fix build on kernel 6.12 29 - # https://github.com/medusalix/xone/pull/53 30 - (fetchpatch { 31 - name = "kernel-6.12.patch"; 32 - url = "https://github.com/medusalix/xone/commit/d88ea1e8b430d4b96134e43ca1892ac48334578e.patch"; 33 - hash = "sha256-zQK1tuxu2ZmKxPO0amkfcT/RFBSkU2pWD0qhGyCCHXI="; 34 - }) 35 - ]; 36 - 37 19 setSourceRoot = '' 38 20 export sourceRoot=$(pwd)/${finalAttrs.src.name} 39 21 ''; ··· 54 36 55 37 meta = with lib; { 56 38 description = "Linux kernel driver for Xbox One and Xbox Series X|S accessories"; 57 - homepage = "https://github.com/medusalix/xone"; 39 + homepage = "https://github.com/dlundqvist/xone"; 58 40 license = licenses.gpl2Plus; 59 - maintainers = with lib.maintainers; [ rhysmdnz ]; 41 + maintainers = with lib.maintainers; [ 42 + rhysmdnz 43 + fazzi 44 + ]; 60 45 platforms = platforms.linux; 61 46 broken = kernel.kernelOlder "5.11"; 62 47 };
+23 -16
pkgs/tools/X11/xpra/default.nix
··· 29 29 pam, 30 30 pandoc, 31 31 pango, 32 - pulseaudio, 32 + pulseaudioFull, 33 33 python3, 34 34 stdenv, 35 35 util-linux, ··· 46 46 xorgserver, 47 47 xxHash, 48 48 clang, 49 + withHtml ? true, 50 + xpra-html5, 49 51 }@args: 50 52 51 53 let ··· 94 96 src = fetchFromGitHub { 95 97 owner = "Xpra-org"; 96 98 repo = "xpra"; 97 - rev = "v${version}"; 99 + tag = "v${version}"; 98 100 hash = "sha256-XY8NZhWCRLjpgq0dOClzftvMR7g/X64b+OYyjOGC/lM="; 99 101 }; 100 102 ··· 245 247 xauth 246 248 which 247 249 util-linux 248 - pulseaudio 250 + pulseaudioFull 249 251 ] 250 252 } 251 253 '' ··· 256 258 ) 257 259 ''; 258 260 259 - postInstall = '' 260 - # append module paths to xorg.conf 261 - cat ${xorgModulePaths} >> $out/etc/xpra/xorg.conf 262 - cat ${xorgModulePaths} >> $out/etc/xpra/xorg-uinput.conf 261 + postInstall = 262 + '' 263 + # append module paths to xorg.conf 264 + cat ${xorgModulePaths} >> $out/etc/xpra/xorg.conf 265 + cat ${xorgModulePaths} >> $out/etc/xpra/xorg-uinput.conf 263 266 264 - # make application icon visible to desktop environemnts 265 - icon_dir="$out/share/icons/hicolor/64x64/apps" 266 - mkdir -p "$icon_dir" 267 - ln -sr "$out/share/icons/xpra.png" "$icon_dir" 268 - ''; 267 + # make application icon visible to desktop environemnts 268 + icon_dir="$out/share/icons/hicolor/64x64/apps" 269 + mkdir -p "$icon_dir" 270 + ln -sr "$out/share/icons/xpra.png" "$icon_dir" 271 + '' 272 + + lib.optionalString withHtml '' 273 + ln -s ${xpra-html5}/share/xpra/www $out/share/xpra/www; 274 + ''; 269 275 270 276 doCheck = false; 271 277 ··· 276 282 updateScript = ./update.sh; 277 283 }; 278 284 279 - meta = with lib; { 285 + meta = { 280 286 homepage = "https://xpra.org/"; 281 287 downloadPage = "https://xpra.org/src/"; 282 288 description = "Persistent remote applications for X"; 283 289 changelog = "https://github.com/Xpra-org/xpra/releases/tag/v${version}"; 284 - platforms = platforms.linux; 285 - license = licenses.gpl2Only; 286 - maintainers = with maintainers; [ 290 + platforms = lib.platforms.linux; 291 + license = lib.licenses.gpl2Only; 292 + maintainers = with lib.maintainers; [ 287 293 offline 288 294 numinit 289 295 mvnetbiz 296 + lucasew 290 297 ]; 291 298 }; 292 299 }
+2 -5
pkgs/tools/misc/grub/default.nix
··· 164 164 url = "https://git.savannah.gnu.org/cgit/grub.git/patch/?id=048777bc29043403d077d41a81d0183767b8bc71"; 165 165 hash = "sha256-Mm49MSLqCq143r8ruLJm1QoyCoLtOlCBfqoAPwPlv8E="; 166 166 }) 167 - (fetchpatch { 168 - name = "18_fs_ntfs_implement_attribute_verification.patch"; 169 - url = "https://git.savannah.gnu.org/cgit/grub.git/patch/?id=067b6d225d482280abad03944f04e30abcbdafa1"; 170 - hash = "sha256-u1+K7WIw3uJG4OhMVP5aYsgJoXpgA5rcp3nJ0/aDU6I="; 171 - }) 167 + # Patch 18 (067b6d225d482280abad03944f04e30abcbdafa1) has been removed because it causes regressions 168 + # https://lists.gnu.org/archive/html/grub-devel/2025-03/msg00067.html 172 169 (fetchpatch { 173 170 name = "19_fs_xfs_fix_out-of-bounds_read.patch"; 174 171 url = "https://git.savannah.gnu.org/cgit/grub.git/patch/?id=6ccc77b59d16578b10eaf8a4fe85c20b229f0d8a";
+56
pkgs/tools/package-management/lix/common-nix-eval-jobs.nix
··· 1 + { 2 + lib, 3 + suffix ? "", 4 + version, 5 + src, 6 + patches ? [ ], 7 + maintainers ? lib.teams.lix.members, 8 + }@args: 9 + 10 + { 11 + stdenv, 12 + lib, 13 + lix, 14 + boost, 15 + nlohmann_json, 16 + meson, 17 + pkg-config, 18 + ninja, 19 + cmake, 20 + clang-tools, 21 + }: 22 + 23 + stdenv.mkDerivation { 24 + pname = "nix-eval-jobs"; 25 + version = "${version}${suffix}"; 26 + inherit src patches; 27 + buildInputs = [ 28 + nlohmann_json 29 + lix 30 + boost 31 + ]; 32 + nativeBuildInputs = [ 33 + meson 34 + pkg-config 35 + ninja 36 + # nlohmann_json can be only discovered via cmake files 37 + cmake 38 + ] ++ (lib.optional stdenv.cc.isClang [ clang-tools ]); 39 + 40 + # point 'nix edit' and ofborg at the file that defines the attribute, 41 + # not this common file. 42 + pos = builtins.unsafeGetAttrPos "version" args; 43 + meta = { 44 + description = "Hydra's builtin `hydra-eval-jobs` as a standalone tool"; 45 + mainProgram = "nix-eval-jobs"; 46 + homepage = 47 + # Starting with 2.93, `nix-eval-jobs` lives in the `lix` repository. 48 + if lib.versionAtLeast version "2.93" then 49 + "https://git.lix.systems/lix-project/lix/src/branch/main/subprojects/nix-eval-jobs" 50 + else 51 + "https://git.lix.systems/lix-project/nix-eval-jobs"; 52 + license = lib.licenses.gpl3; 53 + inherit maintainers; 54 + platforms = lib.platforms.unix; 55 + }; 56 + }
+2 -1
pkgs/tools/package-management/lix/common.nix pkgs/tools/package-management/lix/common-lix.nix
··· 1 1 { 2 2 lib, 3 - fetchFromGitHub, 4 3 suffix ? "", 5 4 version, 6 5 src, ··· 8 7 patches ? [ ], 9 8 maintainers ? lib.teams.lix.members, 10 9 }@args: 10 + 11 11 { 12 12 stdenv, 13 13 meson, ··· 67 67 stateDir, 68 68 storeDir, 69 69 }: 70 + 70 71 let 71 72 isLegacyParser = lib.versionOlder version "2.91"; 72 73 in
+102 -42
pkgs/tools/package-management/lix/default.nix
··· 3 3 aws-sdk-cpp, 4 4 boehmgc, 5 5 callPackage, 6 + fetchgit, 6 7 fetchFromGitHub, 7 8 rustPlatform, 8 9 Security, 10 + newScope, 9 11 10 12 storeDir ? "/nix/store", 11 13 stateDir ? "/nix/var", 12 14 confDir ? "/etc", 13 15 }: 14 16 let 15 - boehmgc-nix_2_3 = boehmgc.override { enableLargeConfig = true; }; 17 + makeLixScope = 18 + { 19 + lix-args, 20 + nix-eval-jobs-args, 21 + }: 22 + lib.makeScope newScope ( 23 + self: 24 + lib.recurseIntoAttrs { 25 + inherit 26 + Security 27 + storeDir 28 + stateDir 29 + confDir 30 + ; 16 31 17 - boehmgc-nix = boehmgc-nix_2_3.overrideAttrs (drv: { 18 - patches = (drv.patches or [ ]) ++ [ 19 - # Part of the GC solution in https://github.com/NixOS/nix/pull/4944 20 - ../nix/patches/boehmgc-coroutine-sp-fallback.patch 21 - ]; 22 - }); 32 + boehmgc = 33 + # TODO: Why is this called `boehmgc-nix_2_3`? 34 + let 35 + boehmgc-nix_2_3 = boehmgc.override { enableLargeConfig = true; }; 36 + in 37 + # Since Lix 2.91 does not use boost coroutines, it does not need boehmgc patches either. 38 + if lib.versionOlder lix-args.version "2.91" then 39 + boehmgc-nix_2_3.overrideAttrs (drv: { 40 + patches = (drv.patches or [ ]) ++ [ 41 + # Part of the GC solution in https://github.com/NixOS/nix/pull/4944 42 + ../nix/patches/boehmgc-coroutine-sp-fallback.patch 43 + ]; 44 + }) 45 + else 46 + boehmgc-nix_2_3; 23 47 24 - aws-sdk-cpp-nix = 25 - (aws-sdk-cpp.override { 26 - apis = [ 27 - "s3" 28 - "transfer" 29 - ]; 30 - customMemoryManagement = false; 31 - }).overrideAttrs 32 - { 33 - # only a stripped down version is build which takes a lot less resources to build 34 - requiredSystemFeatures = [ ]; 35 - }; 48 + aws-sdk-cpp = 49 + (aws-sdk-cpp.override { 50 + apis = [ 51 + "s3" 52 + "transfer" 53 + ]; 54 + customMemoryManagement = false; 55 + }).overrideAttrs 56 + { 57 + # only a stripped down version is build which takes a lot less resources to build 58 + requiredSystemFeatures = [ ]; 59 + }; 36 60 37 - # Since Lix 2.91 does not use boost coroutines, it does not need boehmgc patches either. 38 - needsBoehmgcPatches = version: lib.versionOlder version "2.91"; 61 + # NOTE: The `common-*.nix` helpers contain a top-level function which 62 + # takes the Lix source to build and version information. We use the 63 + # outer `callPackage` for that. 64 + # 65 + # That *returns* another function which takes the actual build 66 + # dependencies, and that uses the new scope's `self.callPackage` so 67 + # that `nix-eval-jobs` can be built against the correct `lix` version. 68 + lix = self.callPackage (callPackage ./common-lix.nix lix-args) { }; 39 69 40 - common = 41 - args: 42 - callPackage (import ./common.nix ({ inherit lib fetchFromGitHub; } // args)) { 43 - inherit 44 - Security 45 - storeDir 46 - stateDir 47 - confDir 48 - ; 49 - boehmgc = if needsBoehmgcPatches args.version then boehmgc-nix else boehmgc-nix_2_3; 50 - aws-sdk-cpp = aws-sdk-cpp-nix; 51 - }; 70 + nix-eval-jobs = self.callPackage (callPackage ./common-nix-eval-jobs.nix nix-eval-jobs-args) { }; 71 + } 72 + ); 73 + 52 74 in 53 75 lib.makeExtensible (self: { 54 - buildLix = common; 76 + inherit makeLixScope; 55 77 56 - lix_2_90 = ( 57 - common rec { 78 + lix_2_90 = self.makeLixScope { 79 + lix-args = rec { 58 80 version = "2.90.0"; 59 81 60 82 src = fetchFromGitHub { ··· 71 93 sourceRoot = "${src.name or src}/lix-doc"; 72 94 hash = "sha256-VPcrf78gfLlkTRrcbLkPgLOk0o6lsOJBm6HYLvavpNU="; 73 95 }; 74 - } 75 - ); 96 + }; 76 97 77 - lix_2_91 = ( 78 - common rec { 98 + nix-eval-jobs-args = { 99 + version = "2.90.0"; 100 + src = fetchgit { 101 + url = "https://git.lix.systems/lix-project/nix-eval-jobs.git"; 102 + # https://git.lix.systems/lix-project/nix-eval-jobs/commits/branch/release-2.90 103 + rev = "9c23772cf25e0d891bef70b7bcb7df36239672a5"; 104 + hash = "sha256-oT273pDmYzzI7ACAFUOcsxtT6y34V5KF7VBSqTza7j8="; 105 + }; 106 + }; 107 + }; 108 + 109 + lix_2_91 = self.makeLixScope { 110 + lix-args = rec { 79 111 version = "2.91.1"; 80 112 81 113 src = fetchFromGitHub { ··· 92 124 sourceRoot = "${src.name or src}/lix-doc"; 93 125 hash = "sha256-U820gvcbQIBaFr2OWPidfFIDXycDFGgXX1NpWDDqENs="; 94 126 }; 95 - } 96 - ); 127 + }; 128 + 129 + nix-eval-jobs-args = { 130 + version = "2.91.0"; 131 + src = fetchgit { 132 + url = "https://git.lix.systems/lix-project/nix-eval-jobs.git"; 133 + # https://git.lix.systems/lix-project/nix-eval-jobs/commits/branch/release-2.91 134 + rev = "1f98b0c016a6285f29ad278fa5cd82b8f470d66a"; 135 + hash = "sha256-ZJKOC/iLuO8qjPi9/ql69Vgh3NIu0tU6CSI0vbiCrKA="; 136 + }; 137 + }; 138 + }; 97 139 98 140 latest = self.lix_2_91; 99 141 stable = self.lix_2_91; 142 + 143 + # Previously, `nix-eval-jobs` was not packaged here, so we export an 144 + # attribute with the previously-expected structure for compatibility. This 145 + # is also available (for now) as `pkgs.lixVersions`. 146 + renamedDeprecatedLixVersions = 147 + let 148 + mkAlias = 149 + version: 150 + lib.warnOnInstantiate "'lixVersions.${version}' has been renamed to 'lixPackageSets.${version}.lix'" 151 + self.${version}.lix; 152 + in 153 + lib.dontRecurseIntoAttrs { 154 + lix_2_90 = mkAlias "lix_2_90"; 155 + lix_2_91 = mkAlias "lix_2_91"; 156 + # NOTE: Do not add new versions of Lix here. 157 + stable = mkAlias "stable"; 158 + latest = mkAlias "latest"; 159 + }; 100 160 })
+3 -3
pkgs/tools/security/cnspec/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cnspec"; 9 - version = "11.46.0"; 9 + version = "11.46.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mondoohq"; 13 13 repo = "cnspec"; 14 14 tag = "v${version}"; 15 - hash = "sha256-Bf3+W2F44mTCEyMnKUSoeft4HKY4C3kYmLtuKG4SWls="; 15 + hash = "sha256-eeJM4NgvLBXYzJSdt6rN9LwsQKK6drU+l5OqOWUyX8w="; 16 16 }; 17 17 18 18 proxyVendor = true; 19 19 20 - vendorHash = "sha256-Q+CHJRroYAhgYLVemC/dcHfS03GHuUoaz/s+hrntdGQ="; 20 + vendorHash = "sha256-ybHvPLDet8d1oOWPIPzAhWIzLTFu8lRM94dsrrDZoCs="; 21 21 22 22 subPackages = [ "apps/cnspec" ]; 23 23
+2 -10
pkgs/top-level/aliases.nix
··· 837 837 linux-rt_5_15 = linuxKernel.kernels.linux_rt_5_15; 838 838 linux-rt_5_4 = linuxKernel.kernels.linux_rt_5_4; 839 839 linux-rt_6_1 = linuxKernel.kernels.linux_rt_6_1; 840 - linuxPackages_4_14 = linuxKernel.packages.linux_4_14; 841 840 linuxPackages_4_19 = linuxKernel.packages.linux_4_19; 842 841 linuxPackages_5_4 = linuxKernel.packages.linux_5_4; 843 842 linuxPackages_5_10 = linuxKernel.packages.linux_5_10; 844 843 linuxPackages_5_15 = linuxKernel.packages.linux_5_15; 845 844 linuxPackages_6_1 = linuxKernel.packages.linux_6_1; 846 - linuxPackages_6_4 = linuxKernel.packages.linux_6_4; 847 - linuxPackages_6_5 = linuxKernel.packages.linux_6_5; 848 845 linuxPackages_6_6 = linuxKernel.packages.linux_6_6; 849 - linuxPackages_6_7 = linuxKernel.packages.linux_6_7; 850 - linuxPackages_6_8 = linuxKernel.packages.linux_6_8; 851 846 linuxPackages_6_9 = linuxKernel.packages.linux_6_9; 852 847 linuxPackages_6_10 = linuxKernel.packages.linux_6_10; 853 848 linuxPackages_6_11 = linuxKernel.packages.linux_6_11; ··· 864 859 linuxPackages_rt_5_15 = linuxKernel.packages.linux_rt_5_15; 865 860 linuxPackages_rt_5_4 = linuxKernel.packages.linux_rt_5_4; 866 861 linuxPackages_rt_6_1 = linuxKernel.packages.linux_rt_6_1; 867 - linux_4_14 = linuxKernel.kernels.linux_4_14; 868 862 linux_4_19 = linuxKernel.kernels.linux_4_19; 869 863 linux_5_4 = linuxKernel.kernels.linux_5_4; 870 864 linux_5_10 = linuxKernel.kernels.linux_5_10; 871 865 linux_5_15 = linuxKernel.kernels.linux_5_15; 872 866 linux_6_1 = linuxKernel.kernels.linux_6_1; 873 - linux_6_4 = linuxKernel.kernels.linux_6_4; 874 - linux_6_5 = linuxKernel.kernels.linux_6_5; 875 867 linux_6_6 = linuxKernel.kernels.linux_6_6; 876 - linux_6_7 = linuxKernel.kernels.linux_6_7; 877 - linux_6_8 = linuxKernel.kernels.linux_6_8; 878 868 linux_6_9 = linuxKernel.kernels.linux_6_9; 879 869 linux_6_10 = linuxKernel.kernels.linux_6_10; 880 870 linux_6_11 = linuxKernel.kernels.linux_6_11; ··· 913 903 linux_testing_bcachefs = throw "'linux_testing_bcachefs' has been removed, please use 'linux_latest', any kernel version at least 6.7, or any other linux kernel with bcachefs support"; 914 904 915 905 linuxstopmotion = stopmotion; # Added 2024-11-01 906 + 907 + lixVersions = lixPackageSets.renamedDeprecatedLixVersions; # Added 2025-03-20, warning in ../tools/package-management/lix/default.nix 916 908 917 909 llvmPackages_git = (callPackages ../development/compilers/llvm { }).git; 918 910
+4 -6
pkgs/top-level/all-packages.nix
··· 2860 2860 cudaPackages_12_5 = callPackage ./cuda-packages.nix { cudaVersion = "12.5"; }; 2861 2861 cudaPackages_12_6 = callPackage ./cuda-packages.nix { cudaVersion = "12.6"; }; 2862 2862 cudaPackages_12_8 = callPackage ./cuda-packages.nix { cudaVersion = "12.8"; }; 2863 - cudaPackages_12 = cudaPackages_12_4; # Latest supported by cudnn 2863 + cudaPackages_12 = cudaPackages_12_8; # Latest supported by cudnn 2864 2864 2865 2865 cudaPackages = recurseIntoAttrs cudaPackages_12; 2866 2866 ··· 7968 7968 7969 7969 rr = callPackage ../development/tools/analysis/rr { }; 7970 7970 7971 - rufo = callPackage ../development/tools/rufo { }; 7972 - 7973 7971 muonStandalone = muon.override { 7974 7972 embedSamurai = true; 7975 7973 buildDocs = false; ··· 8112 8110 8113 8111 qcachegrind = libsForQt5.callPackage ../development/tools/analysis/qcachegrind { }; 8114 8112 8115 - vcpkg-tool-unwrapped = callPackage ../by-name/vc/vcpkg-tool/package.nix { doWrap = false; }; 8113 + vcpkg-tool-unwrapped = vcpkg-tool.override { doWrap = false; }; 8116 8114 8117 8115 wails = callPackage ../development/tools/wails { 8118 8116 stdenv = gccStdenv; ··· 17211 17209 17212 17210 nixStatic = pkgsStatic.nix; 17213 17211 17214 - lixVersions = recurseIntoAttrs (callPackage ../tools/package-management/lix { 17212 + lixPackageSets = recurseIntoAttrs (callPackage ../tools/package-management/lix { 17215 17213 storeDir = config.nix.storeDir or "/nix/store"; 17216 17214 stateDir = config.nix.stateDir or "/nix/var"; 17217 17215 inherit (darwin.apple_sdk.frameworks) Security; 17218 17216 }); 17219 17217 17220 - lix = lixVersions.stable; 17218 + lix = lixPackageSets.stable.lix; 17221 17219 17222 17220 lixStatic = pkgsStatic.lix; 17223 17221
+1 -23
pkgs/top-level/linux-kernels.nix
··· 303 303 linux_6_13_hardened = hardenedKernelFor kernels.linux_6_13 { }; 304 304 305 305 } // lib.optionalAttrs config.allowAliases { 306 - linux_4_14 = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; 307 306 linux_4_19 = throw "linux 4.19 was removed because it will reach its end of life within 24.11"; 308 - linux_6_4 = throw "linux 6.4 was removed because it has reached its end of life upstream"; 309 - linux_6_5 = throw "linux 6.5 was removed because it has reached its end of life upstream"; 310 - linux_6_7 = throw "linux 6.7 was removed because it has reached its end of life upstream"; 311 - linux_6_8 = throw "linux 6.8 was removed because it has reached its end of life upstream"; 312 307 linux_6_9 = throw "linux 6.9 was removed because it has reached its end of life upstream"; 313 308 linux_6_10 = throw "linux 6.10 was removed because it has reached its end of life upstream"; 314 309 linux_6_11 = throw "linux 6.11 was removed because it has reached its end of life upstream"; 315 310 316 - linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; 317 - 318 - linux_4_14_hardened = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; 319 311 linux_4_19_hardened = throw "linux 4.19 was removed because it will reach its end of life within 24.11"; 320 - linux_6_4_hardened = throw "linux 6.4 was removed because it has reached its end of life upstream"; 321 - linux_6_5_hardened = throw "linux 6.5 was removed because it has reached its end of life upstream"; 322 - linux_6_7_hardened = throw "linux 6.7 was removed because it has reached its end of life upstream"; 323 - linux_6_8_hardened = throw "linux 6.8 was removed because it has reached its end of life upstream"; 324 312 linux_6_9_hardened = throw "linux 6.9 was removed because it has reached its end of life upstream"; 325 313 linux_6_10_hardened = throw "linux 6.10 was removed because it has reached its end of life upstream"; 326 314 linux_6_11_hardened = throw "linux 6.11 was removed because it has reached its end of life upstream"; ··· 684 672 linux_6_13 = recurseIntoAttrs (packagesFor kernels.linux_6_13); 685 673 linux_6_14 = recurseIntoAttrs (packagesFor kernels.linux_6_14); 686 674 } // lib.optionalAttrs config.allowAliases { 687 - linux_4_14 = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; # Added 2023-10-11 688 675 linux_4_19 = throw "linux 4.19 was removed because it will reach its end of life within 24.11"; # Added 2024-09-21 689 - linux_6_4 = throw "linux 6.4 was removed because it reached its end of life upstream"; # Added 2023-10-02 690 - linux_6_5 = throw "linux 6.5 was removed because it reached its end of life upstream"; # Added 2024-02-28 691 - linux_6_7 = throw "linux 6.7 was removed because it reached its end of life upstream"; # Added 2024-04-04 692 - linux_6_8 = throw "linux 6.8 was removed because it reached its end of life upstream"; # Added 2024-08-02 693 676 linux_6_9 = throw "linux 6.9 was removed because it reached its end of life upstream"; # Added 2024-08-02 694 677 linux_6_10 = throw "linux 6.10 was removed because it reached its end of life upstream"; # Added 2024-10-23 695 678 linux_6_11 = throw "linux 6.11 was removed because it reached its end of life upstream"; # Added 2025-03-23 ··· 739 722 linux_latest_libre = recurseIntoAttrs (packagesFor kernels.linux_latest_libre); 740 723 __recurseIntoDerivationForReleaseJobs = true; 741 724 } // lib.optionalAttrs config.allowAliases { 742 - linux_4_14_hardened = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; 743 725 linux_4_19_hardened = throw "linux 4.19 was removed because it will reach its end of life within 24.11"; 744 - linux_6_4_hardened = throw "linux 6.4 was removed because it has reached its end of life upstream"; 745 - linux_6_5_hardened = throw "linux 6.5 was removed because it has reached its end of life upstream"; 746 - linux_6_7_hardened = throw "linux 6.7 was removed because it has reached its end of life upstream"; 747 - linux_6_8_hardened = throw "linux 6.8 was removed because it has reached its end of life upstream"; 748 726 linux_6_9_hardened = throw "linux 6.9 was removed because it has reached its end of life upstream"; 727 + linux_6_10_hardened = throw "linux 6.10 was removed because it has reached its end of life upstream"; 749 728 linux_6_11_hardened = throw "linux 6.11 was removed because it has reached its end of life upstream"; 750 - linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; 751 729 }); 752 730 753 731 packageAliases = {
+2
pkgs/top-level/python-packages.nix
··· 10663 10663 10664 10664 numpy = numpy_2; 10665 10665 10666 + numpy-financial = callPackage ../development/python-modules/numpy-financial { }; 10667 + 10666 10668 numpy-groupies = callPackage ../development/python-modules/numpy-groupies { }; 10667 10669 10668 10670 numpy-stl = callPackage ../development/python-modules/numpy-stl { };