lol

Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
3b235bc5 a3d0f26a

+1171 -5147
+16
nixos/modules/services/mail/stalwart-mail.nix
··· 53 53 Data directory for stalwart 54 54 ''; 55 55 }; 56 + 57 + credentials = lib.mkOption { 58 + description = '' 59 + Credentials envs used to configure Stalwart-Mail secrets. 60 + These secrets can be accessed in configuration values with 61 + the macros such as 62 + `%{file:/run/credentials/stalwart-mail.service/VAR_NAME}%`. 63 + ''; 64 + type = lib.types.attrsOf lib.types.str; 65 + default = { }; 66 + example = { 67 + user_admin_password = "/run/keys/stalwart_admin_password"; 68 + }; 69 + }; 70 + 56 71 }; 57 72 58 73 config = lib.mkIf cfg.enable { ··· 149 164 "" 150 165 "${cfg.package}/bin/stalwart-mail --config=${configFile}" 151 166 ]; 167 + LoadCredential = lib.mapAttrsToList (key: value: "${key}:${value}") cfg.credentials; 152 168 153 169 StandardOutput = "journal"; 154 170 StandardError = "journal";
+2 -2
pkgs/applications/editors/vscode/extensions/default.nix
··· 1253 1253 mktplcRef = { 1254 1254 name = "databricks"; 1255 1255 publisher = "databricks"; 1256 - version = "2.3.1"; 1257 - hash = "sha256-Qa839ygG8Z3aD/ZSshe2hg0ee3ZFU8xRrJ5E0cUjfCU="; 1256 + version = "2.6.0"; 1257 + hash = "sha256-nPDElLHZUeGNqE3QcO5GIj6AN1rNPk3RYQjFCUSuCdM="; 1258 1258 }; 1259 1259 meta = { 1260 1260 changelog = "https://marketplace.visualstudio.com/items/databricks.databricks/changelog";
+1 -1
pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix
··· 11 11 name = "tinymist"; 12 12 publisher = "myriad-dreamin"; 13 13 inherit (tinymist) version; 14 - hash = "sha256-esoX4BibxMZv5KHwVJoJ94uDzwL9/OqKrmyvtprbUsc="; 14 + hash = "sha256-rsQlYzgOXN1avTRG8Z80+dMuaGJp2evnnflTPKgTyTI="; 15 15 }; 16 16 17 17 nativeBuildInputs = [
+7 -4
pkgs/applications/radio/soapysdr/default.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "soapysdr"; 20 - version = "0.8.2-pre"; 20 + # Don't forget to change passthru.abiVersion 21 + version = "0.8.1-unstable-2024-12-22"; 21 22 22 23 src = fetchFromGitHub { 23 24 owner = "pothosware"; ··· 25 26 26 27 # Instead of applying several patches for Python 3.12 compat, just take the latest, from: 27 28 # use old get python lib for v2 (#437) 28 - rev = "8c6cb7c5223fad995e355486527589c63aa3b21e"; 29 - hash = "sha256-CKasL1mlpeuxXyPe6VDdAvb1l5a1cwWgyP7XX1aM73I="; 29 + rev = "309335ec6a52eb712387ed025d705a3c0f7a1e24"; 30 + hash = "sha256-a9414gX4fUAPQaKKqrWgSlFHZH0BWqbgHzhVCKnIn2M="; 30 31 }; 31 32 32 33 nativeBuildInputs = [ ··· 66 67 67 68 passthru = { 68 69 tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 69 - searchPath = "lib/SoapySDR/modules${lib.versions.majorMinor finalAttrs.version}"; 70 + # SOAPY_SDR_ABI_VERSION defined in include/SoapySDR/Version.h 71 + abiVersion = "0.8-3"; 72 + searchPath = "lib/SoapySDR/modules${finalAttrs.passthru.abiVersion}"; 70 73 }; 71 74 72 75 meta = with lib; {
+2 -2
pkgs/by-name/am/amazon-ssm-agent/package.nix
··· 42 42 in 43 43 buildGoModule rec { 44 44 pname = "amazon-ssm-agent"; 45 - version = "3.3.1611.0"; 45 + version = "3.3.1802.0"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "aws"; 49 49 repo = "amazon-ssm-agent"; 50 50 tag = version; 51 - hash = "sha256-mwru2BAnVSYLXoA+g7eizadSYLr9c3ikEJipo7N1n4Y="; 51 + hash = "sha256-xJ4yl93/Wr+R29YmRsGNfkRGhlvfhkXiP8FMgxhqjdE="; 52 52 }; 53 53 54 54 vendorHash = null;
+3 -3
pkgs/by-name/ar/ariang/package.nix
··· 7 7 8 8 buildNpmPackage rec { 9 9 pname = "ariang"; 10 - version = "1.3.9"; 10 + version = "1.3.10"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "mayswind"; 14 14 repo = "AriaNg"; 15 15 rev = version; 16 - hash = "sha256-c3+iyw8LgdB29552jJQr4q5P2ZW80jC0aN+eaenEYFo="; 16 + hash = "sha256-YABoDBPrxII0uw4Cyy1A4AcLQ3Uo28dJa/F4LTI7f5Y="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-N7ZK6wthBYAt8tU8sJE0QChAYxWfJ1HG5P+AjXZfIiw="; 19 + npmDepsHash = "sha256-cNTkdrJuXMhcBbbCYJ9Xs639T0QWUbhRABD2gQ2cfjM="; 20 20 21 21 makeCacheWritable = true; 22 22
+2 -2
pkgs/by-name/cd/cdk-go/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "cdk-go"; 10 - version = "1.5.4"; 10 + version = "1.5.5"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cdk-team"; 14 14 repo = "CDK"; 15 15 tag = "v${version}"; 16 - hash = "sha256-Lpn+VuCzODOzxcgfD1l36eHmssAUz7+HgtN8vZwDNwE="; 16 + hash = "sha256-mknmpRp8IcqSz7HrD8ertEfv+j6lNVjvjxTWa/qqWR0="; 17 17 }; 18 18 19 19 vendorHash = "sha256-aJN/d/BxmleRXKw6++k6e0Vb0Gs5zg1QfakviABYTog=";
+2 -2
pkgs/by-name/fz/fzf/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "fzf"; 14 - version = "0.60.0"; 14 + version = "0.60.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "junegunn"; 18 18 repo = "fzf"; 19 19 rev = "v${version}"; 20 - hash = "sha256-4SnM1i0d+MPfQNkuqvq9acOKLGX6O5/VAYpgkeMcaEY="; 20 + hash = "sha256-1is5cja7BdtO1PK6MpSonnb0b8//Zrf0TA9FI0aCKLA="; 21 21 }; 22 22 23 23 vendorHash = "sha256-i4ofEI4K6Pypf5KJi/OW6e/vhnCHUArMHnZKrvQ8eww=";
+16 -8
pkgs/by-name/gi/git-workspace/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "git-workspace"; 12 - version = "1.8.0"; 12 + version = "1.9.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "orf"; 16 - repo = pname; 17 - rev = "v${version}"; 18 - sha256 = "sha256-sS452PCX2G49Q5tnScG+ySkUAhFctGsGZrMvQXL7WkY="; 16 + repo = "git-workspace"; 17 + tag = "v${version}"; 18 + hash = "sha256-SeE8O48lzqJSg8rfmIgsUcGPbquo2OvK3OUUBG21ksc="; 19 19 }; 20 20 21 21 useFetchCargoVendor = true; 22 - cargoHash = "sha256-iYT45iqKmx+t+xImbQuSv/nAvaiLNrLLqbe8zKAF4Jw="; 22 + cargoHash = "sha256-CaHZivayZNuCi8vID8Qr5j/Ed+GGdNu+7NznvsCb3j0="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25 26 26 buildInputs = [ openssl ]; 27 27 28 + checkFlags = [ 29 + # integration tests, need docker 30 + # https://rust.testcontainers.org/system_requirements/docker/ 31 + "--skip=test_archive_command" 32 + "--skip=test_fetch_and_run_commands" 33 + "--skip=test_update_command" 34 + ]; 35 + 28 36 passthru.updateScript = nix-update-script { }; 29 37 30 - meta = with lib; { 38 + meta = { 31 39 description = "Sync personal and work git repositories from multiple providers"; 32 40 homepage = "https://github.com/orf/git-workspace"; 33 - license = with licenses; [ mit ]; 34 - maintainers = with maintainers; [ misuzu ]; 41 + license = with lib.licenses; [ mit ]; 42 + maintainers = with lib.maintainers; [ misuzu ]; 35 43 mainProgram = "git-workspace"; 36 44 }; 37 45 }
+8 -12
pkgs/by-name/le/lemurs/package.nix
··· 2 2 fetchFromGitHub, 3 3 lib, 4 4 bash, 5 - lemurs, 6 5 linux-pam, 7 6 rustPlatform, 8 7 systemdMinimal, 9 - testers, 8 + versionCheckHook, 10 9 }: 11 - rustPlatform.buildRustPackage { 10 + rustPlatform.buildRustPackage rec { 12 11 pname = "lemurs"; 13 - version = "0.3.2-unstable-2024-07-24"; 12 + version = "0.4.0"; 14 13 15 14 src = fetchFromGitHub { 16 15 owner = "coastalwhite"; 17 16 repo = "lemurs"; 18 - rev = "1d4be7d0c3f528a0c1e9326ac77f1e8a17161c83"; 19 - hash = "sha256-t/riJpgy0bD5CU8Zkzket4Gks2JXXSLRreMlrxlok0c="; 17 + tag = "v${version}"; 18 + hash = "sha256-dtAmgzsUhn3AfafWbCaaog0S1teIy+8eYtaHBhvLfLI="; 20 19 }; 21 20 22 21 useFetchCargoVendor = true; 23 - cargoHash = "sha256-Cwgu30rGe1/Mm4FEEH11OTtTHUlBNwl5jVzmJg5qQe8="; 22 + cargoHash = "sha256-XoGtIHYCGXNuwnpDTU7NbZAs6rCO+69CAG89VCv9aAc="; 24 23 25 24 buildInputs = [ 26 25 bash ··· 28 27 systemdMinimal 29 28 ]; 30 29 31 - passthru.tests.version = testers.testVersion { 32 - package = lemurs; 33 - # Package version is now different from the version that lemurs reports itself as. 34 - version = "0.3.2"; 35 - }; 30 + doInstallCheck = true; 31 + nativeInstallCheckInputs = [ versionCheckHook ]; 36 32 37 33 meta = { 38 34 description = "Customizable TUI display/login manager written in Rust";
+3 -3
pkgs/by-name/lm/lmstudio/darwin.nix
··· 5 5 meta, 6 6 pname, 7 7 version, 8 - rev, 8 + url, 9 + hash, 9 10 }: 10 11 stdenv.mkDerivation { 11 12 inherit meta pname version; 12 13 13 14 src = fetchurl { 14 - url = "https://installers.lmstudio.ai/darwin/arm64/${version}-${rev}/LM-Studio-${version}-${rev}-arm64.dmg"; 15 - hash = "sha256-x4IRT1PjBz9eafmwNRyLVq+4/Rkptz6RVWDFdRrGnGY="; 15 + inherit url hash; 16 16 }; 17 17 18 18 nativeBuildInputs = [ undmg ];
+3 -3
pkgs/by-name/lm/lmstudio/linux.nix
··· 2 2 appimageTools, 3 3 fetchurl, 4 4 version, 5 - rev, 5 + url, 6 + hash, 6 7 pname, 7 8 meta, 8 9 }: 9 10 let 10 11 src = fetchurl { 11 - url = "https://installers.lmstudio.ai/linux/x64/${version}-${rev}/LM-Studio-${version}-${rev}-x64.AppImage"; 12 - hash = "sha256-laROBUr1HLoaQT6rYhhhulR1KZuKczNomKbrXXkDANY="; 12 + inherit url hash; 13 13 }; 14 14 15 15 appimageContents = appimageTools.extractType2 { inherit pname version src; };
+11 -5
pkgs/by-name/lm/lmstudio/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 callPackage, 5 + version ? "0.3.6", 6 + rev ? "8", 5 7 ... 6 - }: 8 + }@args: 7 9 let 8 10 pname = "lmstudio"; 9 - version = "0.3.6"; 10 - rev = "8"; 11 11 meta = { 12 12 description = "LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs)"; 13 13 homepage = "https://lmstudio.ai/"; ··· 30 30 inherit 31 31 pname 32 32 version 33 - rev 34 33 meta 35 34 ; 35 + url = 36 + args.url 37 + or "https://installers.lmstudio.ai/darwin/arm64/${version}-${rev}/LM-Studio-${version}-${rev}-arm64.dmg"; 38 + hash = args.hash or "sha256-x4IRT1PjBz9eafmwNRyLVq+4/Rkptz6RVWDFdRrGnGY="; 36 39 } 37 40 else 38 41 callPackage ./linux.nix { 39 42 inherit 40 43 pname 41 44 version 42 - rev 43 45 meta 44 46 ; 47 + url = 48 + args.url 49 + or "https://installers.lmstudio.ai/linux/x64/${version}-${rev}/LM-Studio-${version}-${rev}-x64.AppImage"; 50 + hash = args.hash or "sha256-laROBUr1HLoaQT6rYhhhulR1KZuKczNomKbrXXkDANY="; 45 51 }
+931
pkgs/by-name/me/mermaid-cli/integrity.patch
··· 1 + Subject: [PATCH] build: add missing package integrity 2 + --- 3 + Index: package-lock.json 4 + <+>UTF-8 5 + =================================================================== 6 + diff --git a/package-lock.json b/package-lock.json 7 + --- a/package-lock.json (revision f1f9df1a2a87f2649f9c2d6add5cb5d2714e70a8) 8 + +++ b/package-lock.json (revision fa593dc39619f44b57a922927a66346248f31d7d) 9 + @@ -319,6 +319,7 @@ 10 + "node_modules/@babel/helper-function-name/node_modules/ansi-styles": { 11 + "version": "3.2.1", 12 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 13 + + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 14 + "dev": true, 15 + "license": "MIT", 16 + "dependencies": { 17 + @@ -331,6 +332,7 @@ 18 + "node_modules/@babel/helper-function-name/node_modules/chalk": { 19 + "version": "2.4.2", 20 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 21 + + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 22 + "dev": true, 23 + "license": "MIT", 24 + "dependencies": { 25 + @@ -345,6 +347,7 @@ 26 + "node_modules/@babel/helper-function-name/node_modules/color-convert": { 27 + "version": "1.9.3", 28 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 29 + + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 30 + "dev": true, 31 + "license": "MIT", 32 + "dependencies": { 33 + @@ -354,12 +357,14 @@ 34 + "node_modules/@babel/helper-function-name/node_modules/color-name": { 35 + "version": "1.1.3", 36 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 37 + + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 38 + "dev": true, 39 + "license": "MIT" 40 + }, 41 + "node_modules/@babel/helper-function-name/node_modules/escape-string-regexp": { 42 + "version": "1.0.5", 43 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 44 + + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 45 + "dev": true, 46 + "license": "MIT", 47 + "engines": { 48 + @@ -369,6 +374,7 @@ 49 + "node_modules/@babel/helper-function-name/node_modules/has-flag": { 50 + "version": "3.0.0", 51 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 52 + + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 53 + "dev": true, 54 + "license": "MIT", 55 + "engines": { 56 + @@ -378,6 +384,7 @@ 57 + "node_modules/@babel/helper-function-name/node_modules/supports-color": { 58 + "version": "5.5.0", 59 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 60 + + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 61 + "dev": true, 62 + "license": "MIT", 63 + "dependencies": { 64 + @@ -597,6 +604,7 @@ 65 + "node_modules/@babel/highlight/node_modules/ansi-styles": { 66 + "version": "3.2.1", 67 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 68 + + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 69 + "dev": true, 70 + "license": "MIT", 71 + "dependencies": { 72 + @@ -609,6 +617,7 @@ 73 + "node_modules/@babel/highlight/node_modules/chalk": { 74 + "version": "2.4.2", 75 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 76 + + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 77 + "dev": true, 78 + "license": "MIT", 79 + "dependencies": { 80 + @@ -623,6 +632,7 @@ 81 + "node_modules/@babel/highlight/node_modules/color-convert": { 82 + "version": "1.9.3", 83 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 84 + + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 85 + "dev": true, 86 + "license": "MIT", 87 + "dependencies": { 88 + @@ -632,12 +642,14 @@ 89 + "node_modules/@babel/highlight/node_modules/color-name": { 90 + "version": "1.1.3", 91 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 92 + + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 93 + "dev": true, 94 + "license": "MIT" 95 + }, 96 + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 97 + "version": "1.0.5", 98 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 99 + + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 100 + "dev": true, 101 + "license": "MIT", 102 + "engines": { 103 + @@ -647,6 +659,7 @@ 104 + "node_modules/@babel/highlight/node_modules/has-flag": { 105 + "version": "3.0.0", 106 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 107 + + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 108 + "dev": true, 109 + "license": "MIT", 110 + "engines": { 111 + @@ -656,6 +669,7 @@ 112 + "node_modules/@babel/highlight/node_modules/supports-color": { 113 + "version": "5.5.0", 114 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 115 + + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 116 + "dev": true, 117 + "license": "MIT", 118 + "dependencies": { 119 + @@ -1053,6 +1067,7 @@ 120 + "node_modules/@babel/traverse/node_modules/ansi-styles": { 121 + "version": "3.2.1", 122 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 123 + + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 124 + "dev": true, 125 + "license": "MIT", 126 + "dependencies": { 127 + @@ -1065,6 +1080,7 @@ 128 + "node_modules/@babel/traverse/node_modules/chalk": { 129 + "version": "2.4.2", 130 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 131 + + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 132 + "dev": true, 133 + "license": "MIT", 134 + "dependencies": { 135 + @@ -1079,6 +1095,7 @@ 136 + "node_modules/@babel/traverse/node_modules/color-convert": { 137 + "version": "1.9.3", 138 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 139 + + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 140 + "dev": true, 141 + "license": "MIT", 142 + "dependencies": { 143 + @@ -1088,12 +1105,14 @@ 144 + "node_modules/@babel/traverse/node_modules/color-name": { 145 + "version": "1.1.3", 146 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 147 + + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 148 + "dev": true, 149 + "license": "MIT" 150 + }, 151 + "node_modules/@babel/traverse/node_modules/escape-string-regexp": { 152 + "version": "1.0.5", 153 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 154 + + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 155 + "dev": true, 156 + "license": "MIT", 157 + "engines": { 158 + @@ -1113,6 +1132,7 @@ 159 + "node_modules/@babel/traverse/node_modules/has-flag": { 160 + "version": "3.0.0", 161 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 162 + + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 163 + "dev": true, 164 + "license": "MIT", 165 + "engines": { 166 + @@ -1122,6 +1142,7 @@ 167 + "node_modules/@babel/traverse/node_modules/supports-color": { 168 + "version": "5.5.0", 169 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 170 + + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 171 + "dev": true, 172 + "license": "MIT", 173 + "dependencies": { 174 + @@ -1935,6 +1956,7 @@ 175 + "node_modules/@jest/console/node_modules/chalk": { 176 + "version": "4.1.2", 177 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 178 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 179 + "dev": true, 180 + "license": "MIT", 181 + "dependencies": { 182 + @@ -1999,6 +2021,7 @@ 183 + "node_modules/@jest/core/node_modules/chalk": { 184 + "version": "4.1.2", 185 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 186 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 187 + "dev": true, 188 + "license": "MIT", 189 + "dependencies": { 190 + @@ -2164,6 +2187,7 @@ 191 + "node_modules/@jest/reporters/node_modules/chalk": { 192 + "version": "4.1.2", 193 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 194 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 195 + "dev": true, 196 + "license": "MIT", 197 + "dependencies": { 198 + @@ -2323,6 +2347,7 @@ 199 + "node_modules/@jest/transform/node_modules/chalk": { 200 + "version": "4.1.2", 201 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 202 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 203 + "dev": true, 204 + "license": "MIT", 205 + "dependencies": { 206 + @@ -2364,6 +2389,7 @@ 207 + "node_modules/@jest/types/node_modules/chalk": { 208 + "version": "4.1.2", 209 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 210 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 211 + "dev": true, 212 + "license": "MIT", 213 + "dependencies": { 214 + @@ -3207,6 +3233,7 @@ 215 + "node_modules/@types/json5": { 216 + "version": "0.0.29", 217 + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 218 + + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", 219 + "dev": true, 220 + "license": "MIT" 221 + }, 222 + @@ -3491,6 +3518,7 @@ 223 + "node_modules/ajv": { 224 + "version": "6.12.6", 225 + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 226 + + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 227 + "dev": true, 228 + "license": "MIT", 229 + "dependencies": { 230 + @@ -3824,6 +3852,7 @@ 231 + "node_modules/babel-jest/node_modules/chalk": { 232 + "version": "4.1.2", 233 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 234 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 235 + "dev": true, 236 + "license": "MIT", 237 + "dependencies": { 238 + @@ -4177,6 +4206,7 @@ 239 + "node_modules/callsites": { 240 + "version": "3.1.0", 241 + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 242 + + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 243 + "dev": true, 244 + "license": "MIT", 245 + "engines": { 246 + @@ -4375,6 +4405,7 @@ 247 + "node_modules/color-convert": { 248 + "version": "2.0.1", 249 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 250 + + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 251 + "dev": true, 252 + "license": "MIT", 253 + "dependencies": { 254 + @@ -4394,6 +4425,7 @@ 255 + "node_modules/color-name": { 256 + "version": "1.1.4", 257 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 258 + + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 259 + "license": "MIT" 260 + }, 261 + "node_modules/color-string": { 262 + @@ -4515,6 +4547,7 @@ 263 + "node_modules/create-jest/node_modules/chalk": { 264 + "version": "4.1.2", 265 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 266 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 267 + "dev": true, 268 + "license": "MIT", 269 + "dependencies": { 270 + @@ -4531,6 +4564,7 @@ 271 + "node_modules/cross-spawn": { 272 + "version": "7.0.3", 273 + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 274 + + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 275 + "dev": true, 276 + "license": "MIT", 277 + "dependencies": { 278 + @@ -5185,6 +5219,7 @@ 279 + "node_modules/deep-is": { 280 + "version": "0.1.3", 281 + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", 282 + + "integrity": "sha512-GtxAN4HvBachZzm4OnWqc45ESpUCMwkYcsjnsPs23FwJbsO+k4t0k9bQCgOmzIlpHO28+WPK/KRbRk0DDHuuDw==", 283 + "dev": true, 284 + "license": "MIT" 285 + }, 286 + @@ -5300,6 +5335,7 @@ 287 + "node_modules/doctrine": { 288 + "version": "2.1.0", 289 + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 290 + + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 291 + "dev": true, 292 + "license": "Apache-2.0", 293 + "dependencies": { 294 + @@ -5381,6 +5417,7 @@ 295 + "node_modules/error-ex": { 296 + "version": "1.3.2", 297 + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 298 + + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 299 + "dev": true, 300 + "license": "MIT", 301 + "dependencies": { 302 + @@ -5567,6 +5604,7 @@ 303 + "node_modules/es-to-primitive": { 304 + "version": "1.2.1", 305 + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 306 + + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 307 + "dev": true, 308 + "license": "MIT", 309 + "dependencies": { 310 + @@ -5851,6 +5889,7 @@ 311 + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { 312 + "version": "2.1.0", 313 + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", 314 + + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", 315 + "dev": true, 316 + "license": "MIT", 317 + "dependencies": { 318 + @@ -5866,6 +5905,7 @@ 319 + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { 320 + "version": "1.3.0", 321 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", 322 + + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", 323 + "dev": true, 324 + "license": "Apache-2.0", 325 + "engines": { 326 + @@ -6067,6 +6107,7 @@ 327 + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 328 + "version": "2.0.0", 329 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", 330 + + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", 331 + "dev": true, 332 + "license": "Apache-2.0", 333 + "engines": { 334 + @@ -6089,6 +6130,7 @@ 335 + "node_modules/eslint/node_modules/chalk": { 336 + "version": "4.1.2", 337 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 338 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 339 + "dev": true, 340 + "license": "MIT", 341 + "dependencies": { 342 + @@ -6105,6 +6147,7 @@ 343 + "node_modules/eslint/node_modules/doctrine": { 344 + "version": "3.0.0", 345 + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 346 + + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 347 + "dev": true, 348 + "license": "Apache-2.0", 349 + "dependencies": { 350 + @@ -6237,6 +6280,7 @@ 351 + "node_modules/esrecurse": { 352 + "version": "4.3.0", 353 + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 354 + + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 355 + "dev": true, 356 + "license": "BSD-2-Clause", 357 + "dependencies": { 358 + @@ -6249,6 +6293,7 @@ 359 + "node_modules/estraverse": { 360 + "version": "5.2.0", 361 + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", 362 + + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", 363 + "dev": true, 364 + "license": "BSD-2-Clause", 365 + "engines": { 366 + @@ -6264,6 +6309,7 @@ 367 + "node_modules/esutils": { 368 + "version": "2.0.3", 369 + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 370 + + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 371 + "dev": true, 372 + "license": "BSD-2-Clause", 373 + "engines": { 374 + @@ -6375,6 +6421,7 @@ 375 + "node_modules/fast-deep-equal": { 376 + "version": "3.1.3", 377 + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 378 + + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 379 + "dev": true, 380 + "license": "MIT" 381 + }, 382 + @@ -6404,12 +6451,14 @@ 383 + "node_modules/fast-json-stable-stringify": { 384 + "version": "2.1.0", 385 + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 386 + + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 387 + "dev": true, 388 + "license": "MIT" 389 + }, 390 + "node_modules/fast-levenshtein": { 391 + "version": "2.0.6", 392 + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 393 + + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 394 + "dev": true, 395 + "license": "MIT" 396 + }, 397 + @@ -6485,6 +6534,7 @@ 398 + "node_modules/find-up": { 399 + "version": "4.1.0", 400 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 401 + + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 402 + "dev": true, 403 + "license": "MIT", 404 + "dependencies": { 405 + @@ -6544,6 +6594,7 @@ 406 + "node_modules/fs.realpath": { 407 + "version": "1.0.0", 408 + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 409 + + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 410 + "license": "ISC" 411 + }, 412 + "node_modules/fsevents": { 413 + @@ -6812,6 +6863,7 @@ 414 + "node_modules/has": { 415 + "version": "1.0.3", 416 + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 417 + + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 418 + "dev": true, 419 + "license": "MIT", 420 + "dependencies": { 421 + @@ -6834,6 +6886,7 @@ 422 + "node_modules/has-flag": { 423 + "version": "4.0.0", 424 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 425 + + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 426 + "dev": true, 427 + "license": "MIT", 428 + "engines": { 429 + @@ -7012,6 +7065,7 @@ 430 + "node_modules/import-fresh": { 431 + "version": "3.2.1", 432 + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", 433 + + "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", 434 + "dev": true, 435 + "license": "MIT", 436 + "dependencies": { 437 + @@ -7055,6 +7109,7 @@ 438 + "node_modules/imurmurhash": { 439 + "version": "0.1.4", 440 + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 441 + + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 442 + "dev": true, 443 + "license": "MIT", 444 + "engines": { 445 + @@ -7064,6 +7119,7 @@ 446 + "node_modules/inflight": { 447 + "version": "1.0.6", 448 + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 449 + + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 450 + "license": "ISC", 451 + "dependencies": { 452 + "once": "^1.3.0", 453 + @@ -7073,6 +7129,7 @@ 454 + "node_modules/inherits": { 455 + "version": "2.0.4", 456 + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 457 + + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 458 + "license": "ISC" 459 + }, 460 + "node_modules/internal-slot": { 461 + @@ -7133,6 +7190,7 @@ 462 + "node_modules/is-arrayish": { 463 + "version": "0.2.1", 464 + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 465 + + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 466 + "dev": true, 467 + "license": "MIT" 468 + }, 469 + @@ -7197,6 +7255,7 @@ 470 + "node_modules/is-callable": { 471 + "version": "1.2.2", 472 + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", 473 + + "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", 474 + "dev": true, 475 + "license": "MIT", 476 + "engines": { 477 + @@ -7446,6 +7505,7 @@ 478 + "node_modules/is-string": { 479 + "version": "1.0.5", 480 + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", 481 + + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", 482 + "dev": true, 483 + "license": "MIT", 484 + "engines": { 485 + @@ -7458,6 +7518,7 @@ 486 + "node_modules/is-symbol": { 487 + "version": "1.0.3", 488 + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", 489 + + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", 490 + "dev": true, 491 + "license": "MIT", 492 + "dependencies": { 493 + @@ -7539,6 +7600,7 @@ 494 + "node_modules/isexe": { 495 + "version": "2.0.0", 496 + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 497 + + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 498 + "dev": true, 499 + "license": "ISC" 500 + }, 501 + @@ -7720,6 +7782,7 @@ 502 + "node_modules/jest-circus/node_modules/chalk": { 503 + "version": "4.1.2", 504 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 505 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 506 + "dev": true, 507 + "license": "MIT", 508 + "dependencies": { 509 + @@ -7770,6 +7833,7 @@ 510 + "node_modules/jest-cli/node_modules/chalk": { 511 + "version": "4.1.2", 512 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 513 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 514 + "dev": true, 515 + "license": "MIT", 516 + "dependencies": { 517 + @@ -7832,6 +7896,7 @@ 518 + "node_modules/jest-config/node_modules/chalk": { 519 + "version": "4.1.2", 520 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 521 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 522 + "dev": true, 523 + "license": "MIT", 524 + "dependencies": { 525 + @@ -7864,6 +7929,7 @@ 526 + "node_modules/jest-diff/node_modules/chalk": { 527 + "version": "4.1.2", 528 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 529 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 530 + "dev": true, 531 + "license": "MIT", 532 + "dependencies": { 533 + @@ -7910,6 +7976,7 @@ 534 + "node_modules/jest-each/node_modules/chalk": { 535 + "version": "4.1.2", 536 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 537 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 538 + "dev": true, 539 + "license": "MIT", 540 + "dependencies": { 541 + @@ -8010,6 +8077,7 @@ 542 + "node_modules/jest-matcher-utils/node_modules/chalk": { 543 + "version": "4.1.2", 544 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 545 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 546 + "dev": true, 547 + "license": "MIT", 548 + "dependencies": { 549 + @@ -8047,6 +8115,7 @@ 550 + "node_modules/jest-message-util/node_modules/chalk": { 551 + "version": "4.1.2", 552 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 553 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 554 + "dev": true, 555 + "license": "MIT", 556 + "dependencies": { 557 + @@ -8141,6 +8210,7 @@ 558 + "node_modules/jest-resolve/node_modules/chalk": { 559 + "version": "4.1.2", 560 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 561 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 562 + "dev": true, 563 + "license": "MIT", 564 + "dependencies": { 565 + @@ -8190,6 +8260,7 @@ 566 + "node_modules/jest-runner/node_modules/chalk": { 567 + "version": "4.1.2", 568 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 569 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 570 + "dev": true, 571 + "license": "MIT", 572 + "dependencies": { 573 + @@ -8240,6 +8311,7 @@ 574 + "node_modules/jest-runtime/node_modules/chalk": { 575 + "version": "4.1.2", 576 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 577 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 578 + "dev": true, 579 + "license": "MIT", 580 + "dependencies": { 581 + @@ -8298,6 +8370,7 @@ 582 + "node_modules/jest-snapshot/node_modules/chalk": { 583 + "version": "4.1.2", 584 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 585 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 586 + "dev": true, 587 + "license": "MIT", 588 + "dependencies": { 589 + @@ -8348,6 +8421,7 @@ 590 + "node_modules/jest-util/node_modules/chalk": { 591 + "version": "4.1.2", 592 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 593 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 594 + "dev": true, 595 + "license": "MIT", 596 + "dependencies": { 597 + @@ -8382,6 +8456,7 @@ 598 + "node_modules/jest-validate/node_modules/chalk": { 599 + "version": "4.1.2", 600 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 601 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 602 + "dev": true, 603 + "license": "MIT", 604 + "dependencies": { 605 + @@ -8418,6 +8493,7 @@ 606 + "node_modules/jest-watcher/node_modules/chalk": { 607 + "version": "4.1.2", 608 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 609 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 610 + "dev": true, 611 + "license": "MIT", 612 + "dependencies": { 613 + @@ -8478,6 +8554,7 @@ 614 + "node_modules/js-tokens": { 615 + "version": "4.0.0", 616 + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 617 + + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 618 + "dev": true, 619 + "license": "MIT" 620 + }, 621 + @@ -8531,12 +8608,14 @@ 622 + "node_modules/json-schema-traverse": { 623 + "version": "0.4.1", 624 + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 625 + + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 626 + "dev": true, 627 + "license": "MIT" 628 + }, 629 + "node_modules/json-stable-stringify-without-jsonify": { 630 + "version": "1.0.1", 631 + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 632 + + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 633 + "dev": true, 634 + "license": "MIT" 635 + }, 636 + @@ -8569,6 +8648,7 @@ 637 + "node_modules/jsx-ast-utils": { 638 + "version": "3.1.0", 639 + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz", 640 + + "integrity": "sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==", 641 + "dev": true, 642 + "license": "MIT", 643 + "dependencies": { 644 + @@ -8660,6 +8740,7 @@ 645 + "node_modules/levn": { 646 + "version": "0.4.1", 647 + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 648 + + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 649 + "dev": true, 650 + "license": "MIT", 651 + "dependencies": { 652 + @@ -8745,6 +8826,7 @@ 653 + "node_modules/locate-path": { 654 + "version": "5.0.0", 655 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 656 + + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 657 + "dev": true, 658 + "license": "MIT", 659 + "dependencies": { 660 + @@ -8757,6 +8839,7 @@ 661 + "node_modules/lodash": { 662 + "version": "4.17.21", 663 + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 664 + + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 665 + "license": "MIT" 666 + }, 667 + "node_modules/lodash-es": { 668 + @@ -8775,6 +8858,7 @@ 669 + "node_modules/loose-envify": { 670 + "version": "1.4.0", 671 + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 672 + + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 673 + "dev": true, 674 + "license": "MIT", 675 + "dependencies": { 676 + @@ -8993,6 +9077,7 @@ 677 + "node_modules/natural-compare": { 678 + "version": "1.4.0", 679 + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 680 + + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 681 + "dev": true, 682 + "license": "MIT" 683 + }, 684 + @@ -9045,6 +9130,7 @@ 685 + "node_modules/object-assign": { 686 + "version": "4.1.1", 687 + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 688 + + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 689 + "license": "MIT", 690 + "engines": { 691 + "node": ">=0.10.0" 692 + @@ -9075,6 +9161,7 @@ 693 + "node_modules/object-keys": { 694 + "version": "1.1.1", 695 + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 696 + + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 697 + "dev": true, 698 + "license": "MIT", 699 + "engines": { 700 + @@ -9161,6 +9248,7 @@ 701 + "node_modules/once": { 702 + "version": "1.4.0", 703 + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 704 + + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 705 + "license": "ISC", 706 + "dependencies": { 707 + "wrappy": "1" 708 + @@ -9185,6 +9273,7 @@ 709 + "node_modules/optionator": { 710 + "version": "0.9.1", 711 + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 712 + + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 713 + "dev": true, 714 + "license": "MIT", 715 + "dependencies": { 716 + @@ -9218,6 +9307,7 @@ 717 + "node_modules/p-locate": { 718 + "version": "4.1.0", 719 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 720 + + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 721 + "dev": true, 722 + "license": "MIT", 723 + "dependencies": { 724 + @@ -9230,6 +9320,7 @@ 725 + "node_modules/p-locate/node_modules/p-limit": { 726 + "version": "2.3.0", 727 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 728 + + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 729 + "dev": true, 730 + "license": "MIT", 731 + "dependencies": { 732 + @@ -9245,6 +9336,7 @@ 733 + "node_modules/p-try": { 734 + "version": "2.2.0", 735 + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 736 + + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 737 + "dev": true, 738 + "license": "MIT", 739 + "engines": { 740 + @@ -9294,6 +9386,7 @@ 741 + "node_modules/parent-module": { 742 + "version": "1.0.1", 743 + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 744 + + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 745 + "dev": true, 746 + "license": "MIT", 747 + "dependencies": { 748 + @@ -9331,6 +9424,7 @@ 749 + "node_modules/path-exists": { 750 + "version": "4.0.0", 751 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 752 + + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 753 + "dev": true, 754 + "license": "MIT", 755 + "engines": { 756 + @@ -9340,6 +9434,7 @@ 757 + "node_modules/path-is-absolute": { 758 + "version": "1.0.1", 759 + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 760 + + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 761 + "license": "MIT", 762 + "engines": { 763 + "node": ">=0.10.0" 764 + @@ -9348,6 +9443,7 @@ 765 + "node_modules/path-key": { 766 + "version": "3.1.1", 767 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 768 + + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 769 + "dev": true, 770 + "license": "MIT", 771 + "engines": { 772 + @@ -9357,6 +9453,7 @@ 773 + "node_modules/path-parse": { 774 + "version": "1.0.7", 775 + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 776 + + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 777 + "license": "MIT" 778 + }, 779 + "node_modules/pathe": { 780 + @@ -9531,6 +9628,7 @@ 781 + "node_modules/pkg-dir": { 782 + "version": "4.2.0", 783 + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 784 + + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 785 + "dev": true, 786 + "license": "MIT", 787 + "dependencies": { 788 + @@ -9711,6 +9809,7 @@ 789 + "node_modules/prelude-ls": { 790 + "version": "1.2.1", 791 + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 792 + + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 793 + "dev": true, 794 + "license": "MIT", 795 + "engines": { 796 + @@ -9854,6 +9953,7 @@ 797 + "node_modules/punycode": { 798 + "version": "2.1.1", 799 + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 800 + + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 801 + "dev": true, 802 + "license": "MIT", 803 + "engines": { 804 + @@ -10090,6 +10190,7 @@ 805 + "node_modules/regexpp": { 806 + "version": "3.1.0", 807 + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", 808 + + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", 809 + "dev": true, 810 + "license": "MIT", 811 + "engines": { 812 + @@ -10152,6 +10253,7 @@ 813 + "node_modules/resolve-from": { 814 + "version": "4.0.0", 815 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 816 + + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 817 + "dev": true, 818 + "license": "MIT", 819 + "engines": { 820 + @@ -10181,6 +10283,7 @@ 821 + "node_modules/rimraf": { 822 + "version": "3.0.2", 823 + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 824 + + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 825 + "dev": true, 826 + "license": "ISC", 827 + "dependencies": { 828 + @@ -10275,6 +10378,7 @@ 829 + "node_modules/rw": { 830 + "version": "1.3.3", 831 + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", 832 + + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", 833 + "license": "BSD-3-Clause" 834 + }, 835 + "node_modules/safe-array-concat": { 836 + @@ -10299,6 +10403,7 @@ 837 + "node_modules/safe-buffer": { 838 + "version": "5.1.2", 839 + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 840 + + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 841 + "dev": true, 842 + "license": "MIT" 843 + }, 844 + @@ -10332,6 +10437,7 @@ 845 + "node_modules/safer-buffer": { 846 + "version": "2.1.2", 847 + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 848 + + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 849 + "license": "MIT" 850 + }, 851 + "node_modules/semver": { 852 + @@ -10381,6 +10487,7 @@ 853 + "node_modules/shebang-command": { 854 + "version": "2.0.0", 855 + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 856 + + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 857 + "dev": true, 858 + "license": "MIT", 859 + "dependencies": { 860 + @@ -10393,6 +10500,7 @@ 861 + "node_modules/shebang-regex": { 862 + "version": "3.0.0", 863 + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 864 + + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 865 + "dev": true, 866 + "license": "MIT", 867 + "engines": { 868 + @@ -10823,6 +10931,7 @@ 869 + "node_modules/strip-bom": { 870 + "version": "3.0.0", 871 + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 872 + + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 873 + "dev": true, 874 + "license": "MIT", 875 + "engines": { 876 + @@ -10842,6 +10951,7 @@ 877 + "node_modules/strip-json-comments": { 878 + "version": "3.1.1", 879 + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 880 + + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 881 + "dev": true, 882 + "license": "MIT", 883 + "engines": { 884 + @@ -11053,6 +11163,7 @@ 885 + "node_modules/text-table": { 886 + "version": "0.2.0", 887 + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 888 + + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 889 + "dev": true, 890 + "license": "MIT" 891 + }, 892 + @@ -11172,6 +11283,7 @@ 893 + "node_modules/type-check": { 894 + "version": "0.4.0", 895 + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 896 + + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 897 + "dev": true, 898 + "license": "MIT", 899 + "dependencies": { 900 + @@ -11355,6 +11467,7 @@ 901 + "node_modules/uri-js": { 902 + "version": "4.2.2", 903 + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", 904 + + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", 905 + "dev": true, 906 + "license": "BSD-2-Clause", 907 + "dependencies": { 908 + @@ -11371,6 +11484,7 @@ 909 + "node_modules/util-deprecate": { 910 + "version": "1.0.2", 911 + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 912 + + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 913 + "license": "MIT" 914 + }, 915 + "node_modules/uuid": { 916 + @@ -11643,6 +11757,7 @@ 917 + "node_modules/which": { 918 + "version": "2.0.2", 919 + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 920 + + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 921 + "dev": true, 922 + "license": "ISC", 923 + "dependencies": { 924 + @@ -11785,6 +11900,7 @@ 925 + "node_modules/wrappy": { 926 + "version": "1.0.2", 927 + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 928 + + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 929 + "license": "ISC" 930 + }, 931 + "node_modules/write-file-atomic": {
+16 -55
pkgs/by-name/me/mermaid-cli/package.nix
··· 1 1 { 2 + buildNpmPackage, 2 3 lib, 3 4 stdenv, 4 5 fetchFromGitHub, 5 - fetchYarnDeps, 6 - makeWrapper, 7 - nodejs, 8 - fixup-yarn-lock, 9 - yarn, 10 6 chromium, 11 7 }: 12 - 13 - stdenv.mkDerivation rec { 8 + let 9 + version = "11.4.2"; 10 + in 11 + buildNpmPackage { 14 12 pname = "mermaid-cli"; 15 - version = "10.9.0"; 13 + version = version; 16 14 17 15 src = fetchFromGitHub { 18 16 owner = "mermaid-js"; 19 17 repo = "mermaid-cli"; 20 18 rev = version; 21 - hash = "sha256-o9QaJsJlfqsAguYGHAdf8aqZWbOgDJs+0KVQAVtRlA0="; 22 - }; 23 - 24 - offlineCache = fetchYarnDeps { 25 - yarnLock = "${src}/yarn.lock"; 26 - hash = "sha256-SfRzn5FxO+Ls+ne7ay3tySNLr+awEJ9fo/nwcAY11qA="; 19 + hash = "sha256-hj6pnucms6OcLuIebnlHMQj2K8zMbyuWzvVkZh029Sw="; 27 20 }; 28 21 29 - nativeBuildInputs = [ 30 - makeWrapper 31 - nodejs 32 - fixup-yarn-lock 33 - yarn 22 + patches = [ 23 + ./integrity.patch # https://github.com/mermaid-js/mermaid-cli/issues/828 24 + ./remove-puppeteer-from-dev-deps.patch # https://github.com/mermaid-js/mermaid-cli/issues/830 34 25 ]; 35 26 36 - configurePhase = '' 37 - runHook preConfigure 27 + npmDepsHash = "sha256-lrj3lSCfqUfUFvtnJ/ELNUFE9kNTC4apnGrYxYmkUtE="; 38 28 39 - export HOME=$(mktemp -d) 40 - yarn config --offline set yarn-offline-mirror "$offlineCache" 41 - fixup-yarn-lock yarn.lock 42 - yarn --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive install 43 - patchShebangs node_modules 29 + env = { 30 + PUPPETEER_SKIP_DOWNLOAD = true; 31 + }; 44 32 45 - runHook postConfigure 46 - ''; 47 - 48 - buildPhase = '' 49 - runHook preBuild 33 + npmBuildScript = "prepare"; 50 34 51 - yarn --offline prepare 52 - 53 - runHook postBuild 54 - ''; 55 - 56 - installPhase = 57 - '' 58 - runHook preInstall 59 - 60 - yarn --offline --production install 61 - 62 - mkdir -p "$out/lib/node_modules/@mermaid-js/mermaid-cli" 63 - cp -r . "$out/lib/node_modules/@mermaid-js/mermaid-cli" 64 - 65 - makeWrapper "${nodejs}/bin/node" "$out/bin/mmdc" \ 66 - '' 67 - + lib.optionalString (lib.meta.availableOn stdenv.hostPlatform chromium) '' 68 - --set PUPPETEER_EXECUTABLE_PATH '${lib.getExe chromium}' \ 69 - '' 70 - + '' 71 - --add-flags "$out/lib/node_modules/@mermaid-js/mermaid-cli/src/cli.js" 72 - 73 - runHook postInstall 74 - ''; 35 + makeWrapperArgs = lib.lists.optional (lib.meta.availableOn stdenv.hostPlatform chromium) "--set PUPPETEER_EXECUTABLE_PATH '${lib.getExe chromium}'"; 75 36 76 37 meta = { 77 38 description = "Generation of diagrams from text in a similar manner as markdown";
+16
pkgs/by-name/me/mermaid-cli/remove-puppeteer-from-dev-deps.patch
··· 1 + Subject: [PATCH] remove pupperteer from dev dependencies 2 + --- 3 + Index: package.json 4 + <+>UTF-8 5 + =================================================================== 6 + diff --git a/package.json b/package.json 7 + --- a/package.json (revision fa593dc39619f44b57a922927a66346248f31d7d) 8 + +++ b/package.json (date 1736721981718) 9 + @@ -45,7 +45,6 @@ 10 + "@tsconfig/node18": "^18.2.4", 11 + "@types/node": "~18.19.31", 12 + "jest": "^29.0.1", 13 + - "puppeteer": "^23.1.1", 14 + "standard": "^17.0.0", 15 + "typescript": "^5.0.1-rc", 16 + "vite": "^6.0.2",
+3 -3
pkgs/by-name/mi/mise/package.nix
··· 23 23 24 24 rustPlatform.buildRustPackage rec { 25 25 pname = "mise"; 26 - version = "2025.2.1"; 26 + version = "2025.2.7"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "jdx"; 30 30 repo = "mise"; 31 31 rev = "v${version}"; 32 - hash = "sha256-SqFug6Z1VAbERwiho73YDSzVPtzl7fBsE8++NfGkeW4="; 32 + hash = "sha256-PvZCKi6fvEc0J5SzDazMkf2SS3+r0DTXM6NWCPi95J0="; 33 33 }; 34 34 35 35 useFetchCargoVendor = true; 36 - cargoHash = "sha256-kz6WJyK+eb1I+ZjgL94je0HYNHWfcUvnxD7UThlP7wU="; 36 + cargoHash = "sha256-qVs1PogSDfMCVgfvgqLltqiGl7yvO+d4Ly0oeQpSftw="; 37 37 38 38 nativeBuildInputs = [ 39 39 installShellFiles
+2 -2
pkgs/by-name/op/openlinkhub/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "openlinkhub"; 12 - version = "0.5.0"; 12 + version = "0.5.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "jurkovic-nikola"; 16 16 repo = "OpenLinkHub"; 17 17 tag = version; 18 - hash = "sha256-2dsdswtpKXHEiPOdGS1gIyx8r3xx3Bjr2i4WyX4hmVY="; 18 + hash = "sha256-toCujsX+hR6JYxOc4UFnaN3A6p3IzyghcTtjbYe3GiY="; 19 19 }; 20 20 21 21 proxyVendor = true;
+9 -8
pkgs/by-name/pa/pantheon-tweaks/package.nix
··· 9 9 sassc, 10 10 vala, 11 11 wrapGAppsHook4, 12 + gnome-settings-daemon, 12 13 gtk4, 13 14 libgee, 14 15 pango, ··· 17 18 18 19 stdenv.mkDerivation rec { 19 20 pname = "pantheon-tweaks"; 20 - version = "2.1.0"; 21 + version = "2.2.0"; 21 22 22 23 src = fetchFromGitHub { 23 24 owner = "pantheon-tweaks"; 24 25 repo = pname; 25 26 rev = version; 26 - hash = "sha256-NrDBr7Wtfxf9UA/sbi9ilgrlxK6QGQAopuz3TV2ITjs="; 27 + hash = "sha256-5RsNVUQ8FJmtdI7Z2le+qt9b13zHlQxiyTaUY15wSkw="; 27 28 }; 28 29 29 30 nativeBuildInputs = [ ··· 37 38 38 39 buildInputs = 39 40 [ 41 + gnome-settings-daemon # org.gnome.settings-daemon.plugins.xsettings 40 42 gtk4 41 43 libgee 42 44 pango 43 45 ] 44 46 ++ (with pantheon; [ 45 - elementary-files # settings schemas 46 - elementary-terminal # settings schemas 47 + elementary-files # io.elementary.files.preferences 48 + elementary-terminal # io.elementary.terminal.settings 47 49 granite7 48 50 switchboard 49 51 ]); 50 52 51 - postPatch = '' 52 - substituteInPlace src/Settings/ThemeSettings.vala \ 53 - --replace-fail "/usr/share/" "/run/current-system/sw/share/" 54 - ''; 53 + mesonFlags = [ 54 + "-Dsystheme_rootdir=/run/current-system/sw/share" 55 + ]; 55 56 56 57 passthru = { 57 58 updateScript = nix-update-script { };
+3 -8
pkgs/by-name/re/resilio-sync/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "resilio-sync"; 11 - version = "2.8.1.1390"; 11 + version = "3.0.2.1058"; 12 12 13 13 src = 14 14 { 15 15 x86_64-linux = fetchurl { 16 16 url = "https://download-cdn.resilio.com/${version}/linux/x64/0/resilio-sync_x64.tar.gz"; 17 - sha256 = "sha256-XrfE2frDxOS32MzO7gpJEsMd0WY+b7TS0h/H94M7Py4="; 18 - }; 19 - 20 - i686-linux = fetchurl { 21 - url = "https://download-cdn.resilio.com/${version}/linux/i386/0/resilio-sync_i386.tar.gz"; 22 - sha256 = "sha256-tWwb9DHLlXeyimzyo/yxVKqlkP3jlAxT2Yzs6h2bIgs="; 17 + hash = "sha256-jdkxSN/JscL2hxIWuShNKyUk28d453LPDM/+FtzquGQ="; 23 18 }; 24 19 25 20 aarch64-linux = fetchurl { 26 21 url = "https://download-cdn.resilio.com/${version}/linux/arm64/0/resilio-sync_arm64.tar.gz"; 27 - sha256 = "sha256-b859DqxTfnBMMeiwXlGKTQ+Mpmr2Rpg24l/GNkxSWbA="; 22 + hash = "sha256-iczg1jEy+49QczKxc0/UZJ8LPaCHsXKmSrudVb3RWZ8="; 28 23 }; 29 24 } 30 25 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
+2 -22
pkgs/by-name/ry/ryubing/deps.json
··· 1 1 [ 2 2 { 3 3 "pname": "Avalonia", 4 - "version": "11.0.0", 5 - "hash": "sha256-7QE0MtD1QDiG3gRx5xW33E33BXyEtASQSw+Wi3Lmy3E=" 6 - }, 7 - { 8 - "pname": "Avalonia", 9 - "version": "11.0.10", 10 - "hash": "sha256-FuGl5admJ9AeRNrg/faGfqx8pwxGxdkmbnth9Jxhelc=" 11 - }, 12 - { 13 - "pname": "Avalonia", 14 4 "version": "11.0.13", 15 5 "hash": "sha256-D0KHUUC3FxhOxeVowzVHRtRYfoV1G8Xk55LMF4Rw8w4=" 16 - }, 17 - { 18 - "pname": "Avalonia", 19 - "version": "11.0.4", 20 - "hash": "sha256-YEqAwBRAhvhN5eT8GqOA8XsSwEF4ccwTMBWxBlIHLUo=" 21 6 }, 22 7 { 23 8 "pname": "Avalonia.Angle.Windows.Natives", ··· 43 28 "pname": "Avalonia.Controls.DataGrid", 44 29 "version": "11.0.13", 45 30 "hash": "sha256-Mi6Z55KbQuU7RSiWkMjFzktZxuyuQyXnDw5B1ZS0bHc=" 46 - }, 47 - { 48 - "pname": "Avalonia.Controls.DataGrid", 49 - "version": "11.0.4", 50 - "hash": "sha256-wlig5frBAO1DPH9GX0h8MZQq3U4F4K16EliC6N0NbII=" 51 31 }, 52 32 { 53 33 "pname": "Avalonia.Controls.ItemsRepeater", ··· 171 151 }, 172 152 { 173 153 "pname": "Gommon", 174 - "version": "2.7.0.2", 175 - "hash": "sha256-gFDtIC6VJ8aaxolppXPG8pBTe9ApBCDy2DFm8Qrxa5w=" 154 + "version": "2.7.1", 155 + "hash": "sha256-tD1gdk4umsl7r5jFd2Wyx3zeRE9BX1FQfZMYoCcpmwY=" 176 156 }, 177 157 { 178 158 "pname": "HarfBuzzSharp",
+2 -2
pkgs/by-name/ry/ryubing/package.nix
··· 30 30 31 31 buildDotnetModule rec { 32 32 pname = "ryubing"; 33 - version = "1.2.81"; 33 + version = "1.2.82"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "Ryubing"; 37 37 repo = "Ryujinx"; 38 38 rev = version; 39 - hash = "sha256-P/lTXhdSXhoseBYC5NcSZDCQCUL9z2yt5LuGj8V0BdU="; 39 + hash = "sha256-pLzmfrdjpn2DTg2AJF1yyTJJPxHScQTX+yq9MbuzMHk="; 40 40 }; 41 41 42 42 nativeBuildInputs = lib.optional stdenv.isDarwin [
+3 -3
pkgs/by-name/ti/tinymist/package.nix
··· 19 19 pname = "tinymist"; 20 20 # Please update the corresponding vscode extension when updating 21 21 # this derivation. 22 - version = "0.12.20"; 22 + version = "0.12.22"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "Myriad-Dreamin"; 26 26 repo = "tinymist"; 27 27 tag = "v${version}"; 28 - hash = "sha256-MFAbG0K71LbMAZKZ0Bo9ms6UTPNetORmHlBwYAusUtE="; 28 + hash = "sha256-fhM9IF+1iHfDcL+aI/31sqkyO5UmN+AwUUkKwyw+hWw="; 29 29 }; 30 30 31 31 patches = [ ··· 41 41 ]; 42 42 43 43 useFetchCargoVendor = true; 44 - cargoHash = "sha256-mk6JQEDgY8ERKq7dy+HlU7go4ImeJpGONOBSjjHdD4g="; 44 + cargoHash = "sha256-3nmGg0dF9GesbmJUQyvSHTg0KAj3FeyCxdK03q1BctM="; 45 45 46 46 nativeBuildInputs = [ 47 47 installShellFiles
+4 -2
pkgs/by-name/wi/wivrn/package.nix
··· 52 52 nix-update-script, 53 53 nlohmann_json, 54 54 onnxruntime, 55 + opencomposite, 55 56 opencv4, 56 57 openhmd, 57 58 openvr, ··· 76 77 }: 77 78 stdenv.mkDerivation (finalAttrs: { 78 79 pname = "wivrn"; 79 - version = "0.23"; 80 + version = "0.23.2"; 80 81 81 82 src = fetchFromGitHub { 82 83 owner = "wivrn"; 83 84 repo = "wivrn"; 84 85 rev = "v${finalAttrs.version}"; 85 - hash = "sha256-Ae25yLlkZ958gXr8nyWPv27leVLF5enljXAkCx+fDSk="; 86 + hash = "sha256-KpsS0XssSnE2Fj5rrXq1h+yNHhF7BzfPxwRUhZUZEaw="; 86 87 }; 87 88 88 89 monado = applyPatches { ··· 213 214 (lib.cmakeBool "WIVRN_CHECK_CAPSYSNICE" false) 214 215 (lib.cmakeBool "FETCHCONTENT_FULLY_DISCONNECTED" true) 215 216 (lib.cmakeFeature "WIVRN_OPENXR_MANIFEST_TYPE" "absolute") 217 + (lib.cmakeFeature "OPENCOMPOSITE_SEARCH_PATH" "${opencomposite}") 216 218 (lib.cmakeFeature "GIT_DESC" "v${finalAttrs.version}") 217 219 (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_MONADO" "${finalAttrs.monado}") 218 220 ]
-4924
pkgs/by-name/wl/wlx-overlay-s/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.28" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "79faae4620f45232f599d9bc7b290f88247a0834162c4495ab2f02d60004adfb" 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 = "addr2line" 23 - version = "0.22.0" 24 - source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 26 - dependencies = [ 27 - "gimli", 28 - ] 29 - 30 - [[package]] 31 - name = "adler" 32 - version = "1.0.2" 33 - source = "registry+https://github.com/rust-lang/crates.io-index" 34 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 35 - 36 - [[package]] 37 - name = "ahash" 38 - version = "0.8.11" 39 - source = "registry+https://github.com/rust-lang/crates.io-index" 40 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 41 - dependencies = [ 42 - "cfg-if", 43 - "getrandom", 44 - "once_cell", 45 - "version_check", 46 - "zerocopy 0.7.35", 47 - ] 48 - 49 - [[package]] 50 - name = "aho-corasick" 51 - version = "1.1.3" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 54 - dependencies = [ 55 - "memchr", 56 - ] 57 - 58 - [[package]] 59 - name = "alsa" 60 - version = "0.9.0" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "37fe60779335388a88c01ac6c3be40304d1e349de3ada3b15f7808bb90fa9dce" 63 - dependencies = [ 64 - "alsa-sys", 65 - "bitflags 2.6.0", 66 - "libc", 67 - ] 68 - 69 - [[package]] 70 - name = "alsa-sys" 71 - version = "0.3.1" 72 - source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" 74 - dependencies = [ 75 - "libc", 76 - "pkg-config", 77 - ] 78 - 79 - [[package]] 80 - name = "android-activity" 81 - version = "0.6.0" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046" 84 - dependencies = [ 85 - "android-properties", 86 - "bitflags 2.6.0", 87 - "cc", 88 - "cesu8", 89 - "jni", 90 - "jni-sys", 91 - "libc", 92 - "log", 93 - "ndk 0.9.0", 94 - "ndk-context", 95 - "ndk-sys 0.6.0+11769913", 96 - "num_enum", 97 - "thiserror", 98 - ] 99 - 100 - [[package]] 101 - name = "android-properties" 102 - version = "0.2.2" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" 105 - 106 - [[package]] 107 - name = "android-tzdata" 108 - version = "0.1.1" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 111 - 112 - [[package]] 113 - name = "android_system_properties" 114 - version = "0.1.5" 115 - source = "registry+https://github.com/rust-lang/crates.io-index" 116 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 117 - dependencies = [ 118 - "libc", 119 - ] 120 - 121 - [[package]] 122 - name = "annotate-snippets" 123 - version = "0.9.2" 124 - source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "ccaf7e9dfbb6ab22c82e473cd1a8a7bd313c19a5b7e40970f3d89ef5a5c9e81e" 126 - dependencies = [ 127 - "unicode-width", 128 - "yansi-term", 129 - ] 130 - 131 - [[package]] 132 - name = "anstream" 133 - version = "0.6.15" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 136 - dependencies = [ 137 - "anstyle", 138 - "anstyle-parse", 139 - "anstyle-query", 140 - "anstyle-wincon", 141 - "colorchoice", 142 - "is_terminal_polyfill", 143 - "utf8parse", 144 - ] 145 - 146 - [[package]] 147 - name = "anstyle" 148 - version = "1.0.8" 149 - source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 151 - 152 - [[package]] 153 - name = "anstyle-parse" 154 - version = "0.2.5" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 157 - dependencies = [ 158 - "utf8parse", 159 - ] 160 - 161 - [[package]] 162 - name = "anstyle-query" 163 - version = "1.1.1" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 166 - dependencies = [ 167 - "windows-sys 0.52.0", 168 - ] 169 - 170 - [[package]] 171 - name = "anstyle-wincon" 172 - version = "3.0.4" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 175 - dependencies = [ 176 - "anstyle", 177 - "windows-sys 0.52.0", 178 - ] 179 - 180 - [[package]] 181 - name = "anyhow" 182 - version = "1.0.86" 183 - source = "registry+https://github.com/rust-lang/crates.io-index" 184 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 185 - 186 - [[package]] 187 - name = "approx" 188 - version = "0.5.1" 189 - source = "registry+https://github.com/rust-lang/crates.io-index" 190 - checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" 191 - dependencies = [ 192 - "num-traits", 193 - ] 194 - 195 - [[package]] 196 - name = "aquamarine" 197 - version = "0.1.12" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "a941c39708478e8eea39243b5983f1c42d2717b3620ee91f4a52115fd02ac43f" 200 - dependencies = [ 201 - "itertools 0.9.0", 202 - "proc-macro-error", 203 - "proc-macro2", 204 - "quote", 205 - "syn 1.0.109", 206 - ] 207 - 208 - [[package]] 209 - name = "arrayref" 210 - version = "0.3.8" 211 - source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a" 213 - 214 - [[package]] 215 - name = "arrayvec" 216 - version = "0.7.4" 217 - source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 219 - 220 - [[package]] 221 - name = "as-raw-xcb-connection" 222 - version = "1.0.1" 223 - source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" 225 - 226 - [[package]] 227 - name = "ash" 228 - version = "0.37.3+1.3.251" 229 - source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a" 231 - dependencies = [ 232 - "libloading 0.7.4", 233 - ] 234 - 235 - [[package]] 236 - name = "ashpd" 237 - version = "0.8.1" 238 - source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "dd884d7c72877a94102c3715f3b1cd09ff4fac28221add3e57cfbe25c236d093" 240 - dependencies = [ 241 - "async-fs", 242 - "async-net", 243 - "enumflags2", 244 - "futures-channel", 245 - "futures-util", 246 - "rand", 247 - "serde", 248 - "serde_repr", 249 - "url", 250 - "zbus", 251 - ] 252 - 253 - [[package]] 254 - name = "async-broadcast" 255 - version = "0.7.1" 256 - source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" 258 - dependencies = [ 259 - "event-listener", 260 - "event-listener-strategy", 261 - "futures-core", 262 - "pin-project-lite", 263 - ] 264 - 265 - [[package]] 266 - name = "async-channel" 267 - version = "2.3.1" 268 - source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 270 - dependencies = [ 271 - "concurrent-queue", 272 - "event-listener-strategy", 273 - "futures-core", 274 - "pin-project-lite", 275 - ] 276 - 277 - [[package]] 278 - name = "async-executor" 279 - version = "1.13.0" 280 - source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" 282 - dependencies = [ 283 - "async-task", 284 - "concurrent-queue", 285 - "fastrand", 286 - "futures-lite", 287 - "slab", 288 - ] 289 - 290 - [[package]] 291 - name = "async-fs" 292 - version = "2.1.2" 293 - source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" 295 - dependencies = [ 296 - "async-lock", 297 - "blocking", 298 - "futures-lite", 299 - ] 300 - 301 - [[package]] 302 - name = "async-io" 303 - version = "2.3.3" 304 - source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" 306 - dependencies = [ 307 - "async-lock", 308 - "cfg-if", 309 - "concurrent-queue", 310 - "futures-io", 311 - "futures-lite", 312 - "parking", 313 - "polling", 314 - "rustix", 315 - "slab", 316 - "tracing", 317 - "windows-sys 0.52.0", 318 - ] 319 - 320 - [[package]] 321 - name = "async-lock" 322 - version = "3.4.0" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 325 - dependencies = [ 326 - "event-listener", 327 - "event-listener-strategy", 328 - "pin-project-lite", 329 - ] 330 - 331 - [[package]] 332 - name = "async-net" 333 - version = "2.0.0" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" 336 - dependencies = [ 337 - "async-io", 338 - "blocking", 339 - "futures-lite", 340 - ] 341 - 342 - [[package]] 343 - name = "async-process" 344 - version = "2.2.3" 345 - source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "f7eda79bbd84e29c2b308d1dc099d7de8dcc7035e48f4bf5dc4a531a44ff5e2a" 347 - dependencies = [ 348 - "async-channel", 349 - "async-io", 350 - "async-lock", 351 - "async-signal", 352 - "async-task", 353 - "blocking", 354 - "cfg-if", 355 - "event-listener", 356 - "futures-lite", 357 - "rustix", 358 - "tracing", 359 - "windows-sys 0.52.0", 360 - ] 361 - 362 - [[package]] 363 - name = "async-recursion" 364 - version = "1.1.1" 365 - source = "registry+https://github.com/rust-lang/crates.io-index" 366 - checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 367 - dependencies = [ 368 - "proc-macro2", 369 - "quote", 370 - "syn 2.0.72", 371 - ] 372 - 373 - [[package]] 374 - name = "async-signal" 375 - version = "0.2.9" 376 - source = "registry+https://github.com/rust-lang/crates.io-index" 377 - checksum = "dfb3634b73397aa844481f814fad23bbf07fdb0eabec10f2eb95e58944b1ec32" 378 - dependencies = [ 379 - "async-io", 380 - "async-lock", 381 - "atomic-waker", 382 - "cfg-if", 383 - "futures-core", 384 - "futures-io", 385 - "rustix", 386 - "signal-hook-registry", 387 - "slab", 388 - "windows-sys 0.52.0", 389 - ] 390 - 391 - [[package]] 392 - name = "async-task" 393 - version = "4.7.1" 394 - source = "registry+https://github.com/rust-lang/crates.io-index" 395 - checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 396 - 397 - [[package]] 398 - name = "async-trait" 399 - version = "0.1.81" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 402 - dependencies = [ 403 - "proc-macro2", 404 - "quote", 405 - "syn 2.0.72", 406 - ] 407 - 408 - [[package]] 409 - name = "atomic-waker" 410 - version = "1.1.2" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 413 - 414 - [[package]] 415 - name = "atty" 416 - version = "0.2.14" 417 - source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 419 - dependencies = [ 420 - "hermit-abi 0.1.19", 421 - "libc", 422 - "winapi", 423 - ] 424 - 425 - [[package]] 426 - name = "autocfg" 427 - version = "1.3.0" 428 - source = "registry+https://github.com/rust-lang/crates.io-index" 429 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 430 - 431 - [[package]] 432 - name = "autocxx" 433 - version = "0.27.0" 434 - source = "registry+https://github.com/rust-lang/crates.io-index" 435 - checksum = "54119c5e38d82c13a66cf6c6e6d089ff61c2a8f956b61f50485fd636e8f64656" 436 - dependencies = [ 437 - "aquamarine", 438 - "autocxx-macro", 439 - "cxx", 440 - "moveit", 441 - ] 442 - 443 - [[package]] 444 - name = "autocxx-bindgen" 445 - version = "0.69.5" 446 - source = "registry+https://github.com/rust-lang/crates.io-index" 447 - checksum = "d81238f7571a7fe1743bebbfaf218ad9aeceaec0f1f25c74b2d3f42b16fa17ea" 448 - dependencies = [ 449 - "bitflags 2.6.0", 450 - "cexpr", 451 - "clang-sys", 452 - "itertools 0.13.0", 453 - "log", 454 - "proc-macro2", 455 - "quote", 456 - "regex", 457 - "rustc-hash", 458 - "shlex", 459 - "syn 2.0.72", 460 - ] 461 - 462 - [[package]] 463 - name = "autocxx-build" 464 - version = "0.27.0" 465 - source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "903e016de6be8ef8eb1bdc71b0f7988519c057281a762f9ecb57e0d8a145e03c" 467 - dependencies = [ 468 - "autocxx-engine", 469 - "env_logger", 470 - "indexmap 1.9.3", 471 - "syn 2.0.72", 472 - ] 473 - 474 - [[package]] 475 - name = "autocxx-engine" 476 - version = "0.27.0" 477 - source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "6a25218b648277c080a939f40ccd99bdacdd6789aa44f8135d48d363acc15191" 479 - dependencies = [ 480 - "aquamarine", 481 - "autocxx-bindgen", 482 - "autocxx-parser", 483 - "cc", 484 - "cxx-gen", 485 - "indexmap 1.9.3", 486 - "indoc", 487 - "itertools 0.10.5", 488 - "log", 489 - "miette", 490 - "once_cell", 491 - "prettyplease", 492 - "proc-macro2", 493 - "quote", 494 - "regex", 495 - "rustversion", 496 - "serde_json", 497 - "syn 2.0.72", 498 - "tempfile", 499 - "thiserror", 500 - "version_check", 501 - ] 502 - 503 - [[package]] 504 - name = "autocxx-macro" 505 - version = "0.27.0" 506 - source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "3fe757787d219845e5d521d1d98d4f3f296b52f586e4eaedbc84ee813f976e0e" 508 - dependencies = [ 509 - "autocxx-parser", 510 - "proc-macro-error", 511 - "proc-macro2", 512 - "quote", 513 - "syn 2.0.72", 514 - ] 515 - 516 - [[package]] 517 - name = "autocxx-parser" 518 - version = "0.27.0" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "4512e25df8158477d071ee789768c31891095e77b1b767c7bcdb3b48513d8e6c" 521 - dependencies = [ 522 - "indexmap 1.9.3", 523 - "itertools 0.10.5", 524 - "log", 525 - "once_cell", 526 - "proc-macro2", 527 - "quote", 528 - "serde", 529 - "serde_json", 530 - "syn 2.0.72", 531 - "thiserror", 532 - ] 533 - 534 - [[package]] 535 - name = "backtrace" 536 - version = "0.3.73" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 539 - dependencies = [ 540 - "addr2line", 541 - "cc", 542 - "cfg-if", 543 - "libc", 544 - "miniz_oxide", 545 - "object", 546 - "rustc-demangle", 547 - ] 548 - 549 - [[package]] 550 - name = "base64" 551 - version = "0.21.7" 552 - source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 554 - 555 - [[package]] 556 - name = "bcdec_rs" 557 - version = "0.1.2" 558 - source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "c9934c2b68e46448d814db20e34a840ef9b4e7b3b7c8b1da91161481230f6350" 560 - 561 - [[package]] 562 - name = "bindgen" 563 - version = "0.69.4" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 566 - dependencies = [ 567 - "annotate-snippets", 568 - "bitflags 2.6.0", 569 - "cexpr", 570 - "clang-sys", 571 - "itertools 0.12.1", 572 - "lazy_static", 573 - "lazycell", 574 - "log", 575 - "prettyplease", 576 - "proc-macro2", 577 - "quote", 578 - "regex", 579 - "rustc-hash", 580 - "shlex", 581 - "syn 2.0.72", 582 - "which", 583 - ] 584 - 585 - [[package]] 586 - name = "bitflags" 587 - version = "1.3.2" 588 - source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 590 - 591 - [[package]] 592 - name = "bitflags" 593 - version = "2.6.0" 594 - source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 596 - dependencies = [ 597 - "serde", 598 - ] 599 - 600 - [[package]] 601 - name = "block-buffer" 602 - version = "0.10.4" 603 - source = "registry+https://github.com/rust-lang/crates.io-index" 604 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 605 - dependencies = [ 606 - "generic-array", 607 - ] 608 - 609 - [[package]] 610 - name = "block2" 611 - version = "0.5.1" 612 - source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 614 - dependencies = [ 615 - "objc2", 616 - ] 617 - 618 - [[package]] 619 - name = "blocking" 620 - version = "1.6.1" 621 - source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 623 - dependencies = [ 624 - "async-channel", 625 - "async-task", 626 - "futures-io", 627 - "futures-lite", 628 - "piper", 629 - ] 630 - 631 - [[package]] 632 - name = "bumpalo" 633 - version = "3.16.0" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 636 - 637 - [[package]] 638 - name = "bytemuck" 639 - version = "1.16.3" 640 - source = "registry+https://github.com/rust-lang/crates.io-index" 641 - checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" 642 - dependencies = [ 643 - "bytemuck_derive", 644 - ] 645 - 646 - [[package]] 647 - name = "bytemuck_derive" 648 - version = "1.7.0" 649 - source = "registry+https://github.com/rust-lang/crates.io-index" 650 - checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b" 651 - dependencies = [ 652 - "proc-macro2", 653 - "quote", 654 - "syn 2.0.72", 655 - ] 656 - 657 - [[package]] 658 - name = "byteorder" 659 - version = "1.5.0" 660 - source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 662 - 663 - [[package]] 664 - name = "bytes" 665 - version = "1.7.1" 666 - source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" 668 - 669 - [[package]] 670 - name = "calloop" 671 - version = "0.13.0" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" 674 - dependencies = [ 675 - "bitflags 2.6.0", 676 - "log", 677 - "polling", 678 - "rustix", 679 - "slab", 680 - "thiserror", 681 - ] 682 - 683 - [[package]] 684 - name = "calloop-wayland-source" 685 - version = "0.3.0" 686 - source = "registry+https://github.com/rust-lang/crates.io-index" 687 - checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" 688 - dependencies = [ 689 - "calloop", 690 - "rustix", 691 - "wayland-backend", 692 - "wayland-client", 693 - ] 694 - 695 - [[package]] 696 - name = "cc" 697 - version = "1.1.7" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" 700 - dependencies = [ 701 - "jobserver", 702 - "libc", 703 - ] 704 - 705 - [[package]] 706 - name = "cesu8" 707 - version = "1.1.0" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 710 - 711 - [[package]] 712 - name = "cexpr" 713 - version = "0.6.0" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 716 - dependencies = [ 717 - "nom", 718 - ] 719 - 720 - [[package]] 721 - name = "cfg-expr" 722 - version = "0.15.8" 723 - source = "registry+https://github.com/rust-lang/crates.io-index" 724 - checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 725 - dependencies = [ 726 - "smallvec", 727 - "target-lexicon", 728 - ] 729 - 730 - [[package]] 731 - name = "cfg-if" 732 - version = "1.0.0" 733 - source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 735 - 736 - [[package]] 737 - name = "cfg_aliases" 738 - version = "0.1.1" 739 - source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 741 - 742 - [[package]] 743 - name = "cfg_aliases" 744 - version = "0.2.1" 745 - source = "registry+https://github.com/rust-lang/crates.io-index" 746 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 747 - 748 - [[package]] 749 - name = "chrono" 750 - version = "0.4.38" 751 - source = "registry+https://github.com/rust-lang/crates.io-index" 752 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 753 - dependencies = [ 754 - "android-tzdata", 755 - "iana-time-zone", 756 - "js-sys", 757 - "num-traits", 758 - "wasm-bindgen", 759 - "windows-targets 0.52.6", 760 - ] 761 - 762 - [[package]] 763 - name = "chrono-tz" 764 - version = "0.9.0" 765 - source = "registry+https://github.com/rust-lang/crates.io-index" 766 - checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" 767 - dependencies = [ 768 - "chrono", 769 - "chrono-tz-build", 770 - "phf", 771 - ] 772 - 773 - [[package]] 774 - name = "chrono-tz-build" 775 - version = "0.3.0" 776 - source = "registry+https://github.com/rust-lang/crates.io-index" 777 - checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1" 778 - dependencies = [ 779 - "parse-zoneinfo", 780 - "phf", 781 - "phf_codegen", 782 - ] 783 - 784 - [[package]] 785 - name = "clang-sys" 786 - version = "1.8.1" 787 - source = "registry+https://github.com/rust-lang/crates.io-index" 788 - checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 789 - dependencies = [ 790 - "glob", 791 - "libc", 792 - "libloading 0.8.5", 793 - ] 794 - 795 - [[package]] 796 - name = "clap" 797 - version = "4.5.13" 798 - source = "registry+https://github.com/rust-lang/crates.io-index" 799 - checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc" 800 - dependencies = [ 801 - "clap_builder", 802 - "clap_derive", 803 - ] 804 - 805 - [[package]] 806 - name = "clap_builder" 807 - version = "4.5.13" 808 - source = "registry+https://github.com/rust-lang/crates.io-index" 809 - checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99" 810 - dependencies = [ 811 - "anstream", 812 - "anstyle", 813 - "clap_lex", 814 - "strsim", 815 - ] 816 - 817 - [[package]] 818 - name = "clap_derive" 819 - version = "4.5.13" 820 - source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" 822 - dependencies = [ 823 - "heck 0.5.0", 824 - "proc-macro2", 825 - "quote", 826 - "syn 2.0.72", 827 - ] 828 - 829 - [[package]] 830 - name = "clap_lex" 831 - version = "0.7.2" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 834 - 835 - [[package]] 836 - name = "cmake" 837 - version = "0.1.50" 838 - source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 840 - dependencies = [ 841 - "cc", 842 - ] 843 - 844 - [[package]] 845 - name = "codespan-reporting" 846 - version = "0.11.1" 847 - source = "registry+https://github.com/rust-lang/crates.io-index" 848 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 849 - dependencies = [ 850 - "termcolor", 851 - "unicode-width", 852 - ] 853 - 854 - [[package]] 855 - name = "colorchoice" 856 - version = "1.0.2" 857 - source = "registry+https://github.com/rust-lang/crates.io-index" 858 - checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 859 - 860 - [[package]] 861 - name = "combine" 862 - version = "4.6.7" 863 - source = "registry+https://github.com/rust-lang/crates.io-index" 864 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 865 - dependencies = [ 866 - "bytes", 867 - "memchr", 868 - ] 869 - 870 - [[package]] 871 - name = "concurrent-queue" 872 - version = "2.5.0" 873 - source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 875 - dependencies = [ 876 - "crossbeam-utils", 877 - ] 878 - 879 - [[package]] 880 - name = "config" 881 - version = "0.14.0" 882 - source = "registry+https://github.com/rust-lang/crates.io-index" 883 - checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" 884 - dependencies = [ 885 - "async-trait", 886 - "convert_case 0.6.0", 887 - "json5", 888 - "lazy_static", 889 - "nom", 890 - "pathdiff", 891 - "ron", 892 - "rust-ini", 893 - "serde", 894 - "serde_json", 895 - "toml", 896 - "yaml-rust", 897 - ] 898 - 899 - [[package]] 900 - name = "const-cstr" 901 - version = "0.3.0" 902 - source = "registry+https://github.com/rust-lang/crates.io-index" 903 - checksum = "ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6" 904 - 905 - [[package]] 906 - name = "const-random" 907 - version = "0.1.18" 908 - source = "registry+https://github.com/rust-lang/crates.io-index" 909 - checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 910 - dependencies = [ 911 - "const-random-macro", 912 - ] 913 - 914 - [[package]] 915 - name = "const-random-macro" 916 - version = "0.1.16" 917 - source = "registry+https://github.com/rust-lang/crates.io-index" 918 - checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 919 - dependencies = [ 920 - "getrandom", 921 - "once_cell", 922 - "tiny-keccak", 923 - ] 924 - 925 - [[package]] 926 - name = "convert_case" 927 - version = "0.4.0" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 930 - 931 - [[package]] 932 - name = "convert_case" 933 - version = "0.6.0" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 936 - dependencies = [ 937 - "unicode-segmentation", 938 - ] 939 - 940 - [[package]] 941 - name = "cookie-factory" 942 - version = "0.3.3" 943 - source = "registry+https://github.com/rust-lang/crates.io-index" 944 - checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2" 945 - dependencies = [ 946 - "futures", 947 - ] 948 - 949 - [[package]] 950 - name = "core-foundation" 951 - version = "0.9.4" 952 - source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 954 - dependencies = [ 955 - "core-foundation-sys", 956 - "libc", 957 - ] 958 - 959 - [[package]] 960 - name = "core-foundation-sys" 961 - version = "0.8.6" 962 - source = "registry+https://github.com/rust-lang/crates.io-index" 963 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 964 - 965 - [[package]] 966 - name = "core-graphics" 967 - version = "0.23.2" 968 - source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 970 - dependencies = [ 971 - "bitflags 1.3.2", 972 - "core-foundation", 973 - "core-graphics-types", 974 - "foreign-types", 975 - "libc", 976 - ] 977 - 978 - [[package]] 979 - name = "core-graphics-types" 980 - version = "0.1.3" 981 - source = "registry+https://github.com/rust-lang/crates.io-index" 982 - checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 983 - dependencies = [ 984 - "bitflags 1.3.2", 985 - "core-foundation", 986 - "libc", 987 - ] 988 - 989 - [[package]] 990 - name = "coreaudio-rs" 991 - version = "0.11.3" 992 - source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace" 994 - dependencies = [ 995 - "bitflags 1.3.2", 996 - "core-foundation-sys", 997 - "coreaudio-sys", 998 - ] 999 - 1000 - [[package]] 1001 - name = "coreaudio-sys" 1002 - version = "0.2.15" 1003 - source = "registry+https://github.com/rust-lang/crates.io-index" 1004 - checksum = "7f01585027057ff5f0a5bf276174ae4c1594a2c5bde93d5f46a016d76270f5a9" 1005 - dependencies = [ 1006 - "bindgen", 1007 - ] 1008 - 1009 - [[package]] 1010 - name = "cpal" 1011 - version = "0.15.3" 1012 - source = "registry+https://github.com/rust-lang/crates.io-index" 1013 - checksum = "873dab07c8f743075e57f524c583985fbaf745602acbe916a01539364369a779" 1014 - dependencies = [ 1015 - "alsa", 1016 - "core-foundation-sys", 1017 - "coreaudio-rs", 1018 - "dasp_sample", 1019 - "jni", 1020 - "js-sys", 1021 - "libc", 1022 - "mach2", 1023 - "ndk 0.8.0", 1024 - "ndk-context", 1025 - "oboe", 1026 - "wasm-bindgen", 1027 - "wasm-bindgen-futures", 1028 - "web-sys", 1029 - "windows 0.54.0", 1030 - ] 1031 - 1032 - [[package]] 1033 - name = "cpufeatures" 1034 - version = "0.2.12" 1035 - source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1037 - dependencies = [ 1038 - "libc", 1039 - ] 1040 - 1041 - [[package]] 1042 - name = "crossbeam-deque" 1043 - version = "0.8.5" 1044 - source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1046 - dependencies = [ 1047 - "crossbeam-epoch", 1048 - "crossbeam-utils", 1049 - ] 1050 - 1051 - [[package]] 1052 - name = "crossbeam-epoch" 1053 - version = "0.9.18" 1054 - source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1056 - dependencies = [ 1057 - "crossbeam-utils", 1058 - ] 1059 - 1060 - [[package]] 1061 - name = "crossbeam-queue" 1062 - version = "0.3.11" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1065 - dependencies = [ 1066 - "crossbeam-utils", 1067 - ] 1068 - 1069 - [[package]] 1070 - name = "crossbeam-utils" 1071 - version = "0.8.20" 1072 - source = "registry+https://github.com/rust-lang/crates.io-index" 1073 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 1074 - 1075 - [[package]] 1076 - name = "crunchy" 1077 - version = "0.2.2" 1078 - source = "registry+https://github.com/rust-lang/crates.io-index" 1079 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1080 - 1081 - [[package]] 1082 - name = "crypto-common" 1083 - version = "0.1.6" 1084 - source = "registry+https://github.com/rust-lang/crates.io-index" 1085 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1086 - dependencies = [ 1087 - "generic-array", 1088 - "typenum", 1089 - ] 1090 - 1091 - [[package]] 1092 - name = "cstr" 1093 - version = "0.2.12" 1094 - source = "registry+https://github.com/rust-lang/crates.io-index" 1095 - checksum = "68523903c8ae5aacfa32a0d9ae60cadeb764e1da14ee0d26b1f3089f13a54636" 1096 - dependencies = [ 1097 - "proc-macro2", 1098 - "quote", 1099 - ] 1100 - 1101 - [[package]] 1102 - name = "ctrlc" 1103 - version = "3.4.4" 1104 - source = "registry+https://github.com/rust-lang/crates.io-index" 1105 - checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 1106 - dependencies = [ 1107 - "nix 0.28.0", 1108 - "windows-sys 0.52.0", 1109 - ] 1110 - 1111 - [[package]] 1112 - name = "cursor-icon" 1113 - version = "1.1.0" 1114 - source = "registry+https://github.com/rust-lang/crates.io-index" 1115 - checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 1116 - 1117 - [[package]] 1118 - name = "cxx" 1119 - version = "1.0.124" 1120 - source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "273dcfd3acd4e1e276af13ed2a43eea7001318823e7a726a6b3ed39b4acc0b82" 1122 - dependencies = [ 1123 - "cc", 1124 - "cxxbridge-flags", 1125 - "cxxbridge-macro", 1126 - "link-cplusplus", 1127 - ] 1128 - 1129 - [[package]] 1130 - name = "cxx-gen" 1131 - version = "0.7.124" 1132 - source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "749d9ac61b735e0d15b041225ad97a6f74b4bdf9f9dc98469553ca6109f57a56" 1134 - dependencies = [ 1135 - "codespan-reporting", 1136 - "proc-macro2", 1137 - "quote", 1138 - "syn 2.0.72", 1139 - ] 1140 - 1141 - [[package]] 1142 - name = "cxxbridge-flags" 1143 - version = "1.0.124" 1144 - source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "839fcd5e43464614ffaa989eaf1c139ef1f0c51672a1ed08023307fa1b909ccd" 1146 - 1147 - [[package]] 1148 - name = "cxxbridge-macro" 1149 - version = "1.0.124" 1150 - source = "registry+https://github.com/rust-lang/crates.io-index" 1151 - checksum = "4b2c1c1776b986979be68bb2285da855f8d8a35851a769fca8740df7c3d07877" 1152 - dependencies = [ 1153 - "proc-macro2", 1154 - "quote", 1155 - "syn 2.0.72", 1156 - ] 1157 - 1158 - [[package]] 1159 - name = "darling" 1160 - version = "0.20.10" 1161 - source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 1163 - dependencies = [ 1164 - "darling_core", 1165 - "darling_macro", 1166 - ] 1167 - 1168 - [[package]] 1169 - name = "darling_core" 1170 - version = "0.20.10" 1171 - source = "registry+https://github.com/rust-lang/crates.io-index" 1172 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 1173 - dependencies = [ 1174 - "fnv", 1175 - "ident_case", 1176 - "proc-macro2", 1177 - "quote", 1178 - "syn 2.0.72", 1179 - ] 1180 - 1181 - [[package]] 1182 - name = "darling_macro" 1183 - version = "0.20.10" 1184 - source = "registry+https://github.com/rust-lang/crates.io-index" 1185 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 1186 - dependencies = [ 1187 - "darling_core", 1188 - "quote", 1189 - "syn 2.0.72", 1190 - ] 1191 - 1192 - [[package]] 1193 - name = "dasp_sample" 1194 - version = "0.11.0" 1195 - source = "registry+https://github.com/rust-lang/crates.io-index" 1196 - checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" 1197 - 1198 - [[package]] 1199 - name = "dbus" 1200 - version = "0.9.7" 1201 - source = "registry+https://github.com/rust-lang/crates.io-index" 1202 - checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 1203 - dependencies = [ 1204 - "libc", 1205 - "libdbus-sys", 1206 - "winapi", 1207 - ] 1208 - 1209 - [[package]] 1210 - name = "ddsfile" 1211 - version = "0.5.2" 1212 - source = "registry+https://github.com/rust-lang/crates.io-index" 1213 - checksum = "479dfe1e6737aa9e96c6ac7b69689dc4c32da8383f2c12744739d76afa8b66c4" 1214 - dependencies = [ 1215 - "bitflags 2.6.0", 1216 - "byteorder", 1217 - "enum-primitive-derive", 1218 - "num-traits", 1219 - ] 1220 - 1221 - [[package]] 1222 - name = "derivative" 1223 - version = "2.2.0" 1224 - source = "registry+https://github.com/rust-lang/crates.io-index" 1225 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1226 - dependencies = [ 1227 - "proc-macro2", 1228 - "quote", 1229 - "syn 1.0.109", 1230 - ] 1231 - 1232 - [[package]] 1233 - name = "derive_more" 1234 - version = "0.99.18" 1235 - source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 1237 - dependencies = [ 1238 - "convert_case 0.4.0", 1239 - "proc-macro2", 1240 - "quote", 1241 - "rustc_version", 1242 - "syn 2.0.72", 1243 - ] 1244 - 1245 - [[package]] 1246 - name = "digest" 1247 - version = "0.10.7" 1248 - source = "registry+https://github.com/rust-lang/crates.io-index" 1249 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1250 - dependencies = [ 1251 - "block-buffer", 1252 - "crypto-common", 1253 - ] 1254 - 1255 - [[package]] 1256 - name = "dispatch" 1257 - version = "0.2.0" 1258 - source = "registry+https://github.com/rust-lang/crates.io-index" 1259 - checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 1260 - 1261 - [[package]] 1262 - name = "dlib" 1263 - version = "0.5.2" 1264 - source = "registry+https://github.com/rust-lang/crates.io-index" 1265 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 1266 - dependencies = [ 1267 - "libloading 0.8.5", 1268 - ] 1269 - 1270 - [[package]] 1271 - name = "dlopen2" 1272 - version = "0.7.0" 1273 - source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" 1275 - dependencies = [ 1276 - "dlopen2_derive", 1277 - "libc", 1278 - "once_cell", 1279 - "winapi", 1280 - ] 1281 - 1282 - [[package]] 1283 - name = "dlopen2_derive" 1284 - version = "0.4.0" 1285 - source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" 1287 - dependencies = [ 1288 - "proc-macro2", 1289 - "quote", 1290 - "syn 2.0.72", 1291 - ] 1292 - 1293 - [[package]] 1294 - name = "dlv-list" 1295 - version = "0.5.2" 1296 - source = "registry+https://github.com/rust-lang/crates.io-index" 1297 - checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 1298 - dependencies = [ 1299 - "const-random", 1300 - ] 1301 - 1302 - [[package]] 1303 - name = "downcast-rs" 1304 - version = "1.2.1" 1305 - source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 1307 - 1308 - [[package]] 1309 - name = "dpi" 1310 - version = "0.1.1" 1311 - source = "registry+https://github.com/rust-lang/crates.io-index" 1312 - checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" 1313 - 1314 - [[package]] 1315 - name = "drm-fourcc" 1316 - version = "2.2.0" 1317 - source = "registry+https://github.com/rust-lang/crates.io-index" 1318 - checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4" 1319 - 1320 - [[package]] 1321 - name = "either" 1322 - version = "1.13.0" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1325 - 1326 - [[package]] 1327 - name = "endi" 1328 - version = "1.1.0" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 1331 - 1332 - [[package]] 1333 - name = "enum-primitive-derive" 1334 - version = "0.2.2" 1335 - source = "registry+https://github.com/rust-lang/crates.io-index" 1336 - checksum = "c375b9c5eadb68d0a6efee2999fef292f45854c3444c86f09d8ab086ba942b0e" 1337 - dependencies = [ 1338 - "num-traits", 1339 - "quote", 1340 - "syn 1.0.109", 1341 - ] 1342 - 1343 - [[package]] 1344 - name = "enumflags2" 1345 - version = "0.7.10" 1346 - source = "registry+https://github.com/rust-lang/crates.io-index" 1347 - checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" 1348 - dependencies = [ 1349 - "enumflags2_derive", 1350 - "serde", 1351 - ] 1352 - 1353 - [[package]] 1354 - name = "enumflags2_derive" 1355 - version = "0.7.10" 1356 - source = "registry+https://github.com/rust-lang/crates.io-index" 1357 - checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" 1358 - dependencies = [ 1359 - "proc-macro2", 1360 - "quote", 1361 - "syn 2.0.72", 1362 - ] 1363 - 1364 - [[package]] 1365 - name = "enumset" 1366 - version = "1.1.5" 1367 - source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "d07a4b049558765cef5f0c1a273c3fc57084d768b44d2f98127aef4cceb17293" 1369 - dependencies = [ 1370 - "enumset_derive", 1371 - ] 1372 - 1373 - [[package]] 1374 - name = "enumset_derive" 1375 - version = "0.10.0" 1376 - source = "registry+https://github.com/rust-lang/crates.io-index" 1377 - checksum = "59c3b24c345d8c314966bdc1832f6c2635bfcce8e7cf363bd115987bba2ee242" 1378 - dependencies = [ 1379 - "darling", 1380 - "proc-macro2", 1381 - "quote", 1382 - "syn 2.0.72", 1383 - ] 1384 - 1385 - [[package]] 1386 - name = "env_logger" 1387 - version = "0.9.3" 1388 - source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 1390 - dependencies = [ 1391 - "atty", 1392 - "humantime", 1393 - "log", 1394 - "regex", 1395 - "termcolor", 1396 - ] 1397 - 1398 - [[package]] 1399 - name = "equivalent" 1400 - version = "1.0.1" 1401 - source = "registry+https://github.com/rust-lang/crates.io-index" 1402 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1403 - 1404 - [[package]] 1405 - name = "errno" 1406 - version = "0.3.9" 1407 - source = "registry+https://github.com/rust-lang/crates.io-index" 1408 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1409 - dependencies = [ 1410 - "libc", 1411 - "windows-sys 0.52.0", 1412 - ] 1413 - 1414 - [[package]] 1415 - name = "event-listener" 1416 - version = "5.3.1" 1417 - source = "registry+https://github.com/rust-lang/crates.io-index" 1418 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1419 - dependencies = [ 1420 - "concurrent-queue", 1421 - "parking", 1422 - "pin-project-lite", 1423 - ] 1424 - 1425 - [[package]] 1426 - name = "event-listener-strategy" 1427 - version = "0.5.2" 1428 - source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1430 - dependencies = [ 1431 - "event-listener", 1432 - "pin-project-lite", 1433 - ] 1434 - 1435 - [[package]] 1436 - name = "fastrand" 1437 - version = "2.1.0" 1438 - source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1440 - 1441 - [[package]] 1442 - name = "fixedbitset" 1443 - version = "0.4.2" 1444 - source = "registry+https://github.com/rust-lang/crates.io-index" 1445 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1446 - 1447 - [[package]] 1448 - name = "flagset" 1449 - version = "0.4.6" 1450 - source = "registry+https://github.com/rust-lang/crates.io-index" 1451 - checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" 1452 - 1453 - [[package]] 1454 - name = "flexi_logger" 1455 - version = "0.28.5" 1456 - source = "registry+https://github.com/rust-lang/crates.io-index" 1457 - checksum = "cca927478b3747ba47f98af6ba0ac0daea4f12d12f55e9104071b3dc00276310" 1458 - dependencies = [ 1459 - "chrono", 1460 - "glob", 1461 - "log", 1462 - "nu-ansi-term", 1463 - "regex", 1464 - "thiserror", 1465 - ] 1466 - 1467 - [[package]] 1468 - name = "fnv" 1469 - version = "1.0.7" 1470 - source = "registry+https://github.com/rust-lang/crates.io-index" 1471 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1472 - 1473 - [[package]] 1474 - name = "fontconfig-rs" 1475 - version = "0.1.1" 1476 - source = "registry+https://github.com/rust-lang/crates.io-index" 1477 - checksum = "cb4baadad5111c6820e97fc8bde5077258e6f272b5b38538db4b42e1812f29f3" 1478 - dependencies = [ 1479 - "const-cstr", 1480 - "once_cell", 1481 - "thiserror", 1482 - "yeslogic-fontconfig-sys", 1483 - ] 1484 - 1485 - [[package]] 1486 - name = "foreign-types" 1487 - version = "0.5.0" 1488 - source = "registry+https://github.com/rust-lang/crates.io-index" 1489 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1490 - dependencies = [ 1491 - "foreign-types-macros", 1492 - "foreign-types-shared", 1493 - ] 1494 - 1495 - [[package]] 1496 - name = "foreign-types-macros" 1497 - version = "0.2.3" 1498 - source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1500 - dependencies = [ 1501 - "proc-macro2", 1502 - "quote", 1503 - "syn 2.0.72", 1504 - ] 1505 - 1506 - [[package]] 1507 - name = "foreign-types-shared" 1508 - version = "0.3.1" 1509 - source = "registry+https://github.com/rust-lang/crates.io-index" 1510 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1511 - 1512 - [[package]] 1513 - name = "form_urlencoded" 1514 - version = "1.2.1" 1515 - source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1517 - dependencies = [ 1518 - "percent-encoding", 1519 - ] 1520 - 1521 - [[package]] 1522 - name = "freetype-rs" 1523 - version = "0.36.0" 1524 - source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "5442dee36ca09604133580dc0553780e867936bb3cbef3275859e889026d2b17" 1526 - dependencies = [ 1527 - "bitflags 2.6.0", 1528 - "freetype-sys", 1529 - "libc", 1530 - ] 1531 - 1532 - [[package]] 1533 - name = "freetype-sys" 1534 - version = "0.20.1" 1535 - source = "registry+https://github.com/rust-lang/crates.io-index" 1536 - checksum = "0e7edc5b9669349acfda99533e9e0bcf26a51862ab43b08ee7745c55d28eb134" 1537 - dependencies = [ 1538 - "cc", 1539 - "libc", 1540 - "pkg-config", 1541 - ] 1542 - 1543 - [[package]] 1544 - name = "futures" 1545 - version = "0.3.30" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1548 - dependencies = [ 1549 - "futures-channel", 1550 - "futures-core", 1551 - "futures-executor", 1552 - "futures-io", 1553 - "futures-sink", 1554 - "futures-task", 1555 - "futures-util", 1556 - ] 1557 - 1558 - [[package]] 1559 - name = "futures-channel" 1560 - version = "0.3.30" 1561 - source = "registry+https://github.com/rust-lang/crates.io-index" 1562 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1563 - dependencies = [ 1564 - "futures-core", 1565 - "futures-sink", 1566 - ] 1567 - 1568 - [[package]] 1569 - name = "futures-core" 1570 - version = "0.3.30" 1571 - source = "registry+https://github.com/rust-lang/crates.io-index" 1572 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1573 - 1574 - [[package]] 1575 - name = "futures-executor" 1576 - version = "0.3.30" 1577 - source = "registry+https://github.com/rust-lang/crates.io-index" 1578 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1579 - dependencies = [ 1580 - "futures-core", 1581 - "futures-task", 1582 - "futures-util", 1583 - ] 1584 - 1585 - [[package]] 1586 - name = "futures-io" 1587 - version = "0.3.30" 1588 - source = "registry+https://github.com/rust-lang/crates.io-index" 1589 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1590 - 1591 - [[package]] 1592 - name = "futures-lite" 1593 - version = "2.3.0" 1594 - source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1596 - dependencies = [ 1597 - "fastrand", 1598 - "futures-core", 1599 - "futures-io", 1600 - "parking", 1601 - "pin-project-lite", 1602 - ] 1603 - 1604 - [[package]] 1605 - name = "futures-macro" 1606 - version = "0.3.30" 1607 - source = "registry+https://github.com/rust-lang/crates.io-index" 1608 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1609 - dependencies = [ 1610 - "proc-macro2", 1611 - "quote", 1612 - "syn 2.0.72", 1613 - ] 1614 - 1615 - [[package]] 1616 - name = "futures-sink" 1617 - version = "0.3.30" 1618 - source = "registry+https://github.com/rust-lang/crates.io-index" 1619 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1620 - 1621 - [[package]] 1622 - name = "futures-task" 1623 - version = "0.3.30" 1624 - source = "registry+https://github.com/rust-lang/crates.io-index" 1625 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1626 - 1627 - [[package]] 1628 - name = "futures-util" 1629 - version = "0.3.30" 1630 - source = "registry+https://github.com/rust-lang/crates.io-index" 1631 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1632 - dependencies = [ 1633 - "futures-channel", 1634 - "futures-core", 1635 - "futures-io", 1636 - "futures-macro", 1637 - "futures-sink", 1638 - "futures-task", 1639 - "memchr", 1640 - "pin-project-lite", 1641 - "pin-utils", 1642 - "slab", 1643 - ] 1644 - 1645 - [[package]] 1646 - name = "generic-array" 1647 - version = "0.14.7" 1648 - source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1650 - dependencies = [ 1651 - "typenum", 1652 - "version_check", 1653 - ] 1654 - 1655 - [[package]] 1656 - name = "gethostname" 1657 - version = "0.4.3" 1658 - source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1660 - dependencies = [ 1661 - "libc", 1662 - "windows-targets 0.48.5", 1663 - ] 1664 - 1665 - [[package]] 1666 - name = "getrandom" 1667 - version = "0.2.15" 1668 - source = "registry+https://github.com/rust-lang/crates.io-index" 1669 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1670 - dependencies = [ 1671 - "cfg-if", 1672 - "libc", 1673 - "wasi", 1674 - ] 1675 - 1676 - [[package]] 1677 - name = "gimli" 1678 - version = "0.29.0" 1679 - source = "registry+https://github.com/rust-lang/crates.io-index" 1680 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 1681 - 1682 - [[package]] 1683 - name = "glam" 1684 - version = "0.28.0" 1685 - source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94" 1687 - dependencies = [ 1688 - "approx", 1689 - "mint", 1690 - "serde", 1691 - ] 1692 - 1693 - [[package]] 1694 - name = "glob" 1695 - version = "0.3.1" 1696 - source = "registry+https://github.com/rust-lang/crates.io-index" 1697 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1698 - 1699 - [[package]] 1700 - name = "half" 1701 - version = "2.4.1" 1702 - source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 1704 - dependencies = [ 1705 - "bytemuck", 1706 - "cfg-if", 1707 - "crunchy", 1708 - ] 1709 - 1710 - [[package]] 1711 - name = "hashbrown" 1712 - version = "0.12.3" 1713 - source = "registry+https://github.com/rust-lang/crates.io-index" 1714 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1715 - 1716 - [[package]] 1717 - name = "hashbrown" 1718 - version = "0.13.2" 1719 - source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 1721 - 1722 - [[package]] 1723 - name = "hashbrown" 1724 - version = "0.14.5" 1725 - source = "registry+https://github.com/rust-lang/crates.io-index" 1726 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1727 - 1728 - [[package]] 1729 - name = "heck" 1730 - version = "0.4.1" 1731 - source = "registry+https://github.com/rust-lang/crates.io-index" 1732 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1733 - 1734 - [[package]] 1735 - name = "heck" 1736 - version = "0.5.0" 1737 - source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1739 - 1740 - [[package]] 1741 - name = "hermit-abi" 1742 - version = "0.1.19" 1743 - source = "registry+https://github.com/rust-lang/crates.io-index" 1744 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1745 - dependencies = [ 1746 - "libc", 1747 - ] 1748 - 1749 - [[package]] 1750 - name = "hermit-abi" 1751 - version = "0.4.0" 1752 - source = "registry+https://github.com/rust-lang/crates.io-index" 1753 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 1754 - 1755 - [[package]] 1756 - name = "hex" 1757 - version = "0.4.3" 1758 - source = "registry+https://github.com/rust-lang/crates.io-index" 1759 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1760 - 1761 - [[package]] 1762 - name = "home" 1763 - version = "0.5.9" 1764 - source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1766 - dependencies = [ 1767 - "windows-sys 0.52.0", 1768 - ] 1769 - 1770 - [[package]] 1771 - name = "hound" 1772 - version = "3.5.1" 1773 - source = "registry+https://github.com/rust-lang/crates.io-index" 1774 - checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f" 1775 - 1776 - [[package]] 1777 - name = "humantime" 1778 - version = "2.1.0" 1779 - source = "registry+https://github.com/rust-lang/crates.io-index" 1780 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1781 - 1782 - [[package]] 1783 - name = "iana-time-zone" 1784 - version = "0.1.60" 1785 - source = "registry+https://github.com/rust-lang/crates.io-index" 1786 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1787 - dependencies = [ 1788 - "android_system_properties", 1789 - "core-foundation-sys", 1790 - "iana-time-zone-haiku", 1791 - "js-sys", 1792 - "wasm-bindgen", 1793 - "windows-core 0.52.0", 1794 - ] 1795 - 1796 - [[package]] 1797 - name = "iana-time-zone-haiku" 1798 - version = "0.1.2" 1799 - source = "registry+https://github.com/rust-lang/crates.io-index" 1800 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1801 - dependencies = [ 1802 - "cc", 1803 - ] 1804 - 1805 - [[package]] 1806 - name = "ident_case" 1807 - version = "1.0.1" 1808 - source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1810 - 1811 - [[package]] 1812 - name = "idmap" 1813 - version = "0.2.21" 1814 - source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "dba885f996064df334b1639785897d1c58c0646750101b839b8359664cb26c0e" 1816 - dependencies = [ 1817 - "fixedbitset", 1818 - "serde", 1819 - ] 1820 - 1821 - [[package]] 1822 - name = "idmap-derive" 1823 - version = "0.1.2" 1824 - source = "registry+https://github.com/rust-lang/crates.io-index" 1825 - checksum = "e3f44aa1b60e7de7e2833ad2cc3bc79880171d1e1efdb44ca833a1acf8102870" 1826 - dependencies = [ 1827 - "proc-macro2", 1828 - "quote", 1829 - "syn 1.0.109", 1830 - ] 1831 - 1832 - [[package]] 1833 - name = "idna" 1834 - version = "0.5.0" 1835 - source = "registry+https://github.com/rust-lang/crates.io-index" 1836 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1837 - dependencies = [ 1838 - "unicode-bidi", 1839 - "unicode-normalization", 1840 - ] 1841 - 1842 - [[package]] 1843 - name = "image_dds" 1844 - version = "0.6.0" 1845 - source = "registry+https://github.com/rust-lang/crates.io-index" 1846 - checksum = "7e332cf1abe0ecc56ef44c85248d580ef05bfeae806f586ee17890d1b09c05c8" 1847 - dependencies = [ 1848 - "bcdec_rs", 1849 - "bytemuck", 1850 - "ddsfile", 1851 - "half", 1852 - "thiserror", 1853 - ] 1854 - 1855 - [[package]] 1856 - name = "indexmap" 1857 - version = "1.9.3" 1858 - source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1860 - dependencies = [ 1861 - "autocfg", 1862 - "hashbrown 0.12.3", 1863 - "serde", 1864 - ] 1865 - 1866 - [[package]] 1867 - name = "indexmap" 1868 - version = "2.3.0" 1869 - source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0" 1871 - dependencies = [ 1872 - "equivalent", 1873 - "hashbrown 0.14.5", 1874 - ] 1875 - 1876 - [[package]] 1877 - name = "indoc" 1878 - version = "1.0.9" 1879 - source = "registry+https://github.com/rust-lang/crates.io-index" 1880 - checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 1881 - 1882 - [[package]] 1883 - name = "input-linux" 1884 - version = "0.7.0" 1885 - source = "registry+https://github.com/rust-lang/crates.io-index" 1886 - checksum = "db86afb5a9a36378e7d3bc0ea335c00ac218be8b2e437bcca7405cb9f8a37426" 1887 - dependencies = [ 1888 - "input-linux-sys", 1889 - "nix 0.29.0", 1890 - ] 1891 - 1892 - [[package]] 1893 - name = "input-linux-sys" 1894 - version = "0.9.0" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "7b91b2248b0eaf0a576ef5e60b7f2107a749e705a876bc0b9fe952ac8d83a724" 1897 - dependencies = [ 1898 - "libc", 1899 - "nix 0.29.0", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "is_terminal_polyfill" 1904 - version = "1.70.1" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1907 - 1908 - [[package]] 1909 - name = "itertools" 1910 - version = "0.9.0" 1911 - source = "registry+https://github.com/rust-lang/crates.io-index" 1912 - checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 1913 - dependencies = [ 1914 - "either", 1915 - ] 1916 - 1917 - [[package]] 1918 - name = "itertools" 1919 - version = "0.10.5" 1920 - source = "registry+https://github.com/rust-lang/crates.io-index" 1921 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1922 - dependencies = [ 1923 - "either", 1924 - ] 1925 - 1926 - [[package]] 1927 - name = "itertools" 1928 - version = "0.12.1" 1929 - source = "registry+https://github.com/rust-lang/crates.io-index" 1930 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1931 - dependencies = [ 1932 - "either", 1933 - ] 1934 - 1935 - [[package]] 1936 - name = "itertools" 1937 - version = "0.13.0" 1938 - source = "registry+https://github.com/rust-lang/crates.io-index" 1939 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1940 - dependencies = [ 1941 - "either", 1942 - ] 1943 - 1944 - [[package]] 1945 - name = "itoa" 1946 - version = "1.0.11" 1947 - source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1949 - 1950 - [[package]] 1951 - name = "jni" 1952 - version = "0.21.1" 1953 - source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1955 - dependencies = [ 1956 - "cesu8", 1957 - "cfg-if", 1958 - "combine", 1959 - "jni-sys", 1960 - "log", 1961 - "thiserror", 1962 - "walkdir", 1963 - "windows-sys 0.45.0", 1964 - ] 1965 - 1966 - [[package]] 1967 - name = "jni-sys" 1968 - version = "0.3.0" 1969 - source = "registry+https://github.com/rust-lang/crates.io-index" 1970 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1971 - 1972 - [[package]] 1973 - name = "jobserver" 1974 - version = "0.1.32" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 1977 - dependencies = [ 1978 - "libc", 1979 - ] 1980 - 1981 - [[package]] 1982 - name = "js-sys" 1983 - version = "0.3.69" 1984 - source = "registry+https://github.com/rust-lang/crates.io-index" 1985 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1986 - dependencies = [ 1987 - "wasm-bindgen", 1988 - ] 1989 - 1990 - [[package]] 1991 - name = "json" 1992 - version = "0.12.4" 1993 - source = "registry+https://github.com/rust-lang/crates.io-index" 1994 - checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" 1995 - 1996 - [[package]] 1997 - name = "json5" 1998 - version = "0.4.1" 1999 - source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1" 2001 - dependencies = [ 2002 - "pest", 2003 - "pest_derive", 2004 - "serde", 2005 - ] 2006 - 2007 - [[package]] 2008 - name = "lazy_static" 2009 - version = "1.5.0" 2010 - source = "registry+https://github.com/rust-lang/crates.io-index" 2011 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2012 - 2013 - [[package]] 2014 - name = "lazycell" 2015 - version = "1.3.0" 2016 - source = "registry+https://github.com/rust-lang/crates.io-index" 2017 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 2018 - 2019 - [[package]] 2020 - name = "libc" 2021 - version = "0.2.155" 2022 - source = "registry+https://github.com/rust-lang/crates.io-index" 2023 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2024 - 2025 - [[package]] 2026 - name = "libdbus-sys" 2027 - version = "0.2.5" 2028 - source = "registry+https://github.com/rust-lang/crates.io-index" 2029 - checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" 2030 - dependencies = [ 2031 - "pkg-config", 2032 - ] 2033 - 2034 - [[package]] 2035 - name = "libloading" 2036 - version = "0.7.4" 2037 - source = "registry+https://github.com/rust-lang/crates.io-index" 2038 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2039 - dependencies = [ 2040 - "cfg-if", 2041 - "winapi", 2042 - ] 2043 - 2044 - [[package]] 2045 - name = "libloading" 2046 - version = "0.8.5" 2047 - source = "registry+https://github.com/rust-lang/crates.io-index" 2048 - checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" 2049 - dependencies = [ 2050 - "cfg-if", 2051 - "windows-targets 0.52.6", 2052 - ] 2053 - 2054 - [[package]] 2055 - name = "libmonado-rs" 2056 - version = "0.1.0" 2057 - source = "git+https://github.com/technobaboo/libmonado-rs?rev=a495f6d#a495f6d162fce47ae5aafeb7ec38e774cb731c29" 2058 - dependencies = [ 2059 - "bindgen", 2060 - "cmake", 2061 - "convert_case 0.6.0", 2062 - "dlopen2", 2063 - "flagset", 2064 - "mint", 2065 - "semver", 2066 - "serde", 2067 - "serde_json", 2068 - "xdg", 2069 - ] 2070 - 2071 - [[package]] 2072 - name = "libredox" 2073 - version = "0.0.2" 2074 - source = "registry+https://github.com/rust-lang/crates.io-index" 2075 - checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 2076 - dependencies = [ 2077 - "bitflags 2.6.0", 2078 - "libc", 2079 - "redox_syscall 0.4.1", 2080 - ] 2081 - 2082 - [[package]] 2083 - name = "libspa" 2084 - version = "0.8.0" 2085 - source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "65f3a4b81b2a2d8c7f300643676202debd1b7c929dbf5c9bb89402ea11d19810" 2087 - dependencies = [ 2088 - "bitflags 2.6.0", 2089 - "cc", 2090 - "convert_case 0.6.0", 2091 - "cookie-factory", 2092 - "libc", 2093 - "libspa-sys", 2094 - "nix 0.27.1", 2095 - "nom", 2096 - "system-deps", 2097 - ] 2098 - 2099 - [[package]] 2100 - name = "libspa-sys" 2101 - version = "0.8.0" 2102 - source = "registry+https://github.com/rust-lang/crates.io-index" 2103 - checksum = "bf0d9716420364790e85cbb9d3ac2c950bde16a7dd36f3209b7dfdfc4a24d01f" 2104 - dependencies = [ 2105 - "bindgen", 2106 - "cc", 2107 - "system-deps", 2108 - ] 2109 - 2110 - [[package]] 2111 - name = "link-cplusplus" 2112 - version = "1.0.9" 2113 - source = "registry+https://github.com/rust-lang/crates.io-index" 2114 - checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" 2115 - dependencies = [ 2116 - "cc", 2117 - ] 2118 - 2119 - [[package]] 2120 - name = "linked-hash-map" 2121 - version = "0.5.6" 2122 - source = "registry+https://github.com/rust-lang/crates.io-index" 2123 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2124 - 2125 - [[package]] 2126 - name = "linux-raw-sys" 2127 - version = "0.4.14" 2128 - source = "registry+https://github.com/rust-lang/crates.io-index" 2129 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2130 - 2131 - [[package]] 2132 - name = "lock_api" 2133 - version = "0.4.12" 2134 - source = "registry+https://github.com/rust-lang/crates.io-index" 2135 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2136 - dependencies = [ 2137 - "autocfg", 2138 - "scopeguard", 2139 - ] 2140 - 2141 - [[package]] 2142 - name = "log" 2143 - version = "0.4.22" 2144 - source = "registry+https://github.com/rust-lang/crates.io-index" 2145 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 2146 - 2147 - [[package]] 2148 - name = "log-panics" 2149 - version = "2.1.0" 2150 - source = "registry+https://github.com/rust-lang/crates.io-index" 2151 - checksum = "68f9dd8546191c1850ecf67d22f5ff00a935b890d0e84713159a55495cc2ac5f" 2152 - dependencies = [ 2153 - "backtrace", 2154 - "log", 2155 - ] 2156 - 2157 - [[package]] 2158 - name = "mach2" 2159 - version = "0.4.2" 2160 - source = "registry+https://github.com/rust-lang/crates.io-index" 2161 - checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709" 2162 - dependencies = [ 2163 - "libc", 2164 - ] 2165 - 2166 - [[package]] 2167 - name = "malloc_buf" 2168 - version = "0.0.6" 2169 - source = "registry+https://github.com/rust-lang/crates.io-index" 2170 - checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 2171 - dependencies = [ 2172 - "libc", 2173 - ] 2174 - 2175 - [[package]] 2176 - name = "memchr" 2177 - version = "2.7.4" 2178 - source = "registry+https://github.com/rust-lang/crates.io-index" 2179 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 2180 - 2181 - [[package]] 2182 - name = "memmap2" 2183 - version = "0.8.0" 2184 - source = "registry+https://github.com/rust-lang/crates.io-index" 2185 - checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 2186 - dependencies = [ 2187 - "libc", 2188 - ] 2189 - 2190 - [[package]] 2191 - name = "memmap2" 2192 - version = "0.9.4" 2193 - source = "registry+https://github.com/rust-lang/crates.io-index" 2194 - checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 2195 - dependencies = [ 2196 - "libc", 2197 - ] 2198 - 2199 - [[package]] 2200 - name = "memoffset" 2201 - version = "0.9.1" 2202 - source = "registry+https://github.com/rust-lang/crates.io-index" 2203 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 2204 - dependencies = [ 2205 - "autocfg", 2206 - ] 2207 - 2208 - [[package]] 2209 - name = "miette" 2210 - version = "5.10.0" 2211 - source = "registry+https://github.com/rust-lang/crates.io-index" 2212 - checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e" 2213 - dependencies = [ 2214 - "miette-derive", 2215 - "once_cell", 2216 - "thiserror", 2217 - "unicode-width", 2218 - ] 2219 - 2220 - [[package]] 2221 - name = "miette-derive" 2222 - version = "5.10.0" 2223 - source = "registry+https://github.com/rust-lang/crates.io-index" 2224 - checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c" 2225 - dependencies = [ 2226 - "proc-macro2", 2227 - "quote", 2228 - "syn 2.0.72", 2229 - ] 2230 - 2231 - [[package]] 2232 - name = "minimal-lexical" 2233 - version = "0.2.1" 2234 - source = "registry+https://github.com/rust-lang/crates.io-index" 2235 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2236 - 2237 - [[package]] 2238 - name = "miniz_oxide" 2239 - version = "0.7.4" 2240 - source = "registry+https://github.com/rust-lang/crates.io-index" 2241 - checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 2242 - dependencies = [ 2243 - "adler", 2244 - ] 2245 - 2246 - [[package]] 2247 - name = "mint" 2248 - version = "0.5.9" 2249 - source = "registry+https://github.com/rust-lang/crates.io-index" 2250 - checksum = "e53debba6bda7a793e5f99b8dacf19e626084f525f7829104ba9898f367d85ff" 2251 - 2252 - [[package]] 2253 - name = "moveit" 2254 - version = "0.6.0" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "87d7335204cb6ef7bd647fa6db0be3e4d7aa25b5823a7aa030027ddf512cefba" 2257 - dependencies = [ 2258 - "cxx", 2259 - ] 2260 - 2261 - [[package]] 2262 - name = "ndk" 2263 - version = "0.8.0" 2264 - source = "registry+https://github.com/rust-lang/crates.io-index" 2265 - checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 2266 - dependencies = [ 2267 - "bitflags 2.6.0", 2268 - "jni-sys", 2269 - "log", 2270 - "ndk-sys 0.5.0+25.2.9519653", 2271 - "num_enum", 2272 - "thiserror", 2273 - ] 2274 - 2275 - [[package]] 2276 - name = "ndk" 2277 - version = "0.9.0" 2278 - source = "registry+https://github.com/rust-lang/crates.io-index" 2279 - checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 2280 - dependencies = [ 2281 - "bitflags 2.6.0", 2282 - "jni-sys", 2283 - "log", 2284 - "ndk-sys 0.6.0+11769913", 2285 - "num_enum", 2286 - "raw-window-handle", 2287 - "thiserror", 2288 - ] 2289 - 2290 - [[package]] 2291 - name = "ndk-context" 2292 - version = "0.1.1" 2293 - source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2295 - 2296 - [[package]] 2297 - name = "ndk-sys" 2298 - version = "0.5.0+25.2.9519653" 2299 - source = "registry+https://github.com/rust-lang/crates.io-index" 2300 - checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 2301 - dependencies = [ 2302 - "jni-sys", 2303 - ] 2304 - 2305 - [[package]] 2306 - name = "ndk-sys" 2307 - version = "0.6.0+11769913" 2308 - source = "registry+https://github.com/rust-lang/crates.io-index" 2309 - checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 2310 - dependencies = [ 2311 - "jni-sys", 2312 - ] 2313 - 2314 - [[package]] 2315 - name = "nix" 2316 - version = "0.27.1" 2317 - source = "registry+https://github.com/rust-lang/crates.io-index" 2318 - checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2319 - dependencies = [ 2320 - "bitflags 2.6.0", 2321 - "cfg-if", 2322 - "libc", 2323 - "memoffset", 2324 - ] 2325 - 2326 - [[package]] 2327 - name = "nix" 2328 - version = "0.28.0" 2329 - source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 2331 - dependencies = [ 2332 - "bitflags 2.6.0", 2333 - "cfg-if", 2334 - "cfg_aliases 0.1.1", 2335 - "libc", 2336 - ] 2337 - 2338 - [[package]] 2339 - name = "nix" 2340 - version = "0.29.0" 2341 - source = "registry+https://github.com/rust-lang/crates.io-index" 2342 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 2343 - dependencies = [ 2344 - "bitflags 2.6.0", 2345 - "cfg-if", 2346 - "cfg_aliases 0.2.1", 2347 - "libc", 2348 - ] 2349 - 2350 - [[package]] 2351 - name = "nom" 2352 - version = "7.1.3" 2353 - source = "registry+https://github.com/rust-lang/crates.io-index" 2354 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2355 - dependencies = [ 2356 - "memchr", 2357 - "minimal-lexical", 2358 - ] 2359 - 2360 - [[package]] 2361 - name = "normpath" 2362 - version = "1.2.0" 2363 - source = "registry+https://github.com/rust-lang/crates.io-index" 2364 - checksum = "5831952a9476f2fed74b77d74182fa5ddc4d21c72ec45a333b250e3ed0272804" 2365 - dependencies = [ 2366 - "windows-sys 0.52.0", 2367 - ] 2368 - 2369 - [[package]] 2370 - name = "ntapi" 2371 - version = "0.4.1" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 2374 - dependencies = [ 2375 - "winapi", 2376 - ] 2377 - 2378 - [[package]] 2379 - name = "nu-ansi-term" 2380 - version = "0.50.1" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" 2383 - dependencies = [ 2384 - "windows-sys 0.52.0", 2385 - ] 2386 - 2387 - [[package]] 2388 - name = "num-derive" 2389 - version = "0.4.2" 2390 - source = "registry+https://github.com/rust-lang/crates.io-index" 2391 - checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 2392 - dependencies = [ 2393 - "proc-macro2", 2394 - "quote", 2395 - "syn 2.0.72", 2396 - ] 2397 - 2398 - [[package]] 2399 - name = "num-traits" 2400 - version = "0.2.19" 2401 - source = "registry+https://github.com/rust-lang/crates.io-index" 2402 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2403 - dependencies = [ 2404 - "autocfg", 2405 - ] 2406 - 2407 - [[package]] 2408 - name = "num_enum" 2409 - version = "0.7.3" 2410 - source = "registry+https://github.com/rust-lang/crates.io-index" 2411 - checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" 2412 - dependencies = [ 2413 - "num_enum_derive", 2414 - ] 2415 - 2416 - [[package]] 2417 - name = "num_enum_derive" 2418 - version = "0.7.3" 2419 - source = "registry+https://github.com/rust-lang/crates.io-index" 2420 - checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" 2421 - dependencies = [ 2422 - "proc-macro-crate 2.0.2", 2423 - "proc-macro2", 2424 - "quote", 2425 - "syn 2.0.72", 2426 - ] 2427 - 2428 - [[package]] 2429 - name = "objc" 2430 - version = "0.2.7" 2431 - source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2433 - dependencies = [ 2434 - "malloc_buf", 2435 - ] 2436 - 2437 - [[package]] 2438 - name = "objc-sys" 2439 - version = "0.3.5" 2440 - source = "registry+https://github.com/rust-lang/crates.io-index" 2441 - checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 2442 - 2443 - [[package]] 2444 - name = "objc2" 2445 - version = "0.5.2" 2446 - source = "registry+https://github.com/rust-lang/crates.io-index" 2447 - checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 2448 - dependencies = [ 2449 - "objc-sys", 2450 - "objc2-encode", 2451 - ] 2452 - 2453 - [[package]] 2454 - name = "objc2-app-kit" 2455 - version = "0.2.2" 2456 - source = "registry+https://github.com/rust-lang/crates.io-index" 2457 - checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 2458 - dependencies = [ 2459 - "bitflags 2.6.0", 2460 - "block2", 2461 - "libc", 2462 - "objc2", 2463 - "objc2-core-data", 2464 - "objc2-core-image", 2465 - "objc2-foundation", 2466 - "objc2-quartz-core", 2467 - ] 2468 - 2469 - [[package]] 2470 - name = "objc2-cloud-kit" 2471 - version = "0.2.2" 2472 - source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" 2474 - dependencies = [ 2475 - "bitflags 2.6.0", 2476 - "block2", 2477 - "objc2", 2478 - "objc2-core-location", 2479 - "objc2-foundation", 2480 - ] 2481 - 2482 - [[package]] 2483 - name = "objc2-contacts" 2484 - version = "0.2.2" 2485 - source = "registry+https://github.com/rust-lang/crates.io-index" 2486 - checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" 2487 - dependencies = [ 2488 - "block2", 2489 - "objc2", 2490 - "objc2-foundation", 2491 - ] 2492 - 2493 - [[package]] 2494 - name = "objc2-core-data" 2495 - version = "0.2.2" 2496 - source = "registry+https://github.com/rust-lang/crates.io-index" 2497 - checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 2498 - dependencies = [ 2499 - "bitflags 2.6.0", 2500 - "block2", 2501 - "objc2", 2502 - "objc2-foundation", 2503 - ] 2504 - 2505 - [[package]] 2506 - name = "objc2-core-image" 2507 - version = "0.2.2" 2508 - source = "registry+https://github.com/rust-lang/crates.io-index" 2509 - checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" 2510 - dependencies = [ 2511 - "block2", 2512 - "objc2", 2513 - "objc2-foundation", 2514 - "objc2-metal", 2515 - ] 2516 - 2517 - [[package]] 2518 - name = "objc2-core-location" 2519 - version = "0.2.2" 2520 - source = "registry+https://github.com/rust-lang/crates.io-index" 2521 - checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" 2522 - dependencies = [ 2523 - "block2", 2524 - "objc2", 2525 - "objc2-contacts", 2526 - "objc2-foundation", 2527 - ] 2528 - 2529 - [[package]] 2530 - name = "objc2-encode" 2531 - version = "4.0.3" 2532 - source = "registry+https://github.com/rust-lang/crates.io-index" 2533 - checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 2534 - 2535 - [[package]] 2536 - name = "objc2-foundation" 2537 - version = "0.2.2" 2538 - source = "registry+https://github.com/rust-lang/crates.io-index" 2539 - checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 2540 - dependencies = [ 2541 - "bitflags 2.6.0", 2542 - "block2", 2543 - "dispatch", 2544 - "libc", 2545 - "objc2", 2546 - ] 2547 - 2548 - [[package]] 2549 - name = "objc2-link-presentation" 2550 - version = "0.2.2" 2551 - source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" 2553 - dependencies = [ 2554 - "block2", 2555 - "objc2", 2556 - "objc2-app-kit", 2557 - "objc2-foundation", 2558 - ] 2559 - 2560 - [[package]] 2561 - name = "objc2-metal" 2562 - version = "0.2.2" 2563 - source = "registry+https://github.com/rust-lang/crates.io-index" 2564 - checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 2565 - dependencies = [ 2566 - "bitflags 2.6.0", 2567 - "block2", 2568 - "objc2", 2569 - "objc2-foundation", 2570 - ] 2571 - 2572 - [[package]] 2573 - name = "objc2-quartz-core" 2574 - version = "0.2.2" 2575 - source = "registry+https://github.com/rust-lang/crates.io-index" 2576 - checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 2577 - dependencies = [ 2578 - "bitflags 2.6.0", 2579 - "block2", 2580 - "objc2", 2581 - "objc2-foundation", 2582 - "objc2-metal", 2583 - ] 2584 - 2585 - [[package]] 2586 - name = "objc2-symbols" 2587 - version = "0.2.2" 2588 - source = "registry+https://github.com/rust-lang/crates.io-index" 2589 - checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" 2590 - dependencies = [ 2591 - "objc2", 2592 - "objc2-foundation", 2593 - ] 2594 - 2595 - [[package]] 2596 - name = "objc2-ui-kit" 2597 - version = "0.2.2" 2598 - source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" 2600 - dependencies = [ 2601 - "bitflags 2.6.0", 2602 - "block2", 2603 - "objc2", 2604 - "objc2-cloud-kit", 2605 - "objc2-core-data", 2606 - "objc2-core-image", 2607 - "objc2-core-location", 2608 - "objc2-foundation", 2609 - "objc2-link-presentation", 2610 - "objc2-quartz-core", 2611 - "objc2-symbols", 2612 - "objc2-uniform-type-identifiers", 2613 - "objc2-user-notifications", 2614 - ] 2615 - 2616 - [[package]] 2617 - name = "objc2-uniform-type-identifiers" 2618 - version = "0.2.2" 2619 - source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" 2621 - dependencies = [ 2622 - "block2", 2623 - "objc2", 2624 - "objc2-foundation", 2625 - ] 2626 - 2627 - [[package]] 2628 - name = "objc2-user-notifications" 2629 - version = "0.2.2" 2630 - source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" 2632 - dependencies = [ 2633 - "bitflags 2.6.0", 2634 - "block2", 2635 - "objc2", 2636 - "objc2-core-location", 2637 - "objc2-foundation", 2638 - ] 2639 - 2640 - [[package]] 2641 - name = "object" 2642 - version = "0.36.2" 2643 - source = "registry+https://github.com/rust-lang/crates.io-index" 2644 - checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e" 2645 - dependencies = [ 2646 - "memchr", 2647 - ] 2648 - 2649 - [[package]] 2650 - name = "oboe" 2651 - version = "0.6.1" 2652 - source = "registry+https://github.com/rust-lang/crates.io-index" 2653 - checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb" 2654 - dependencies = [ 2655 - "jni", 2656 - "ndk 0.8.0", 2657 - "ndk-context", 2658 - "num-derive", 2659 - "num-traits", 2660 - "oboe-sys", 2661 - ] 2662 - 2663 - [[package]] 2664 - name = "oboe-sys" 2665 - version = "0.6.1" 2666 - source = "registry+https://github.com/rust-lang/crates.io-index" 2667 - checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d" 2668 - dependencies = [ 2669 - "cc", 2670 - ] 2671 - 2672 - [[package]] 2673 - name = "once_cell" 2674 - version = "1.19.0" 2675 - source = "registry+https://github.com/rust-lang/crates.io-index" 2676 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2677 - 2678 - [[package]] 2679 - name = "openxr" 2680 - version = "0.18.0" 2681 - source = "git+https://github.com/galister/openxrs?rev=af4a55d#af4a55df60125491c80c61464c824219c6019b76" 2682 - dependencies = [ 2683 - "libc", 2684 - "libloading 0.8.5", 2685 - "ndk-context", 2686 - "openxr-sys", 2687 - ] 2688 - 2689 - [[package]] 2690 - name = "openxr-sys" 2691 - version = "0.10.0" 2692 - source = "git+https://github.com/galister/openxrs?rev=af4a55d#af4a55df60125491c80c61464c824219c6019b76" 2693 - dependencies = [ 2694 - "libc", 2695 - "mint", 2696 - ] 2697 - 2698 - [[package]] 2699 - name = "orbclient" 2700 - version = "0.3.47" 2701 - source = "registry+https://github.com/rust-lang/crates.io-index" 2702 - checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166" 2703 - dependencies = [ 2704 - "libredox", 2705 - ] 2706 - 2707 - [[package]] 2708 - name = "ordered-multimap" 2709 - version = "0.6.0" 2710 - source = "registry+https://github.com/rust-lang/crates.io-index" 2711 - checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" 2712 - dependencies = [ 2713 - "dlv-list", 2714 - "hashbrown 0.13.2", 2715 - ] 2716 - 2717 - [[package]] 2718 - name = "ordered-stream" 2719 - version = "0.2.0" 2720 - source = "registry+https://github.com/rust-lang/crates.io-index" 2721 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2722 - dependencies = [ 2723 - "futures-core", 2724 - "pin-project-lite", 2725 - ] 2726 - 2727 - [[package]] 2728 - name = "ovr_overlay" 2729 - version = "0.0.0" 2730 - source = "git+https://github.com/galister/ovr_overlay_oyasumi#bd03e5bf886f84d438aad95da5c5cc28725013a8" 2731 - dependencies = [ 2732 - "byteorder", 2733 - "derive_more", 2734 - "enumset", 2735 - "lazy_static", 2736 - "log", 2737 - "ovr_overlay_sys", 2738 - "slice-of-array", 2739 - "thiserror", 2740 - ] 2741 - 2742 - [[package]] 2743 - name = "ovr_overlay_sys" 2744 - version = "0.0.0" 2745 - source = "git+https://github.com/galister/ovr_overlay_oyasumi#bd03e5bf886f84d438aad95da5c5cc28725013a8" 2746 - dependencies = [ 2747 - "autocxx", 2748 - "autocxx-build", 2749 - "cxx", 2750 - "normpath", 2751 - ] 2752 - 2753 - [[package]] 2754 - name = "owned_ttf_parser" 2755 - version = "0.24.0" 2756 - source = "registry+https://github.com/rust-lang/crates.io-index" 2757 - checksum = "490d3a563d3122bf7c911a59b0add9389e5ec0f5f0c3ac6b91ff235a0e6a7f90" 2758 - dependencies = [ 2759 - "ttf-parser", 2760 - ] 2761 - 2762 - [[package]] 2763 - name = "parking" 2764 - version = "2.2.0" 2765 - source = "registry+https://github.com/rust-lang/crates.io-index" 2766 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2767 - 2768 - [[package]] 2769 - name = "parking_lot" 2770 - version = "0.12.3" 2771 - source = "registry+https://github.com/rust-lang/crates.io-index" 2772 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2773 - dependencies = [ 2774 - "lock_api", 2775 - "parking_lot_core", 2776 - ] 2777 - 2778 - [[package]] 2779 - name = "parking_lot_core" 2780 - version = "0.9.10" 2781 - source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2783 - dependencies = [ 2784 - "cfg-if", 2785 - "libc", 2786 - "redox_syscall 0.5.3", 2787 - "smallvec", 2788 - "windows-targets 0.52.6", 2789 - ] 2790 - 2791 - [[package]] 2792 - name = "parse-zoneinfo" 2793 - version = "0.3.1" 2794 - source = "registry+https://github.com/rust-lang/crates.io-index" 2795 - checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" 2796 - dependencies = [ 2797 - "regex", 2798 - ] 2799 - 2800 - [[package]] 2801 - name = "pathdiff" 2802 - version = "0.2.1" 2803 - source = "registry+https://github.com/rust-lang/crates.io-index" 2804 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 2805 - 2806 - [[package]] 2807 - name = "percent-encoding" 2808 - version = "2.3.1" 2809 - source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2811 - 2812 - [[package]] 2813 - name = "pest" 2814 - version = "2.7.11" 2815 - source = "registry+https://github.com/rust-lang/crates.io-index" 2816 - checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" 2817 - dependencies = [ 2818 - "memchr", 2819 - "thiserror", 2820 - "ucd-trie", 2821 - ] 2822 - 2823 - [[package]] 2824 - name = "pest_derive" 2825 - version = "2.7.11" 2826 - source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a" 2828 - dependencies = [ 2829 - "pest", 2830 - "pest_generator", 2831 - ] 2832 - 2833 - [[package]] 2834 - name = "pest_generator" 2835 - version = "2.7.11" 2836 - source = "registry+https://github.com/rust-lang/crates.io-index" 2837 - checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183" 2838 - dependencies = [ 2839 - "pest", 2840 - "pest_meta", 2841 - "proc-macro2", 2842 - "quote", 2843 - "syn 2.0.72", 2844 - ] 2845 - 2846 - [[package]] 2847 - name = "pest_meta" 2848 - version = "2.7.11" 2849 - source = "registry+https://github.com/rust-lang/crates.io-index" 2850 - checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f" 2851 - dependencies = [ 2852 - "once_cell", 2853 - "pest", 2854 - "sha2", 2855 - ] 2856 - 2857 - [[package]] 2858 - name = "phf" 2859 - version = "0.11.2" 2860 - source = "registry+https://github.com/rust-lang/crates.io-index" 2861 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 2862 - dependencies = [ 2863 - "phf_shared", 2864 - ] 2865 - 2866 - [[package]] 2867 - name = "phf_codegen" 2868 - version = "0.11.2" 2869 - source = "registry+https://github.com/rust-lang/crates.io-index" 2870 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 2871 - dependencies = [ 2872 - "phf_generator", 2873 - "phf_shared", 2874 - ] 2875 - 2876 - [[package]] 2877 - name = "phf_generator" 2878 - version = "0.11.2" 2879 - source = "registry+https://github.com/rust-lang/crates.io-index" 2880 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 2881 - dependencies = [ 2882 - "phf_shared", 2883 - "rand", 2884 - ] 2885 - 2886 - [[package]] 2887 - name = "phf_shared" 2888 - version = "0.11.2" 2889 - source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 2891 - dependencies = [ 2892 - "siphasher", 2893 - ] 2894 - 2895 - [[package]] 2896 - name = "pin-project" 2897 - version = "1.1.5" 2898 - source = "registry+https://github.com/rust-lang/crates.io-index" 2899 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 2900 - dependencies = [ 2901 - "pin-project-internal", 2902 - ] 2903 - 2904 - [[package]] 2905 - name = "pin-project-internal" 2906 - version = "1.1.5" 2907 - source = "registry+https://github.com/rust-lang/crates.io-index" 2908 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 2909 - dependencies = [ 2910 - "proc-macro2", 2911 - "quote", 2912 - "syn 2.0.72", 2913 - ] 2914 - 2915 - [[package]] 2916 - name = "pin-project-lite" 2917 - version = "0.2.14" 2918 - source = "registry+https://github.com/rust-lang/crates.io-index" 2919 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2920 - 2921 - [[package]] 2922 - name = "pin-utils" 2923 - version = "0.1.0" 2924 - source = "registry+https://github.com/rust-lang/crates.io-index" 2925 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2926 - 2927 - [[package]] 2928 - name = "piper" 2929 - version = "0.2.3" 2930 - source = "registry+https://github.com/rust-lang/crates.io-index" 2931 - checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" 2932 - dependencies = [ 2933 - "atomic-waker", 2934 - "fastrand", 2935 - "futures-io", 2936 - ] 2937 - 2938 - [[package]] 2939 - name = "pipewire" 2940 - version = "0.8.0" 2941 - source = "registry+https://github.com/rust-lang/crates.io-index" 2942 - checksum = "08e645ba5c45109106d56610b3ee60eb13a6f2beb8b74f8dc8186cf261788dda" 2943 - dependencies = [ 2944 - "anyhow", 2945 - "bitflags 2.6.0", 2946 - "libc", 2947 - "libspa", 2948 - "libspa-sys", 2949 - "nix 0.27.1", 2950 - "once_cell", 2951 - "pipewire-sys", 2952 - "thiserror", 2953 - ] 2954 - 2955 - [[package]] 2956 - name = "pipewire-sys" 2957 - version = "0.8.0" 2958 - source = "registry+https://github.com/rust-lang/crates.io-index" 2959 - checksum = "849e188f90b1dda88fe2bfe1ad31fe5f158af2c98f80fb5d13726c44f3f01112" 2960 - dependencies = [ 2961 - "bindgen", 2962 - "libspa-sys", 2963 - "system-deps", 2964 - ] 2965 - 2966 - [[package]] 2967 - name = "pkg-config" 2968 - version = "0.3.30" 2969 - source = "registry+https://github.com/rust-lang/crates.io-index" 2970 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2971 - 2972 - [[package]] 2973 - name = "polling" 2974 - version = "3.7.2" 2975 - source = "registry+https://github.com/rust-lang/crates.io-index" 2976 - checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" 2977 - dependencies = [ 2978 - "cfg-if", 2979 - "concurrent-queue", 2980 - "hermit-abi 0.4.0", 2981 - "pin-project-lite", 2982 - "rustix", 2983 - "tracing", 2984 - "windows-sys 0.52.0", 2985 - ] 2986 - 2987 - [[package]] 2988 - name = "ppv-lite86" 2989 - version = "0.2.18" 2990 - source = "registry+https://github.com/rust-lang/crates.io-index" 2991 - checksum = "dee4364d9f3b902ef14fab8a1ddffb783a1cb6b4bba3bfc1fa3922732c7de97f" 2992 - dependencies = [ 2993 - "zerocopy 0.6.6", 2994 - ] 2995 - 2996 - [[package]] 2997 - name = "prettyplease" 2998 - version = "0.2.20" 2999 - source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" 3001 - dependencies = [ 3002 - "proc-macro2", 3003 - "syn 2.0.72", 3004 - ] 3005 - 3006 - [[package]] 3007 - name = "proc-macro-crate" 3008 - version = "1.3.1" 3009 - source = "registry+https://github.com/rust-lang/crates.io-index" 3010 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3011 - dependencies = [ 3012 - "once_cell", 3013 - "toml_edit 0.19.15", 3014 - ] 3015 - 3016 - [[package]] 3017 - name = "proc-macro-crate" 3018 - version = "2.0.2" 3019 - source = "registry+https://github.com/rust-lang/crates.io-index" 3020 - checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" 3021 - dependencies = [ 3022 - "toml_datetime", 3023 - "toml_edit 0.20.2", 3024 - ] 3025 - 3026 - [[package]] 3027 - name = "proc-macro-error" 3028 - version = "1.0.4" 3029 - source = "registry+https://github.com/rust-lang/crates.io-index" 3030 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3031 - dependencies = [ 3032 - "proc-macro-error-attr", 3033 - "proc-macro2", 3034 - "quote", 3035 - "syn 1.0.109", 3036 - "version_check", 3037 - ] 3038 - 3039 - [[package]] 3040 - name = "proc-macro-error-attr" 3041 - version = "1.0.4" 3042 - source = "registry+https://github.com/rust-lang/crates.io-index" 3043 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3044 - dependencies = [ 3045 - "proc-macro2", 3046 - "quote", 3047 - "version_check", 3048 - ] 3049 - 3050 - [[package]] 3051 - name = "proc-macro2" 3052 - version = "1.0.86" 3053 - source = "registry+https://github.com/rust-lang/crates.io-index" 3054 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 3055 - dependencies = [ 3056 - "unicode-ident", 3057 - ] 3058 - 3059 - [[package]] 3060 - name = "quick-xml" 3061 - version = "0.30.0" 3062 - source = "registry+https://github.com/rust-lang/crates.io-index" 3063 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 3064 - dependencies = [ 3065 - "memchr", 3066 - ] 3067 - 3068 - [[package]] 3069 - name = "quick-xml" 3070 - version = "0.34.0" 3071 - source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "6f24d770aeca0eacb81ac29dfbc55ebcc09312fdd1f8bbecdc7e4a84e000e3b4" 3073 - dependencies = [ 3074 - "memchr", 3075 - ] 3076 - 3077 - [[package]] 3078 - name = "quote" 3079 - version = "1.0.36" 3080 - source = "registry+https://github.com/rust-lang/crates.io-index" 3081 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 3082 - dependencies = [ 3083 - "proc-macro2", 3084 - ] 3085 - 3086 - [[package]] 3087 - name = "rand" 3088 - version = "0.8.5" 3089 - source = "registry+https://github.com/rust-lang/crates.io-index" 3090 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3091 - dependencies = [ 3092 - "libc", 3093 - "rand_chacha", 3094 - "rand_core", 3095 - ] 3096 - 3097 - [[package]] 3098 - name = "rand_chacha" 3099 - version = "0.3.1" 3100 - source = "registry+https://github.com/rust-lang/crates.io-index" 3101 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3102 - dependencies = [ 3103 - "ppv-lite86", 3104 - "rand_core", 3105 - ] 3106 - 3107 - [[package]] 3108 - name = "rand_core" 3109 - version = "0.6.4" 3110 - source = "registry+https://github.com/rust-lang/crates.io-index" 3111 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3112 - dependencies = [ 3113 - "getrandom", 3114 - ] 3115 - 3116 - [[package]] 3117 - name = "raw-window-handle" 3118 - version = "0.6.2" 3119 - source = "registry+https://github.com/rust-lang/crates.io-index" 3120 - checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 3121 - 3122 - [[package]] 3123 - name = "rayon" 3124 - version = "1.10.0" 3125 - source = "registry+https://github.com/rust-lang/crates.io-index" 3126 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 3127 - dependencies = [ 3128 - "either", 3129 - "rayon-core", 3130 - ] 3131 - 3132 - [[package]] 3133 - name = "rayon-core" 3134 - version = "1.12.1" 3135 - source = "registry+https://github.com/rust-lang/crates.io-index" 3136 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3137 - dependencies = [ 3138 - "crossbeam-deque", 3139 - "crossbeam-utils", 3140 - ] 3141 - 3142 - [[package]] 3143 - name = "redox_syscall" 3144 - version = "0.4.1" 3145 - source = "registry+https://github.com/rust-lang/crates.io-index" 3146 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3147 - dependencies = [ 3148 - "bitflags 1.3.2", 3149 - ] 3150 - 3151 - [[package]] 3152 - name = "redox_syscall" 3153 - version = "0.5.3" 3154 - source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" 3156 - dependencies = [ 3157 - "bitflags 2.6.0", 3158 - ] 3159 - 3160 - [[package]] 3161 - name = "regex" 3162 - version = "1.10.6" 3163 - source = "registry+https://github.com/rust-lang/crates.io-index" 3164 - checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" 3165 - dependencies = [ 3166 - "aho-corasick", 3167 - "memchr", 3168 - "regex-automata", 3169 - "regex-syntax", 3170 - ] 3171 - 3172 - [[package]] 3173 - name = "regex-automata" 3174 - version = "0.4.7" 3175 - source = "registry+https://github.com/rust-lang/crates.io-index" 3176 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 3177 - dependencies = [ 3178 - "aho-corasick", 3179 - "memchr", 3180 - "regex-syntax", 3181 - ] 3182 - 3183 - [[package]] 3184 - name = "regex-syntax" 3185 - version = "0.8.4" 3186 - source = "registry+https://github.com/rust-lang/crates.io-index" 3187 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 3188 - 3189 - [[package]] 3190 - name = "rodio" 3191 - version = "0.19.0" 3192 - source = "registry+https://github.com/rust-lang/crates.io-index" 3193 - checksum = "6006a627c1a38d37f3d3a85c6575418cfe34a5392d60a686d0071e1c8d427acb" 3194 - dependencies = [ 3195 - "cpal", 3196 - "hound", 3197 - "thiserror", 3198 - ] 3199 - 3200 - [[package]] 3201 - name = "ron" 3202 - version = "0.8.1" 3203 - source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 3205 - dependencies = [ 3206 - "base64", 3207 - "bitflags 2.6.0", 3208 - "serde", 3209 - "serde_derive", 3210 - ] 3211 - 3212 - [[package]] 3213 - name = "rosc" 3214 - version = "0.10.1" 3215 - source = "registry+https://github.com/rust-lang/crates.io-index" 3216 - checksum = "b2e63d9e6b0d090be1485cf159b1e04c3973d2d3e1614963544ea2ff47a4a981" 3217 - dependencies = [ 3218 - "byteorder", 3219 - "nom", 3220 - ] 3221 - 3222 - [[package]] 3223 - name = "roxmltree" 3224 - version = "0.14.1" 3225 - source = "registry+https://github.com/rust-lang/crates.io-index" 3226 - checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b" 3227 - dependencies = [ 3228 - "xmlparser", 3229 - ] 3230 - 3231 - [[package]] 3232 - name = "rust-ini" 3233 - version = "0.19.0" 3234 - source = "registry+https://github.com/rust-lang/crates.io-index" 3235 - checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" 3236 - dependencies = [ 3237 - "cfg-if", 3238 - "ordered-multimap", 3239 - ] 3240 - 3241 - [[package]] 3242 - name = "rustc-demangle" 3243 - version = "0.1.24" 3244 - source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3246 - 3247 - [[package]] 3248 - name = "rustc-hash" 3249 - version = "1.1.0" 3250 - source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3252 - 3253 - [[package]] 3254 - name = "rustc_version" 3255 - version = "0.4.0" 3256 - source = "registry+https://github.com/rust-lang/crates.io-index" 3257 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3258 - dependencies = [ 3259 - "semver", 3260 - ] 3261 - 3262 - [[package]] 3263 - name = "rustix" 3264 - version = "0.38.34" 3265 - source = "registry+https://github.com/rust-lang/crates.io-index" 3266 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3267 - dependencies = [ 3268 - "bitflags 2.6.0", 3269 - "errno", 3270 - "libc", 3271 - "linux-raw-sys", 3272 - "windows-sys 0.52.0", 3273 - ] 3274 - 3275 - [[package]] 3276 - name = "rustversion" 3277 - version = "1.0.17" 3278 - source = "registry+https://github.com/rust-lang/crates.io-index" 3279 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 3280 - 3281 - [[package]] 3282 - name = "rxscreen" 3283 - version = "0.1.7" 3284 - source = "registry+https://github.com/rust-lang/crates.io-index" 3285 - checksum = "afbab13f83503a8272b7150d487494992cf6c59c299dcaf5d8ffac75bad9fc96" 3286 - dependencies = [ 3287 - "libc", 3288 - ] 3289 - 3290 - [[package]] 3291 - name = "ryu" 3292 - version = "1.0.18" 3293 - source = "registry+https://github.com/rust-lang/crates.io-index" 3294 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 3295 - 3296 - [[package]] 3297 - name = "same-file" 3298 - version = "1.0.6" 3299 - source = "registry+https://github.com/rust-lang/crates.io-index" 3300 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3301 - dependencies = [ 3302 - "winapi-util", 3303 - ] 3304 - 3305 - [[package]] 3306 - name = "scoped-tls" 3307 - version = "1.0.1" 3308 - source = "registry+https://github.com/rust-lang/crates.io-index" 3309 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3310 - 3311 - [[package]] 3312 - name = "scopeguard" 3313 - version = "1.2.0" 3314 - source = "registry+https://github.com/rust-lang/crates.io-index" 3315 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3316 - 3317 - [[package]] 3318 - name = "sctk-adwaita" 3319 - version = "0.10.1" 3320 - source = "registry+https://github.com/rust-lang/crates.io-index" 3321 - checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec" 3322 - dependencies = [ 3323 - "ab_glyph", 3324 - "log", 3325 - "memmap2 0.9.4", 3326 - "smithay-client-toolkit", 3327 - "tiny-skia", 3328 - ] 3329 - 3330 - [[package]] 3331 - name = "semver" 3332 - version = "1.0.23" 3333 - source = "registry+https://github.com/rust-lang/crates.io-index" 3334 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 3335 - 3336 - [[package]] 3337 - name = "serde" 3338 - version = "1.0.204" 3339 - source = "registry+https://github.com/rust-lang/crates.io-index" 3340 - checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" 3341 - dependencies = [ 3342 - "serde_derive", 3343 - ] 3344 - 3345 - [[package]] 3346 - name = "serde_derive" 3347 - version = "1.0.204" 3348 - source = "registry+https://github.com/rust-lang/crates.io-index" 3349 - checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" 3350 - dependencies = [ 3351 - "proc-macro2", 3352 - "quote", 3353 - "syn 2.0.72", 3354 - ] 3355 - 3356 - [[package]] 3357 - name = "serde_json" 3358 - version = "1.0.122" 3359 - source = "registry+https://github.com/rust-lang/crates.io-index" 3360 - checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" 3361 - dependencies = [ 3362 - "itoa", 3363 - "memchr", 3364 - "ryu", 3365 - "serde", 3366 - ] 3367 - 3368 - [[package]] 3369 - name = "serde_json5" 3370 - version = "0.1.0" 3371 - source = "registry+https://github.com/rust-lang/crates.io-index" 3372 - checksum = "32a6b754515e1a7bd79fc2edeaecee526fc80cb3a918607e5ca149225a3a9586" 3373 - dependencies = [ 3374 - "pest", 3375 - "pest_derive", 3376 - "serde", 3377 - ] 3378 - 3379 - [[package]] 3380 - name = "serde_repr" 3381 - version = "0.1.19" 3382 - source = "registry+https://github.com/rust-lang/crates.io-index" 3383 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 3384 - dependencies = [ 3385 - "proc-macro2", 3386 - "quote", 3387 - "syn 2.0.72", 3388 - ] 3389 - 3390 - [[package]] 3391 - name = "serde_spanned" 3392 - version = "0.6.7" 3393 - source = "registry+https://github.com/rust-lang/crates.io-index" 3394 - checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d" 3395 - dependencies = [ 3396 - "serde", 3397 - ] 3398 - 3399 - [[package]] 3400 - name = "serde_yaml" 3401 - version = "0.9.34+deprecated" 3402 - source = "registry+https://github.com/rust-lang/crates.io-index" 3403 - checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 3404 - dependencies = [ 3405 - "indexmap 2.3.0", 3406 - "itoa", 3407 - "ryu", 3408 - "serde", 3409 - "unsafe-libyaml", 3410 - ] 3411 - 3412 - [[package]] 3413 - name = "sha1" 3414 - version = "0.10.6" 3415 - source = "registry+https://github.com/rust-lang/crates.io-index" 3416 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3417 - dependencies = [ 3418 - "cfg-if", 3419 - "cpufeatures", 3420 - "digest", 3421 - ] 3422 - 3423 - [[package]] 3424 - name = "sha2" 3425 - version = "0.10.8" 3426 - source = "registry+https://github.com/rust-lang/crates.io-index" 3427 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3428 - dependencies = [ 3429 - "cfg-if", 3430 - "cpufeatures", 3431 - "digest", 3432 - ] 3433 - 3434 - [[package]] 3435 - name = "shaderc" 3436 - version = "0.8.3" 3437 - source = "registry+https://github.com/rust-lang/crates.io-index" 3438 - checksum = "27e07913ada18607bb60d12431cbe3358d3bbebbe95948e1618851dc01e63b7b" 3439 - dependencies = [ 3440 - "libc", 3441 - "shaderc-sys", 3442 - ] 3443 - 3444 - [[package]] 3445 - name = "shaderc-sys" 3446 - version = "0.8.3" 3447 - source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "73120d240fe22196300f39ca8547ca2d014960f27b19b47b21288b396272f7f7" 3449 - dependencies = [ 3450 - "cmake", 3451 - "libc", 3452 - "roxmltree", 3453 - ] 3454 - 3455 - [[package]] 3456 - name = "shlex" 3457 - version = "1.3.0" 3458 - source = "registry+https://github.com/rust-lang/crates.io-index" 3459 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3460 - 3461 - [[package]] 3462 - name = "signal-hook-registry" 3463 - version = "1.4.2" 3464 - source = "registry+https://github.com/rust-lang/crates.io-index" 3465 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3466 - dependencies = [ 3467 - "libc", 3468 - ] 3469 - 3470 - [[package]] 3471 - name = "siphasher" 3472 - version = "0.3.11" 3473 - source = "registry+https://github.com/rust-lang/crates.io-index" 3474 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3475 - 3476 - [[package]] 3477 - name = "slab" 3478 - version = "0.4.9" 3479 - source = "registry+https://github.com/rust-lang/crates.io-index" 3480 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 3481 - dependencies = [ 3482 - "autocfg", 3483 - ] 3484 - 3485 - [[package]] 3486 - name = "slice-of-array" 3487 - version = "0.3.2" 3488 - source = "registry+https://github.com/rust-lang/crates.io-index" 3489 - checksum = "a4f120bb98cb4cb0dab21c882968c3cbff79dd23b46f07b1cf5c25044945ce84" 3490 - 3491 - [[package]] 3492 - name = "smallvec" 3493 - version = "1.13.2" 3494 - source = "registry+https://github.com/rust-lang/crates.io-index" 3495 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 3496 - 3497 - [[package]] 3498 - name = "smithay-client-toolkit" 3499 - version = "0.19.2" 3500 - source = "registry+https://github.com/rust-lang/crates.io-index" 3501 - checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016" 3502 - dependencies = [ 3503 - "bitflags 2.6.0", 3504 - "bytemuck", 3505 - "calloop", 3506 - "calloop-wayland-source", 3507 - "cursor-icon", 3508 - "libc", 3509 - "log", 3510 - "memmap2 0.9.4", 3511 - "pkg-config", 3512 - "rustix", 3513 - "thiserror", 3514 - "wayland-backend", 3515 - "wayland-client", 3516 - "wayland-csd-frame", 3517 - "wayland-cursor", 3518 - "wayland-protocols", 3519 - "wayland-protocols-wlr", 3520 - "wayland-scanner", 3521 - "xkbcommon 0.7.0", 3522 - "xkeysym", 3523 - ] 3524 - 3525 - [[package]] 3526 - name = "smol_str" 3527 - version = "0.2.2" 3528 - source = "registry+https://github.com/rust-lang/crates.io-index" 3529 - checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 3530 - dependencies = [ 3531 - "serde", 3532 - ] 3533 - 3534 - [[package]] 3535 - name = "static_assertions" 3536 - version = "1.1.0" 3537 - source = "registry+https://github.com/rust-lang/crates.io-index" 3538 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3539 - 3540 - [[package]] 3541 - name = "strict-num" 3542 - version = "0.1.1" 3543 - source = "registry+https://github.com/rust-lang/crates.io-index" 3544 - checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 3545 - 3546 - [[package]] 3547 - name = "strsim" 3548 - version = "0.11.1" 3549 - source = "registry+https://github.com/rust-lang/crates.io-index" 3550 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3551 - 3552 - [[package]] 3553 - name = "strum" 3554 - version = "0.26.3" 3555 - source = "registry+https://github.com/rust-lang/crates.io-index" 3556 - checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 3557 - dependencies = [ 3558 - "strum_macros", 3559 - ] 3560 - 3561 - [[package]] 3562 - name = "strum_macros" 3563 - version = "0.26.4" 3564 - source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 3566 - dependencies = [ 3567 - "heck 0.5.0", 3568 - "proc-macro2", 3569 - "quote", 3570 - "rustversion", 3571 - "syn 2.0.72", 3572 - ] 3573 - 3574 - [[package]] 3575 - name = "syn" 3576 - version = "1.0.109" 3577 - source = "registry+https://github.com/rust-lang/crates.io-index" 3578 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3579 - dependencies = [ 3580 - "proc-macro2", 3581 - "quote", 3582 - "unicode-ident", 3583 - ] 3584 - 3585 - [[package]] 3586 - name = "syn" 3587 - version = "2.0.72" 3588 - source = "registry+https://github.com/rust-lang/crates.io-index" 3589 - checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" 3590 - dependencies = [ 3591 - "proc-macro2", 3592 - "quote", 3593 - "unicode-ident", 3594 - ] 3595 - 3596 - [[package]] 3597 - name = "sysinfo" 3598 - version = "0.31.2" 3599 - source = "registry+https://github.com/rust-lang/crates.io-index" 3600 - checksum = "d4115055da5f572fff541dd0c4e61b0262977f453cc9fe04be83aba25a89bdab" 3601 - dependencies = [ 3602 - "core-foundation-sys", 3603 - "libc", 3604 - "memchr", 3605 - "ntapi", 3606 - "rayon", 3607 - "windows 0.57.0", 3608 - ] 3609 - 3610 - [[package]] 3611 - name = "system-deps" 3612 - version = "6.2.2" 3613 - source = "registry+https://github.com/rust-lang/crates.io-index" 3614 - checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 3615 - dependencies = [ 3616 - "cfg-expr", 3617 - "heck 0.5.0", 3618 - "pkg-config", 3619 - "toml", 3620 - "version-compare", 3621 - ] 3622 - 3623 - [[package]] 3624 - name = "target-lexicon" 3625 - version = "0.12.16" 3626 - source = "registry+https://github.com/rust-lang/crates.io-index" 3627 - checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 3628 - 3629 - [[package]] 3630 - name = "tempfile" 3631 - version = "3.10.1" 3632 - source = "registry+https://github.com/rust-lang/crates.io-index" 3633 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 3634 - dependencies = [ 3635 - "cfg-if", 3636 - "fastrand", 3637 - "rustix", 3638 - "windows-sys 0.52.0", 3639 - ] 3640 - 3641 - [[package]] 3642 - name = "termcolor" 3643 - version = "1.4.1" 3644 - source = "registry+https://github.com/rust-lang/crates.io-index" 3645 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3646 - dependencies = [ 3647 - "winapi-util", 3648 - ] 3649 - 3650 - [[package]] 3651 - name = "thiserror" 3652 - version = "1.0.63" 3653 - source = "registry+https://github.com/rust-lang/crates.io-index" 3654 - checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 3655 - dependencies = [ 3656 - "thiserror-impl", 3657 - ] 3658 - 3659 - [[package]] 3660 - name = "thiserror-impl" 3661 - version = "1.0.63" 3662 - source = "registry+https://github.com/rust-lang/crates.io-index" 3663 - checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 3664 - dependencies = [ 3665 - "proc-macro2", 3666 - "quote", 3667 - "syn 2.0.72", 3668 - ] 3669 - 3670 - [[package]] 3671 - name = "thread_local" 3672 - version = "1.1.8" 3673 - source = "registry+https://github.com/rust-lang/crates.io-index" 3674 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 3675 - dependencies = [ 3676 - "cfg-if", 3677 - "once_cell", 3678 - ] 3679 - 3680 - [[package]] 3681 - name = "tiny-keccak" 3682 - version = "2.0.2" 3683 - source = "registry+https://github.com/rust-lang/crates.io-index" 3684 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 3685 - dependencies = [ 3686 - "crunchy", 3687 - ] 3688 - 3689 - [[package]] 3690 - name = "tiny-skia" 3691 - version = "0.11.4" 3692 - source = "registry+https://github.com/rust-lang/crates.io-index" 3693 - checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 3694 - dependencies = [ 3695 - "arrayref", 3696 - "arrayvec", 3697 - "bytemuck", 3698 - "cfg-if", 3699 - "log", 3700 - "tiny-skia-path", 3701 - ] 3702 - 3703 - [[package]] 3704 - name = "tiny-skia-path" 3705 - version = "0.11.4" 3706 - source = "registry+https://github.com/rust-lang/crates.io-index" 3707 - checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 3708 - dependencies = [ 3709 - "arrayref", 3710 - "bytemuck", 3711 - "strict-num", 3712 - ] 3713 - 3714 - [[package]] 3715 - name = "tinyvec" 3716 - version = "1.8.0" 3717 - source = "registry+https://github.com/rust-lang/crates.io-index" 3718 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 3719 - dependencies = [ 3720 - "tinyvec_macros", 3721 - ] 3722 - 3723 - [[package]] 3724 - name = "tinyvec_macros" 3725 - version = "0.1.1" 3726 - source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3728 - 3729 - [[package]] 3730 - name = "toml" 3731 - version = "0.8.2" 3732 - source = "registry+https://github.com/rust-lang/crates.io-index" 3733 - checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 3734 - dependencies = [ 3735 - "serde", 3736 - "serde_spanned", 3737 - "toml_datetime", 3738 - "toml_edit 0.20.2", 3739 - ] 3740 - 3741 - [[package]] 3742 - name = "toml_datetime" 3743 - version = "0.6.3" 3744 - source = "registry+https://github.com/rust-lang/crates.io-index" 3745 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 3746 - dependencies = [ 3747 - "serde", 3748 - ] 3749 - 3750 - [[package]] 3751 - name = "toml_edit" 3752 - version = "0.19.15" 3753 - source = "registry+https://github.com/rust-lang/crates.io-index" 3754 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3755 - dependencies = [ 3756 - "indexmap 2.3.0", 3757 - "toml_datetime", 3758 - "winnow", 3759 - ] 3760 - 3761 - [[package]] 3762 - name = "toml_edit" 3763 - version = "0.20.2" 3764 - source = "registry+https://github.com/rust-lang/crates.io-index" 3765 - checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 3766 - dependencies = [ 3767 - "indexmap 2.3.0", 3768 - "serde", 3769 - "serde_spanned", 3770 - "toml_datetime", 3771 - "winnow", 3772 - ] 3773 - 3774 - [[package]] 3775 - name = "tracing" 3776 - version = "0.1.40" 3777 - source = "registry+https://github.com/rust-lang/crates.io-index" 3778 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3779 - dependencies = [ 3780 - "pin-project-lite", 3781 - "tracing-attributes", 3782 - "tracing-core", 3783 - ] 3784 - 3785 - [[package]] 3786 - name = "tracing-attributes" 3787 - version = "0.1.27" 3788 - source = "registry+https://github.com/rust-lang/crates.io-index" 3789 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3790 - dependencies = [ 3791 - "proc-macro2", 3792 - "quote", 3793 - "syn 2.0.72", 3794 - ] 3795 - 3796 - [[package]] 3797 - name = "tracing-core" 3798 - version = "0.1.32" 3799 - source = "registry+https://github.com/rust-lang/crates.io-index" 3800 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3801 - dependencies = [ 3802 - "once_cell", 3803 - ] 3804 - 3805 - [[package]] 3806 - name = "ttf-parser" 3807 - version = "0.24.0" 3808 - source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "8686b91785aff82828ed725225925b33b4fde44c4bb15876e5f7c832724c420a" 3810 - 3811 - [[package]] 3812 - name = "typenum" 3813 - version = "1.17.0" 3814 - source = "registry+https://github.com/rust-lang/crates.io-index" 3815 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3816 - 3817 - [[package]] 3818 - name = "ucd-trie" 3819 - version = "0.1.6" 3820 - source = "registry+https://github.com/rust-lang/crates.io-index" 3821 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 3822 - 3823 - [[package]] 3824 - name = "uds_windows" 3825 - version = "1.1.0" 3826 - source = "registry+https://github.com/rust-lang/crates.io-index" 3827 - checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 3828 - dependencies = [ 3829 - "memoffset", 3830 - "tempfile", 3831 - "winapi", 3832 - ] 3833 - 3834 - [[package]] 3835 - name = "unicode-bidi" 3836 - version = "0.3.15" 3837 - source = "registry+https://github.com/rust-lang/crates.io-index" 3838 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 3839 - 3840 - [[package]] 3841 - name = "unicode-ident" 3842 - version = "1.0.12" 3843 - source = "registry+https://github.com/rust-lang/crates.io-index" 3844 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3845 - 3846 - [[package]] 3847 - name = "unicode-normalization" 3848 - version = "0.1.23" 3849 - source = "registry+https://github.com/rust-lang/crates.io-index" 3850 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 3851 - dependencies = [ 3852 - "tinyvec", 3853 - ] 3854 - 3855 - [[package]] 3856 - name = "unicode-segmentation" 3857 - version = "1.11.0" 3858 - source = "registry+https://github.com/rust-lang/crates.io-index" 3859 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 3860 - 3861 - [[package]] 3862 - name = "unicode-width" 3863 - version = "0.1.13" 3864 - source = "registry+https://github.com/rust-lang/crates.io-index" 3865 - checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 3866 - 3867 - [[package]] 3868 - name = "unsafe-libyaml" 3869 - version = "0.2.11" 3870 - source = "registry+https://github.com/rust-lang/crates.io-index" 3871 - checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 3872 - 3873 - [[package]] 3874 - name = "url" 3875 - version = "2.5.2" 3876 - source = "registry+https://github.com/rust-lang/crates.io-index" 3877 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 3878 - dependencies = [ 3879 - "form_urlencoded", 3880 - "idna", 3881 - "percent-encoding", 3882 - "serde", 3883 - ] 3884 - 3885 - [[package]] 3886 - name = "utf8parse" 3887 - version = "0.2.2" 3888 - source = "registry+https://github.com/rust-lang/crates.io-index" 3889 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3890 - 3891 - [[package]] 3892 - name = "version-compare" 3893 - version = "0.2.0" 3894 - source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 3896 - 3897 - [[package]] 3898 - name = "version_check" 3899 - version = "0.9.5" 3900 - source = "registry+https://github.com/rust-lang/crates.io-index" 3901 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3902 - 3903 - [[package]] 3904 - name = "vk-parse" 3905 - version = "0.12.0" 3906 - source = "registry+https://github.com/rust-lang/crates.io-index" 3907 - checksum = "81086c28be67a8759cd80cbb3c8f7b520e0874605fc5eb74d5a1c9c2d1878e79" 3908 - dependencies = [ 3909 - "xml-rs", 3910 - ] 3911 - 3912 - [[package]] 3913 - name = "vulkano" 3914 - version = "0.34.0" 3915 - source = "git+https://github.com/vulkano-rs/vulkano?rev=94f50f1#94f50f18bd25971ea123adb8b5782ad65a8f085c" 3916 - dependencies = [ 3917 - "ahash", 3918 - "ash", 3919 - "bytemuck", 3920 - "core-graphics-types", 3921 - "crossbeam-queue", 3922 - "half", 3923 - "heck 0.4.1", 3924 - "indexmap 2.3.0", 3925 - "libloading 0.8.5", 3926 - "objc", 3927 - "once_cell", 3928 - "parking_lot", 3929 - "proc-macro2", 3930 - "quote", 3931 - "raw-window-handle", 3932 - "regex", 3933 - "serde", 3934 - "serde_json", 3935 - "smallvec", 3936 - "thread_local", 3937 - "vk-parse", 3938 - "vulkano-macros", 3939 - ] 3940 - 3941 - [[package]] 3942 - name = "vulkano-macros" 3943 - version = "0.34.0" 3944 - source = "git+https://github.com/vulkano-rs/vulkano?rev=94f50f1#94f50f18bd25971ea123adb8b5782ad65a8f085c" 3945 - dependencies = [ 3946 - "proc-macro-crate 2.0.2", 3947 - "proc-macro2", 3948 - "quote", 3949 - "syn 2.0.72", 3950 - ] 3951 - 3952 - [[package]] 3953 - name = "vulkano-shaders" 3954 - version = "0.34.0" 3955 - source = "git+https://github.com/vulkano-rs/vulkano?rev=94f50f1#94f50f18bd25971ea123adb8b5782ad65a8f085c" 3956 - dependencies = [ 3957 - "ahash", 3958 - "heck 0.4.1", 3959 - "proc-macro2", 3960 - "quote", 3961 - "shaderc", 3962 - "syn 2.0.72", 3963 - "vulkano", 3964 - ] 3965 - 3966 - [[package]] 3967 - name = "walkdir" 3968 - version = "2.5.0" 3969 - source = "registry+https://github.com/rust-lang/crates.io-index" 3970 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3971 - dependencies = [ 3972 - "same-file", 3973 - "winapi-util", 3974 - ] 3975 - 3976 - [[package]] 3977 - name = "wasi" 3978 - version = "0.11.0+wasi-snapshot-preview1" 3979 - source = "registry+https://github.com/rust-lang/crates.io-index" 3980 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3981 - 3982 - [[package]] 3983 - name = "wasm-bindgen" 3984 - version = "0.2.92" 3985 - source = "registry+https://github.com/rust-lang/crates.io-index" 3986 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 3987 - dependencies = [ 3988 - "cfg-if", 3989 - "wasm-bindgen-macro", 3990 - ] 3991 - 3992 - [[package]] 3993 - name = "wasm-bindgen-backend" 3994 - version = "0.2.92" 3995 - source = "registry+https://github.com/rust-lang/crates.io-index" 3996 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 3997 - dependencies = [ 3998 - "bumpalo", 3999 - "log", 4000 - "once_cell", 4001 - "proc-macro2", 4002 - "quote", 4003 - "syn 2.0.72", 4004 - "wasm-bindgen-shared", 4005 - ] 4006 - 4007 - [[package]] 4008 - name = "wasm-bindgen-futures" 4009 - version = "0.4.42" 4010 - source = "registry+https://github.com/rust-lang/crates.io-index" 4011 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 4012 - dependencies = [ 4013 - "cfg-if", 4014 - "js-sys", 4015 - "wasm-bindgen", 4016 - "web-sys", 4017 - ] 4018 - 4019 - [[package]] 4020 - name = "wasm-bindgen-macro" 4021 - version = "0.2.92" 4022 - source = "registry+https://github.com/rust-lang/crates.io-index" 4023 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 4024 - dependencies = [ 4025 - "quote", 4026 - "wasm-bindgen-macro-support", 4027 - ] 4028 - 4029 - [[package]] 4030 - name = "wasm-bindgen-macro-support" 4031 - version = "0.2.92" 4032 - source = "registry+https://github.com/rust-lang/crates.io-index" 4033 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 4034 - dependencies = [ 4035 - "proc-macro2", 4036 - "quote", 4037 - "syn 2.0.72", 4038 - "wasm-bindgen-backend", 4039 - "wasm-bindgen-shared", 4040 - ] 4041 - 4042 - [[package]] 4043 - name = "wasm-bindgen-shared" 4044 - version = "0.2.92" 4045 - source = "registry+https://github.com/rust-lang/crates.io-index" 4046 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 4047 - 4048 - [[package]] 4049 - name = "wayland-backend" 4050 - version = "0.3.6" 4051 - source = "registry+https://github.com/rust-lang/crates.io-index" 4052 - checksum = "f90e11ce2ca99c97b940ee83edbae9da2d56a08f9ea8158550fd77fa31722993" 4053 - dependencies = [ 4054 - "cc", 4055 - "downcast-rs", 4056 - "rustix", 4057 - "scoped-tls", 4058 - "smallvec", 4059 - "wayland-sys", 4060 - ] 4061 - 4062 - [[package]] 4063 - name = "wayland-client" 4064 - version = "0.31.5" 4065 - source = "registry+https://github.com/rust-lang/crates.io-index" 4066 - checksum = "7e321577a0a165911bdcfb39cf029302479d7527b517ee58ab0f6ad09edf0943" 4067 - dependencies = [ 4068 - "bitflags 2.6.0", 4069 - "rustix", 4070 - "wayland-backend", 4071 - "wayland-scanner", 4072 - ] 4073 - 4074 - [[package]] 4075 - name = "wayland-csd-frame" 4076 - version = "0.3.0" 4077 - source = "registry+https://github.com/rust-lang/crates.io-index" 4078 - checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 4079 - dependencies = [ 4080 - "bitflags 2.6.0", 4081 - "cursor-icon", 4082 - "wayland-backend", 4083 - ] 4084 - 4085 - [[package]] 4086 - name = "wayland-cursor" 4087 - version = "0.31.5" 4088 - source = "registry+https://github.com/rust-lang/crates.io-index" 4089 - checksum = "6ef9489a8df197ebf3a8ce8a7a7f0a2320035c3743f3c1bd0bdbccf07ce64f95" 4090 - dependencies = [ 4091 - "rustix", 4092 - "wayland-client", 4093 - "xcursor", 4094 - ] 4095 - 4096 - [[package]] 4097 - name = "wayland-protocols" 4098 - version = "0.32.3" 4099 - source = "registry+https://github.com/rust-lang/crates.io-index" 4100 - checksum = "62989625a776e827cc0f15d41444a3cea5205b963c3a25be48ae1b52d6b4daaa" 4101 - dependencies = [ 4102 - "bitflags 2.6.0", 4103 - "wayland-backend", 4104 - "wayland-client", 4105 - "wayland-scanner", 4106 - ] 4107 - 4108 - [[package]] 4109 - name = "wayland-protocols-plasma" 4110 - version = "0.3.3" 4111 - source = "registry+https://github.com/rust-lang/crates.io-index" 4112 - checksum = "f79f2d57c7fcc6ab4d602adba364bf59a5c24de57bd194486bf9b8360e06bfc4" 4113 - dependencies = [ 4114 - "bitflags 2.6.0", 4115 - "wayland-backend", 4116 - "wayland-client", 4117 - "wayland-protocols", 4118 - "wayland-scanner", 4119 - ] 4120 - 4121 - [[package]] 4122 - name = "wayland-protocols-wlr" 4123 - version = "0.3.3" 4124 - source = "registry+https://github.com/rust-lang/crates.io-index" 4125 - checksum = "fd993de54a40a40fbe5601d9f1fbcaef0aebcc5fda447d7dc8f6dcbaae4f8953" 4126 - dependencies = [ 4127 - "bitflags 2.6.0", 4128 - "wayland-backend", 4129 - "wayland-client", 4130 - "wayland-protocols", 4131 - "wayland-scanner", 4132 - ] 4133 - 4134 - [[package]] 4135 - name = "wayland-scanner" 4136 - version = "0.31.4" 4137 - source = "registry+https://github.com/rust-lang/crates.io-index" 4138 - checksum = "d7b56f89937f1cf2ee1f1259cf2936a17a1f45d8f0aa1019fae6d470d304cfa6" 4139 - dependencies = [ 4140 - "proc-macro2", 4141 - "quick-xml 0.34.0", 4142 - "quote", 4143 - ] 4144 - 4145 - [[package]] 4146 - name = "wayland-sys" 4147 - version = "0.31.4" 4148 - source = "registry+https://github.com/rust-lang/crates.io-index" 4149 - checksum = "43676fe2daf68754ecf1d72026e4e6c15483198b5d24e888b74d3f22f887a148" 4150 - dependencies = [ 4151 - "dlib", 4152 - "log", 4153 - "once_cell", 4154 - "pkg-config", 4155 - ] 4156 - 4157 - [[package]] 4158 - name = "web-sys" 4159 - version = "0.3.69" 4160 - source = "registry+https://github.com/rust-lang/crates.io-index" 4161 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 4162 - dependencies = [ 4163 - "js-sys", 4164 - "wasm-bindgen", 4165 - ] 4166 - 4167 - [[package]] 4168 - name = "web-time" 4169 - version = "1.1.0" 4170 - source = "registry+https://github.com/rust-lang/crates.io-index" 4171 - checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 4172 - dependencies = [ 4173 - "js-sys", 4174 - "wasm-bindgen", 4175 - ] 4176 - 4177 - [[package]] 4178 - name = "which" 4179 - version = "4.4.2" 4180 - source = "registry+https://github.com/rust-lang/crates.io-index" 4181 - checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 4182 - dependencies = [ 4183 - "either", 4184 - "home", 4185 - "once_cell", 4186 - "rustix", 4187 - ] 4188 - 4189 - [[package]] 4190 - name = "winapi" 4191 - version = "0.3.9" 4192 - source = "registry+https://github.com/rust-lang/crates.io-index" 4193 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4194 - dependencies = [ 4195 - "winapi-i686-pc-windows-gnu", 4196 - "winapi-x86_64-pc-windows-gnu", 4197 - ] 4198 - 4199 - [[package]] 4200 - name = "winapi-i686-pc-windows-gnu" 4201 - version = "0.4.0" 4202 - source = "registry+https://github.com/rust-lang/crates.io-index" 4203 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4204 - 4205 - [[package]] 4206 - name = "winapi-util" 4207 - version = "0.1.8" 4208 - source = "registry+https://github.com/rust-lang/crates.io-index" 4209 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 4210 - dependencies = [ 4211 - "windows-sys 0.52.0", 4212 - ] 4213 - 4214 - [[package]] 4215 - name = "winapi-x86_64-pc-windows-gnu" 4216 - version = "0.4.0" 4217 - source = "registry+https://github.com/rust-lang/crates.io-index" 4218 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4219 - 4220 - [[package]] 4221 - name = "windows" 4222 - version = "0.54.0" 4223 - source = "registry+https://github.com/rust-lang/crates.io-index" 4224 - checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 4225 - dependencies = [ 4226 - "windows-core 0.54.0", 4227 - "windows-targets 0.52.6", 4228 - ] 4229 - 4230 - [[package]] 4231 - name = "windows" 4232 - version = "0.57.0" 4233 - source = "registry+https://github.com/rust-lang/crates.io-index" 4234 - checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 4235 - dependencies = [ 4236 - "windows-core 0.57.0", 4237 - "windows-targets 0.52.6", 4238 - ] 4239 - 4240 - [[package]] 4241 - name = "windows-core" 4242 - version = "0.52.0" 4243 - source = "registry+https://github.com/rust-lang/crates.io-index" 4244 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4245 - dependencies = [ 4246 - "windows-targets 0.52.6", 4247 - ] 4248 - 4249 - [[package]] 4250 - name = "windows-core" 4251 - version = "0.54.0" 4252 - source = "registry+https://github.com/rust-lang/crates.io-index" 4253 - checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 4254 - dependencies = [ 4255 - "windows-result", 4256 - "windows-targets 0.52.6", 4257 - ] 4258 - 4259 - [[package]] 4260 - name = "windows-core" 4261 - version = "0.57.0" 4262 - source = "registry+https://github.com/rust-lang/crates.io-index" 4263 - checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 4264 - dependencies = [ 4265 - "windows-implement", 4266 - "windows-interface", 4267 - "windows-result", 4268 - "windows-targets 0.52.6", 4269 - ] 4270 - 4271 - [[package]] 4272 - name = "windows-implement" 4273 - version = "0.57.0" 4274 - source = "registry+https://github.com/rust-lang/crates.io-index" 4275 - checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 4276 - dependencies = [ 4277 - "proc-macro2", 4278 - "quote", 4279 - "syn 2.0.72", 4280 - ] 4281 - 4282 - [[package]] 4283 - name = "windows-interface" 4284 - version = "0.57.0" 4285 - source = "registry+https://github.com/rust-lang/crates.io-index" 4286 - checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 4287 - dependencies = [ 4288 - "proc-macro2", 4289 - "quote", 4290 - "syn 2.0.72", 4291 - ] 4292 - 4293 - [[package]] 4294 - name = "windows-result" 4295 - version = "0.1.2" 4296 - source = "registry+https://github.com/rust-lang/crates.io-index" 4297 - checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 4298 - dependencies = [ 4299 - "windows-targets 0.52.6", 4300 - ] 4301 - 4302 - [[package]] 4303 - name = "windows-sys" 4304 - version = "0.45.0" 4305 - source = "registry+https://github.com/rust-lang/crates.io-index" 4306 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4307 - dependencies = [ 4308 - "windows-targets 0.42.2", 4309 - ] 4310 - 4311 - [[package]] 4312 - name = "windows-sys" 4313 - version = "0.52.0" 4314 - source = "registry+https://github.com/rust-lang/crates.io-index" 4315 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4316 - dependencies = [ 4317 - "windows-targets 0.52.6", 4318 - ] 4319 - 4320 - [[package]] 4321 - name = "windows-targets" 4322 - version = "0.42.2" 4323 - source = "registry+https://github.com/rust-lang/crates.io-index" 4324 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4325 - dependencies = [ 4326 - "windows_aarch64_gnullvm 0.42.2", 4327 - "windows_aarch64_msvc 0.42.2", 4328 - "windows_i686_gnu 0.42.2", 4329 - "windows_i686_msvc 0.42.2", 4330 - "windows_x86_64_gnu 0.42.2", 4331 - "windows_x86_64_gnullvm 0.42.2", 4332 - "windows_x86_64_msvc 0.42.2", 4333 - ] 4334 - 4335 - [[package]] 4336 - name = "windows-targets" 4337 - version = "0.48.5" 4338 - source = "registry+https://github.com/rust-lang/crates.io-index" 4339 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4340 - dependencies = [ 4341 - "windows_aarch64_gnullvm 0.48.5", 4342 - "windows_aarch64_msvc 0.48.5", 4343 - "windows_i686_gnu 0.48.5", 4344 - "windows_i686_msvc 0.48.5", 4345 - "windows_x86_64_gnu 0.48.5", 4346 - "windows_x86_64_gnullvm 0.48.5", 4347 - "windows_x86_64_msvc 0.48.5", 4348 - ] 4349 - 4350 - [[package]] 4351 - name = "windows-targets" 4352 - version = "0.52.6" 4353 - source = "registry+https://github.com/rust-lang/crates.io-index" 4354 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4355 - dependencies = [ 4356 - "windows_aarch64_gnullvm 0.52.6", 4357 - "windows_aarch64_msvc 0.52.6", 4358 - "windows_i686_gnu 0.52.6", 4359 - "windows_i686_gnullvm", 4360 - "windows_i686_msvc 0.52.6", 4361 - "windows_x86_64_gnu 0.52.6", 4362 - "windows_x86_64_gnullvm 0.52.6", 4363 - "windows_x86_64_msvc 0.52.6", 4364 - ] 4365 - 4366 - [[package]] 4367 - name = "windows_aarch64_gnullvm" 4368 - version = "0.42.2" 4369 - source = "registry+https://github.com/rust-lang/crates.io-index" 4370 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4371 - 4372 - [[package]] 4373 - name = "windows_aarch64_gnullvm" 4374 - version = "0.48.5" 4375 - source = "registry+https://github.com/rust-lang/crates.io-index" 4376 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4377 - 4378 - [[package]] 4379 - name = "windows_aarch64_gnullvm" 4380 - version = "0.52.6" 4381 - source = "registry+https://github.com/rust-lang/crates.io-index" 4382 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4383 - 4384 - [[package]] 4385 - name = "windows_aarch64_msvc" 4386 - version = "0.42.2" 4387 - source = "registry+https://github.com/rust-lang/crates.io-index" 4388 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4389 - 4390 - [[package]] 4391 - name = "windows_aarch64_msvc" 4392 - version = "0.48.5" 4393 - source = "registry+https://github.com/rust-lang/crates.io-index" 4394 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4395 - 4396 - [[package]] 4397 - name = "windows_aarch64_msvc" 4398 - version = "0.52.6" 4399 - source = "registry+https://github.com/rust-lang/crates.io-index" 4400 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4401 - 4402 - [[package]] 4403 - name = "windows_i686_gnu" 4404 - version = "0.42.2" 4405 - source = "registry+https://github.com/rust-lang/crates.io-index" 4406 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4407 - 4408 - [[package]] 4409 - name = "windows_i686_gnu" 4410 - version = "0.48.5" 4411 - source = "registry+https://github.com/rust-lang/crates.io-index" 4412 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4413 - 4414 - [[package]] 4415 - name = "windows_i686_gnu" 4416 - version = "0.52.6" 4417 - source = "registry+https://github.com/rust-lang/crates.io-index" 4418 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4419 - 4420 - [[package]] 4421 - name = "windows_i686_gnullvm" 4422 - version = "0.52.6" 4423 - source = "registry+https://github.com/rust-lang/crates.io-index" 4424 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4425 - 4426 - [[package]] 4427 - name = "windows_i686_msvc" 4428 - version = "0.42.2" 4429 - source = "registry+https://github.com/rust-lang/crates.io-index" 4430 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4431 - 4432 - [[package]] 4433 - name = "windows_i686_msvc" 4434 - version = "0.48.5" 4435 - source = "registry+https://github.com/rust-lang/crates.io-index" 4436 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4437 - 4438 - [[package]] 4439 - name = "windows_i686_msvc" 4440 - version = "0.52.6" 4441 - source = "registry+https://github.com/rust-lang/crates.io-index" 4442 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4443 - 4444 - [[package]] 4445 - name = "windows_x86_64_gnu" 4446 - version = "0.42.2" 4447 - source = "registry+https://github.com/rust-lang/crates.io-index" 4448 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 4449 - 4450 - [[package]] 4451 - name = "windows_x86_64_gnu" 4452 - version = "0.48.5" 4453 - source = "registry+https://github.com/rust-lang/crates.io-index" 4454 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4455 - 4456 - [[package]] 4457 - name = "windows_x86_64_gnu" 4458 - version = "0.52.6" 4459 - source = "registry+https://github.com/rust-lang/crates.io-index" 4460 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4461 - 4462 - [[package]] 4463 - name = "windows_x86_64_gnullvm" 4464 - version = "0.42.2" 4465 - source = "registry+https://github.com/rust-lang/crates.io-index" 4466 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 4467 - 4468 - [[package]] 4469 - name = "windows_x86_64_gnullvm" 4470 - version = "0.48.5" 4471 - source = "registry+https://github.com/rust-lang/crates.io-index" 4472 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4473 - 4474 - [[package]] 4475 - name = "windows_x86_64_gnullvm" 4476 - version = "0.52.6" 4477 - source = "registry+https://github.com/rust-lang/crates.io-index" 4478 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4479 - 4480 - [[package]] 4481 - name = "windows_x86_64_msvc" 4482 - version = "0.42.2" 4483 - source = "registry+https://github.com/rust-lang/crates.io-index" 4484 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4485 - 4486 - [[package]] 4487 - name = "windows_x86_64_msvc" 4488 - version = "0.48.5" 4489 - source = "registry+https://github.com/rust-lang/crates.io-index" 4490 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4491 - 4492 - [[package]] 4493 - name = "windows_x86_64_msvc" 4494 - version = "0.52.6" 4495 - source = "registry+https://github.com/rust-lang/crates.io-index" 4496 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4497 - 4498 - [[package]] 4499 - name = "winit" 4500 - version = "0.30.4" 4501 - source = "registry+https://github.com/rust-lang/crates.io-index" 4502 - checksum = "4225ddd8ab67b8b59a2fee4b34889ebf13c0460c1c3fa297c58e21eb87801b33" 4503 - dependencies = [ 4504 - "ahash", 4505 - "android-activity", 4506 - "atomic-waker", 4507 - "bitflags 2.6.0", 4508 - "block2", 4509 - "bytemuck", 4510 - "calloop", 4511 - "cfg_aliases 0.2.1", 4512 - "concurrent-queue", 4513 - "core-foundation", 4514 - "core-graphics", 4515 - "cursor-icon", 4516 - "dpi", 4517 - "js-sys", 4518 - "libc", 4519 - "memmap2 0.9.4", 4520 - "ndk 0.9.0", 4521 - "objc2", 4522 - "objc2-app-kit", 4523 - "objc2-foundation", 4524 - "objc2-ui-kit", 4525 - "orbclient", 4526 - "percent-encoding", 4527 - "pin-project", 4528 - "raw-window-handle", 4529 - "redox_syscall 0.4.1", 4530 - "rustix", 4531 - "sctk-adwaita", 4532 - "smithay-client-toolkit", 4533 - "smol_str", 4534 - "tracing", 4535 - "unicode-segmentation", 4536 - "wasm-bindgen", 4537 - "wasm-bindgen-futures", 4538 - "wayland-backend", 4539 - "wayland-client", 4540 - "wayland-protocols", 4541 - "wayland-protocols-plasma", 4542 - "web-sys", 4543 - "web-time", 4544 - "windows-sys 0.52.0", 4545 - "x11-dl", 4546 - "x11rb", 4547 - "xkbcommon-dl", 4548 - ] 4549 - 4550 - [[package]] 4551 - name = "winnow" 4552 - version = "0.5.40" 4553 - source = "registry+https://github.com/rust-lang/crates.io-index" 4554 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 4555 - dependencies = [ 4556 - "memchr", 4557 - ] 4558 - 4559 - [[package]] 4560 - name = "wlx-capture" 4561 - version = "0.3.12" 4562 - source = "git+https://github.com/galister/wlx-capture?tag=v0.3.13#c375a7c1d4b57741655a052ebe8af9fb4774f92d" 4563 - dependencies = [ 4564 - "ashpd", 4565 - "drm-fourcc", 4566 - "idmap", 4567 - "libc", 4568 - "log", 4569 - "once_cell", 4570 - "pipewire", 4571 - "rxscreen", 4572 - "smithay-client-toolkit", 4573 - "wayland-client", 4574 - "wayland-protocols", 4575 - "xcb", 4576 - ] 4577 - 4578 - [[package]] 4579 - name = "wlx-overlay-s" 4580 - version = "0.6.0" 4581 - dependencies = [ 4582 - "anyhow", 4583 - "ash", 4584 - "chrono", 4585 - "chrono-tz", 4586 - "clap", 4587 - "config", 4588 - "cstr", 4589 - "ctrlc", 4590 - "dbus", 4591 - "flexi_logger", 4592 - "fontconfig-rs", 4593 - "freetype-rs", 4594 - "futures", 4595 - "glam", 4596 - "idmap", 4597 - "idmap-derive", 4598 - "image_dds", 4599 - "input-linux", 4600 - "json", 4601 - "json5", 4602 - "libc", 4603 - "libmonado-rs", 4604 - "log", 4605 - "log-panics", 4606 - "mint", 4607 - "once_cell", 4608 - "openxr", 4609 - "ovr_overlay", 4610 - "regex", 4611 - "rodio", 4612 - "rosc", 4613 - "serde", 4614 - "serde_json", 4615 - "serde_json5", 4616 - "serde_yaml", 4617 - "smallvec", 4618 - "strum", 4619 - "sysinfo", 4620 - "thiserror", 4621 - "vulkano", 4622 - "vulkano-shaders", 4623 - "winit", 4624 - "wlx-capture", 4625 - "xcb", 4626 - "xdg", 4627 - "xkbcommon 0.8.0", 4628 - ] 4629 - 4630 - [[package]] 4631 - name = "x11-dl" 4632 - version = "2.21.0" 4633 - source = "registry+https://github.com/rust-lang/crates.io-index" 4634 - checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 4635 - dependencies = [ 4636 - "libc", 4637 - "once_cell", 4638 - "pkg-config", 4639 - ] 4640 - 4641 - [[package]] 4642 - name = "x11rb" 4643 - version = "0.13.1" 4644 - source = "registry+https://github.com/rust-lang/crates.io-index" 4645 - checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" 4646 - dependencies = [ 4647 - "as-raw-xcb-connection", 4648 - "gethostname", 4649 - "libc", 4650 - "libloading 0.8.5", 4651 - "once_cell", 4652 - "rustix", 4653 - "x11rb-protocol", 4654 - ] 4655 - 4656 - [[package]] 4657 - name = "x11rb-protocol" 4658 - version = "0.13.1" 4659 - source = "registry+https://github.com/rust-lang/crates.io-index" 4660 - checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" 4661 - 4662 - [[package]] 4663 - name = "xcb" 4664 - version = "1.4.0" 4665 - source = "registry+https://github.com/rust-lang/crates.io-index" 4666 - checksum = "02e75181b5a62b6eeaa72f303d3cef7dbb841e22885bf6d3e66fe23e88c55dc6" 4667 - dependencies = [ 4668 - "as-raw-xcb-connection", 4669 - "bitflags 1.3.2", 4670 - "libc", 4671 - "quick-xml 0.30.0", 4672 - ] 4673 - 4674 - [[package]] 4675 - name = "xcursor" 4676 - version = "0.3.6" 4677 - source = "registry+https://github.com/rust-lang/crates.io-index" 4678 - checksum = "d491ee231a51ae64a5b762114c3ac2104b967aadba1de45c86ca42cf051513b7" 4679 - 4680 - [[package]] 4681 - name = "xdg" 4682 - version = "2.5.2" 4683 - source = "registry+https://github.com/rust-lang/crates.io-index" 4684 - checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 4685 - 4686 - [[package]] 4687 - name = "xdg-home" 4688 - version = "1.2.0" 4689 - source = "registry+https://github.com/rust-lang/crates.io-index" 4690 - checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8" 4691 - dependencies = [ 4692 - "libc", 4693 - "windows-sys 0.52.0", 4694 - ] 4695 - 4696 - [[package]] 4697 - name = "xkbcommon" 4698 - version = "0.7.0" 4699 - source = "registry+https://github.com/rust-lang/crates.io-index" 4700 - checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" 4701 - dependencies = [ 4702 - "libc", 4703 - "memmap2 0.8.0", 4704 - "xkeysym", 4705 - ] 4706 - 4707 - [[package]] 4708 - name = "xkbcommon" 4709 - version = "0.8.0" 4710 - source = "registry+https://github.com/rust-lang/crates.io-index" 4711 - checksum = "8d66ca9352cbd4eecbbc40871d8a11b4ac8107cfc528a6e14d7c19c69d0e1ac9" 4712 - dependencies = [ 4713 - "as-raw-xcb-connection", 4714 - "libc", 4715 - "memmap2 0.9.4", 4716 - "xkeysym", 4717 - ] 4718 - 4719 - [[package]] 4720 - name = "xkbcommon-dl" 4721 - version = "0.4.2" 4722 - source = "registry+https://github.com/rust-lang/crates.io-index" 4723 - checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5" 4724 - dependencies = [ 4725 - "bitflags 2.6.0", 4726 - "dlib", 4727 - "log", 4728 - "once_cell", 4729 - "xkeysym", 4730 - ] 4731 - 4732 - [[package]] 4733 - name = "xkeysym" 4734 - version = "0.2.1" 4735 - source = "registry+https://github.com/rust-lang/crates.io-index" 4736 - checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" 4737 - dependencies = [ 4738 - "bytemuck", 4739 - ] 4740 - 4741 - [[package]] 4742 - name = "xml-rs" 4743 - version = "0.8.20" 4744 - source = "registry+https://github.com/rust-lang/crates.io-index" 4745 - checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" 4746 - 4747 - [[package]] 4748 - name = "xmlparser" 4749 - version = "0.13.6" 4750 - source = "registry+https://github.com/rust-lang/crates.io-index" 4751 - checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 4752 - 4753 - [[package]] 4754 - name = "yaml-rust" 4755 - version = "0.4.5" 4756 - source = "registry+https://github.com/rust-lang/crates.io-index" 4757 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 4758 - dependencies = [ 4759 - "linked-hash-map", 4760 - ] 4761 - 4762 - [[package]] 4763 - name = "yansi-term" 4764 - version = "0.1.2" 4765 - source = "registry+https://github.com/rust-lang/crates.io-index" 4766 - checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1" 4767 - dependencies = [ 4768 - "winapi", 4769 - ] 4770 - 4771 - [[package]] 4772 - name = "yeslogic-fontconfig-sys" 4773 - version = "3.2.0" 4774 - source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "f2bbd69036d397ebbff671b1b8e4d918610c181c5a16073b96f984a38d08c386" 4776 - dependencies = [ 4777 - "const-cstr", 4778 - "dlib", 4779 - "once_cell", 4780 - "pkg-config", 4781 - ] 4782 - 4783 - [[package]] 4784 - name = "zbus" 4785 - version = "4.0.1" 4786 - source = "registry+https://github.com/rust-lang/crates.io-index" 4787 - checksum = "7b8e3d6ae3342792a6cc2340e4394334c7402f3d793b390d2c5494a4032b3030" 4788 - dependencies = [ 4789 - "async-broadcast", 4790 - "async-executor", 4791 - "async-fs", 4792 - "async-io", 4793 - "async-lock", 4794 - "async-process", 4795 - "async-recursion", 4796 - "async-task", 4797 - "async-trait", 4798 - "blocking", 4799 - "derivative", 4800 - "enumflags2", 4801 - "event-listener", 4802 - "futures-core", 4803 - "futures-sink", 4804 - "futures-util", 4805 - "hex", 4806 - "nix 0.27.1", 4807 - "ordered-stream", 4808 - "rand", 4809 - "serde", 4810 - "serde_repr", 4811 - "sha1", 4812 - "static_assertions", 4813 - "tracing", 4814 - "uds_windows", 4815 - "windows-sys 0.52.0", 4816 - "xdg-home", 4817 - "zbus_macros", 4818 - "zbus_names", 4819 - "zvariant", 4820 - ] 4821 - 4822 - [[package]] 4823 - name = "zbus_macros" 4824 - version = "4.0.1" 4825 - source = "registry+https://github.com/rust-lang/crates.io-index" 4826 - checksum = "b7a3e850ff1e7217a3b7a07eba90d37fe9bb9e89a310f718afcde5885ca9b6d7" 4827 - dependencies = [ 4828 - "proc-macro-crate 1.3.1", 4829 - "proc-macro2", 4830 - "quote", 4831 - "regex", 4832 - "syn 1.0.109", 4833 - "zvariant_utils", 4834 - ] 4835 - 4836 - [[package]] 4837 - name = "zbus_names" 4838 - version = "3.0.0" 4839 - source = "registry+https://github.com/rust-lang/crates.io-index" 4840 - checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" 4841 - dependencies = [ 4842 - "serde", 4843 - "static_assertions", 4844 - "zvariant", 4845 - ] 4846 - 4847 - [[package]] 4848 - name = "zerocopy" 4849 - version = "0.6.6" 4850 - source = "registry+https://github.com/rust-lang/crates.io-index" 4851 - checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6" 4852 - dependencies = [ 4853 - "byteorder", 4854 - "zerocopy-derive 0.6.6", 4855 - ] 4856 - 4857 - [[package]] 4858 - name = "zerocopy" 4859 - version = "0.7.35" 4860 - source = "registry+https://github.com/rust-lang/crates.io-index" 4861 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 4862 - dependencies = [ 4863 - "zerocopy-derive 0.7.35", 4864 - ] 4865 - 4866 - [[package]] 4867 - name = "zerocopy-derive" 4868 - version = "0.6.6" 4869 - source = "registry+https://github.com/rust-lang/crates.io-index" 4870 - checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91" 4871 - dependencies = [ 4872 - "proc-macro2", 4873 - "quote", 4874 - "syn 2.0.72", 4875 - ] 4876 - 4877 - [[package]] 4878 - name = "zerocopy-derive" 4879 - version = "0.7.35" 4880 - source = "registry+https://github.com/rust-lang/crates.io-index" 4881 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 4882 - dependencies = [ 4883 - "proc-macro2", 4884 - "quote", 4885 - "syn 2.0.72", 4886 - ] 4887 - 4888 - [[package]] 4889 - name = "zvariant" 4890 - version = "4.0.0" 4891 - source = "registry+https://github.com/rust-lang/crates.io-index" 4892 - checksum = "4e09e8be97d44eeab994d752f341e67b3b0d80512a8b315a0671d47232ef1b65" 4893 - dependencies = [ 4894 - "endi", 4895 - "enumflags2", 4896 - "serde", 4897 - "static_assertions", 4898 - "url", 4899 - "zvariant_derive", 4900 - ] 4901 - 4902 - [[package]] 4903 - name = "zvariant_derive" 4904 - version = "4.0.0" 4905 - source = "registry+https://github.com/rust-lang/crates.io-index" 4906 - checksum = "72a5857e2856435331636a9fbb415b09243df4521a267c5bedcd5289b4d5799e" 4907 - dependencies = [ 4908 - "proc-macro-crate 1.3.1", 4909 - "proc-macro2", 4910 - "quote", 4911 - "syn 1.0.109", 4912 - "zvariant_utils", 4913 - ] 4914 - 4915 - [[package]] 4916 - name = "zvariant_utils" 4917 - version = "1.1.0" 4918 - source = "registry+https://github.com/rust-lang/crates.io-index" 4919 - checksum = "00bedb16a193cc12451873fee2a1bc6550225acece0e36f333e68326c73c8172" 4920 - dependencies = [ 4921 - "proc-macro2", 4922 - "quote", 4923 - "syn 1.0.109", 4924 - ]
+9 -27
pkgs/by-name/wl/wlx-overlay-s/package.nix
··· 5 5 fontconfig, 6 6 lib, 7 7 libGL, 8 - libuuid, 9 8 libX11, 10 9 libXext, 11 10 libXrandr, ··· 21 20 shaderc, 22 21 stdenv, 23 22 testers, 24 - vulkan-loader, 25 23 wayland, 26 24 wlx-overlay-s, 27 25 }: 28 26 29 27 rustPlatform.buildRustPackage rec { 30 28 pname = "wlx-overlay-s"; 31 - version = "0.6"; 29 + version = "25.2.0"; 32 30 33 31 src = fetchFromGitHub { 34 32 owner = "galister"; 35 33 repo = "wlx-overlay-s"; 36 34 rev = "v${version}"; 37 - hash = "sha256-Gk/3m4eWFZqeQBphBUTGAUqe8SspXqut8n4JM8tTe6o="; 35 + hash = "sha256-iyOn/RHX1QoB4CYk/uW4toemYLloTZCXq9zuLyutWjM="; 38 36 }; 39 37 40 - cargoLock = { 41 - lockFile = ./Cargo.lock; 42 - outputHashes = { 43 - "libmonado-rs-0.1.0" = "sha256-ja7OW/YSmfzaQoBhu6tec9v8fyNDknLekE2eY7McLPE="; 44 - "openxr-0.18.0" = "sha256-ktkbhmExstkNJDYM/HYOwAwv3acex7P9SP0KMAOKhQk="; 45 - "ovr_overlay-0.0.0" = "sha256-5IMEI0IPTacbA/1gibYU7OT6r+Bj+hlQjDZ3Kg0L2gw="; 46 - "vulkano-0.34.0" = "sha256-0ZIxU2oItT35IFnS0YTVNmM775x21gXOvaahg/B9sj8="; 47 - "wlx-capture-0.3.12" = "sha256-32WnAnNUSfsAA8WB9da3Wqb4acVlXh6HWsY9tPzCHEE="; 48 - }; 49 - }; 38 + useFetchCargoVendor = true; 39 + cargoHash = "sha256-AvWKoPD0omAE4v1RpwDuA8WJYn4ezWhnQ2W/pHdPu1Y="; 50 40 51 41 nativeBuildInputs = [ 52 42 makeWrapper ··· 58 48 alsa-lib 59 49 dbus 60 50 fontconfig 51 + libGL 52 + libX11 53 + libXext 54 + libXrandr 61 55 libxkbcommon 62 56 openvr 63 57 openxr-loader 64 58 pipewire 65 - libX11 66 - libXext 67 - libXrandr 59 + wayland 68 60 ]; 69 61 70 62 env.SHADERC_LIB_DIR = "${lib.getLib shaderc}/lib"; ··· 74 66 --replace '"pactl"' '"${lib.getExe' pulseaudio "pactl"}"' 75 67 76 68 # TODO: src/res/keyboard.yaml references 'whisper_stt' 77 - ''; 78 - 79 - postInstall = '' 80 - patchelf $out/bin/wlx-overlay-s \ 81 - --add-needed ${lib.getLib wayland}/lib/libwayland-client.so.0 \ 82 - --add-needed ${lib.getLib libxkbcommon}/lib/libxkbcommon.so.0 \ 83 - --add-needed ${lib.getLib libGL}/lib/libEGL.so.1 \ 84 - --add-needed ${lib.getLib libGL}/lib/libGL.so.1 \ 85 - --add-needed ${lib.getLib vulkan-loader}/lib/libvulkan.so.1 \ 86 - --add-needed ${lib.getLib libuuid}/lib/libuuid.so.1 87 69 ''; 88 70 89 71 passthru = {
+10 -10
pkgs/development/libraries/qscintilla/default.nix
··· 9 9 fixDarwinDylibNames, 10 10 }: 11 11 12 - stdenv.mkDerivation rec { 12 + stdenv.mkDerivation (finalAttrs: { 13 13 pname = "qscintilla-qt5"; 14 - version = "2.13.2"; 14 + version = "2.14.1"; 15 15 16 16 src = fetchurl { 17 - url = "https://www.riverbankcomputing.com/static/Downloads/QScintilla/${version}/QScintilla_src-${version}.tar.gz"; 18 - sha256 = "sha256-tsfl8ntR0l8J/mz4Sumn8Idq8NZdjMtVEQnm57JYhfQ="; 17 + url = "https://www.riverbankcomputing.com/static/Downloads/QScintilla/${finalAttrs.version}/QScintilla_src-${finalAttrs.version}.tar.gz"; 18 + sha256 = "sha256-3+E8asydhd/Lp2zMgGHnGiI5V6bALzw0OzCp1DpM3U0="; 19 19 }; 20 20 21 - sourceRoot = "QScintilla_src-${version}/src"; 21 + sourceRoot = "QScintilla_src-${finalAttrs.version}/src"; 22 22 23 23 buildInputs = [ qtbase ]; 24 24 ··· 50 50 --replace '$$[QT_INSTALL_DATA]' $out/share 51 51 ''; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Qt port of the Scintilla text editing library"; 55 55 longDescription = '' 56 56 QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor ··· 67 67 background colours and multiple fonts. 68 68 ''; 69 69 homepage = "https://www.riverbankcomputing.com/software/qscintilla/intro"; 70 - license = with licenses; [ gpl3 ]; # and commercial 71 - maintainers = with maintainers; [ peterhoeg ]; 72 - platforms = platforms.unix; 70 + license = lib.licenses.gpl3; 71 + maintainers = with lib.maintainers; [ peterhoeg ]; 72 + platforms = lib.platforms.unix; 73 73 # ld: library not found for -lcups 74 74 broken = stdenv.hostPlatform.isDarwin && lib.versionAtLeast qtbase.version "6"; 75 75 }; 76 - } 76 + })
+10 -9
pkgs/development/libraries/qtforkawesome/default.nix
··· 14 14 fork_awesome_release = fetchFromGitHub { 15 15 owner = "ForkAwesome"; 16 16 repo = "Fork-Awesome"; 17 - rev = "1.2.0"; 18 - sha256 = "sha256-zG6/0dWjU7/y/oDZuSEv+54Mchng64LVyV8bluskYzc="; 17 + tag = "1.2.0"; 18 + hash = "sha256-zG6/0dWjU7/y/oDZuSEv+54Mchng64LVyV8bluskYzc="; 19 19 }; 20 20 in 21 21 stdenv.mkDerivation (finalAttrs: { 22 22 pname = "qtforkawesome"; 23 - version = "0.1.0"; 23 + version = "0.3.1"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "Martchus"; 27 27 repo = "qtforkawesome"; 28 - rev = "v${finalAttrs.version}"; 29 - sha256 = "sha256-9e2TCg3itYtHZSvzCoaiIZmgsCMIoebh6C/XWtKz/2Q="; 28 + tag = "v${finalAttrs.version}"; 29 + hash = "sha256-djYgZt1mNmV5yLfQH/DPikfOPqtF11XZCTOfNXHur28="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ ··· 41 41 cpp-utilities 42 42 qtutilities 43 43 ]; 44 + 44 45 cmakeFlags = [ 45 46 "-DQT_PACKAGE_PREFIX=Qt${lib.versions.major qtbase.version}" 46 47 # Current freetype used by NixOS users doesn't support the `.woff2` font ··· 52 53 53 54 dontWrapQtApps = true; 54 55 55 - meta = with lib; { 56 + meta = { 56 57 homepage = "https://github.com/Martchus/qtforkawesome"; 57 58 description = "Library that bundles ForkAwesome for use within Qt applications"; 58 - license = licenses.gpl2Plus; 59 - maintainers = with maintainers; [ doronbehar ]; 60 - platforms = platforms.linux ++ platforms.darwin; 59 + license = lib.licenses.gpl2Plus; 60 + maintainers = with lib.maintainers; [ doronbehar ]; 61 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 61 62 }; 62 63 })
+2 -2
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "appthreat-vulnerability-db"; 24 - version = "6.2.3"; 24 + version = "6.3.0"; 25 25 pyproject = true; 26 26 27 27 disabled = pythonOlder "3.10"; ··· 30 30 owner = "AppThreat"; 31 31 repo = "vulnerability-db"; 32 32 tag = "v${version}"; 33 - hash = "sha256-NCuwKRiI3BaVwjYsarwJZR/JU0wX16qvScLBb2eYypI="; 33 + hash = "sha256-qqZg47alFtktOdqmzu+MN1M3aFkebLgSFULMHHtMZzM="; 34 34 }; 35 35 36 36 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/asn1/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "asn1"; 12 - version = "2.7.1"; 12 + version = "2.8.0"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "andrivet"; 19 19 repo = "python-asn1"; 20 20 tag = "v${version}"; 21 - hash = "sha256-xdkSJIe7qmz0Zu5IZ3Rl/h4v2j3YFrm1gz7lsNQ0ORs="; 21 + hash = "sha256-DLKfdQzYLhfaIEPPymTzRqj3+L/fsm5Jh8kqud/ezfw="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/groq/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "groq"; 22 - version = "0.15.0"; 22 + version = "0.18.0"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "groq"; 27 27 repo = "groq-python"; 28 28 tag = "v${version}"; 29 - hash = "sha256-RoUvUDgUO1M3pSZA0B0eimRvE8buF4FDaz+FD1a241I="; 29 + hash = "sha256-BEXS+RccECCYJJm9uygqFSDxC0MNcC8swyfA7gPM6AY="; 30 30 }; 31 31 32 32 build-system = [
+2 -2
pkgs/development/python-modules/identify/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "identify"; 14 - version = "2.6.7"; 14 + version = "2.6.8"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.9"; ··· 20 20 owner = "pre-commit"; 21 21 repo = "identify"; 22 22 tag = "v${version}"; 23 - hash = "sha256-eIBKuYiBKJL624e717EEIegUH0Pr0gnTEk+jRfX/Yzw="; 23 + hash = "sha256-5TAGRYr5ilUBhQjUMI4Z/bW24HOYS757Wld6H+fFSAU="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+49
pkgs/development/python-modules/mdformat-myst/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + flit-core, 6 + mdformat, 7 + mdformat-footnote, 8 + mdformat-frontmatter, 9 + mdformat-tables, 10 + mdit-py-plugins, 11 + ruamel-yaml, 12 + pytestCheckHook, 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "mdformat-myst"; 17 + version = "0.2.1"; 18 + pyproject = true; 19 + 20 + src = fetchFromGitHub { 21 + owner = "executablebooks"; 22 + repo = "mdformat-myst"; 23 + tag = "v${version}"; 24 + hash = "sha256-Ty9QOsOTCNfhdLVuLfD0x63OFfHhODr14i/dhN+Sqnc="; 25 + }; 26 + 27 + build-system = [ flit-core ]; 28 + 29 + dependencies = [ 30 + mdformat 31 + mdformat-footnote 32 + mdformat-frontmatter 33 + mdformat-tables 34 + mdit-py-plugins 35 + ruamel-yaml 36 + ]; 37 + 38 + nativeCheckInputs = [ pytestCheckHook ]; 39 + 40 + pythonImportsCheck = [ "mdformat_myst" ]; 41 + 42 + meta = { 43 + description = "Mdformat plugin for MyST compatibility"; 44 + homepage = "https://github.com/executablebooks/mdformat-myst"; 45 + changelog = "https://github.com/executablebooks/mdformat-myst/releases/tag/v${version}/CHANGELOG.md"; 46 + license = lib.licenses.mit; 47 + maintainers = with lib.maintainers; [ mattkang ]; 48 + }; 49 + }
+1 -1
pkgs/development/python-modules/pygreat/default.nix
··· 34 34 ]; 35 35 36 36 pythonRemoveDeps = [ 37 - "backports.functools-lru-cache" 37 + "backports.functools_lru_cache" 38 38 ]; 39 39 40 40 dependencies = [
+2 -2
pkgs/development/python-modules/sqltrie/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "sqltrie"; 14 - version = "0.11.1"; 14 + version = "0.11.2"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "iterative"; 21 21 repo = pname; 22 22 tag = version; 23 - hash = "sha256-elW1hCB0sXc+GyIO0358EwcIn8J1qJZE2pOLAxqxhwA="; 23 + hash = "sha256-D1vYXyh/i0wy7sttW117vsMbUlQJ/mq7rlxLMJWoki0="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/twilio/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "twilio"; 24 - version = "9.4.5"; 24 + version = "9.4.6"; 25 25 pyproject = true; 26 26 27 27 disabled = pythonOlder "3.7"; ··· 30 30 owner = "twilio"; 31 31 repo = "twilio-python"; 32 32 tag = version; 33 - hash = "sha256-+lg+rV3BueELZGk4sOOryZmI560oAVjT+AYdeJpqC1U="; 33 + hash = "sha256-aNp6PKRAvxeVrGeNpFOaai0kT8H2vfAEDPdyRff3680="; 34 34 }; 35 35 36 36 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/types-pytz/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "types-pytz"; 10 - version = "2024.2.0.20241221"; 10 + version = "2025.1.0.20250204"; 11 11 pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 pname = "types_pytz"; 15 15 inherit version; 16 - hash = "sha256-BtfN6WE+n3UEdmoFVKJww2lDS1DgCXWzpKD27tDywak="; 16 + hash = "sha256-APdQEydp8cZaT3JAvITxOYW02ndL0X375dnNRCdGvUk="; 17 17 }; 18 18 19 19 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/typst/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "typst"; 16 - version = "0.12.3"; 16 + version = "0.13.0"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "messense"; 23 23 repo = "typst-py"; 24 24 tag = "v${version}"; 25 - hash = "sha256-VgQbMeyvXjzE8jSaGLygIy8EhR23MpqjlU68FsBZq6E="; 25 + hash = "sha256-gQfuiS/A0ptdhyX0NhClvlHdn5shnp2WLJfAFkg6OXE="; 26 26 }; 27 27 28 28 cargoDeps = rustPlatform.fetchCargoVendor { 29 29 inherit src; 30 30 name = "${pname}-${version}"; 31 - hash = "sha256-OHJQlGwgaQ2ELWvjaA8qsuXOQGSdgirK/yTff7POOmE="; 31 + hash = "sha256-+GAlr/LzK6xnxiIw0j0DFlsuMgJb6fXjWanK+7hcOWk="; 32 32 }; 33 33 34 34 build-system = [
+2 -2
pkgs/development/python-modules/whoisdomain/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "whoisdomain"; 11 - version = "1.20240129.1"; 11 + version = "1.20250220.2"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "mboot-github"; 18 18 repo = "WhoisDomain"; 19 19 tag = version; 20 - hash = "sha256-nRj/WkYjMZuQoYF+QFIHABlek4DxvvEnOTeFYLHYvZc="; 20 + hash = "sha256-/f5zV0vgjOIIux4e0mXeFSfY8cNpfGkfeCs3djla2zM="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ hatchling ];
+2 -2
pkgs/tools/misc/parallel/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "parallel"; 15 - version = "20250122"; 15 + version = "20250222"; 16 16 17 17 src = fetchurl { 18 18 url = "mirror://gnu/parallel/parallel-${version}.tar.bz2"; 19 - hash = "sha256-A8eeWzRuMwz55TgcjlpDX8vN0IRIlkZ2tC8E4Zm8jbM="; 19 + hash = "sha256-0Fqyfg3RTjvyU9uuGOeJRxfOg0GTM2yajrJggTBdu/c="; 20 20 }; 21 21 22 22 outputs = [
+3 -3
pkgs/tools/security/trufflehog/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "trufflehog"; 11 - version = "3.88.6"; 11 + version = "3.88.12"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "trufflesecurity"; 15 15 repo = "trufflehog"; 16 16 tag = "v${version}"; 17 - hash = "sha256-hWpHly0iz8Y2myxT0xyYPWlAjZlJHjqzu/mAUR5FIQ4="; 17 + hash = "sha256-7ibN9j3UR6os3YK64W1AXPIvQUgsadIQhxgcBajya7Q="; 18 18 }; 19 19 20 - vendorHash = "sha256-c2sONHm0xOCV6asMU5MEtkvK85ILJCjsyldOmk+Hcns="; 20 + vendorHash = "sha256-nMEvAH12hXQ/t9eFDEY3oTFT27swTKPnlY9ilQUdUbg="; 21 21 22 22 nativeBuildInputs = [ makeWrapper ]; 23 23
+1
pkgs/top-level/python-packages.nix
··· 8133 8133 mdformat-gfm = callPackage ../development/python-modules/mdformat-gfm { }; 8134 8134 mdformat-gfm-alerts = callPackage ../development/python-modules/mdformat-gfm-alerts { }; 8135 8135 mdformat-mkdocs = callPackage ../development/python-modules/mdformat-mkdocs { }; 8136 + mdformat-myst = callPackage ../development/python-modules/mdformat-myst{ }; 8136 8137 mdformat-nix-alejandra = callPackage ../development/python-modules/mdformat-nix-alejandra { }; 8137 8138 mdformat-simple-breaks = callPackage ../development/python-modules/mdformat-simple-breaks { }; 8138 8139 mdformat-tables = callPackage ../development/python-modules/mdformat-tables { };