Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub f24ba8a7 23b2d540

+2166 -1542
+10 -4
lib/lists.nix
··· 228 229 `acc` 230 231 - : The initial accumulator value 232 233 `list` 234 ··· 254 foldl' = 255 op: 256 acc: 257 - list: 258 - 259 # The builtin `foldl'` is a bit lazier than one might expect. 260 # See https://github.com/NixOS/nix/pull/7158. 261 # In particular, the initial accumulator value is not forced before the first iteration starts. 262 builtins.seq acc 263 - (builtins.foldl' op acc list); 264 265 /** 266 Map with index starting from 0
··· 228 229 `acc` 230 231 + : The initial accumulator value. 232 + 233 + The accumulator value is evaluated in any case before the first iteration starts. 234 + 235 + To avoid evaluation even before the `list` argument is given an eta expansion can be used: 236 + 237 + ```nix 238 + list: lib.foldl' op acc list 239 + ``` 240 241 `list` 242 ··· 262 foldl' = 263 op: 264 acc: 265 # The builtin `foldl'` is a bit lazier than one might expect. 266 # See https://github.com/NixOS/nix/pull/7158. 267 # In particular, the initial accumulator value is not forced before the first iteration starts. 268 builtins.seq acc 269 + (builtins.foldl' op acc); 270 271 /** 272 Map with index starting from 0
+1 -1
maintainers/maintainer-list.nix
··· 15904 githubId = 10837173; 15905 }; 15906 qjoly = { 15907 - email = "github@thoughtless.eu"; 15908 github = "qjoly"; 15909 githubId = 82603435; 15910 name = "Quentin JOLY";
··· 15904 githubId = 10837173; 15905 }; 15906 qjoly = { 15907 + email = "github@une-pause-cafe.fr"; 15908 github = "qjoly"; 15909 githubId = 82603435; 15910 name = "Quentin JOLY";
+14 -1
nixos/lib/systemd-lib.nix
··· 73 optional (attr ? ${name} && (! isMacAddress attr.${name} && attr.${name} != "none")) 74 "Systemd ${group} field `${name}` must be a valid MAC address or the special value `none`."; 75 76 - 77 isPort = i: i >= 0 && i <= 65535; 78 79 assertPort = name: group: attr: 80 optional (attr ? ${name} && ! isPort attr.${name}) 81 "Error on the systemd ${group} field `${name}': ${attr.name} is not a valid port number."; 82 83 assertValueOneOf = name: values: group: attr: 84 optional (attr ? ${name} && !elem attr.${name} values)
··· 73 optional (attr ? ${name} && (! isMacAddress attr.${name} && attr.${name} != "none")) 74 "Systemd ${group} field `${name}` must be a valid MAC address or the special value `none`."; 75 76 + isNumberOrRangeOf = check: v: 77 + if isInt v 78 + then check v 79 + else let 80 + parts = splitString "-" v; 81 + lower = toIntBase10 (head parts); 82 + upper = if tail parts != [] then toIntBase10 (head (tail parts)) else lower; 83 + in 84 + length parts <= 2 && lower <= upper && check lower && check upper; 85 isPort = i: i >= 0 && i <= 65535; 86 + isPortOrPortRange = isNumberOrRangeOf isPort; 87 88 assertPort = name: group: attr: 89 optional (attr ? ${name} && ! isPort attr.${name}) 90 "Error on the systemd ${group} field `${name}': ${attr.name} is not a valid port number."; 91 + 92 + assertPortOrPortRange = name: group: attr: 93 + optional (attr ? ${name} && ! isPortOrPortRange attr.${name}) 94 + "Error on the systemd ${group} field `${name}': ${attr.name} is not a valid port number or range of port numbers."; 95 96 assertValueOneOf = name: values: group: attr: 97 optional (attr ? ${name} && !elem attr.${name} values)
+1
nixos/modules/services/networking/tinyproxy.nix
··· 7 mkValueStringTinyproxy = with lib; v: 8 if true == v then "yes" 9 else if false == v then "no" 10 else generators.mkValueStringDefault {} v; 11 mkKeyValueTinyproxy = { 12 mkValueString ? mkValueStringDefault {}
··· 7 mkValueStringTinyproxy = with lib; v: 8 if true == v then "yes" 9 else if false == v then "no" 10 + else if types.path.check v then ''"${v}"'' 11 else generators.mkValueStringDefault {} v; 12 mkKeyValueTinyproxy = { 13 mkValueString ? mkValueStringDefault {}
+2 -2
nixos/modules/system/boot/networkd.nix
··· 729 (assertInt "FirewallMark") 730 (assertRange "FirewallMark" 1 4294967295) 731 (assertInt "Priority") 732 - (assertPort "SourcePort") 733 - (assertPort "DestinationPort") 734 (assertValueOneOf "InvertRule" boolValues) 735 (assertValueOneOf "Family" ["ipv4" "ipv6" "both"]) 736 (assertInt "SuppressPrefixLength")
··· 729 (assertInt "FirewallMark") 730 (assertRange "FirewallMark" 1 4294967295) 731 (assertInt "Priority") 732 + (assertPortOrPortRange "SourcePort") 733 + (assertPortOrPortRange "DestinationPort") 734 (assertValueOneOf "InvertRule" boolValues) 735 (assertValueOneOf "Family" ["ipv4" "ipv6" "both"]) 736 (assertInt "SuppressPrefixLength")
+1 -1
nixos/tests/all-tests.nix
··· 464 keymap = handleTest ./keymap.nix {}; 465 knot = handleTest ./knot.nix {}; 466 komga = handleTest ./komga.nix {}; 467 - krb5 = discoverTests (import ./krb5 {}); 468 ksm = handleTest ./ksm.nix {}; 469 kthxbye = handleTest ./kthxbye.nix {}; 470 kubernetes = handleTestOn ["x86_64-linux"] ./kubernetes {};
··· 464 keymap = handleTest ./keymap.nix {}; 465 knot = handleTest ./knot.nix {}; 466 komga = handleTest ./komga.nix {}; 467 + krb5 = discoverTests (import ./krb5); 468 ksm = handleTest ./ksm.nix {}; 469 kthxbye = handleTest ./kthxbye.nix {}; 470 kubernetes = handleTestOn ["x86_64-linux"] ./kubernetes {};
+1 -1
nixos/tests/freetube.nix
··· 40 ''; 41 }); 42 in 43 - builtins.mapAttrs (k: v: mkTest k v { }) tests
··· 40 ''; 41 }); 42 in 43 + builtins.mapAttrs (k: v: mkTest k v) tests
+17 -15
nixos/tests/keycloak.nix
··· 6 certs = import ./common/acme/server/snakeoil-certs.nix; 7 frontendUrl = "https://${certs.domain}"; 8 9 - keycloakTest = import ./make-test-python.nix ( 10 - { pkgs, databaseType, ... }: 11 let 12 initialAdminPassword = "h4Iho\"JFn't2>iQIR9"; 13 adminPasswordFile = pkgs.writeText "admin-password" "${initialAdminPassword}"; ··· 76 enabled = true; 77 realm = "test-realm"; 78 clients = [ client ]; 79 - users = [( 80 - user // { 81 - enabled = true; 82 - credentials = [{ 83 - type = "password"; 84 - temporary = false; 85 - value = password; 86 - }]; 87 - } 88 - )]; 89 }; 90 91 realmDataJson = pkgs.writeText "realm-data.json" (builtins.toJSON realm); ··· 177 ); 178 in 179 { 180 - postgres = keycloakTest { databaseType = "postgresql"; }; 181 - mariadb = keycloakTest { databaseType = "mariadb"; }; 182 - mysql = keycloakTest { databaseType = "mysql"; }; 183 }
··· 6 certs = import ./common/acme/server/snakeoil-certs.nix; 7 frontendUrl = "https://${certs.domain}"; 8 9 + keycloakTest = databaseType: import ./make-test-python.nix ( 10 + { pkgs, ... }: 11 let 12 initialAdminPassword = "h4Iho\"JFn't2>iQIR9"; 13 adminPasswordFile = pkgs.writeText "admin-password" "${initialAdminPassword}"; ··· 76 enabled = true; 77 realm = "test-realm"; 78 clients = [ client ]; 79 + users = [ 80 + ( 81 + user // { 82 + enabled = true; 83 + credentials = [{ 84 + type = "password"; 85 + temporary = false; 86 + value = password; 87 + }]; 88 + } 89 + ) 90 + ]; 91 }; 92 93 realmDataJson = pkgs.writeText "realm-data.json" (builtins.toJSON realm); ··· 179 ); 180 in 181 { 182 + postgres = keycloakTest "postgresql"; 183 + mariadb = keycloakTest "mariadb"; 184 + mysql = keycloakTest "mysql"; 185 }
+1 -2
nixos/tests/krb5/default.nix
··· 1 - { system ? builtins.currentSystem }: 2 { 3 - example-config = import ./example-config.nix { inherit system; }; 4 }
··· 1 { 2 + example-config = import ./example-config.nix; 3 }
+1 -1
nixos/tests/make-test-python.nix
··· 1 f: { 2 - system ? builtins.currentSystem, 3 pkgs ? import ../.. { inherit system; config = {}; overlays = []; }, 4 ... 5 } @ args:
··· 1 f: { 2 + system, 3 pkgs ? import ../.. { inherit system; config = {}; overlays = []; }, 4 ... 5 } @ args:
+14 -16
nixos/tests/opensearch.nix
··· 1 let 2 - opensearchTest = 3 import ./make-test-python.nix ( 4 - { pkgs, lib, extraSettings ? {} }: { 5 name = "opensearch"; 6 meta.maintainers = with pkgs.lib.maintainers; [ shyim ]; 7 ··· 27 { 28 opensearch = opensearchTest {}; 29 opensearchCustomPathAndUser = opensearchTest { 30 - extraSettings = { 31 - services.opensearch.dataDir = "/var/opensearch_test"; 32 - services.opensearch.user = "open_search"; 33 - services.opensearch.group = "open_search"; 34 - systemd.tmpfiles.rules = [ 35 - "d /var/opensearch_test 0700 open_search open_search -" 36 - ]; 37 - users = { 38 - groups.open_search = {}; 39 - users.open_search = { 40 - description = "OpenSearch daemon user"; 41 - group = "open_search"; 42 - isSystemUser = true; 43 - }; 44 }; 45 }; 46 };
··· 1 let 2 + opensearchTest = extraSettings: 3 import ./make-test-python.nix ( 4 + { pkgs, lib, ... }: { 5 name = "opensearch"; 6 meta.maintainers = with pkgs.lib.maintainers; [ shyim ]; 7 ··· 27 { 28 opensearch = opensearchTest {}; 29 opensearchCustomPathAndUser = opensearchTest { 30 + services.opensearch.dataDir = "/var/opensearch_test"; 31 + services.opensearch.user = "open_search"; 32 + services.opensearch.group = "open_search"; 33 + systemd.tmpfiles.rules = [ 34 + "d /var/opensearch_test 0700 open_search open_search -" 35 + ]; 36 + users = { 37 + groups.open_search = { }; 38 + users.open_search = { 39 + description = "OpenSearch daemon user"; 40 + group = "open_search"; 41 + isSystemUser = true; 42 }; 43 }; 44 };
+1 -1
nixos/tests/vscodium.nix
··· 76 }); 77 78 in 79 - builtins.mapAttrs (k: v: mkTest k v { }) tests
··· 76 }); 77 78 in 79 + builtins.mapAttrs (k: v: mkTest k v) tests
+3 -3
pkgs/applications/audio/pithos/default.nix
··· 4 5 pythonPackages.buildPythonApplication rec { 6 pname = "pithos"; 7 - version = "1.6.1"; 8 9 src = fetchFromGitHub { 10 owner = pname; 11 repo = pname; 12 - rev = version; 13 - hash = "sha256-GPDbFlwiGT/B2paX33d3mUCV77q+fPM0LMaKFsQQjjQ="; 14 }; 15 16 format = "other";
··· 4 5 pythonPackages.buildPythonApplication rec { 6 pname = "pithos"; 7 + version = "1.6.2"; 8 9 src = fetchFromGitHub { 10 owner = pname; 11 repo = pname; 12 + rev = "refs/tags/${version}"; 13 + hash = "sha256-3j6IoMi30BQ8WHK4BxbsW+/3XZx7rBFd47EBENa2GiQ="; 14 }; 15 16 format = "other";
+4 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/default.nix
··· 9 }: 10 11 let 12 - version = "unstable-2023-12-01"; 13 14 src = fetchFromGitHub { 15 owner = "zbelial"; 16 repo = "lspce"; 17 - rev = "1958b6fcdfb6288aa17fa42360315d6c4aa85991"; 18 - hash = "sha256-HUIRm1z6xNJWgX7ykujzniBrOTh76D3dJHrm0LR3nuQ="; 19 }; 20 21 meta = { ··· 30 inherit version src meta; 31 pname = "lspce-module"; 32 33 - cargoHash = "sha256-qMLwdZwqrK7bPXL1bIbOqM7xQPpeiO8FDoje0CEJeXQ="; 34 35 checkFlags = [ 36 # flaky test
··· 9 }: 10 11 let 12 + version = "unstable-2024-02-03"; 13 14 src = fetchFromGitHub { 15 owner = "zbelial"; 16 repo = "lspce"; 17 + rev = "543dcf0ea9e3ff5c142c4365d90b6ae8dc27bd15"; 18 + hash = "sha256-LZWRQOKkTjNo8jecBRholW9SHpiK0SWcV8yObojpvxo="; 19 }; 20 21 meta = { ··· 30 inherit version src meta; 31 pname = "lspce-module"; 32 33 + cargoHash = "sha256-W9rsi7o4KvyRoG/pqRKOBbJtUoSW549Sh8+OV9sLcxs="; 34 35 checkFlags = [ 36 # flaky test
+4 -4
pkgs/applications/file-managers/fm/default.nix
··· 11 12 rustPlatform.buildRustPackage { 13 pname = "fm"; 14 - version = "unstable-2023-07-25"; 15 16 src = fetchFromGitHub { 17 owner = "euclio"; 18 repo = "fm"; 19 - rev = "a0830b5483a48a8b1e40982f20c28dcb5bfe4a6e"; 20 - hash = "sha256-uso7j+bf6PF5wiTzSJymSxNNfzqXVcJygkfGdzQl4xA="; 21 }; 22 23 - cargoHash = "sha256-3IxpnDYbfLI1VAMgqIE4eSkiT9Z6HcC3K6MH6uqD9Ic="; 24 25 nativeBuildInputs = [ 26 pkg-config
··· 11 12 rustPlatform.buildRustPackage { 13 pname = "fm"; 14 + version = "0-unstable-2024-01-03"; 15 16 src = fetchFromGitHub { 17 owner = "euclio"; 18 repo = "fm"; 19 + rev = "f1da116fe703a2c3d5bc9450703ecf1a1f1b4fda"; 20 + hash = "sha256-fCufqCy5H5Up6V15sOz8SJrixth7OQ7tc4yIymmfq1M="; 21 }; 22 23 + cargoHash = "sha256-E/mT+e17Qse4aPCY5Tuvih+ZMDnUqwvEBY0N70kciMs="; 24 25 nativeBuildInputs = [ 26 pkg-config
+18 -2
pkgs/applications/misc/electrum/update.nix
··· 4 , bash 5 , coreutils 6 , curl 7 , gnugrep 8 , gnupg 9 , gnused ··· 13 let 14 downloadPageUrl = "https://download.electrum.org"; 15 16 - signingKeys = ["6694 D8DE 7BE8 EE56 31BE D950 2BD5 824B 7F94 70E6"]; 17 in 18 19 writeScript "update-electrum" '' ··· 48 export GNUPGHOME=$PWD/gnupg 49 mkdir -m 700 -p "$GNUPGHOME" 50 51 - gpg --batch --recv-keys ${lib.concatStringsSep " " (map (x: "'${x}'") signingKeys)} 52 gpg --batch --verify "$sigFile" "$srcFile" 53 54 sha256=$(nix-prefetch-url --type sha256 "file://$PWD/$srcFile")
··· 4 , bash 5 , coreutils 6 , curl 7 + , fetchurl 8 , gnugrep 9 , gnupg 10 , gnused ··· 14 let 15 downloadPageUrl = "https://download.electrum.org"; 16 17 + signingKeys = lib.lists.map fetchurl [ 18 + { 19 + url = "https://github.com/spesmilo/electrum/raw/master/pubkeys/Emzy.asc"; 20 + hash = "sha256-QG0cM6AKlSKFacVlhcso/xvrooUdF7oqoppyezt0hjE="; 21 + } 22 + { 23 + url = "https://github.com/spesmilo/electrum/raw/master/pubkeys/ThomasV.asc"; 24 + hash = "sha256-37ApVZlI+2EevxQIKXVKVpktt1Ls3UbWq4dfio2ORdo="; 25 + } 26 + { 27 + url = "https://github.com/spesmilo/electrum/raw/master/pubkeys/sombernight_releasekey.asc"; 28 + hash = "sha256-GgdPJ9TB5hh5SPCcTZURfqXkrU4qwl0dCci52V/wpdQ="; 29 + } 30 + ]; 31 + 32 + gpgImportPaths = lib.concatStringsSep " " signingKeys; 33 in 34 35 writeScript "update-electrum" '' ··· 64 export GNUPGHOME=$PWD/gnupg 65 mkdir -m 700 -p "$GNUPGHOME" 66 67 + gpg --batch --import ${gpgImportPaths} 68 gpg --batch --verify "$sigFile" "$srcFile" 69 70 sha256=$(nix-prefetch-url --type sha256 "file://$PWD/$srcFile")
+3 -3
pkgs/applications/misc/inlyne/default.nix
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "inlyne"; 18 - version = "0.4.0"; 19 20 src = fetchFromGitHub { 21 owner = "trimental"; 22 repo = pname; 23 rev = "v${version}"; 24 - hash = "sha256-dDGTy5WOCyeWYfemVtv+YswNyHSqDL4C7MbHsKgRwLk="; 25 }; 26 27 - cargoHash = "sha256-GDy7/FooHD77X5dZmlLX+isRKr2WjadKPKyVD55M9ZE="; 28 29 nativeBuildInputs = [ 30 installShellFiles
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "inlyne"; 18 + version = "0.4.1"; 19 20 src = fetchFromGitHub { 21 owner = "trimental"; 22 repo = pname; 23 rev = "v${version}"; 24 + hash = "sha256-kZQREYnauR8xusyX6enBPUKHSe39aBLlrZjKEjJlfx0="; 25 }; 26 27 + cargoHash = "sha256-2mQFr2nLJ/iBLpdOUmerY6F2C8Kt+/vMEjS6THpmJic="; 28 29 nativeBuildInputs = [ 30 installShellFiles
-48
pkgs/applications/misc/tilemaker/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, buildPackages, cmake, installShellFiles 2 - , boost, lua, protobuf, rapidjson, shapelib, sqlite, zlib, testers }: 3 - 4 - stdenv.mkDerivation (finalAttrs: { 5 - pname = "tilemaker"; 6 - version = "3.0.0"; 7 - 8 - src = fetchFromGitHub { 9 - owner = "systemed"; 10 - repo = "tilemaker"; 11 - rev = "v${finalAttrs.version}"; 12 - hash = "sha256-rB5oP03yaIzklwkGsIeS9ELbHOY9AObwjRrK9HBQFI4="; 13 - }; 14 - 15 - postPatch = '' 16 - substituteInPlace src/tilemaker.cpp \ 17 - --replace "config.json" "$out/share/tilemaker/config-openmaptiles.json" \ 18 - --replace "process.lua" "$out/share/tilemaker/process-openmaptiles.lua" 19 - ''; 20 - 21 - nativeBuildInputs = [ cmake installShellFiles ]; 22 - 23 - buildInputs = [ boost lua protobuf rapidjson shapelib sqlite zlib ]; 24 - 25 - cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) 26 - "-DPROTOBUF_PROTOC_EXECUTABLE=${buildPackages.protobuf}/bin/protoc"; 27 - 28 - env.NIX_CFLAGS_COMPILE = toString [ "-DTM_VERSION=${finalAttrs.version}" ]; 29 - 30 - postInstall = '' 31 - installManPage ../docs/man/tilemaker.1 32 - install -Dm644 ../resources/* -t $out/share/tilemaker 33 - ''; 34 - 35 - passthru.tests.version = testers.testVersion { 36 - package = finalAttrs.finalPackage; 37 - command = "tilemaker --help"; 38 - }; 39 - 40 - meta = with lib; { 41 - description = "Make OpenStreetMap vector tiles without the stack"; 42 - homepage = "https://tilemaker.org/"; 43 - changelog = "https://github.com/systemed/tilemaker/blob/v${version}/CHANGELOG.md"; 44 - license = licenses.free; # FTWPL 45 - maintainers = with maintainers; [ sikmir ]; 46 - platforms = platforms.unix; 47 - }; 48 - })
···
+3 -3
pkgs/applications/misc/wttrbar/default.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "wttrbar"; 10 - version = "0.9.2"; 11 12 src = fetchFromGitHub { 13 owner = "bjesus"; 14 repo = "wttrbar"; 15 rev = version; 16 - hash = "sha256-2oUj9G82+aGXU+qB37f+lRz5rctZNnb3bK8IETrt/4g="; 17 }; 18 19 buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk_11_0.frameworks; [ Security SystemConfiguration ]); 20 21 - cargoHash = "sha256-yvgqvcOxl/AmvUg6jTFtYh13sgqAWKPt2uMFHaX5OMM="; 22 23 meta = { 24 description = "A simple but detailed weather indicator for Waybar using wttr.in";
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "wttrbar"; 10 + version = "0.9.3"; 11 12 src = fetchFromGitHub { 13 owner = "bjesus"; 14 repo = "wttrbar"; 15 rev = version; 16 + hash = "sha256-9qAluu9W6OG/G1SmAEOe97mUS83PZL/oLYUsIJNunwY="; 17 }; 18 19 buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk_11_0.frameworks; [ Security SystemConfiguration ]); 20 21 + cargoHash = "sha256-AVlI2Yi3Gx9jCgP2O5NfaTvUFHdw6HPRmsMqbPFvxf8="; 22 23 meta = { 24 description = "A simple but detailed weather indicator for Waybar using wttr.in";
+6 -6
pkgs/applications/networking/browsers/microsoft-edge/default.nix
··· 1 { 2 beta = import ./browser.nix { 3 channel = "beta"; 4 - version = "123.0.2420.32"; 5 revision = "1"; 6 - hash = "sha256-ItKwlXaHHupTIXrwc4IXaFvldhFGZc4L8aJnxM1XLkM="; 7 }; 8 dev = import ./browser.nix { 9 channel = "dev"; 10 - version = "124.0.2438.2"; 11 revision = "1"; 12 - hash = "sha256-QMcq1lgtO50u2DoTdugJvkOcnIkppmeg/UCQ1oc5TZs="; 13 }; 14 stable = import ./browser.nix { 15 channel = "stable"; 16 - version = "122.0.2365.80"; 17 revision = "1"; 18 - hash = "sha256-fBu5ANA23Oicr3otQiqNznkUT0M9NcrDs6oNW/JuBtk="; 19 }; 20 }
··· 1 { 2 beta = import ./browser.nix { 3 channel = "beta"; 4 + version = "123.0.2420.41"; 5 revision = "1"; 6 + hash = "sha256-tWsd+RyGJp+/1Sf4yDrq4EbLfaYsLkm4wLj9rfWmPlE="; 7 }; 8 dev = import ./browser.nix { 9 channel = "dev"; 10 + version = "124.0.2450.2"; 11 revision = "1"; 12 + hash = "sha256-9PRQnnTYhArwRcTxuCufM7JcAcr6K7jKeFCrOsarCh0="; 13 }; 14 stable = import ./browser.nix { 15 channel = "stable"; 16 + version = "122.0.2365.92"; 17 revision = "1"; 18 + hash = "sha256-6rEVxFS2advEL4O2uczJTsTy31os9r52IGnHXxj3A+g="; 19 }; 20 }
+4 -4
pkgs/applications/networking/cluster/cilium/default.nix
··· 2 3 buildGoModule rec { 4 pname = "cilium-cli"; 5 - version = "0.15.22"; 6 7 src = fetchFromGitHub { 8 owner = "cilium"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-tjVrcxWXE/eOeVoXnoBHYXk4rA3QqcWDbK1MRZ+v7uE="; 12 }; 13 14 vendorHash = null; ··· 17 18 ldflags = [ 19 "-s" "-w" 20 - "-X github.com/cilium/cilium-cli/cli.Version=${version}" 21 ]; 22 23 # Required to workaround install check error: ··· 26 27 doInstallCheck = true; 28 installCheckPhase = '' 29 - $out/bin/cilium version | grep ${version} > /dev/null 30 ''; 31 32 nativeBuildInputs = [ installShellFiles ];
··· 2 3 buildGoModule rec { 4 pname = "cilium-cli"; 5 + version = "0.16.0"; 6 7 src = fetchFromGitHub { 8 owner = "cilium"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-RJJETvgLdE/fJtd1LMShJ7Hm8/s1zUybhec6YPT44wg="; 12 }; 13 14 vendorHash = null; ··· 17 18 ldflags = [ 19 "-s" "-w" 20 + "-X github.com/cilium/cilium-cli/defaults.CLIVersion=${version}" 21 ]; 22 23 # Required to workaround install check error: ··· 26 27 doInstallCheck = true; 28 installCheckPhase = '' 29 + $out/bin/cilium version --client | grep ${version} > /dev/null 30 ''; 31 32 nativeBuildInputs = [ installShellFiles ];
+3 -3
pkgs/applications/networking/cluster/krelay/default.nix
··· 2 3 buildGoModule rec { 4 pname = "krelay"; 5 - version = "0.0.7"; 6 7 src = fetchFromGitHub { 8 owner = "knight42"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-FB+N4gSjAG/HyL5a/D44G4VVzlAQZ8Vjt+YUclCcy3w="; 12 }; 13 14 - vendorHash = "sha256-Nktv3yRrK2AypCzvQDH9gax65GJEXq6Fb3eBWvltQVk="; 15 16 subPackages = [ "cmd/client" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "krelay"; 5 + version = "0.0.8"; 6 7 src = fetchFromGitHub { 8 owner = "knight42"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-KR5lBLgzv9yjL3JvCjg8dxXWmPgagnnKxYtrPunAyXY="; 12 }; 13 14 + vendorHash = "sha256-vaWdJyPOLsrLrhipBvUCOHo/TjnJz4Qpvj3lvUPHomU="; 15 16 subPackages = [ "cmd/client" ]; 17
+2 -2
pkgs/applications/video/pipe-viewer/default.nix
··· 38 in 39 buildPerlModule rec { 40 pname = "pipe-viewer"; 41 - version = "0.4.9"; 42 43 src = fetchFromGitHub { 44 owner = "trizen"; 45 repo = "pipe-viewer"; 46 rev = version; 47 - hash = "sha256-7l8exCC9robe1hKnQAaIVfnn8L+FuwTOkxaxlwJmpe0="; 48 }; 49 50 nativeBuildInputs = [ makeWrapper ]
··· 38 in 39 buildPerlModule rec { 40 pname = "pipe-viewer"; 41 + version = "0.5.0"; 42 43 src = fetchFromGitHub { 44 owner = "trizen"; 45 repo = "pipe-viewer"; 46 rev = version; 47 + hash = "sha256-tNIAGvv3dCPd7MA27yd2AHMSgs+1D2uiJJTQgTsEVNU="; 48 }; 49 50 nativeBuildInputs = [ makeWrapper ]
+2 -2
pkgs/by-name/am/amazon-ssm-agent/package.nix
··· 42 in 43 buildGoModule rec { 44 pname = "amazon-ssm-agent"; 45 - version = "3.3.40.0"; 46 47 src = fetchFromGitHub { 48 owner = "aws"; 49 repo = "amazon-ssm-agent"; 50 rev = "refs/tags/${version}"; 51 - hash = "sha256-o1THIj0QAafqhbFoZKVZXWiAEcaYB+xP5Y2e45D/6Xg="; 52 }; 53 54 vendorHash = null;
··· 42 in 43 buildGoModule rec { 44 pname = "amazon-ssm-agent"; 45 + version = "3.3.131.0"; 46 47 src = fetchFromGitHub { 48 owner = "aws"; 49 repo = "amazon-ssm-agent"; 50 rev = "refs/tags/${version}"; 51 + hash = "sha256-fYFY5HQcArSDdh1qtIo4OzeLt+mIlbwlSr4O1py3MAk="; 52 }; 53 54 vendorHash = null;
+5 -5
pkgs/by-name/co/codeium/package.nix
··· 13 }.${system} or throwSystem; 14 15 hash = { 16 - x86_64-linux = "sha256-/heSkG7TtDHzNfvXblR6A5y+c12EmuQ8XZGDRqIEvtg="; 17 - aarch64-linux = "sha256-WkpcNwWS0e5NURfHloV4xjIGSRPfP0RRflq98NY16AY="; 18 - x86_64-darwin = "sha256-nXPaangEVRZf/dEt+i0AWOyT66jGIcRaN4ZO3k/VMh4="; 19 - aarch64-darwin = "sha256-hs2lLy9thrp414+oQSf9euwNuU06UggLQ/EuMg/lrc0="; 20 }.${system} or throwSystem; 21 22 bin = "$out/bin/codeium_language_server"; ··· 24 in 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "codeium"; 27 - version = "1.8.5"; 28 src = fetchurl { 29 name = "${finalAttrs.pname}-${finalAttrs.version}.gz"; 30 url = "https://github.com/Exafunction/codeium/releases/download/language-server-v${finalAttrs.version}/language_server_${plat}.gz";
··· 13 }.${system} or throwSystem; 14 15 hash = { 16 + x86_64-linux = "sha256-5rvLkJ0sFRgIekGVxk/r1gxheJHIKYsWqvtukqh+YTI="; 17 + aarch64-linux = "sha256-19jKB71ZLkDqrsuacFb2JLBniOEyMediJBfLCP5Ss7o="; 18 + x86_64-darwin = "sha256-DVuBMNhdQUcz29aidzkBQfHNk/ttOg0WrmUAuu6MG7A="; 19 + aarch64-darwin = "sha256-lf/kBZFVYbE9GMkPPM/5MrMyavywCJF+FO54RTnup8g="; 20 }.${system} or throwSystem; 21 22 bin = "$out/bin/codeium_language_server"; ··· 24 in 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "codeium"; 27 + version = "1.8.13"; 28 src = fetchurl { 29 name = "${finalAttrs.pname}-${finalAttrs.version}.gz"; 30 url = "https://github.com/Exafunction/codeium/releases/download/language-server-v${finalAttrs.version}/language_server_${plat}.gz";
+23
pkgs/by-name/di/discordchatexporter-cli/deps.nix
···
··· 1 + # This file was automatically generated by passthru.fetch-deps. 2 + # Please dont edit it manually, your changes might get overwritten! 3 + 4 + { fetchNuGet }: [ 5 + (fetchNuGet { pname = "AdvancedStringBuilder"; version = "0.1.0"; sha256 = "1lpv5sggdxza0bmcqmzf5r4i340f0m7nr5073lac18naj5697q5g"; }) 6 + (fetchNuGet { pname = "AngleSharp"; version = "1.0.7"; sha256 = "1f0sb4jknw7f9mhg4f5khk1q257mn97b9qyy017jjljhqyxp449f"; }) 7 + (fetchNuGet { pname = "AsyncKeyedLock"; version = "6.2.4"; sha256 = "1sizwdkj7ysk7nvdrnnnvl67r4smyq45k6ih4si38kxm27sqwhjw"; }) 8 + (fetchNuGet { pname = "CliFx"; version = "2.3.5"; sha256 = "0rlbv93ssw0d8kvhnvrz2f06ka66gz4gbz1va2q135dab99cmrin"; }) 9 + (fetchNuGet { pname = "CSharpier.MsBuild"; version = "0.26.7"; sha256 = "1pa96gci9nwav1g93vxq4mc0h1bjasax9j6giya1ms6rdmqxxlyn"; }) 10 + (fetchNuGet { pname = "Deorcify"; version = "1.0.2"; sha256 = "0nwxyrl4rd5x621i2hs5fl3w7fxpm13lkdssxr9fd5042px2gqbm"; }) 11 + (fetchNuGet { pname = "DotnetRuntimeBootstrapper"; version = "2.5.2"; sha256 = "0j3z9wdhn6d4np0cjxv2wb5n9blm9frgbxs1p6zdafbxr98qzb73"; }) 12 + (fetchNuGet { pname = "Gress"; version = "2.1.1"; sha256 = "1svz1flhyl26h3xjch0acjjinympgf6bhj5vpb188njfih3ip4ck"; }) 13 + (fetchNuGet { pname = "JsonExtensions"; version = "1.2.0"; sha256 = "0g54hibabbqqfhxjlnxwv1rxagpali5agvnpymp2w3dk8h6q66xy"; }) 14 + (fetchNuGet { pname = "Polly"; version = "8.2.0"; sha256 = "0gxdi4sf60vpxsb258v592ykkq9a3dq2awayp99yy9djys8bglks"; }) 15 + (fetchNuGet { pname = "Polly.Core"; version = "8.2.0"; sha256 = "00b4jbyiyslqvswy4j2lfw0rl0gq8m4v5fj2asb96i6l224bs7d3"; }) 16 + (fetchNuGet { pname = "RazorBlade"; version = "0.5.0"; sha256 = "11s68yqvpp65yam954f281vw9pmb2c5mxnk0n5j6xv1xylng4x5b"; }) 17 + (fetchNuGet { pname = "Spectre.Console"; version = "0.48.0"; sha256 = "0v3zijim9k5lcmhn0ajlsix0japvx3c20r9b7x7f7gvraa8w3gl6"; }) 18 + (fetchNuGet { pname = "Superpower"; version = "3.0.0"; sha256 = "0p6riay4732j1fahc081dzgs9q4z3n2fpxrin4zfpj6q2226dhz4"; }) 19 + (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; }) 20 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "8.0.0"; sha256 = "1lgdd78cik4qyvp2fggaa0kzxasw6kc9a6cjqw46siagrm0qnc3y"; }) 21 + (fetchNuGet { pname = "WebMarkupMin.Core"; version = "2.14.0"; sha256 = "0c41zw1bwz6ybxagq5vr26cx7najd17rrdbqjpn8mabynq380ayr"; }) 22 + (fetchNuGet { pname = "YoutubeExplode"; version = "6.3.10"; sha256 = "0b3n8mfxa4l7bfk0c1s7yfw4m1kvnm2r5pqfvr6s20gjq3wzfih5"; }) 23 + ]
+15
pkgs/by-name/di/discordchatexporter-cli/updater.sh
···
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts 3 + set -eo pipefail 4 + cd "$(dirname "${BASH_SOURCE[0]}")" 5 + 6 + new_version="$(curl -s "https://api.github.com/repos/tyrrrz/DiscordChatExporter/releases?per_page=1" | jq -r '.[0].name')" 7 + old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./package.nix)" 8 + if [[ "$new_version" == "$old_version" ]]; then 9 + echo "Up to date" 10 + exit 0 11 + fi 12 + 13 + cd ../../../.. 14 + update-source-version discordchatexporter-cli "$new_version" 15 + $(nix-build -A discordchatexporter-cli.fetch-deps --no-out-link)
+4 -4
pkgs/by-name/gi/git-agecrypt/package.nix
··· 11 12 rustPlatform.buildRustPackage { 13 pname = "git-agecrypt"; 14 - version = "unstable-2023-07-14"; 15 16 src = fetchFromGitHub { 17 owner = "vlaci"; 18 repo = "git-agecrypt"; 19 - rev = "945b80556d8848f6e85a8cc0053f9020bdc8b359"; 20 - hash = "sha256-6FjyJRYGyZt+uvYjXWvXI7DGq/+BNZHSSAT/DhOsF/E="; 21 }; 22 23 - cargoHash = "sha256-QCV0DT0kcDRMzVc+9uTn9FYPpf+xvKJbakP6CHRcibo="; 24 25 nativeBuildInputs = [ pkg-config git ]; 26
··· 11 12 rustPlatform.buildRustPackage { 13 pname = "git-agecrypt"; 14 + version = "unstable-2024-03-11"; 15 16 src = fetchFromGitHub { 17 owner = "vlaci"; 18 repo = "git-agecrypt"; 19 + rev = "126be86c515466c5878a60561f754a9ab4af6ee8"; 20 + hash = "sha256-cmnBW/691mmLHq8tWpD3+zwCf7Wph5fcVdSxQGxqd1k="; 21 }; 22 23 + cargoHash = "sha256-FmlJeWMIIyTsg3TTLUia14et+aTgFCTkOr1J5dp0SGY="; 24 25 nativeBuildInputs = [ pkg-config git ]; 26
+2 -2
pkgs/by-name/lu/lubelogger/package.nix
··· 6 7 buildDotnetModule rec { 8 pname = "lubelogger"; 9 - version = "1.2.6"; 10 11 src = fetchFromGitHub { 12 owner = "hargata"; 13 repo = "lubelog"; 14 rev = "v${version}"; 15 - hash = "sha256-ZFFTkRCwcoYBjdzlkeAl2MCokF1dXuRV56WpGo2oaiA="; 16 }; 17 18 projectFile = "CarCareTracker.sln";
··· 6 7 buildDotnetModule rec { 8 pname = "lubelogger"; 9 + version = "1.2.7"; 10 11 src = fetchFromGitHub { 12 owner = "hargata"; 13 repo = "lubelog"; 14 rev = "v${version}"; 15 + hash = "sha256-7bU+ZXYvwg33hW0d+4it/3eSnvQ2SW9vWEbqhGMYxQQ="; 16 }; 17 18 projectFile = "CarCareTracker.sln";
+3 -3
pkgs/by-name/op/open-scq30/package.nix
··· 18 19 rustPlatform.buildRustPackage rec { 20 pname = "open-scq30"; 21 - version = "1.10.6"; 22 23 src = fetchFromGitHub { 24 owner = "Oppzippy"; 25 repo = "OpenSCQ30"; 26 rev = "v${version}"; 27 - hash = "sha256-qYWLf0ns4YSq+yAspVTMvKQi861iUMJar2wjqm+BV/0="; 28 }; 29 30 nativeBuildInputs = [ ··· 48 darwin.apple_sdk.frameworks.Foundation 49 ]; 50 51 - cargoHash = "sha256-BQLNm+yyimBh7WomrccdQ2lvrQzCNXf4MEa1LlPhck0="; 52 53 INSTALL_PREFIX = placeholder "out"; 54
··· 18 19 rustPlatform.buildRustPackage rec { 20 pname = "open-scq30"; 21 + version = "1.11.0"; 22 23 src = fetchFromGitHub { 24 owner = "Oppzippy"; 25 repo = "OpenSCQ30"; 26 rev = "v${version}"; 27 + hash = "sha256-yls7F6ou0TsoY6CDi694fJrq30Y3B6d96T1VWl47K0w="; 28 }; 29 30 nativeBuildInputs = [ ··· 48 darwin.apple_sdk.frameworks.Foundation 49 ]; 50 51 + cargoHash = "sha256-VxweKzXNWOrBrzLzId8D6O0tZG8bI7HjhD+GJ3vRyhk="; 52 53 INSTALL_PREFIX = placeholder "out"; 54
+3 -3
pkgs/by-name/qr/qrtool/package.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "qrtool"; 11 - version = "0.10.5"; 12 13 src = fetchFromGitHub { 14 owner = "sorairolake"; 15 repo = "qrtool"; 16 rev = "v${version}"; 17 - sha256 = "sha256-XYoa5AueI0AYH5Lw7CmzeK9RkNy8WXbAAePAGkcwzWw="; 18 }; 19 20 - cargoHash = "sha256-s68OCW2KS1ADTp8rWaUOGXCrl+Qapyf9FcLVhSF4QMg="; 21 22 nativeBuildInputs = [ asciidoctor installShellFiles ]; 23
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "qrtool"; 11 + version = "0.10.6"; 12 13 src = fetchFromGitHub { 14 owner = "sorairolake"; 15 repo = "qrtool"; 16 rev = "v${version}"; 17 + sha256 = "sha256-uniYvYFrwlYfTPpg4lKa2GLURdLHDRFfym8FjrKfSL4="; 18 }; 19 20 + cargoHash = "sha256-f0ufdFGrOIHFrDLz3rwNSl3AlM6um0r9bQzfn0Syd1M="; 21 22 nativeBuildInputs = [ asciidoctor installShellFiles ]; 23
+3 -3
pkgs/by-name/sa/sarasa-gothic/package.nix
··· 7 8 stdenvNoCC.mkDerivation (finalAttrs: { 9 pname = "sarasa-gothic"; 10 - version = "1.0.6"; 11 12 src = fetchurl { 13 # Use the 'ttc' files here for a smaller closure size. 14 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 15 - url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${finalAttrs.version}b/Sarasa-TTC-${finalAttrs.version}.zip"; 16 - hash = "sha256-MkbmEn4vV2WEDC8pW+WewPuVhlLPi2iGmhvJW6Szksw="; 17 }; 18 19 sourceRoot = ".";
··· 7 8 stdenvNoCC.mkDerivation (finalAttrs: { 9 pname = "sarasa-gothic"; 10 + version = "1.0.7"; 11 12 src = fetchurl { 13 # Use the 'ttc' files here for a smaller closure size. 14 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 15 + url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${finalAttrs.version}/Sarasa-TTC-${finalAttrs.version}.zip"; 16 + hash = "sha256-R0mVOKYlxSk3s6zPG/h9ddKUZX+WJp47QCulFUO97YI="; 17 }; 18 19 sourceRoot = ".";
+65
pkgs/by-name/ti/tilemaker/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , buildPackages 5 + , cmake 6 + , installShellFiles 7 + , boost 8 + , lua 9 + , protobuf_21 10 + , rapidjson 11 + , shapelib 12 + , sqlite 13 + , zlib 14 + , testers 15 + }: 16 + 17 + stdenv.mkDerivation (finalAttrs: { 18 + pname = "tilemaker"; 19 + version = "3.0.0"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "systemed"; 23 + repo = "tilemaker"; 24 + rev = "v${finalAttrs.version}"; 25 + hash = "sha256-rB5oP03yaIzklwkGsIeS9ELbHOY9AObwjRrK9HBQFI4="; 26 + }; 27 + 28 + postPatch = '' 29 + substituteInPlace src/options_parser.cpp \ 30 + --replace-fail "config.json" "$out/share/tilemaker/config-openmaptiles.json" \ 31 + --replace-fail "process.lua" "$out/share/tilemaker/process-openmaptiles.lua" 32 + substituteInPlace server/server.cpp \ 33 + --replace-fail "default_value(\"static\")" "default_value(\"$out/share/tilemaker/static\")" 34 + ''; 35 + 36 + nativeBuildInputs = [ cmake installShellFiles ]; 37 + 38 + buildInputs = [ boost lua protobuf_21 rapidjson shapelib sqlite zlib ]; 39 + 40 + cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) 41 + (lib.cmakeFeature "PROTOBUF_PROTOC_EXECUTABLE" "${buildPackages.protobuf}/bin/protoc"); 42 + 43 + env.NIX_CFLAGS_COMPILE = toString [ "-DTM_VERSION=${finalAttrs.version}" ]; 44 + 45 + postInstall = '' 46 + installManPage ../docs/man/tilemaker.1 47 + install -Dm644 ../resources/*.{json,lua} -t $out/share/tilemaker 48 + cp -r ../server/static $out/share/tilemaker 49 + ''; 50 + 51 + passthru.tests.version = testers.testVersion { 52 + package = finalAttrs.finalPackage; 53 + command = "tilemaker --help"; 54 + }; 55 + 56 + meta = with lib; { 57 + description = "Make OpenStreetMap vector tiles without the stack"; 58 + homepage = "https://tilemaker.org/"; 59 + changelog = "https://github.com/systemed/tilemaker/blob/v${version}/CHANGELOG.md"; 60 + license = licenses.free; # FTWPL 61 + maintainers = with maintainers; [ sikmir ]; 62 + platforms = platforms.unix; 63 + mainProgram = "tilemaker"; 64 + }; 65 + })
+3 -2
pkgs/by-name/wp/wp-cli/package.nix
··· 9 }: 10 11 let 12 - version = "2.9.0"; 13 14 completion = fetchurl { 15 url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash"; ··· 33 34 src = fetchurl { 35 url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/wp-cli-${version}.phar"; 36 - hash = "sha256-r2t8zCHtCQfLUE21oFnw4SAReQWmAXv91Ddc7jyT2GQ="; 37 }; 38 39 dontUnpack = true; ··· 72 meta = with lib; { 73 description = "A command line interface for WordPress"; 74 homepage = "https://wp-cli.org"; 75 license = licenses.mit; 76 maintainers = with maintainers; [ peterhoeg ]; 77 platforms = platforms.all;
··· 9 }: 10 11 let 12 + version = "2.10.0"; 13 14 completion = fetchurl { 15 url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash"; ··· 33 34 src = fetchurl { 35 url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/wp-cli-${version}.phar"; 36 + hash = "sha256-TGqTzsrn9JnKSB+nptbUKZyLkyFOXlMI4mdw2/02Md8="; 37 }; 38 39 dontUnpack = true; ··· 72 meta = with lib; { 73 description = "A command line interface for WordPress"; 74 homepage = "https://wp-cli.org"; 75 + changelog = "https://github.com/wp-cli/wp-cli/releases/tag/v${version}"; 76 license = licenses.mit; 77 maintainers = with maintainers; [ peterhoeg ]; 78 platforms = platforms.all;
+50
pkgs/by-name/yt/yt-dlg/package.nix
···
··· 1 + { 2 + lib, 3 + python3, 4 + fetchFromGitHub, 5 + fetchPypi 6 + }: 7 + let 8 + python3Packages = 9 + (python3.override { 10 + packageOverrides = final: prev: { 11 + wxpython = prev.wxpython.overrideAttrs rec { 12 + version = "4.2.0"; 13 + src = fetchPypi { 14 + pname = "wxPython"; 15 + inherit version; 16 + hash = "sha256-ZjzrxFCdfl0RNRiGX+J093+VQ0xdV7w4btWNZc7thsc="; 17 + }; 18 + }; 19 + }; 20 + }).pkgs; 21 + in 22 + python3Packages.buildPythonApplication rec { 23 + pname = "yt-dlg"; 24 + version = "1.8.5"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "oleksis"; 28 + repo = "youtube-dl-gui"; 29 + rev = "v${version}"; 30 + hash = "sha256-W1ZlArmM+Ro5MF/rB88me/PD79dJA4v188mPbMd8Kow="; 31 + }; 32 + 33 + pyproject = true; 34 + build-system = with python3Packages; [ 35 + setuptools 36 + wheel 37 + ]; 38 + dependencies = with python3Packages; [ 39 + pypubsub 40 + wxpython 41 + ]; 42 + 43 + meta = { 44 + description = "A cross platform front-end GUI of the popular youtube-dl written in wxPython."; 45 + homepage = "https://oleksis.github.io/youtube-dl-gui"; 46 + license = lib.licenses.unlicense; 47 + mainProgram = "yt-dlg"; 48 + maintainers = with lib.maintainers; [ quantenzitrone ]; 49 + }; 50 + }
+2 -2
pkgs/data/fonts/sketchybar-app-font/default.nix
··· 5 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "sketchybar-app-font"; 8 - version = "2.0.8"; 9 10 src = fetchurl { 11 url = "https://github.com/kvndrsslr/sketchybar-app-font/releases/download/v${finalAttrs.version}/sketchybar-app-font.ttf"; 12 - hash = "sha256-WX30kF0DF85RNMapVrADCh1LKLnYpJdpgG/3dGWhuRs="; 13 }; 14 15 dontUnpack = true;
··· 5 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "sketchybar-app-font"; 8 + version = "2.0.11"; 9 10 src = fetchurl { 11 url = "https://github.com/kvndrsslr/sketchybar-app-font/releases/download/v${finalAttrs.version}/sketchybar-app-font.ttf"; 12 + hash = "sha256-coTwsCIausXlg1BGRPARnwq50rJgR8WyfER5Q4dkMuw="; 13 }; 14 15 dontUnpack = true;
+2 -2
pkgs/development/libraries/nss/latest.nix
··· 5 # Example: nix-shell ./maintainers/scripts/update.nix --argstr package cacert 6 7 import ./generic.nix { 8 - version = "3.98"; 9 - hash = "sha256-0p1HzspxyzhzX46O7ax8tmYiaFEBeqEqEvman4NIiQc="; 10 }
··· 5 # Example: nix-shell ./maintainers/scripts/update.nix --argstr package cacert 6 7 import ./generic.nix { 8 + version = "3.99"; 9 + hash = "sha256-6JocWJpA+VjEPZOxmD74toyEBLOTzCxSWUzrxPi52bU="; 10 }
+6
pkgs/development/python-modules/aiogram/default.nix
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 , pytestCheckHook 6 , aiohttp 7 , aiohttp-socks ··· 37 38 nativeBuildInputs = [ 39 hatchling 40 ]; 41 42 propagatedBuildInputs = [
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 + , pythonRelaxDepsHook 6 , pytestCheckHook 7 , aiohttp 8 , aiohttp-socks ··· 38 39 nativeBuildInputs = [ 40 hatchling 41 + pythonRelaxDepsHook 42 + ]; 43 + 44 + pythonRelaxDeps = [ 45 + "pydantic" 46 ]; 47 48 propagatedBuildInputs = [
+4
pkgs/development/python-modules/albumentations/default.nix
··· 12 , pytestCheckHook 13 , pythonOlder 14 , pythonRelaxDepsHook 15 }: 16 17 buildPythonPackage rec { ··· 50 nativeCheckInputs = [ 51 deepdiff 52 pytestCheckHook 53 ]; 54 55 disabledTests = [
··· 12 , pytestCheckHook 13 , pythonOlder 14 , pythonRelaxDepsHook 15 + , torch 16 + , torchvision 17 }: 18 19 buildPythonPackage rec { ··· 52 nativeCheckInputs = [ 53 deepdiff 54 pytestCheckHook 55 + torch 56 + torchvision 57 ]; 58 59 disabledTests = [
+2
pkgs/development/python-modules/amazon-ion/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , docopt 4 , fetchFromGitHub 5 , jsonconversion ··· 41 ]; 42 43 nativeCheckInputs = [ 44 docopt 45 pytestCheckHook 46 tabulate
··· 1 { lib 2 , buildPythonPackage 3 + , cbor2 4 , docopt 5 , fetchFromGitHub 6 , jsonconversion ··· 42 ]; 43 44 nativeCheckInputs = [ 45 + cbor2 46 docopt 47 pytestCheckHook 48 tabulate
+5 -2
pkgs/development/python-modules/aria2p/default.nix
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 - , pdm-pep517 6 , appdirs 7 , loguru 8 , requests ··· 13 , pyperclip 14 , aria2 15 , fastapi 16 , pytest-xdist 17 , pytestCheckHook 18 , responses ··· 33 }; 34 35 nativeBuildInputs = [ 36 - pdm-pep517 37 ]; 38 39 propagatedBuildInputs = [ ··· 59 pytest-xdist 60 pytestCheckHook 61 responses 62 uvicorn 63 ] ++ passthru.optional-dependencies.tui; 64 ··· 67 "test_add_downloads_torrents_and_metalinks" 68 "test_add_downloads_uris" 69 # require a running aria2 server 70 "test_get_files_method" 71 "test_pause_subcommand" 72 "test_resume_method"
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 + , pdm-backend 6 , appdirs 7 , loguru 8 , requests ··· 13 , pyperclip 14 , aria2 15 , fastapi 16 + , psutil 17 , pytest-xdist 18 , pytestCheckHook 19 , responses ··· 34 }; 35 36 nativeBuildInputs = [ 37 + pdm-backend 38 ]; 39 40 propagatedBuildInputs = [ ··· 60 pytest-xdist 61 pytestCheckHook 62 responses 63 + psutil 64 uvicorn 65 ] ++ passthru.optional-dependencies.tui; 66 ··· 69 "test_add_downloads_torrents_and_metalinks" 70 "test_add_downloads_uris" 71 # require a running aria2 server 72 + "test_cli_autoclear_commands" 73 "test_get_files_method" 74 "test_pause_subcommand" 75 "test_resume_method"
+8
pkgs/development/python-modules/atlassian-python-api/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , deprecated 5 , oauthlib 6 , requests 7 , requests-oauthlib 8 , six 9 , pytestCheckHook ··· 25 }; 26 27 propagatedBuildInputs = [ 28 deprecated 29 oauthlib 30 requests 31 requests-oauthlib 32 six 33 ];
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , beautifulsoup4 5 , deprecated 6 + , jmespath 7 + , lxml 8 , oauthlib 9 , requests 10 + , requests-kerberos 11 , requests-oauthlib 12 , six 13 , pytestCheckHook ··· 29 }; 30 31 propagatedBuildInputs = [ 32 + beautifulsoup4 33 deprecated 34 + jmespath 35 + lxml 36 oauthlib 37 requests 38 + requests-kerberos 39 requests-oauthlib 40 six 41 ];
+4
pkgs/development/python-modules/barectf/default.nix
··· 50 pytestCheckHook 51 ]; 52 53 meta = with lib; { 54 description = "Generator of ANSI C tracers which output CTF data streams "; 55 homepage = "https://github.com/efficios/barectf";
··· 50 pytestCheckHook 51 ]; 52 53 + pytestFlagsArray = [ 54 + "-W" "ignore::pytest.PytestRemovedIn8Warning" 55 + ]; 56 + 57 meta = with lib; { 58 description = "Generator of ANSI C tracers which output CTF data streams "; 59 homepage = "https://github.com/efficios/barectf";
+2 -2
pkgs/development/python-modules/bdffont/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "bdffont"; 15 - version = "0.0.16"; 16 17 disabled = pythonOlder "3.11"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-2qR9uKQk9zrKpyekpZJht8uZOp8PK01sv2CYyP+BqcA="; 22 }; 23 24 format = "pyproject";
··· 12 13 buildPythonPackage rec { 14 pname = "bdffont"; 15 + version = "0.0.17"; 16 17 disabled = pythonOlder "3.11"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-JBPo5tmwnXRzPpZbBrcW2wEC/XNd8M+mi58CRIpOVL0="; 22 }; 23 24 format = "pyproject";
+15 -6
pkgs/development/python-modules/bork/default.nix
··· 4 , pytestCheckHook 5 , pythonOlder 6 , pythonRelaxDepsHook 7 - 8 , build 9 , coloredlogs 10 , packaging 11 , pip 12 , toml 13 , twine 14 - , wheel 15 }: 16 17 buildPythonPackage rec { ··· 27 hash = "sha256-BDwVhKmZ/F8CvpT6dEI5moQZx8wHy1TwdOl889XogEo="; 28 }; 29 30 - nativeBuildInputs = [ 31 pythonRelaxDepsHook 32 ]; 33 34 pythonRelaxDeps = [ 35 "packaging" 36 "twine" 37 "wheel" 38 ]; 39 40 - propagatedBuildInputs = [ 41 build 42 coloredlogs 43 packaging 44 pip 45 - toml 46 twine 47 - wheel 48 ]; 49 50 pythonImportsCheck = [ ··· 56 nativeCheckInputs = [ 57 pytestCheckHook 58 ]; 59 pytestFlagsArray = [ 60 "-m 'not network'" 61 ]; 62 63 meta = with lib; {
··· 4 , pytestCheckHook 5 , pythonOlder 6 , pythonRelaxDepsHook 7 + , setuptools 8 , build 9 , coloredlogs 10 , packaging 11 , pip 12 + , readme-renderer 13 , toml 14 , twine 15 }: 16 17 buildPythonPackage rec { ··· 27 hash = "sha256-BDwVhKmZ/F8CvpT6dEI5moQZx8wHy1TwdOl889XogEo="; 28 }; 29 30 + build-system = [ 31 pythonRelaxDepsHook 32 + setuptools 33 ]; 34 35 pythonRelaxDeps = [ 36 "packaging" 37 + "readme-renderer" 38 "twine" 39 "wheel" 40 ]; 41 42 + dependencies = [ 43 build 44 coloredlogs 45 packaging 46 pip 47 + readme-renderer 48 twine 49 + ] ++ lib.optionals (pythonOlder "3.11") [ 50 + toml 51 ]; 52 53 pythonImportsCheck = [ ··· 59 nativeCheckInputs = [ 60 pytestCheckHook 61 ]; 62 + 63 pytestFlagsArray = [ 64 "-m 'not network'" 65 + ]; 66 + 67 + disabledTests = [ 68 + # tries to call python -m bork 69 + "test_repo" 70 ]; 71 72 meta = with lib; {
-15
pkgs/development/python-modules/broadbean/default.nix
··· 25 hash = "sha256-v+Ov6mlSnaJG98ooA9AhPGJflrFafKQoO5wi+PxcZVw="; 26 }; 27 28 - patches = [ 29 - # https://github.com/QCoDeS/broadbean/pull/538 30 - (fetchpatch { 31 - name = "drop-wheel-from-pyproject.patch"; 32 - url = "https://github.com/QCoDeS/broadbean/commit/31a2147e4f452fef1ca2b56b1cb0b10ac85ac867.patch"; 33 - hash = "sha256-lBikIRhaf3ecwE7NZrYWeHkQCHQdfS9eeOcFExGIsVk="; 34 - }) 35 - # https://github.com/QCoDeS/broadbean/pull/638 36 - (fetchpatch { 37 - name = "unpin-versioningit-dependency.patch"; 38 - url = "https://github.com/QCoDeS/broadbean/commit/e4fd6c38d076aa3a6542dcd8fa7d2eb9d7a9b789.patch"; 39 - hash = "sha256-mw68pWAjztWBw22MeoWVbwIwjzMOJRtv6HctN3v6A2A="; 40 - }) 41 - ]; 42 - 43 nativeBuildInputs = [ 44 setuptools 45 versioningit
··· 25 hash = "sha256-v+Ov6mlSnaJG98ooA9AhPGJflrFafKQoO5wi+PxcZVw="; 26 }; 27 28 nativeBuildInputs = [ 29 setuptools 30 versioningit
+5 -7
pkgs/development/python-modules/catppuccin/default.nix
··· 20 hash = "sha256-/RINDyO0cngDy9APqsFHBFBKi8aDf7Tah/IIFdXQURo="; 21 }; 22 23 - nativeBuildInputs = [ 24 poetry-core 25 poetry-dynamic-versioning 26 ]; 27 28 - passthru.optional-dependencies = { 29 pygments = [ pygments ]; 30 rich = [ rich ]; 31 }; 32 33 - nativeCheckInputs = [ pytestCheckHook ]; 34 - 35 - disabledTestPaths = [ 36 - "tests/test_flavour.py" # would download a json to check correctness of flavours 37 - ]; 38 39 pythonImportsCheck = [ "catppuccin" ]; 40
··· 20 hash = "sha256-/RINDyO0cngDy9APqsFHBFBKi8aDf7Tah/IIFdXQURo="; 21 }; 22 23 + build-system = [ 24 poetry-core 25 poetry-dynamic-versioning 26 ]; 27 28 + optional-dependencies = { 29 pygments = [ pygments ]; 30 rich = [ rich ]; 31 }; 32 33 + nativeCheckInputs = [ 34 + pytestCheckHook 35 + ] ++ lib.flatten (lib.attrValues optional-dependencies); 36 37 pythonImportsCheck = [ "catppuccin" ]; 38
+4
pkgs/development/python-modules/deal/default.nix
··· 62 flake8 63 ]; 64 65 disabledTests = [ 66 # needs internet access 67 "test_smoke_has"
··· 62 flake8 63 ]; 64 65 + pytestFlagsArray = [ 66 + "-W" "ignore::pytest.PytestRemovedIn8Warning" 67 + ]; 68 + 69 disabledTests = [ 70 # needs internet access 71 "test_smoke_has"
+8 -1
pkgs/development/python-modules/edalize/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , coreutils 5 , jinja2 6 , pandas ··· 14 buildPythonPackage rec { 15 pname = "edalize"; 16 version = "0.5.4"; 17 - format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; 20 ··· 30 --replace /usr/bin/touch ${coreutils}/bin/touch 31 patchShebangs tests/mock_commands/vsim 32 ''; 33 34 propagatedBuildInputs = [ 35 jinja2
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , setuptools 5 + , setuptools-scm 6 , coreutils 7 , jinja2 8 , pandas ··· 16 buildPythonPackage rec { 17 pname = "edalize"; 18 version = "0.5.4"; 19 + pyproject = true; 20 21 disabled = pythonOlder "3.7"; 22 ··· 32 --replace /usr/bin/touch ${coreutils}/bin/touch 33 patchShebangs tests/mock_commands/vsim 34 ''; 35 + 36 + build-system = [ 37 + setuptools 38 + setuptools-scm 39 + ]; 40 41 propagatedBuildInputs = [ 42 jinja2
+2 -2
pkgs/development/python-modules/faraday-plugins/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "faraday-plugins"; 22 - version = "1.16.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "infobyte"; 29 repo = "faraday_plugins"; 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-1haWRuWK9WCgdR4geT2w3E95+CapBYDohGowUmnJ2H4="; 32 }; 33 34 postPatch = ''
··· 19 20 buildPythonPackage rec { 21 pname = "faraday-plugins"; 22 + version = "1.17.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "infobyte"; 29 repo = "faraday_plugins"; 30 rev = "refs/tags/${version}"; 31 + hash = "sha256-EE61RPantD1u9NNhyPRjoRkBifM3u16b0BC2aQC8UBA="; 32 }; 33 34 postPatch = ''
+2
pkgs/development/python-modules/githubkit/default.nix
··· 7 , poetry-core 8 , pydantic 9 , pyjwt 10 , pytestCheckHook 11 , pythonOlder 12 , pythonRelaxDepsHook ··· 70 71 nativeCheckInputs = [ 72 pytestCheckHook 73 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 74 75 pythonImportsCheck = [
··· 7 , poetry-core 8 , pydantic 9 , pyjwt 10 + , pytest-xdist 11 , pytestCheckHook 12 , pythonOlder 13 , pythonRelaxDepsHook ··· 71 72 nativeCheckInputs = [ 73 pytestCheckHook 74 + pytest-xdist 75 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 76 77 pythonImportsCheck = [
+6
pkgs/development/python-modules/hishel/default.nix
··· 69 "test_redis" 70 ]; 71 72 meta = with lib; { 73 description = "HTTP Cache implementation for HTTPX and HTTP Core"; 74 homepage = "https://github.com/karpetrosyan/hishel";
··· 69 "test_redis" 70 ]; 71 72 + disabledTestPaths = [ 73 + # ImportError: cannot import name 'mock_s3' from 'moto' 74 + "tests/_async/test_storages.py" 75 + "tests/_sync/test_storages.py" 76 + ]; 77 + 78 meta = with lib; { 79 description = "HTTP Cache implementation for HTTPX and HTTP Core"; 80 homepage = "https://github.com/karpetrosyan/hishel";
+10 -1
pkgs/development/python-modules/inscriptis/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , lxml 5 , pytestCheckHook 6 , pythonOlder 7 , requests ··· 10 buildPythonPackage rec { 11 pname = "inscriptis"; 12 version = "2.5.0"; 13 - format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 ··· 21 hash = "sha256-9KEkXcdZ7USXfyIXGDrp4p4kJTzF2q30fvOccxF1hBU="; 22 }; 23 24 propagatedBuildInputs = [ 25 lxml 26 requests 27 ]; 28 29 nativeCheckInputs = [ 30 pytestCheckHook 31 ]; 32
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , poetry-core 5 , lxml 6 + , fastapi 7 + , httpx 8 , pytestCheckHook 9 , pythonOlder 10 , requests ··· 13 buildPythonPackage rec { 14 pname = "inscriptis"; 15 version = "2.5.0"; 16 + pyproject = true; 17 18 disabled = pythonOlder "3.7"; 19 ··· 24 hash = "sha256-9KEkXcdZ7USXfyIXGDrp4p4kJTzF2q30fvOccxF1hBU="; 25 }; 26 27 + build-system = [ 28 + poetry-core 29 + ]; 30 + 31 propagatedBuildInputs = [ 32 lxml 33 requests 34 ]; 35 36 nativeCheckInputs = [ 37 + fastapi 38 + httpx 39 pytestCheckHook 40 ]; 41
+4 -2
pkgs/development/python-modules/intellifire4py/default.nix
··· 2 , aenum 3 , buildPythonPackage 4 , fetchFromGitHub 5 - , httpx 6 , poetry-core 7 , pydantic 8 , pytest-asyncio ··· 31 ]; 32 33 propagatedBuildInputs = [ 34 aenum 35 - httpx 36 pydantic 37 rich 38 ]; 39 40 nativeCheckInputs = [ 41 pytest-asyncio 42 pytest-httpx 43 pytestCheckHook
··· 2 , aenum 3 , buildPythonPackage 4 , fetchFromGitHub 5 + , aiohttp 6 + , aioresponses 7 , poetry-core 8 , pydantic 9 , pytest-asyncio ··· 32 ]; 33 34 propagatedBuildInputs = [ 35 + aiohttp 36 aenum 37 pydantic 38 rich 39 ]; 40 41 nativeCheckInputs = [ 42 + aioresponses 43 pytest-asyncio 44 pytest-httpx 45 pytestCheckHook
+2
pkgs/development/python-modules/jira/default.nix
··· 6 , ipython 7 , keyring 8 , packaging 9 , pyjwt 10 , pytestCheckHook 11 , pythonOlder ··· 44 requests 45 requests-oauthlib 46 requests-toolbelt 47 typing-extensions 48 ]; 49
··· 6 , ipython 7 , keyring 8 , packaging 9 + , pillow 10 , pyjwt 11 , pytestCheckHook 12 , pythonOlder ··· 45 requests 46 requests-oauthlib 47 requests-toolbelt 48 + pillow 49 typing-extensions 50 ]; 51
+4
pkgs/development/python-modules/json-tricks/default.nix
··· 29 pytestCheckHook 30 ]; 31 32 pythonImportsCheck = [ 33 "json_tricks" 34 ];
··· 29 pytestCheckHook 30 ]; 31 32 + pytestFlagsArray = [ 33 + "-W" "ignore::pytest.PytestRemovedIn8Warning" 34 + ]; 35 + 36 pythonImportsCheck = [ 37 "json_tricks" 38 ];
+1
pkgs/development/python-modules/m3u8/default.nix
··· 35 "test_load_should_create_object_from_uri" 36 "test_load_should_create_object_from_uri_with_relative_segments" 37 "test_load_should_remember_redirect" 38 ]; 39 40 pythonImportsCheck = [
··· 35 "test_load_should_create_object_from_uri" 36 "test_load_should_create_object_from_uri_with_relative_segments" 37 "test_load_should_remember_redirect" 38 + "test_raise_timeout_exception_if_timeout_happens_when_loading_from_uri" 39 ]; 40 41 pythonImportsCheck = [
+3 -2
pkgs/development/python-modules/nosejs/default.nix
··· 5 }: 6 7 buildPythonPackage rec { 8 - pname = "NoseJS"; 9 version = "0.9.4"; 10 11 src = fetchPypi { 12 - inherit pname version; 13 sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy"; 14 }; 15
··· 5 }: 6 7 buildPythonPackage rec { 8 + pname = "nosejs"; 9 version = "0.9.4"; 10 11 src = fetchPypi { 12 + pname = "NoseJS"; 13 + inherit version; 14 sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy"; 15 }; 16
+6 -1
pkgs/development/python-modules/nox/default.nix
··· 42 importlib-metadata 43 ]; 44 45 - checkInputs = [ 46 jinja2 47 tox 48 pytestCheckHook ··· 50 51 pythonImportsCheck = [ 52 "nox" 53 ]; 54 55 disabledTestPaths = [
··· 42 importlib-metadata 43 ]; 44 45 + nativeCheckInputs = [ 46 jinja2 47 tox 48 pytestCheckHook ··· 50 51 pythonImportsCheck = [ 52 "nox" 53 + ]; 54 + 55 + disabledTests = [ 56 + # our conda is not available on 3.11 57 + "test__create_venv_options" 58 ]; 59 60 disabledTestPaths = [
+3 -2
pkgs/development/python-modules/plyplus/default.nix
··· 1 { lib, fetchPypi, buildPythonPackage, ply, isPy3k }: 2 buildPythonPackage rec { 3 - pname = "PlyPlus"; 4 version = "0.7.5"; 5 6 src = fetchPypi { 7 - inherit pname version; 8 sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp"; 9 }; 10
··· 1 { lib, fetchPypi, buildPythonPackage, ply, isPy3k }: 2 buildPythonPackage rec { 3 + pname = "plyplus"; 4 version = "0.7.5"; 5 6 src = fetchPypi { 7 + pname = "PlyPlus"; 8 + inherit version; 9 sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp"; 10 }; 11
+2 -2
pkgs/development/python-modules/py-scrypt/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "py-scrypt"; 9 - version = "0.8.20"; 10 11 src = fetchPypi { 12 pname = "scrypt"; 13 inherit version; 14 - hash = "sha256-DSJsHGdE+y4wizkUEGabHfXP6CY3/8te1Im/grLS63g="; 15 }; 16 17 buildInputs = [ openssl ];
··· 6 7 buildPythonPackage rec { 8 pname = "py-scrypt"; 9 + version = "0.8.24"; 10 11 src = fetchPypi { 12 pname = "scrypt"; 13 inherit version; 14 + hash = "sha256-mP/eReSpVGHXPe1UunomhXZ5kg1Pj/Mg9vet5uKVMb0="; 15 }; 16 17 buildInputs = [ openssl ];
+3 -2
pkgs/development/python-modules/pycontracts/default.nix
··· 2 , nose, pyparsing, decorator, six, future }: 3 4 buildPythonPackage rec { 5 - pname = "PyContracts"; 6 version = "1.8.14"; 7 8 src = fetchPypi { 9 - inherit pname version; 10 sha256 = "03q5m595ysjrc9h57m7prrca6b9l4yrzvdijnzxnhd61p7jzbh49"; 11 }; 12
··· 2 , nose, pyparsing, decorator, six, future }: 3 4 buildPythonPackage rec { 5 + pname = "pycontracts"; 6 version = "1.8.14"; 7 8 src = fetchPypi { 9 + pname = "PyContracts"; 10 + inherit version; 11 sha256 = "03q5m595ysjrc9h57m7prrca6b9l4yrzvdijnzxnhd61p7jzbh49"; 12 }; 13
-9
pkgs/development/python-modules/pyinfra/default.nix
··· 31 hash = "sha256-lzbFwAg1aLCfBnSnqq4oVteArpkRBa7hU8V3vB5ODa8="; 32 }; 33 34 - patches = [ 35 - # https://github.com/Fizzadar/pyinfra/pull/1018 36 - (fetchpatch { 37 - name = "bump-paramiko-major-version.patch"; 38 - url = "https://github.com/Fizzadar/pyinfra/commit/62a8f081279779c4f1eed246139f615cf5fed642.patch"; 39 - hash = "sha256-aT9SeSqXOD76LFzf6R/MWTtavcW6fZT7chkVg9aXiBg="; 40 - }) 41 - ]; 42 - 43 propagatedBuildInputs = [ 44 click 45 colorama
··· 31 hash = "sha256-lzbFwAg1aLCfBnSnqq4oVteArpkRBa7hU8V3vB5ODa8="; 32 }; 33 34 propagatedBuildInputs = [ 35 click 36 colorama
+4
pkgs/development/python-modules/torchsde/default.nix
··· 52 pytestCheckHook 53 ]; 54 55 disabledTests = [ 56 # RuntimeError: a view of a leaf Variable that requires grad is being used in an in-place operation. 57 "test_adjoint"
··· 52 pytestCheckHook 53 ]; 54 55 + pytestFlagsArray = [ 56 + "-W" "ignore::pytest.PytestRemovedIn8Warning" 57 + ]; 58 + 59 disabledTests = [ 60 # RuntimeError: a view of a leaf Variable that requires grad is being used in an in-place operation. 61 "test_adjoint"
+18
pkgs/development/r-modules/default.nix
··· 382 nloptr = with pkgs; [ nlopt pkg-config ]; 383 n1qn1 = [ pkgs.gfortran ]; 384 odbc = [ pkgs.unixODBC ]; 385 pak = [ pkgs.curl.dev ]; 386 pander = with pkgs; [ pandoc which ]; 387 pbdMPI = [ pkgs.mpi ]; ··· 534 island = [ pkgs.gsl.dev ]; 535 svKomodo = [ pkgs.which ]; 536 ulid = [ pkgs.zlib.dev ]; 537 nat = [ pkgs.which ]; 538 nat_templatebrains = [ pkgs.which ]; 539 pbdZMQ = [ pkgs.zeromq ] ++ lib.optionals stdenv.isDarwin [ pkgs.darwin.binutils ]; ··· 545 webp = [ pkgs.libwebp ]; 546 RMark = [ pkgs.which ]; 547 RPushbullet = [ pkgs.which ]; 548 RCurl = [ pkgs.curl.dev ]; 549 R2SWF = [ pkgs.pkg-config ]; 550 rgl = with pkgs; [ libGLU libGLU.dev libGL xorg.libX11.dev freetype.dev libpng.dev ]; 551 RGtk2 = [ pkgs.pkg-config ]; 552 RProtoBuf = [ pkgs.pkg-config ]; 553 Rpoppler = [ pkgs.pkg-config ]; 554 XML = [ pkgs.pkg-config ]; 555 cairoDevice = [ pkgs.pkg-config ]; 556 chebpol = [ pkgs.pkg-config ]; 557 fftw = [ pkgs.pkg-config ]; ··· 1360 ]; 1361 }); 1362 1363 sparklyr = old.sparklyr.overrideAttrs (attrs: { 1364 # Pyspark's spark is full featured and better maintained than pkgs.spark 1365 preConfigure = '' ··· 1412 1413 geomorph = old.geomorph.overrideAttrs (attrs: { 1414 RGL_USE_NULL = "true"; 1415 }); 1416 1417 Rhdf5lib = let
··· 382 nloptr = with pkgs; [ nlopt pkg-config ]; 383 n1qn1 = [ pkgs.gfortran ]; 384 odbc = [ pkgs.unixODBC ]; 385 + opencv = [ pkgs.pkg-config ]; 386 pak = [ pkgs.curl.dev ]; 387 pander = with pkgs; [ pandoc which ]; 388 pbdMPI = [ pkgs.mpi ]; ··· 535 island = [ pkgs.gsl.dev ]; 536 svKomodo = [ pkgs.which ]; 537 ulid = [ pkgs.zlib.dev ]; 538 + unrtf = with pkgs; [ xz.dev bzip2.dev zlib.dev icu.dev ]; 539 nat = [ pkgs.which ]; 540 nat_templatebrains = [ pkgs.which ]; 541 pbdZMQ = [ pkgs.zeromq ] ++ lib.optionals stdenv.isDarwin [ pkgs.darwin.binutils ]; ··· 547 webp = [ pkgs.libwebp ]; 548 RMark = [ pkgs.which ]; 549 RPushbullet = [ pkgs.which ]; 550 + stpphawkes = [ pkgs.gsl ]; 551 RCurl = [ pkgs.curl.dev ]; 552 R2SWF = [ pkgs.pkg-config ]; 553 + rDEA = [ pkgs.glpk ]; 554 rgl = with pkgs; [ libGLU libGLU.dev libGL xorg.libX11.dev freetype.dev libpng.dev ]; 555 RGtk2 = [ pkgs.pkg-config ]; 556 RProtoBuf = [ pkgs.pkg-config ]; 557 Rpoppler = [ pkgs.pkg-config ]; 558 XML = [ pkgs.pkg-config ]; 559 + apsimx = [ pkgs.which ]; 560 cairoDevice = [ pkgs.pkg-config ]; 561 chebpol = [ pkgs.pkg-config ]; 562 fftw = [ pkgs.pkg-config ]; ··· 1365 ]; 1366 }); 1367 1368 + xslt = old.xslt.overrideAttrs (attrs: { 1369 + env = (attrs.env or { }) // { 1370 + NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -fpermissive"; 1371 + }; 1372 + }); 1373 + 1374 sparklyr = old.sparklyr.overrideAttrs (attrs: { 1375 # Pyspark's spark is full featured and better maintained than pkgs.spark 1376 preConfigure = '' ··· 1423 1424 geomorph = old.geomorph.overrideAttrs (attrs: { 1425 RGL_USE_NULL = "true"; 1426 + }); 1427 + 1428 + 1429 + opencv = let 1430 + opencvGtk = pkgs.opencv.override (old : { enableGtk2 = true; }); 1431 + in old.opencv.overrideAttrs (attrs: { 1432 + buildInputs = attrs.buildInputs ++ [ opencvGtk ]; 1433 }); 1434 1435 Rhdf5lib = let
+3 -3
pkgs/development/tools/go-swag/default.nix
··· 2 3 buildGoModule rec { 4 pname = "go-swag"; 5 - version = "1.8.12"; 6 7 src = fetchFromGitHub { 8 owner = "swaggo"; 9 repo = "swag"; 10 rev = "v${version}"; 11 - sha256 = "sha256-2rnaPN4C4pn9Whk5X2z1VVxm679EUpQdumJZx5uulr4="; 12 }; 13 14 - vendorHash = "sha256-yQPmiK1CQNn3sr482OEkdRLK6YP8CvPMA/nPGdVJbMc="; 15 16 subPackages = [ "cmd/swag" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "go-swag"; 5 + version = "1.16.3"; 6 7 src = fetchFromGitHub { 8 owner = "swaggo"; 9 repo = "swag"; 10 rev = "v${version}"; 11 + sha256 = "sha256-wS5m3dBiILxmVb6P559fGcONdCWc/5hhLAVMC+G1QZs="; 12 }; 13 14 + vendorHash = "sha256-BxWmEcx5IIT/yI46CJGE0vE1BRm5zwngc0x1dVy/04s="; 15 16 subPackages = [ "cmd/swag" ]; 17
+659 -566
pkgs/development/tools/language-servers/typst-lsp/Cargo.lock
··· 19 20 [[package]] 21 name = "ahash" 22 - version = "0.7.7" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 25 dependencies = [ 26 "getrandom", 27 "once_cell", ··· 54 55 [[package]] 56 name = "anyhow" 57 - version = "1.0.75" 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 60 61 [[package]] 62 name = "approx" ··· 92 93 [[package]] 94 name = "async-compression" 95 - version = "0.4.5" 96 source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 98 dependencies = [ 99 "flate2", 100 "futures-core", ··· 105 106 [[package]] 107 name = "async-trait" 108 - version = "0.1.74" 109 source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 111 dependencies = [ 112 "proc-macro2", 113 "quote", 114 - "syn 2.0.39", 115 ] 116 117 [[package]] 118 name = "auto_impl" 119 - version = "1.1.0" 120 source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" 122 dependencies = [ 123 - "proc-macro-error", 124 "proc-macro2", 125 "quote", 126 - "syn 1.0.109", 127 ] 128 129 [[package]] ··· 155 156 [[package]] 157 name = "base64" 158 - version = "0.21.5" 159 source = "registry+https://github.com/rust-lang/crates.io-index" 160 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 161 162 [[package]] 163 name = "biblatex" 164 - version = "0.9.1" 165 source = "registry+https://github.com/rust-lang/crates.io-index" 166 - checksum = "1a3638fc10f65e552d53318e042cefa542418633451163228fcbfb1a58a0ca85" 167 dependencies = [ 168 "numerals", 169 "paste", ··· 204 205 [[package]] 206 name = "bitflags" 207 - version = "2.4.1" 208 source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 210 dependencies = [ 211 "serde", 212 ] 213 214 [[package]] 215 name = "bpaf" 216 - version = "0.9.6" 217 source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "565688a36ddfcfc189cc927c94a6b69cc96c9f8a69030151ae8f0ed2b54a2ad3" 219 dependencies = [ 220 "owo-colors", 221 "supports-color", ··· 223 224 [[package]] 225 name = "bstr" 226 - version = "1.8.0" 227 source = "registry+https://github.com/rust-lang/crates.io-index" 228 - checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 229 dependencies = [ 230 "memchr", 231 "serde", ··· 233 234 [[package]] 235 name = "bumpalo" 236 - version = "3.14.0" 237 source = "registry+https://github.com/rust-lang/crates.io-index" 238 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 239 240 [[package]] 241 name = "bytemuck" 242 - version = "1.14.0" 243 source = "registry+https://github.com/rust-lang/crates.io-index" 244 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 245 246 [[package]] 247 name = "byteorder" ··· 266 267 [[package]] 268 name = "cargo-platform" 269 - version = "0.1.5" 270 source = "registry+https://github.com/rust-lang/crates.io-index" 271 - checksum = "e34637b3140142bdf929fb439e8aa4ebad7651ebf7b1080b3930aa16ac1459ff" 272 dependencies = [ 273 "serde", 274 ] ··· 295 296 [[package]] 297 name = "cc" 298 - version = "1.0.83" 299 source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 301 - dependencies = [ 302 - "libc", 303 - ] 304 305 [[package]] 306 name = "cfg-if" ··· 310 311 [[package]] 312 name = "chinese-number" 313 - version = "0.7.4" 314 source = "registry+https://github.com/rust-lang/crates.io-index" 315 - checksum = "b3b2ffc31f235dfd4a5fa440c9b9822144183821be28aeb269e205d5541164dd" 316 dependencies = [ 317 "chinese-variant", 318 "enum-ordinalize", ··· 322 323 [[package]] 324 name = "chinese-variant" 325 - version = "1.1.2" 326 source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "17df2e16b0704fc5413214165d1bfdd619f18b1044d5991d5c5351b05fee852e" 328 329 [[package]] 330 name = "chrono" 331 - version = "0.4.31" 332 source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 334 dependencies = [ 335 "android-tzdata", 336 "iana-time-zone", 337 "num-traits", 338 - "windows-targets 0.48.5", 339 ] 340 341 [[package]] 342 name = "ciborium" 343 - version = "0.2.1" 344 source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 346 dependencies = [ 347 "ciborium-io", 348 "ciborium-ll", ··· 351 352 [[package]] 353 name = "ciborium-io" 354 - version = "0.2.1" 355 source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 357 358 [[package]] 359 name = "ciborium-ll" 360 - version = "0.2.1" 361 source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 363 dependencies = [ 364 "ciborium-io", 365 "half", ··· 367 368 [[package]] 369 name = "citationberg" 370 - version = "0.1.1" 371 source = "registry+https://github.com/rust-lang/crates.io-index" 372 - checksum = "c15a0bf8014b266d11f20451dc9202d8d26180ffd8b094d73ecbe74d821f01fb" 373 dependencies = [ 374 - "quick-xml 0.28.2", 375 "serde", 376 ] 377 ··· 393 source = "registry+https://github.com/rust-lang/crates.io-index" 394 checksum = "bf5705468fa80602ee6a5f9318306e6c428bffd53e43209a78bc05e6e667c6f4" 395 dependencies = [ 396 - "comemo-macros", 397 "siphasher 1.0.0", 398 ] 399 ··· 405 dependencies = [ 406 "proc-macro2", 407 "quote", 408 - "syn 2.0.39", 409 ] 410 411 [[package]] ··· 444 445 [[package]] 446 name = "crc32fast" 447 - version = "1.3.2" 448 source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 450 dependencies = [ 451 "cfg-if", 452 ] 453 454 [[package]] 455 name = "crossbeam-channel" 456 - version = "0.5.8" 457 source = "registry+https://github.com/rust-lang/crates.io-index" 458 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 459 dependencies = [ 460 - "cfg-if", 461 "crossbeam-utils", 462 ] 463 464 [[package]] 465 name = "crossbeam-deque" 466 - version = "0.8.3" 467 source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 469 dependencies = [ 470 - "cfg-if", 471 "crossbeam-epoch", 472 "crossbeam-utils", 473 ] 474 475 [[package]] 476 name = "crossbeam-epoch" 477 - version = "0.9.15" 478 source = "registry+https://github.com/rust-lang/crates.io-index" 479 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 480 dependencies = [ 481 - "autocfg", 482 - "cfg-if", 483 "crossbeam-utils", 484 - "memoffset", 485 - "scopeguard", 486 ] 487 488 [[package]] 489 name = "crossbeam-utils" 490 - version = "0.8.16" 491 source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 493 - dependencies = [ 494 - "cfg-if", 495 - ] 496 497 [[package]] 498 name = "csv" ··· 517 518 [[package]] 519 name = "curl" 520 - version = "0.4.44" 521 source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" 523 dependencies = [ 524 "curl-sys", 525 "libc", 526 "openssl-probe", 527 "openssl-sys", 528 "schannel", 529 - "socket2 0.4.10", 530 - "winapi", 531 ] 532 533 [[package]] 534 name = "curl-sys" 535 - version = "0.4.68+curl-8.4.0" 536 source = "registry+https://github.com/rust-lang/crates.io-index" 537 - checksum = "b4a0d18d88360e374b16b2273c832b5e57258ffc1d4aa4f96b108e0738d5752f" 538 dependencies = [ 539 "cc", 540 "libc", ··· 542 "openssl-sys", 543 "pkg-config", 544 "vcpkg", 545 - "windows-sys 0.48.0", 546 ] 547 548 [[package]] ··· 566 567 [[package]] 568 name = "deranged" 569 - version = "0.3.10" 570 source = "registry+https://github.com/rust-lang/crates.io-index" 571 - checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 572 dependencies = [ 573 "powerfmt", 574 ] ··· 602 dependencies = [ 603 "proc-macro2", 604 "quote", 605 - "syn 2.0.39", 606 ] 607 608 [[package]] ··· 622 623 [[package]] 624 name = "ecow" 625 - version = "0.2.0" 626 source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "e6ea5e3f9cda726431da9d1a8d5a29785d544b31e98e1ca7a210906244002e02" 628 dependencies = [ 629 "serde", 630 ] 631 632 [[package]] 633 name = "either" 634 - version = "1.9.0" 635 source = "registry+https://github.com/rust-lang/crates.io-index" 636 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 637 638 [[package]] 639 name = "elsa" ··· 661 662 [[package]] 663 name = "enum-ordinalize" 664 - version = "4.2.0" 665 source = "registry+https://github.com/rust-lang/crates.io-index" 666 - checksum = "b365ed566a2be6c61cb68e4faca9e74687004c5fd9a7291be8bc30992dd9195c" 667 dependencies = [ 668 "enum-ordinalize-derive", 669 ] 670 671 [[package]] 672 name = "enum-ordinalize-derive" 673 - version = "4.2.4" 674 source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "9ac2fa9cc04a3dec245e68a29ac309a03c1fe638522b0d8c24ec14bbe9c08323" 676 dependencies = [ 677 - "num-bigint", 678 - "num-traits", 679 "proc-macro2", 680 "quote", 681 - "syn 2.0.39", 682 ] 683 684 [[package]] ··· 736 737 [[package]] 738 name = "fdeflate" 739 - version = "0.3.1" 740 source = "registry+https://github.com/rust-lang/crates.io-index" 741 - checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 742 dependencies = [ 743 "simd-adler32", 744 ] 745 746 [[package]] 747 name = "filetime" 748 - version = "0.2.22" 749 source = "registry+https://github.com/rust-lang/crates.io-index" 750 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 751 dependencies = [ 752 "cfg-if", 753 "libc", 754 - "redox_syscall 0.3.5", 755 - "windows-sys 0.48.0", 756 ] 757 758 [[package]] ··· 779 780 [[package]] 781 name = "fontconfig-parser" 782 - version = "0.5.3" 783 source = "registry+https://github.com/rust-lang/crates.io-index" 784 - checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4" 785 dependencies = [ 786 "roxmltree", 787 ] 788 789 [[package]] 790 name = "fontdb" 791 - version = "0.15.0" 792 source = "registry+https://github.com/rust-lang/crates.io-index" 793 - checksum = "020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38" 794 - dependencies = [ 795 - "log", 796 - "slotmap", 797 - "tinyvec", 798 - "ttf-parser 0.19.2", 799 - ] 800 - 801 - [[package]] 802 - name = "fontdb" 803 - version = "0.16.0" 804 - source = "registry+https://github.com/rust-lang/crates.io-index" 805 - checksum = "98b88c54a38407f7352dd2c4238830115a6377741098ffd1f997c813d0e088a6" 806 dependencies = [ 807 "fontconfig-parser", 808 "log", 809 "memmap2", 810 "slotmap", 811 "tinyvec", 812 - "ttf-parser 0.20.0", 813 ] 814 815 [[package]] ··· 838 839 [[package]] 840 name = "futures" 841 - version = "0.3.29" 842 source = "registry+https://github.com/rust-lang/crates.io-index" 843 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 844 dependencies = [ 845 "futures-channel", 846 "futures-core", ··· 853 854 [[package]] 855 name = "futures-channel" 856 - version = "0.3.29" 857 source = "registry+https://github.com/rust-lang/crates.io-index" 858 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 859 dependencies = [ 860 "futures-core", 861 "futures-sink", ··· 863 864 [[package]] 865 name = "futures-core" 866 - version = "0.3.29" 867 source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 869 870 [[package]] 871 name = "futures-executor" 872 - version = "0.3.29" 873 source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 875 dependencies = [ 876 "futures-core", 877 "futures-task", ··· 880 881 [[package]] 882 name = "futures-io" 883 - version = "0.3.29" 884 source = "registry+https://github.com/rust-lang/crates.io-index" 885 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 886 887 [[package]] 888 name = "futures-lite" ··· 901 902 [[package]] 903 name = "futures-macro" 904 - version = "0.3.29" 905 source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 907 dependencies = [ 908 "proc-macro2", 909 "quote", 910 - "syn 2.0.39", 911 ] 912 913 [[package]] 914 name = "futures-sink" 915 - version = "0.3.29" 916 source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 918 919 [[package]] 920 name = "futures-task" 921 - version = "0.3.29" 922 source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 924 925 [[package]] 926 name = "futures-util" 927 - version = "0.3.29" 928 source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 930 dependencies = [ 931 "futures-channel", 932 "futures-core", ··· 942 943 [[package]] 944 name = "getrandom" 945 - version = "0.2.11" 946 source = "registry+https://github.com/rust-lang/crates.io-index" 947 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 948 dependencies = [ 949 "cfg-if", 950 "libc", ··· 962 ] 963 964 [[package]] 965 name = "gimli" 966 version = "0.28.1" 967 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 994 "bstr", 995 "log", 996 "regex-automata", 997 - "regex-syntax 0.8.2", 998 ] 999 1000 [[package]] 1001 name = "h2" 1002 - version = "0.3.22" 1003 source = "registry+https://github.com/rust-lang/crates.io-index" 1004 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 1005 dependencies = [ 1006 "bytes", 1007 "fnv", ··· 1018 1019 [[package]] 1020 name = "half" 1021 - version = "1.8.2" 1022 source = "registry+https://github.com/rust-lang/crates.io-index" 1023 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1024 1025 [[package]] 1026 name = "hashbrown" ··· 1039 1040 [[package]] 1041 name = "hayagriva" 1042 - version = "0.5.1" 1043 source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "f9f97c07366b7f686741521ca63cc14baf18cea53c39b0c09873cd1d4a1b2b8c" 1045 dependencies = [ 1046 "biblatex", 1047 "ciborium", ··· 1066 1067 [[package]] 1068 name = "hermit-abi" 1069 - version = "0.3.3" 1070 source = "registry+https://github.com/rust-lang/crates.io-index" 1071 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1072 1073 [[package]] 1074 name = "http" 1075 - version = "0.2.11" 1076 source = "registry+https://github.com/rust-lang/crates.io-index" 1077 - checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1078 dependencies = [ 1079 "bytes", 1080 "fnv", ··· 1083 1084 [[package]] 1085 name = "http-body" 1086 - version = "0.4.5" 1087 source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1089 dependencies = [ 1090 "bytes", 1091 "http", ··· 1106 1107 [[package]] 1108 name = "hyper" 1109 - version = "0.14.27" 1110 source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1112 dependencies = [ 1113 "bytes", 1114 "futures-channel", ··· 1121 "httpdate", 1122 "itoa", 1123 "pin-project-lite", 1124 - "socket2 0.4.10", 1125 "tokio", 1126 "tower-service", 1127 "tracing", ··· 1157 1158 [[package]] 1159 name = "hypher" 1160 - version = "0.1.4" 1161 source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "94bf16dd62ea2bec617a6f8a3e1ba03107311783069a647787ac689d1f35321e" 1163 1164 [[package]] 1165 name = "iana-time-zone" 1166 - version = "0.1.58" 1167 source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1169 dependencies = [ 1170 "android_system_properties", 1171 "core-foundation-sys", ··· 1306 dependencies = [ 1307 "proc-macro2", 1308 "quote", 1309 - "syn 2.0.39", 1310 ] 1311 1312 [[package]] ··· 1350 1351 [[package]] 1352 name = "image" 1353 - version = "0.24.7" 1354 source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 1356 dependencies = [ 1357 "bytemuck", 1358 "byteorder", 1359 "color_quant", 1360 - "gif", 1361 "jpeg-decoder", 1362 - "num-rational", 1363 "num-traits", 1364 "png", 1365 ] ··· 1372 1373 [[package]] 1374 name = "indexmap" 1375 - version = "2.1.0" 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1377 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1378 dependencies = [ 1379 "equivalent", 1380 "hashbrown 0.14.3", ··· 1420 1421 [[package]] 1422 name = "is-terminal" 1423 - version = "0.4.9" 1424 source = "registry+https://github.com/rust-lang/crates.io-index" 1425 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1426 dependencies = [ 1427 "hermit-abi", 1428 - "rustix", 1429 - "windows-sys 0.48.0", 1430 ] 1431 1432 [[package]] 1433 name = "is_ci" 1434 - version = "1.1.1" 1435 source = "registry+https://github.com/rust-lang/crates.io-index" 1436 - checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb" 1437 1438 [[package]] 1439 name = "isahc" ··· 1471 1472 [[package]] 1473 name = "itertools" 1474 - version = "0.12.0" 1475 source = "registry+https://github.com/rust-lang/crates.io-index" 1476 - checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" 1477 dependencies = [ 1478 "either", 1479 ] 1480 1481 [[package]] 1482 name = "itoa" 1483 - version = "1.0.9" 1484 source = "registry+https://github.com/rust-lang/crates.io-index" 1485 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1486 1487 [[package]] 1488 name = "jpeg-decoder" 1489 - version = "0.3.0" 1490 source = "registry+https://github.com/rust-lang/crates.io-index" 1491 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 1492 1493 [[package]] 1494 name = "js-sys" 1495 - version = "0.3.66" 1496 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 1498 dependencies = [ 1499 "wasm-bindgen", 1500 ] 1501 1502 [[package]] ··· 1516 1517 [[package]] 1518 name = "libc" 1519 - version = "0.2.150" 1520 source = "registry+https://github.com/rust-lang/crates.io-index" 1521 - checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 1522 1523 [[package]] 1524 name = "libm" ··· 1532 source = "registry+https://github.com/rust-lang/crates.io-index" 1533 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1534 dependencies = [ 1535 - "bitflags 2.4.1", 1536 "libc", 1537 "redox_syscall 0.4.1", 1538 ] 1539 1540 [[package]] 1541 name = "libz-sys" 1542 - version = "1.1.12" 1543 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 - checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 1545 dependencies = [ 1546 "cc", 1547 "libc", ··· 1566 1567 [[package]] 1568 name = "linux-raw-sys" 1569 - version = "0.4.12" 1570 source = "registry+https://github.com/rust-lang/crates.io-index" 1571 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1572 1573 [[package]] 1574 name = "lipsum" 1575 - version = "0.9.0" 1576 source = "registry+https://github.com/rust-lang/crates.io-index" 1577 - checksum = "9c5e9ef2d2ad6fe67a59ace27c203c8d3a71d195532ee82e3bbe0d5f9a9ca541" 1578 dependencies = [ 1579 "rand", 1580 "rand_chacha", ··· 1601 1602 [[package]] 1603 name = "log" 1604 - version = "0.4.20" 1605 source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1607 1608 [[package]] 1609 name = "lsp-types" ··· 1620 1621 [[package]] 1622 name = "memchr" 1623 - version = "2.6.4" 1624 source = "registry+https://github.com/rust-lang/crates.io-index" 1625 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1626 1627 [[package]] 1628 name = "memmap2" 1629 - version = "0.9.0" 1630 source = "registry+https://github.com/rust-lang/crates.io-index" 1631 - checksum = "deaba38d7abf1d4cca21cc89e932e542ba2b9258664d2a9ef0e61512039c9375" 1632 dependencies = [ 1633 "libc", 1634 ] 1635 1636 [[package]] 1637 - name = "memoffset" 1638 - version = "0.9.0" 1639 - source = "registry+https://github.com/rust-lang/crates.io-index" 1640 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1641 - dependencies = [ 1642 - "autocfg", 1643 - ] 1644 - 1645 - [[package]] 1646 name = "mime" 1647 version = "0.3.17" 1648 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1650 1651 [[package]] 1652 name = "miniz_oxide" 1653 - version = "0.7.1" 1654 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1656 dependencies = [ 1657 "adler", 1658 "simd-adler32", ··· 1660 1661 [[package]] 1662 name = "mio" 1663 - version = "0.8.9" 1664 source = "registry+https://github.com/rust-lang/crates.io-index" 1665 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 1666 dependencies = [ 1667 "libc", 1668 "wasi", ··· 1670 ] 1671 1672 [[package]] 1673 name = "native-tls" 1674 version = "0.2.11" 1675 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1699 ] 1700 1701 [[package]] 1702 - name = "num-integer" 1703 - version = "0.1.45" 1704 source = "registry+https://github.com/rust-lang/crates.io-index" 1705 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1706 - dependencies = [ 1707 - "autocfg", 1708 - "num-traits", 1709 - ] 1710 1711 [[package]] 1712 - name = "num-rational" 1713 - version = "0.4.1" 1714 source = "registry+https://github.com/rust-lang/crates.io-index" 1715 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1716 dependencies = [ 1717 - "autocfg", 1718 - "num-integer", 1719 "num-traits", 1720 ] 1721 1722 [[package]] 1723 name = "num-traits" 1724 - version = "0.2.17" 1725 source = "registry+https://github.com/rust-lang/crates.io-index" 1726 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 1727 dependencies = [ 1728 "autocfg", 1729 ] ··· 1746 1747 [[package]] 1748 name = "object" 1749 - version = "0.32.1" 1750 source = "registry+https://github.com/rust-lang/crates.io-index" 1751 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1752 dependencies = [ 1753 "memchr", 1754 ] ··· 1761 1762 [[package]] 1763 name = "openssl" 1764 - version = "0.10.60" 1765 source = "registry+https://github.com/rust-lang/crates.io-index" 1766 - checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" 1767 dependencies = [ 1768 - "bitflags 2.4.1", 1769 "cfg-if", 1770 "foreign-types", 1771 "libc", ··· 1782 dependencies = [ 1783 "proc-macro2", 1784 "quote", 1785 - "syn 2.0.39", 1786 ] 1787 1788 [[package]] ··· 1793 1794 [[package]] 1795 name = "openssl-sys" 1796 - version = "0.9.96" 1797 source = "registry+https://github.com/rust-lang/crates.io-index" 1798 - checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" 1799 dependencies = [ 1800 "cc", 1801 "libc", ··· 1862 1863 [[package]] 1864 name = "opentelemetry_sdk" 1865 - version = "0.21.1" 1866 source = "registry+https://github.com/rust-lang/crates.io-index" 1867 - checksum = "968ba3f2ca03e90e5187f5e4f46c791ef7f2c163ae87789c8ce5f5ca3b7b7de5" 1868 dependencies = [ 1869 "async-trait", 1870 "crossbeam-channel", ··· 1874 "glob", 1875 "once_cell", 1876 "opentelemetry", 1877 - "ordered-float 4.1.1", 1878 "percent-encoding", 1879 "rand", 1880 "thiserror", ··· 1899 1900 [[package]] 1901 name = "ordered-float" 1902 - version = "4.1.1" 1903 source = "registry+https://github.com/rust-lang/crates.io-index" 1904 - checksum = "536900a8093134cf9ccf00a27deb3532421099e958d9dd431135d0c7543ca1e8" 1905 dependencies = [ 1906 "num-traits", 1907 ] 1908 1909 [[package]] 1910 name = "owo-colors" 1911 - version = "3.5.0" 1912 source = "registry+https://github.com/rust-lang/crates.io-index" 1913 - checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 1914 1915 [[package]] 1916 name = "palette" 1917 - version = "0.7.3" 1918 source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "b2e2f34147767aa758aa649415b50a69eeb46a67f9dc7db8011eeb3d84b351dc" 1920 dependencies = [ 1921 "approx", 1922 "fast-srgb8", ··· 1926 1927 [[package]] 1928 name = "palette_derive" 1929 - version = "0.7.3" 1930 source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "b7db010ec5ff3d4385e4f133916faacd9dad0f6a09394c92d825b3aed310fa0a" 1932 dependencies = [ 1933 "proc-macro2", 1934 "quote", 1935 - "syn 2.0.39", 1936 ] 1937 1938 [[package]] ··· 1989 checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1990 1991 [[package]] 1992 name = "pico-args" 1993 version = "0.5.0" 1994 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1996 1997 [[package]] 1998 name = "pin-project" 1999 - version = "1.1.3" 2000 source = "registry+https://github.com/rust-lang/crates.io-index" 2001 - checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 2002 dependencies = [ 2003 "pin-project-internal", 2004 ] 2005 2006 [[package]] 2007 name = "pin-project-internal" 2008 - version = "1.1.3" 2009 source = "registry+https://github.com/rust-lang/crates.io-index" 2010 - checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 2011 dependencies = [ 2012 "proc-macro2", 2013 "quote", 2014 - "syn 2.0.39", 2015 ] 2016 2017 [[package]] ··· 2028 2029 [[package]] 2030 name = "pkg-config" 2031 - version = "0.3.27" 2032 source = "registry+https://github.com/rust-lang/crates.io-index" 2033 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2034 2035 [[package]] 2036 name = "plist" ··· 2038 source = "registry+https://github.com/rust-lang/crates.io-index" 2039 checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 2040 dependencies = [ 2041 - "base64", 2042 "indexmap", 2043 "line-wrap", 2044 - "quick-xml 0.31.0", 2045 "serde", 2046 "time", 2047 ] 2048 2049 [[package]] 2050 name = "png" 2051 - version = "0.17.10" 2052 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 2054 dependencies = [ 2055 "bitflags 1.3.2", 2056 "crc32fast", ··· 2076 ] 2077 2078 [[package]] 2079 name = "postcard" 2080 version = "1.0.8" 2081 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2099 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2100 2101 [[package]] 2102 - name = "proc-macro-error" 2103 - version = "1.0.4" 2104 - source = "registry+https://github.com/rust-lang/crates.io-index" 2105 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2106 - dependencies = [ 2107 - "proc-macro-error-attr", 2108 - "proc-macro2", 2109 - "quote", 2110 - "syn 1.0.109", 2111 - "version_check", 2112 - ] 2113 - 2114 - [[package]] 2115 - name = "proc-macro-error-attr" 2116 - version = "1.0.4" 2117 - source = "registry+https://github.com/rust-lang/crates.io-index" 2118 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2119 - dependencies = [ 2120 - "proc-macro2", 2121 - "quote", 2122 - "version_check", 2123 - ] 2124 - 2125 - [[package]] 2126 name = "proc-macro2" 2127 - version = "1.0.70" 2128 source = "registry+https://github.com/rust-lang/crates.io-index" 2129 - checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 2130 dependencies = [ 2131 "unicode-ident", 2132 ] ··· 2141 ] 2142 2143 [[package]] 2144 - name = "quick-xml" 2145 - version = "0.28.2" 2146 source = "registry+https://github.com/rust-lang/crates.io-index" 2147 - checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 2148 - dependencies = [ 2149 - "memchr", 2150 - "serde", 2151 - ] 2152 2153 [[package]] 2154 name = "quick-xml" ··· 2157 checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2158 dependencies = [ 2159 "memchr", 2160 ] 2161 2162 [[package]] 2163 name = "quote" 2164 - version = "1.0.33" 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 2166 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2167 dependencies = [ 2168 "proc-macro2", 2169 ] ··· 2200 2201 [[package]] 2202 name = "rayon" 2203 - version = "1.8.0" 2204 source = "registry+https://github.com/rust-lang/crates.io-index" 2205 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 2206 dependencies = [ 2207 "either", 2208 "rayon-core", ··· 2210 2211 [[package]] 2212 name = "rayon-core" 2213 - version = "1.12.0" 2214 source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 2216 dependencies = [ 2217 "crossbeam-deque", 2218 "crossbeam-utils", 2219 ] 2220 2221 [[package]] 2222 - name = "rctree" 2223 - version = "0.5.0" 2224 - source = "registry+https://github.com/rust-lang/crates.io-index" 2225 - checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" 2226 - 2227 - [[package]] 2228 name = "redox_syscall" 2229 version = "0.3.5" 2230 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2255 2256 [[package]] 2257 name = "regex" 2258 - version = "1.10.2" 2259 source = "registry+https://github.com/rust-lang/crates.io-index" 2260 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 2261 dependencies = [ 2262 "aho-corasick", 2263 "memchr", 2264 "regex-automata", 2265 - "regex-syntax 0.8.2", 2266 ] 2267 2268 [[package]] 2269 name = "regex-automata" 2270 - version = "0.4.3" 2271 source = "registry+https://github.com/rust-lang/crates.io-index" 2272 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 2273 dependencies = [ 2274 "aho-corasick", 2275 "memchr", 2276 - "regex-syntax 0.8.2", 2277 ] 2278 2279 [[package]] 2280 name = "regex-syntax" 2281 - version = "0.7.5" 2282 - source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 2284 - 2285 - [[package]] 2286 - name = "regex-syntax" 2287 version = "0.8.2" 2288 source = "registry+https://github.com/rust-lang/crates.io-index" 2289 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2290 2291 [[package]] 2292 name = "reqwest" 2293 - version = "0.11.22" 2294 source = "registry+https://github.com/rust-lang/crates.io-index" 2295 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 2296 dependencies = [ 2297 - "base64", 2298 "bytes", 2299 "encoding_rs", 2300 "futures-core", ··· 2318 "serde", 2319 "serde_json", 2320 "serde_urlencoded", 2321 "system-configuration", 2322 "tokio", 2323 "tokio-native-tls", ··· 2334 ] 2335 2336 [[package]] 2337 name = "ring" 2338 - version = "0.17.6" 2339 source = "registry+https://github.com/rust-lang/crates.io-index" 2340 - checksum = "684d5e6e18f669ccebf64a92236bb7db9a34f07be010e3627368182027180866" 2341 dependencies = [ 2342 "cc", 2343 "getrandom", 2344 "libc", 2345 "spin", 2346 "untrusted", 2347 - "windows-sys 0.48.0", 2348 ] 2349 2350 [[package]] 2351 name = "roxmltree" 2352 - version = "0.18.1" 2353 source = "registry+https://github.com/rust-lang/crates.io-index" 2354 - checksum = "862340e351ce1b271a378ec53f304a5558f7db87f3769dc655a8f6ecbb68b302" 2355 - dependencies = [ 2356 - "xmlparser", 2357 - ] 2358 2359 [[package]] 2360 name = "rustc-demangle" ··· 2364 2365 [[package]] 2366 name = "rustix" 2367 - version = "0.38.26" 2368 source = "registry+https://github.com/rust-lang/crates.io-index" 2369 - checksum = "9470c4bf8246c8daf25f9598dca807fb6510347b1e1cfa55749113850c79d88a" 2370 dependencies = [ 2371 - "bitflags 2.4.1", 2372 "errno", 2373 "libc", 2374 "linux-raw-sys", ··· 2377 2378 [[package]] 2379 name = "rustls" 2380 - version = "0.21.9" 2381 source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 2383 dependencies = [ 2384 "log", 2385 "ring", ··· 2393 source = "registry+https://github.com/rust-lang/crates.io-index" 2394 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2395 dependencies = [ 2396 - "base64", 2397 ] 2398 2399 [[package]] ··· 2414 2415 [[package]] 2416 name = "rustybuzz" 2417 - version = "0.10.0" 2418 source = "registry+https://github.com/rust-lang/crates.io-index" 2419 - checksum = "71cd15fef9112a1f94ac64b58d1e4628192631ad6af4dc69997f995459c874e7" 2420 dependencies = [ 2421 - "bitflags 1.3.2", 2422 "bytemuck", 2423 "smallvec", 2424 - "ttf-parser 0.19.2", 2425 "unicode-bidi-mirroring", 2426 "unicode-ccc", 2427 "unicode-properties", ··· 2430 2431 [[package]] 2432 name = "ryu" 2433 - version = "1.0.15" 2434 source = "registry+https://github.com/rust-lang/crates.io-index" 2435 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2436 2437 [[package]] 2438 name = "safemem" ··· 2451 2452 [[package]] 2453 name = "schannel" 2454 - version = "0.1.22" 2455 source = "registry+https://github.com/rust-lang/crates.io-index" 2456 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 2457 dependencies = [ 2458 - "windows-sys 0.48.0", 2459 ] 2460 2461 [[package]] ··· 2499 2500 [[package]] 2501 name = "semver" 2502 - version = "1.0.20" 2503 source = "registry+https://github.com/rust-lang/crates.io-index" 2504 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 2505 dependencies = [ 2506 "serde", 2507 ] 2508 2509 [[package]] 2510 name = "serde" 2511 - version = "1.0.193" 2512 source = "registry+https://github.com/rust-lang/crates.io-index" 2513 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 2514 dependencies = [ 2515 "serde_derive", 2516 ] 2517 2518 [[package]] 2519 name = "serde_derive" 2520 - version = "1.0.193" 2521 source = "registry+https://github.com/rust-lang/crates.io-index" 2522 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 2523 dependencies = [ 2524 "proc-macro2", 2525 "quote", 2526 - "syn 2.0.39", 2527 ] 2528 2529 [[package]] 2530 name = "serde_json" 2531 - version = "1.0.108" 2532 source = "registry+https://github.com/rust-lang/crates.io-index" 2533 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 2534 dependencies = [ 2535 "itoa", 2536 "ryu", ··· 2539 2540 [[package]] 2541 name = "serde_repr" 2542 - version = "0.1.17" 2543 source = "registry+https://github.com/rust-lang/crates.io-index" 2544 - checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 2545 dependencies = [ 2546 "proc-macro2", 2547 "quote", 2548 - "syn 2.0.39", 2549 ] 2550 2551 [[package]] 2552 name = "serde_spanned" 2553 - version = "0.6.4" 2554 source = "registry+https://github.com/rust-lang/crates.io-index" 2555 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 2556 dependencies = [ 2557 "serde", 2558 ] ··· 2571 2572 [[package]] 2573 name = "serde_yaml" 2574 - version = "0.9.27" 2575 source = "registry+https://github.com/rust-lang/crates.io-index" 2576 - checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" 2577 dependencies = [ 2578 "indexmap", 2579 "itoa", ··· 2649 2650 [[package]] 2651 name = "smallvec" 2652 - version = "1.11.2" 2653 source = "registry+https://github.com/rust-lang/crates.io-index" 2654 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2655 - 2656 - [[package]] 2657 - name = "socket2" 2658 - version = "0.4.10" 2659 - source = "registry+https://github.com/rust-lang/crates.io-index" 2660 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2661 - dependencies = [ 2662 - "libc", 2663 - "winapi", 2664 - ] 2665 2666 [[package]] 2667 name = "socket2" 2668 - version = "0.5.5" 2669 source = "registry+https://github.com/rust-lang/crates.io-index" 2670 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 2671 dependencies = [ 2672 "libc", 2673 - "windows-sys 0.48.0", 2674 ] 2675 2676 [[package]] ··· 2709 2710 [[package]] 2711 name = "strum" 2712 - version = "0.25.0" 2713 source = "registry+https://github.com/rust-lang/crates.io-index" 2714 - checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 2715 dependencies = [ 2716 "strum_macros", 2717 ] 2718 2719 [[package]] 2720 name = "strum_macros" 2721 - version = "0.25.3" 2722 source = "registry+https://github.com/rust-lang/crates.io-index" 2723 - checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" 2724 dependencies = [ 2725 "heck", 2726 "proc-macro2", 2727 "quote", 2728 "rustversion", 2729 - "syn 2.0.39", 2730 ] 2731 2732 [[package]] ··· 2747 2748 [[package]] 2749 name = "svg2pdf" 2750 - version = "0.9.1" 2751 source = "registry+https://github.com/rust-lang/crates.io-index" 2752 - checksum = "a81da66842e426278f20062cd249779565e13f9ab4bfe0ac9e94eb476bc3a0f3" 2753 dependencies = [ 2754 "image", 2755 "miniz_oxide", 2756 "once_cell", 2757 "pdf-writer", 2758 "usvg", 2759 ] 2760 2761 [[package]] 2762 name = "svgtypes" 2763 - version = "0.12.0" 2764 source = "registry+https://github.com/rust-lang/crates.io-index" 2765 - checksum = "d71499ff2d42f59d26edb21369a308ede691421f79ebc0f001e2b1fd3a7c9e52" 2766 dependencies = [ 2767 "kurbo", 2768 "siphasher 0.3.11", ··· 2770 2771 [[package]] 2772 name = "syn" 2773 - version = "1.0.109" 2774 source = "registry+https://github.com/rust-lang/crates.io-index" 2775 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2776 dependencies = [ 2777 "proc-macro2", 2778 "quote", ··· 2780 ] 2781 2782 [[package]] 2783 - name = "syn" 2784 - version = "2.0.39" 2785 source = "registry+https://github.com/rust-lang/crates.io-index" 2786 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 2787 - dependencies = [ 2788 - "proc-macro2", 2789 - "quote", 2790 - "unicode-ident", 2791 - ] 2792 2793 [[package]] 2794 name = "synstructure" 2795 - version = "0.13.0" 2796 source = "registry+https://github.com/rust-lang/crates.io-index" 2797 - checksum = "285ba80e733fac80aa4270fbcdf83772a79b80aa35c97075320abfee4a915b06" 2798 dependencies = [ 2799 "proc-macro2", 2800 "quote", 2801 - "syn 2.0.39", 2802 - "unicode-xid", 2803 ] 2804 2805 [[package]] 2806 name = "syntect" 2807 - version = "5.1.0" 2808 source = "registry+https://github.com/rust-lang/crates.io-index" 2809 - checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91" 2810 dependencies = [ 2811 "bincode", 2812 "bitflags 1.3.2", ··· 2815 "fnv", 2816 "once_cell", 2817 "plist", 2818 - "regex-syntax 0.7.5", 2819 "serde", 2820 "serde_json", 2821 "thiserror", 2822 "walkdir", ··· 2846 2847 [[package]] 2848 name = "temp-dir" 2849 - version = "0.1.11" 2850 source = "registry+https://github.com/rust-lang/crates.io-index" 2851 - checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" 2852 2853 [[package]] 2854 name = "tempfile" 2855 - version = "3.8.1" 2856 source = "registry+https://github.com/rust-lang/crates.io-index" 2857 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 2858 dependencies = [ 2859 "cfg-if", 2860 "fastrand 2.0.1", 2861 - "redox_syscall 0.4.1", 2862 "rustix", 2863 - "windows-sys 0.48.0", 2864 ] 2865 2866 [[package]] 2867 name = "thiserror" 2868 - version = "1.0.50" 2869 source = "registry+https://github.com/rust-lang/crates.io-index" 2870 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 2871 dependencies = [ 2872 "thiserror-impl", 2873 ] 2874 2875 [[package]] 2876 name = "thiserror-impl" 2877 - version = "1.0.50" 2878 source = "registry+https://github.com/rust-lang/crates.io-index" 2879 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 2880 dependencies = [ 2881 "proc-macro2", 2882 "quote", 2883 - "syn 2.0.39", 2884 ] 2885 2886 [[package]] 2887 name = "thread_local" 2888 - version = "1.1.7" 2889 source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2891 dependencies = [ 2892 "cfg-if", 2893 "once_cell", ··· 2917 2918 [[package]] 2919 name = "time" 2920 - version = "0.3.30" 2921 source = "registry+https://github.com/rust-lang/crates.io-index" 2922 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 2923 dependencies = [ 2924 "deranged", 2925 "itoa", 2926 "powerfmt", 2927 "serde", 2928 "time-core", ··· 2937 2938 [[package]] 2939 name = "time-macros" 2940 - version = "0.2.15" 2941 source = "registry+https://github.com/rust-lang/crates.io-index" 2942 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 2943 dependencies = [ 2944 "time-core", 2945 ] 2946 2947 [[package]] 2948 name = "tiny-skia-path" 2949 - version = "0.11.3" 2950 source = "registry+https://github.com/rust-lang/crates.io-index" 2951 - checksum = "5de35e8a90052baaaf61f171680ac2f8e925a1e43ea9d2e3a00514772250e541" 2952 dependencies = [ 2953 "arrayref", 2954 "bytemuck", ··· 2983 2984 [[package]] 2985 name = "tokio" 2986 - version = "1.35.1" 2987 source = "registry+https://github.com/rust-lang/crates.io-index" 2988 - checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 2989 dependencies = [ 2990 "backtrace", 2991 "bytes", ··· 2993 "mio", 2994 "num_cpus", 2995 "pin-project-lite", 2996 - "socket2 0.5.5", 2997 "tokio-macros", 2998 "windows-sys 0.48.0", 2999 ] ··· 3006 dependencies = [ 3007 "proc-macro2", 3008 "quote", 3009 - "syn 2.0.39", 3010 ] 3011 3012 [[package]] ··· 3031 3032 [[package]] 3033 name = "tokio-stream" 3034 - version = "0.1.14" 3035 source = "registry+https://github.com/rust-lang/crates.io-index" 3036 - checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 3037 dependencies = [ 3038 "futures-core", 3039 "pin-project-lite", ··· 3083 3084 [[package]] 3085 name = "toml" 3086 - version = "0.8.8" 3087 source = "registry+https://github.com/rust-lang/crates.io-index" 3088 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 3089 dependencies = [ 3090 "serde", 3091 "serde_spanned", 3092 "toml_datetime", 3093 - "toml_edit 0.21.0", 3094 ] 3095 3096 [[package]] ··· 3112 "serde", 3113 "serde_spanned", 3114 "toml_datetime", 3115 - "winnow", 3116 ] 3117 3118 [[package]] 3119 name = "toml_edit" 3120 - version = "0.21.0" 3121 source = "registry+https://github.com/rust-lang/crates.io-index" 3122 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 3123 dependencies = [ 3124 "indexmap", 3125 "serde", 3126 "serde_spanned", 3127 "toml_datetime", 3128 - "winnow", 3129 ] 3130 3131 [[package]] ··· 3179 dependencies = [ 3180 "proc-macro2", 3181 "quote", 3182 - "syn 2.0.39", 3183 ] 3184 3185 [[package]] ··· 3208 dependencies = [ 3209 "proc-macro2", 3210 "quote", 3211 - "syn 2.0.39", 3212 ] 3213 3214 [[package]] ··· 3273 3274 [[package]] 3275 name = "try-lock" 3276 - version = "0.2.4" 3277 source = "registry+https://github.com/rust-lang/crates.io-index" 3278 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 3279 3280 [[package]] 3281 name = "ttf-parser" 3282 - version = "0.19.2" 3283 source = "registry+https://github.com/rust-lang/crates.io-index" 3284 - checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1" 3285 3286 [[package]] 3287 - name = "ttf-parser" 3288 - version = "0.20.0" 3289 source = "registry+https://github.com/rust-lang/crates.io-index" 3290 - checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4" 3291 3292 [[package]] 3293 name = "typed-arena" ··· 3297 3298 [[package]] 3299 name = "typst" 3300 - version = "0.10.0" 3301 - source = "git+https://github.com/typst/typst.git?tag=v0.10.0#70ca0d257bb4ba927f63260e20443f244e0bb58c" 3302 dependencies = [ 3303 "az", 3304 - "bitflags 2.4.1", 3305 "chinese-number", 3306 "ciborium", 3307 - "comemo", 3308 "csv", 3309 - "ecow 0.2.0", 3310 - "fontdb 0.15.0", 3311 "hayagriva", 3312 "hypher", 3313 "icu_properties", ··· 3315 "icu_provider_adapters", 3316 "icu_provider_blob", 3317 "icu_segmenter", 3318 "image", 3319 "indexmap", 3320 "kurbo", 3321 "lipsum", 3322 "log", 3323 "once_cell", 3324 "palette", 3325 "rayon", 3326 "regex", 3327 "roxmltree", ··· 3334 "stacker", 3335 "syntect", 3336 "time", 3337 - "toml 0.8.8", 3338 - "tracing", 3339 - "ttf-parser 0.19.2", 3340 "typed-arena", 3341 "typst-macros", 3342 - "typst-syntax 0.10.0", 3343 "unicode-bidi", 3344 "unicode-math-class", 3345 "unicode-script", ··· 3349 ] 3350 3351 [[package]] 3352 name = "typst-ide" 3353 - version = "0.10.0" 3354 - source = "git+https://github.com/typst/typst.git?tag=v0.10.0#70ca0d257bb4ba927f63260e20443f244e0bb58c" 3355 dependencies = [ 3356 - "comemo", 3357 - "ecow 0.2.0", 3358 "if_chain", 3359 "log", 3360 "serde", ··· 3364 3365 [[package]] 3366 name = "typst-lsp" 3367 - version = "0.12.1" 3368 dependencies = [ 3369 "anyhow", 3370 "async-compression", ··· 3372 "bpaf", 3373 "cargo_metadata", 3374 "chrono", 3375 - "comemo", 3376 "dirs", 3377 "elsa", 3378 - "fontdb 0.16.0", 3379 "futures", 3380 "if_chain", 3381 "indexmap", 3382 "internment", 3383 - "itertools 0.12.0", 3384 "lazy_static", 3385 "once_cell", 3386 "opentelemetry", ··· 3412 3413 [[package]] 3414 name = "typst-macros" 3415 - version = "0.10.0" 3416 - source = "git+https://github.com/typst/typst.git?tag=v0.10.0#70ca0d257bb4ba927f63260e20443f244e0bb58c" 3417 dependencies = [ 3418 "heck", 3419 "proc-macro2", 3420 "quote", 3421 - "syn 2.0.39", 3422 ] 3423 3424 [[package]] 3425 name = "typst-pdf" 3426 - version = "0.10.0" 3427 - source = "git+https://github.com/typst/typst.git?tag=v0.10.0#70ca0d257bb4ba927f63260e20443f244e0bb58c" 3428 dependencies = [ 3429 - "base64", 3430 "bytemuck", 3431 - "comemo", 3432 - "ecow 0.2.0", 3433 "image", 3434 "miniz_oxide", 3435 "once_cell", 3436 "pdf-writer", 3437 "subsetter", 3438 "svg2pdf", 3439 - "tracing", 3440 - "ttf-parser 0.19.2", 3441 "typst", 3442 "unicode-properties", 3443 "unscanny", 3444 "xmp-writer", ··· 3449 version = "0.7.0" 3450 source = "git+https://github.com/typst/typst.git?tag=v0.7.0#da8367e189b02918a8fe1a98fd3059fd11a82cd9" 3451 dependencies = [ 3452 - "comemo", 3453 "ecow 0.1.2", 3454 "once_cell", 3455 "serde", ··· 3462 3463 [[package]] 3464 name = "typst-syntax" 3465 - version = "0.10.0" 3466 - source = "git+https://github.com/typst/typst.git?tag=v0.10.0#70ca0d257bb4ba927f63260e20443f244e0bb58c" 3467 dependencies = [ 3468 - "comemo", 3469 - "ecow 0.2.0", 3470 "once_cell", 3471 "serde", 3472 - "tracing", 3473 "unicode-ident", 3474 "unicode-math-class", 3475 "unicode-script", ··· 3478 ] 3479 3480 [[package]] 3481 name = "typstfmt_lib" 3482 version = "0.2.7" 3483 source = "git+https://github.com/astrale-sharp/typstfmt?tag=0.2.7#46b4ec34b4726c3c6541012f433c68c22d9e509c" ··· 3494 3495 [[package]] 3496 name = "unic-langid" 3497 - version = "0.9.1" 3498 source = "registry+https://github.com/rust-lang/crates.io-index" 3499 - checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 3500 dependencies = [ 3501 "unic-langid-impl", 3502 ] 3503 3504 [[package]] 3505 name = "unic-langid-impl" 3506 - version = "0.9.1" 3507 source = "registry+https://github.com/rust-lang/crates.io-index" 3508 - checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 3509 dependencies = [ 3510 "serde", 3511 "tinystr", ··· 3513 3514 [[package]] 3515 name = "unicode-bidi" 3516 - version = "0.3.13" 3517 source = "registry+https://github.com/rust-lang/crates.io-index" 3518 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 3519 3520 [[package]] 3521 name = "unicode-bidi-mirroring" ··· 3543 3544 [[package]] 3545 name = "unicode-normalization" 3546 - version = "0.1.22" 3547 source = "registry+https://github.com/rust-lang/crates.io-index" 3548 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3549 dependencies = [ 3550 "tinyvec", 3551 ] 3552 3553 [[package]] 3554 name = "unicode-properties" 3555 - version = "0.1.0" 3556 source = "registry+https://github.com/rust-lang/crates.io-index" 3557 - checksum = "c7f91c8b21fbbaa18853c3d0801c78f4fc94cdb976699bb03e832e75f7fd22f0" 3558 3559 [[package]] 3560 name = "unicode-script" 3561 - version = "0.5.5" 3562 source = "registry+https://github.com/rust-lang/crates.io-index" 3563 - checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc" 3564 3565 [[package]] 3566 name = "unicode-segmentation" 3567 - version = "1.10.1" 3568 source = "registry+https://github.com/rust-lang/crates.io-index" 3569 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3570 3571 [[package]] 3572 name = "unicode-vo" ··· 3575 checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" 3576 3577 [[package]] 3578 - name = "unicode-xid" 3579 - version = "0.2.4" 3580 - source = "registry+https://github.com/rust-lang/crates.io-index" 3581 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 3582 - 3583 - [[package]] 3584 name = "unsafe-libyaml" 3585 version = "0.2.10" 3586 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3618 3619 [[package]] 3620 name = "usvg" 3621 - version = "0.36.0" 3622 source = "registry+https://github.com/rust-lang/crates.io-index" 3623 - checksum = "c51daa774fe9ee5efcf7b4fec13019b8119cda764d9a8b5b06df02bb1445c656" 3624 dependencies = [ 3625 - "base64", 3626 "log", 3627 "pico-args", 3628 "usvg-parser", ··· 3633 3634 [[package]] 3635 name = "usvg-parser" 3636 - version = "0.36.0" 3637 source = "registry+https://github.com/rust-lang/crates.io-index" 3638 - checksum = "45c88a5ffaa338f0e978ecf3d4e00d8f9f493e29bed0752e1a808a1db16afc40" 3639 dependencies = [ 3640 "data-url", 3641 "flate2", ··· 3651 3652 [[package]] 3653 name = "usvg-text-layout" 3654 - version = "0.36.0" 3655 source = "registry+https://github.com/rust-lang/crates.io-index" 3656 - checksum = "4d2374378cb7a3fb8f33894e0fdb8625e1bbc4f25312db8d91f862130b541593" 3657 dependencies = [ 3658 - "fontdb 0.15.0", 3659 "kurbo", 3660 "log", 3661 "rustybuzz", ··· 3667 3668 [[package]] 3669 name = "usvg-tree" 3670 - version = "0.36.0" 3671 source = "registry+https://github.com/rust-lang/crates.io-index" 3672 - checksum = "6cacb0c5edeaf3e80e5afcf5b0d4004cc1d36318befc9a7c6606507e5d0f4062" 3673 dependencies = [ 3674 - "rctree", 3675 "strict-num", 3676 "svgtypes", 3677 "tiny-skia-path", ··· 3709 3710 [[package]] 3711 name = "walkdir" 3712 - version = "2.4.0" 3713 source = "registry+https://github.com/rust-lang/crates.io-index" 3714 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 3715 dependencies = [ 3716 "same-file", 3717 "winapi-util", ··· 3734 3735 [[package]] 3736 name = "wasm-bindgen" 3737 - version = "0.2.89" 3738 source = "registry+https://github.com/rust-lang/crates.io-index" 3739 - checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 3740 dependencies = [ 3741 "cfg-if", 3742 "wasm-bindgen-macro", ··· 3744 3745 [[package]] 3746 name = "wasm-bindgen-backend" 3747 - version = "0.2.89" 3748 source = "registry+https://github.com/rust-lang/crates.io-index" 3749 - checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 3750 dependencies = [ 3751 "bumpalo", 3752 "log", 3753 "once_cell", 3754 "proc-macro2", 3755 "quote", 3756 - "syn 2.0.39", 3757 "wasm-bindgen-shared", 3758 ] 3759 3760 [[package]] 3761 name = "wasm-bindgen-futures" 3762 - version = "0.4.39" 3763 source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 3765 dependencies = [ 3766 "cfg-if", 3767 "js-sys", ··· 3771 3772 [[package]] 3773 name = "wasm-bindgen-macro" 3774 - version = "0.2.89" 3775 source = "registry+https://github.com/rust-lang/crates.io-index" 3776 - checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 3777 dependencies = [ 3778 "quote", 3779 "wasm-bindgen-macro-support", ··· 3781 3782 [[package]] 3783 name = "wasm-bindgen-macro-support" 3784 - version = "0.2.89" 3785 source = "registry+https://github.com/rust-lang/crates.io-index" 3786 - checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 3787 dependencies = [ 3788 "proc-macro2", 3789 "quote", 3790 - "syn 2.0.39", 3791 "wasm-bindgen-backend", 3792 "wasm-bindgen-shared", 3793 ] 3794 3795 [[package]] 3796 name = "wasm-bindgen-shared" 3797 - version = "0.2.89" 3798 source = "registry+https://github.com/rust-lang/crates.io-index" 3799 - checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 3800 3801 [[package]] 3802 name = "wasm-streams" 3803 - version = "0.3.0" 3804 source = "registry+https://github.com/rust-lang/crates.io-index" 3805 - checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 3806 dependencies = [ 3807 "futures-util", 3808 "js-sys", ··· 3813 3814 [[package]] 3815 name = "wasmi" 3816 - version = "0.31.1" 3817 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "acfc1e384a36ca532d070a315925887247f3c7e23567e23e0ac9b1c5d6b8bf76" 3819 dependencies = [ 3820 "smallvec", 3821 "spin", ··· 3826 3827 [[package]] 3828 name = "wasmi_arena" 3829 - version = "0.4.0" 3830 source = "registry+https://github.com/rust-lang/crates.io-index" 3831 - checksum = "401c1f35e413fac1846d4843745589d9ec678977ab35a384db8ae7830525d468" 3832 3833 [[package]] 3834 name = "wasmi_core" ··· 3853 3854 [[package]] 3855 name = "web-sys" 3856 - version = "0.3.66" 3857 source = "registry+https://github.com/rust-lang/crates.io-index" 3858 - checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 3859 dependencies = [ 3860 "js-sys", 3861 "wasm-bindgen", ··· 3863 3864 [[package]] 3865 name = "web-time" 3866 - version = "0.2.3" 3867 source = "registry+https://github.com/rust-lang/crates.io-index" 3868 - checksum = "57099a701fb3a8043f993e8228dc24229c7b942e2b009a1b962e54489ba1d3bf" 3869 dependencies = [ 3870 "js-sys", 3871 "wasm-bindgen", ··· 3873 3874 [[package]] 3875 name = "webpki-roots" 3876 - version = "0.25.3" 3877 source = "registry+https://github.com/rust-lang/crates.io-index" 3878 - checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 3879 3880 [[package]] 3881 name = "weezl" 3882 - version = "0.1.7" 3883 source = "registry+https://github.com/rust-lang/crates.io-index" 3884 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 3885 3886 [[package]] 3887 name = "winapi" ··· 3916 3917 [[package]] 3918 name = "windows-core" 3919 - version = "0.51.1" 3920 source = "registry+https://github.com/rust-lang/crates.io-index" 3921 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 3922 dependencies = [ 3923 - "windows-targets 0.48.5", 3924 ] 3925 3926 [[package]] ··· 3938 source = "registry+https://github.com/rust-lang/crates.io-index" 3939 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3940 dependencies = [ 3941 - "windows-targets 0.52.0", 3942 ] 3943 3944 [[package]] ··· 3958 3959 [[package]] 3960 name = "windows-targets" 3961 - version = "0.52.0" 3962 source = "registry+https://github.com/rust-lang/crates.io-index" 3963 - checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 3964 dependencies = [ 3965 - "windows_aarch64_gnullvm 0.52.0", 3966 - "windows_aarch64_msvc 0.52.0", 3967 - "windows_i686_gnu 0.52.0", 3968 - "windows_i686_msvc 0.52.0", 3969 - "windows_x86_64_gnu 0.52.0", 3970 - "windows_x86_64_gnullvm 0.52.0", 3971 - "windows_x86_64_msvc 0.52.0", 3972 ] 3973 3974 [[package]] ··· 3979 3980 [[package]] 3981 name = "windows_aarch64_gnullvm" 3982 - version = "0.52.0" 3983 source = "registry+https://github.com/rust-lang/crates.io-index" 3984 - checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 3985 3986 [[package]] 3987 name = "windows_aarch64_msvc" ··· 3991 3992 [[package]] 3993 name = "windows_aarch64_msvc" 3994 - version = "0.52.0" 3995 source = "registry+https://github.com/rust-lang/crates.io-index" 3996 - checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 3997 3998 [[package]] 3999 name = "windows_i686_gnu" ··· 4003 4004 [[package]] 4005 name = "windows_i686_gnu" 4006 - version = "0.52.0" 4007 source = "registry+https://github.com/rust-lang/crates.io-index" 4008 - checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 4009 4010 [[package]] 4011 name = "windows_i686_msvc" ··· 4015 4016 [[package]] 4017 name = "windows_i686_msvc" 4018 - version = "0.52.0" 4019 source = "registry+https://github.com/rust-lang/crates.io-index" 4020 - checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 4021 4022 [[package]] 4023 name = "windows_x86_64_gnu" ··· 4027 4028 [[package]] 4029 name = "windows_x86_64_gnu" 4030 - version = "0.52.0" 4031 source = "registry+https://github.com/rust-lang/crates.io-index" 4032 - checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 4033 4034 [[package]] 4035 name = "windows_x86_64_gnullvm" ··· 4039 4040 [[package]] 4041 name = "windows_x86_64_gnullvm" 4042 - version = "0.52.0" 4043 source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 4045 4046 [[package]] 4047 name = "windows_x86_64_msvc" ··· 4051 4052 [[package]] 4053 name = "windows_x86_64_msvc" 4054 - version = "0.52.0" 4055 source = "registry+https://github.com/rust-lang/crates.io-index" 4056 - checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4057 4058 [[package]] 4059 name = "winnow" 4060 - version = "0.5.19" 4061 source = "registry+https://github.com/rust-lang/crates.io-index" 4062 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 4063 dependencies = [ 4064 "memchr", 4065 ] ··· 4082 4083 [[package]] 4084 name = "xattr" 4085 - version = "1.0.1" 4086 source = "registry+https://github.com/rust-lang/crates.io-index" 4087 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 4088 dependencies = [ 4089 "libc", 4090 ] 4091 4092 [[package]] 4093 - name = "xmlparser" 4094 - version = "0.13.6" 4095 - source = "registry+https://github.com/rust-lang/crates.io-index" 4096 - checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 4097 - 4098 - [[package]] 4099 name = "xmlwriter" 4100 version = "0.1.0" 4101 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4136 dependencies = [ 4137 "proc-macro2", 4138 "quote", 4139 - "syn 2.0.39", 4140 "synstructure", 4141 ] 4142 ··· 4157 dependencies = [ 4158 "proc-macro2", 4159 "quote", 4160 - "syn 2.0.39", 4161 "synstructure", 4162 ] 4163 ··· 4193 dependencies = [ 4194 "proc-macro2", 4195 "quote", 4196 - "syn 2.0.39", 4197 ]
··· 19 20 [[package]] 21 name = "ahash" 22 + version = "0.7.8" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25 dependencies = [ 26 "getrandom", 27 "once_cell", ··· 54 55 [[package]] 56 name = "anyhow" 57 + version = "1.0.81" 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" 60 61 [[package]] 62 name = "approx" ··· 92 93 [[package]] 94 name = "async-compression" 95 + version = "0.4.6" 96 source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" 98 dependencies = [ 99 "flate2", 100 "futures-core", ··· 105 106 [[package]] 107 name = "async-trait" 108 + version = "0.1.77" 109 source = "registry+https://github.com/rust-lang/crates.io-index" 110 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 111 dependencies = [ 112 "proc-macro2", 113 "quote", 114 + "syn", 115 ] 116 117 [[package]] 118 name = "auto_impl" 119 + version = "1.2.0" 120 source = "registry+https://github.com/rust-lang/crates.io-index" 121 + checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" 122 dependencies = [ 123 "proc-macro2", 124 "quote", 125 + "syn", 126 ] 127 128 [[package]] ··· 154 155 [[package]] 156 name = "base64" 157 + version = "0.21.7" 158 source = "registry+https://github.com/rust-lang/crates.io-index" 159 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 160 + 161 + [[package]] 162 + name = "base64" 163 + version = "0.22.0" 164 + source = "registry+https://github.com/rust-lang/crates.io-index" 165 + checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" 166 167 [[package]] 168 name = "biblatex" 169 + version = "0.9.3" 170 source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "27fe7285040d0227cd8b5395e1c4783f44f0b673eca5a657f4432ae401f2b7b8" 172 dependencies = [ 173 "numerals", 174 "paste", ··· 209 210 [[package]] 211 name = "bitflags" 212 + version = "2.4.2" 213 source = "registry+https://github.com/rust-lang/crates.io-index" 214 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 215 dependencies = [ 216 "serde", 217 ] 218 219 [[package]] 220 name = "bpaf" 221 + version = "0.9.9" 222 source = "registry+https://github.com/rust-lang/crates.io-index" 223 + checksum = "edc932b40b31d9bea0196f54c5b1b721b9aff3882fc08d9fe4082970c7e94d3d" 224 dependencies = [ 225 "owo-colors", 226 "supports-color", ··· 228 229 [[package]] 230 name = "bstr" 231 + version = "1.9.1" 232 source = "registry+https://github.com/rust-lang/crates.io-index" 233 + checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 234 dependencies = [ 235 "memchr", 236 "serde", ··· 238 239 [[package]] 240 name = "bumpalo" 241 + version = "3.15.4" 242 source = "registry+https://github.com/rust-lang/crates.io-index" 243 + checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 244 245 [[package]] 246 name = "bytemuck" 247 + version = "1.15.0" 248 source = "registry+https://github.com/rust-lang/crates.io-index" 249 + checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" 250 251 [[package]] 252 name = "byteorder" ··· 271 272 [[package]] 273 name = "cargo-platform" 274 + version = "0.1.7" 275 source = "registry+https://github.com/rust-lang/crates.io-index" 276 + checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" 277 dependencies = [ 278 "serde", 279 ] ··· 300 301 [[package]] 302 name = "cc" 303 + version = "1.0.90" 304 source = "registry+https://github.com/rust-lang/crates.io-index" 305 + checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 306 307 [[package]] 308 name = "cfg-if" ··· 312 313 [[package]] 314 name = "chinese-number" 315 + version = "0.7.7" 316 source = "registry+https://github.com/rust-lang/crates.io-index" 317 + checksum = "49fccaef6346f6d6a741908d3b79fe97c2debe2fbb5eb3a7d00ff5981b52bb6c" 318 dependencies = [ 319 "chinese-variant", 320 "enum-ordinalize", ··· 324 325 [[package]] 326 name = "chinese-variant" 327 + version = "1.1.3" 328 source = "registry+https://github.com/rust-lang/crates.io-index" 329 + checksum = "7588475145507237ded760e52bf2f1085495245502033756d28ea72ade0e498b" 330 331 [[package]] 332 name = "chrono" 333 + version = "0.4.35" 334 source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" 336 dependencies = [ 337 "android-tzdata", 338 "iana-time-zone", 339 "num-traits", 340 + "windows-targets 0.52.4", 341 ] 342 343 [[package]] 344 name = "ciborium" 345 + version = "0.2.2" 346 source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 348 dependencies = [ 349 "ciborium-io", 350 "ciborium-ll", ··· 353 354 [[package]] 355 name = "ciborium-io" 356 + version = "0.2.2" 357 source = "registry+https://github.com/rust-lang/crates.io-index" 358 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 359 360 [[package]] 361 name = "ciborium-ll" 362 + version = "0.2.2" 363 source = "registry+https://github.com/rust-lang/crates.io-index" 364 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 365 dependencies = [ 366 "ciborium-io", 367 "half", ··· 369 370 [[package]] 371 name = "citationberg" 372 + version = "0.3.0" 373 source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "82108f2b676c954076d2e5044f19a6a03887b24bd42804f322e0650d13035899" 375 dependencies = [ 376 + "quick-xml", 377 "serde", 378 ] 379 ··· 395 source = "registry+https://github.com/rust-lang/crates.io-index" 396 checksum = "bf5705468fa80602ee6a5f9318306e6c428bffd53e43209a78bc05e6e667c6f4" 397 dependencies = [ 398 + "comemo-macros 0.3.1", 399 + "siphasher 1.0.0", 400 + ] 401 + 402 + [[package]] 403 + name = "comemo" 404 + version = "0.4.0" 405 + source = "registry+https://github.com/rust-lang/crates.io-index" 406 + checksum = "df6916408a724339aa77b18214233355f3eb04c42eb895e5f8909215bd8a7a91" 407 + dependencies = [ 408 + "comemo-macros 0.4.0", 409 + "once_cell", 410 + "parking_lot", 411 "siphasher 1.0.0", 412 ] 413 ··· 419 dependencies = [ 420 "proc-macro2", 421 "quote", 422 + "syn", 423 + ] 424 + 425 + [[package]] 426 + name = "comemo-macros" 427 + version = "0.4.0" 428 + source = "registry+https://github.com/rust-lang/crates.io-index" 429 + checksum = "c8936e42f9b4f5bdfaf23700609ac1f11cb03ad4c1ec128a4ee4fd0903e228db" 430 + dependencies = [ 431 + "proc-macro2", 432 + "quote", 433 + "syn", 434 ] 435 436 [[package]] ··· 469 470 [[package]] 471 name = "crc32fast" 472 + version = "1.4.0" 473 source = "registry+https://github.com/rust-lang/crates.io-index" 474 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 475 dependencies = [ 476 "cfg-if", 477 ] 478 479 [[package]] 480 name = "crossbeam-channel" 481 + version = "0.5.12" 482 source = "registry+https://github.com/rust-lang/crates.io-index" 483 + checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" 484 dependencies = [ 485 "crossbeam-utils", 486 ] 487 488 [[package]] 489 name = "crossbeam-deque" 490 + version = "0.8.5" 491 source = "registry+https://github.com/rust-lang/crates.io-index" 492 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 493 dependencies = [ 494 "crossbeam-epoch", 495 "crossbeam-utils", 496 ] 497 498 [[package]] 499 name = "crossbeam-epoch" 500 + version = "0.9.18" 501 source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 503 dependencies = [ 504 "crossbeam-utils", 505 ] 506 507 [[package]] 508 name = "crossbeam-utils" 509 + version = "0.8.19" 510 + source = "registry+https://github.com/rust-lang/crates.io-index" 511 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 512 + 513 + [[package]] 514 + name = "crunchy" 515 + version = "0.2.2" 516 source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 518 519 [[package]] 520 name = "csv" ··· 539 540 [[package]] 541 name = "curl" 542 + version = "0.4.46" 543 source = "registry+https://github.com/rust-lang/crates.io-index" 544 + checksum = "1e2161dd6eba090ff1594084e95fd67aeccf04382ffea77999ea94ed42ec67b6" 545 dependencies = [ 546 "curl-sys", 547 "libc", 548 "openssl-probe", 549 "openssl-sys", 550 "schannel", 551 + "socket2", 552 + "windows-sys 0.52.0", 553 ] 554 555 [[package]] 556 name = "curl-sys" 557 + version = "0.4.72+curl-8.6.0" 558 source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "29cbdc8314c447d11e8fd156dcdd031d9e02a7a976163e396b548c03153bc9ea" 560 dependencies = [ 561 "cc", 562 "libc", ··· 564 "openssl-sys", 565 "pkg-config", 566 "vcpkg", 567 + "windows-sys 0.52.0", 568 ] 569 570 [[package]] ··· 588 589 [[package]] 590 name = "deranged" 591 + version = "0.3.11" 592 source = "registry+https://github.com/rust-lang/crates.io-index" 593 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 594 dependencies = [ 595 "powerfmt", 596 ] ··· 624 dependencies = [ 625 "proc-macro2", 626 "quote", 627 + "syn", 628 ] 629 630 [[package]] ··· 644 645 [[package]] 646 name = "ecow" 647 + version = "0.2.1" 648 source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "dba31a30727c42ff5e60468d695c7f21e43a6db2808b7195adcab908fbd9f794" 650 dependencies = [ 651 "serde", 652 ] 653 654 [[package]] 655 name = "either" 656 + version = "1.10.0" 657 source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 659 660 [[package]] 661 name = "elsa" ··· 683 684 [[package]] 685 name = "enum-ordinalize" 686 + version = "4.3.0" 687 source = "registry+https://github.com/rust-lang/crates.io-index" 688 + checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" 689 dependencies = [ 690 "enum-ordinalize-derive", 691 ] 692 693 [[package]] 694 name = "enum-ordinalize-derive" 695 + version = "4.3.1" 696 source = "registry+https://github.com/rust-lang/crates.io-index" 697 + checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" 698 dependencies = [ 699 "proc-macro2", 700 "quote", 701 + "syn", 702 ] 703 704 [[package]] ··· 756 757 [[package]] 758 name = "fdeflate" 759 + version = "0.3.4" 760 source = "registry+https://github.com/rust-lang/crates.io-index" 761 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 762 dependencies = [ 763 "simd-adler32", 764 ] 765 766 [[package]] 767 name = "filetime" 768 + version = "0.2.23" 769 source = "registry+https://github.com/rust-lang/crates.io-index" 770 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 771 dependencies = [ 772 "cfg-if", 773 "libc", 774 + "redox_syscall 0.4.1", 775 + "windows-sys 0.52.0", 776 ] 777 778 [[package]] ··· 799 800 [[package]] 801 name = "fontconfig-parser" 802 + version = "0.5.6" 803 source = "registry+https://github.com/rust-lang/crates.io-index" 804 + checksum = "6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d" 805 dependencies = [ 806 "roxmltree", 807 ] 808 809 [[package]] 810 name = "fontdb" 811 + version = "0.16.2" 812 source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "b0299020c3ef3f60f526a4f64ab4a3d4ce116b1acbf24cdd22da0068e5d81dc3" 814 dependencies = [ 815 "fontconfig-parser", 816 "log", 817 "memmap2", 818 "slotmap", 819 "tinyvec", 820 + "ttf-parser", 821 ] 822 823 [[package]] ··· 846 847 [[package]] 848 name = "futures" 849 + version = "0.3.30" 850 source = "registry+https://github.com/rust-lang/crates.io-index" 851 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 852 dependencies = [ 853 "futures-channel", 854 "futures-core", ··· 861 862 [[package]] 863 name = "futures-channel" 864 + version = "0.3.30" 865 source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 867 dependencies = [ 868 "futures-core", 869 "futures-sink", ··· 871 872 [[package]] 873 name = "futures-core" 874 + version = "0.3.30" 875 source = "registry+https://github.com/rust-lang/crates.io-index" 876 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 877 878 [[package]] 879 name = "futures-executor" 880 + version = "0.3.30" 881 source = "registry+https://github.com/rust-lang/crates.io-index" 882 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 883 dependencies = [ 884 "futures-core", 885 "futures-task", ··· 888 889 [[package]] 890 name = "futures-io" 891 + version = "0.3.30" 892 source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 894 895 [[package]] 896 name = "futures-lite" ··· 909 910 [[package]] 911 name = "futures-macro" 912 + version = "0.3.30" 913 source = "registry+https://github.com/rust-lang/crates.io-index" 914 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 915 dependencies = [ 916 "proc-macro2", 917 "quote", 918 + "syn", 919 ] 920 921 [[package]] 922 name = "futures-sink" 923 + version = "0.3.30" 924 source = "registry+https://github.com/rust-lang/crates.io-index" 925 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 926 927 [[package]] 928 name = "futures-task" 929 + version = "0.3.30" 930 source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 932 933 [[package]] 934 name = "futures-util" 935 + version = "0.3.30" 936 source = "registry+https://github.com/rust-lang/crates.io-index" 937 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 938 dependencies = [ 939 "futures-channel", 940 "futures-core", ··· 950 951 [[package]] 952 name = "getrandom" 953 + version = "0.2.12" 954 source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 956 dependencies = [ 957 "cfg-if", 958 "libc", ··· 970 ] 971 972 [[package]] 973 + name = "gif" 974 + version = "0.13.1" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 977 + dependencies = [ 978 + "color_quant", 979 + "weezl", 980 + ] 981 + 982 + [[package]] 983 name = "gimli" 984 version = "0.28.1" 985 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1012 "bstr", 1013 "log", 1014 "regex-automata", 1015 + "regex-syntax", 1016 ] 1017 1018 [[package]] 1019 name = "h2" 1020 + version = "0.3.25" 1021 source = "registry+https://github.com/rust-lang/crates.io-index" 1022 + checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" 1023 dependencies = [ 1024 "bytes", 1025 "fnv", ··· 1036 1037 [[package]] 1038 name = "half" 1039 + version = "2.4.0" 1040 source = "registry+https://github.com/rust-lang/crates.io-index" 1041 + checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e" 1042 + dependencies = [ 1043 + "cfg-if", 1044 + "crunchy", 1045 + ] 1046 1047 [[package]] 1048 name = "hashbrown" ··· 1061 1062 [[package]] 1063 name = "hayagriva" 1064 + version = "0.5.2" 1065 source = "registry+https://github.com/rust-lang/crates.io-index" 1066 + checksum = "cc2e670de5191df083ddd112cd253049f8213277ccf0c15e18a8bf10e6c666cc" 1067 dependencies = [ 1068 "biblatex", 1069 "ciborium", ··· 1088 1089 [[package]] 1090 name = "hermit-abi" 1091 + version = "0.3.9" 1092 source = "registry+https://github.com/rust-lang/crates.io-index" 1093 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1094 1095 [[package]] 1096 name = "http" 1097 + version = "0.2.12" 1098 source = "registry+https://github.com/rust-lang/crates.io-index" 1099 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1100 dependencies = [ 1101 "bytes", 1102 "fnv", ··· 1105 1106 [[package]] 1107 name = "http-body" 1108 + version = "0.4.6" 1109 source = "registry+https://github.com/rust-lang/crates.io-index" 1110 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1111 dependencies = [ 1112 "bytes", 1113 "http", ··· 1128 1129 [[package]] 1130 name = "hyper" 1131 + version = "0.14.28" 1132 source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1134 dependencies = [ 1135 "bytes", 1136 "futures-channel", ··· 1143 "httpdate", 1144 "itoa", 1145 "pin-project-lite", 1146 + "socket2", 1147 "tokio", 1148 "tower-service", 1149 "tracing", ··· 1179 1180 [[package]] 1181 name = "hypher" 1182 + version = "0.1.5" 1183 source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "3b24ad5637230df201ab1034d593f1d09bf7f2a9274f2e8897638078579f4265" 1185 1186 [[package]] 1187 name = "iana-time-zone" 1188 + version = "0.1.60" 1189 source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1191 dependencies = [ 1192 "android_system_properties", 1193 "core-foundation-sys", ··· 1328 dependencies = [ 1329 "proc-macro2", 1330 "quote", 1331 + "syn", 1332 ] 1333 1334 [[package]] ··· 1372 1373 [[package]] 1374 name = "image" 1375 + version = "0.24.9" 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 1378 dependencies = [ 1379 "bytemuck", 1380 "byteorder", 1381 "color_quant", 1382 + "gif 0.13.1", 1383 "jpeg-decoder", 1384 "num-traits", 1385 "png", 1386 ] ··· 1393 1394 [[package]] 1395 name = "indexmap" 1396 + version = "2.2.5" 1397 source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" 1399 dependencies = [ 1400 "equivalent", 1401 "hashbrown 0.14.3", ··· 1441 1442 [[package]] 1443 name = "is-terminal" 1444 + version = "0.4.12" 1445 source = "registry+https://github.com/rust-lang/crates.io-index" 1446 + checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 1447 dependencies = [ 1448 "hermit-abi", 1449 + "libc", 1450 + "windows-sys 0.52.0", 1451 ] 1452 1453 [[package]] 1454 name = "is_ci" 1455 + version = "1.2.0" 1456 source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" 1458 1459 [[package]] 1460 name = "isahc" ··· 1492 1493 [[package]] 1494 name = "itertools" 1495 + version = "0.12.1" 1496 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1498 dependencies = [ 1499 "either", 1500 ] 1501 1502 [[package]] 1503 name = "itoa" 1504 + version = "1.0.10" 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1507 1508 [[package]] 1509 name = "jpeg-decoder" 1510 + version = "0.3.1" 1511 source = "registry+https://github.com/rust-lang/crates.io-index" 1512 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 1513 1514 [[package]] 1515 name = "js-sys" 1516 + version = "0.3.69" 1517 source = "registry+https://github.com/rust-lang/crates.io-index" 1518 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1519 dependencies = [ 1520 "wasm-bindgen", 1521 + ] 1522 + 1523 + [[package]] 1524 + name = "kamadak-exif" 1525 + version = "0.5.5" 1526 + source = "registry+https://github.com/rust-lang/crates.io-index" 1527 + checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077" 1528 + dependencies = [ 1529 + "mutate_once", 1530 ] 1531 1532 [[package]] ··· 1546 1547 [[package]] 1548 name = "libc" 1549 + version = "0.2.153" 1550 source = "registry+https://github.com/rust-lang/crates.io-index" 1551 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1552 1553 [[package]] 1554 name = "libm" ··· 1562 source = "registry+https://github.com/rust-lang/crates.io-index" 1563 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1564 dependencies = [ 1565 + "bitflags 2.4.2", 1566 "libc", 1567 "redox_syscall 0.4.1", 1568 ] 1569 1570 [[package]] 1571 name = "libz-sys" 1572 + version = "1.1.15" 1573 source = "registry+https://github.com/rust-lang/crates.io-index" 1574 + checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" 1575 dependencies = [ 1576 "cc", 1577 "libc", ··· 1596 1597 [[package]] 1598 name = "linux-raw-sys" 1599 + version = "0.4.13" 1600 source = "registry+https://github.com/rust-lang/crates.io-index" 1601 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1602 1603 [[package]] 1604 name = "lipsum" 1605 + version = "0.9.1" 1606 source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "636860251af8963cc40f6b4baadee105f02e21b28131d76eba8e40ce84ab8064" 1608 dependencies = [ 1609 "rand", 1610 "rand_chacha", ··· 1631 1632 [[package]] 1633 name = "log" 1634 + version = "0.4.21" 1635 source = "registry+https://github.com/rust-lang/crates.io-index" 1636 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1637 1638 [[package]] 1639 name = "lsp-types" ··· 1650 1651 [[package]] 1652 name = "memchr" 1653 + version = "2.7.1" 1654 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1656 1657 [[package]] 1658 name = "memmap2" 1659 + version = "0.9.4" 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1662 dependencies = [ 1663 "libc", 1664 ] 1665 1666 [[package]] 1667 name = "mime" 1668 version = "0.3.17" 1669 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1671 1672 [[package]] 1673 name = "miniz_oxide" 1674 + version = "0.7.2" 1675 source = "registry+https://github.com/rust-lang/crates.io-index" 1676 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1677 dependencies = [ 1678 "adler", 1679 "simd-adler32", ··· 1681 1682 [[package]] 1683 name = "mio" 1684 + version = "0.8.11" 1685 source = "registry+https://github.com/rust-lang/crates.io-index" 1686 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 1687 dependencies = [ 1688 "libc", 1689 "wasi", ··· 1691 ] 1692 1693 [[package]] 1694 + name = "mutate_once" 1695 + version = "0.1.1" 1696 + source = "registry+https://github.com/rust-lang/crates.io-index" 1697 + checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b" 1698 + 1699 + [[package]] 1700 name = "native-tls" 1701 version = "0.2.11" 1702 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1726 ] 1727 1728 [[package]] 1729 + name = "num-conv" 1730 + version = "0.1.0" 1731 source = "registry+https://github.com/rust-lang/crates.io-index" 1732 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1733 1734 [[package]] 1735 + name = "num-integer" 1736 + version = "0.1.46" 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1739 dependencies = [ 1740 "num-traits", 1741 ] 1742 1743 [[package]] 1744 name = "num-traits" 1745 + version = "0.2.18" 1746 source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 1748 dependencies = [ 1749 "autocfg", 1750 ] ··· 1767 1768 [[package]] 1769 name = "object" 1770 + version = "0.32.2" 1771 source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1773 dependencies = [ 1774 "memchr", 1775 ] ··· 1782 1783 [[package]] 1784 name = "openssl" 1785 + version = "0.10.64" 1786 source = "registry+https://github.com/rust-lang/crates.io-index" 1787 + checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 1788 dependencies = [ 1789 + "bitflags 2.4.2", 1790 "cfg-if", 1791 "foreign-types", 1792 "libc", ··· 1803 dependencies = [ 1804 "proc-macro2", 1805 "quote", 1806 + "syn", 1807 ] 1808 1809 [[package]] ··· 1814 1815 [[package]] 1816 name = "openssl-sys" 1817 + version = "0.9.101" 1818 source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" 1820 dependencies = [ 1821 "cc", 1822 "libc", ··· 1883 1884 [[package]] 1885 name = "opentelemetry_sdk" 1886 + version = "0.21.2" 1887 source = "registry+https://github.com/rust-lang/crates.io-index" 1888 + checksum = "2f16aec8a98a457a52664d69e0091bac3a0abd18ead9b641cb00202ba4e0efe4" 1889 dependencies = [ 1890 "async-trait", 1891 "crossbeam-channel", ··· 1895 "glob", 1896 "once_cell", 1897 "opentelemetry", 1898 + "ordered-float 4.2.0", 1899 "percent-encoding", 1900 "rand", 1901 "thiserror", ··· 1920 1921 [[package]] 1922 name = "ordered-float" 1923 + version = "4.2.0" 1924 source = "registry+https://github.com/rust-lang/crates.io-index" 1925 + checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" 1926 dependencies = [ 1927 "num-traits", 1928 ] 1929 1930 [[package]] 1931 name = "owo-colors" 1932 + version = "4.0.0" 1933 source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" 1935 1936 [[package]] 1937 name = "palette" 1938 + version = "0.7.5" 1939 source = "registry+https://github.com/rust-lang/crates.io-index" 1940 + checksum = "ebfc23a4b76642983d57e4ad00bb4504eb30a8ce3c70f4aee1f725610e36d97a" 1941 dependencies = [ 1942 "approx", 1943 "fast-srgb8", ··· 1947 1948 [[package]] 1949 name = "palette_derive" 1950 + version = "0.7.5" 1951 source = "registry+https://github.com/rust-lang/crates.io-index" 1952 + checksum = "e8890702dbec0bad9116041ae586f84805b13eecd1d8b1df27c29998a9969d6d" 1953 dependencies = [ 1954 "proc-macro2", 1955 "quote", 1956 + "syn", 1957 ] 1958 1959 [[package]] ··· 2010 checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2011 2012 [[package]] 2013 + name = "phf" 2014 + version = "0.11.2" 2015 + source = "registry+https://github.com/rust-lang/crates.io-index" 2016 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 2017 + dependencies = [ 2018 + "phf_macros", 2019 + "phf_shared", 2020 + ] 2021 + 2022 + [[package]] 2023 + name = "phf_generator" 2024 + version = "0.11.2" 2025 + source = "registry+https://github.com/rust-lang/crates.io-index" 2026 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 2027 + dependencies = [ 2028 + "phf_shared", 2029 + "rand", 2030 + ] 2031 + 2032 + [[package]] 2033 + name = "phf_macros" 2034 + version = "0.11.2" 2035 + source = "registry+https://github.com/rust-lang/crates.io-index" 2036 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 2037 + dependencies = [ 2038 + "phf_generator", 2039 + "phf_shared", 2040 + "proc-macro2", 2041 + "quote", 2042 + "syn", 2043 + ] 2044 + 2045 + [[package]] 2046 + name = "phf_shared" 2047 + version = "0.11.2" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 2050 + dependencies = [ 2051 + "siphasher 0.3.11", 2052 + ] 2053 + 2054 + [[package]] 2055 name = "pico-args" 2056 version = "0.5.0" 2057 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2059 2060 [[package]] 2061 name = "pin-project" 2062 + version = "1.1.5" 2063 source = "registry+https://github.com/rust-lang/crates.io-index" 2064 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 2065 dependencies = [ 2066 "pin-project-internal", 2067 ] 2068 2069 [[package]] 2070 name = "pin-project-internal" 2071 + version = "1.1.5" 2072 source = "registry+https://github.com/rust-lang/crates.io-index" 2073 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 2074 dependencies = [ 2075 "proc-macro2", 2076 "quote", 2077 + "syn", 2078 ] 2079 2080 [[package]] ··· 2091 2092 [[package]] 2093 name = "pkg-config" 2094 + version = "0.3.30" 2095 source = "registry+https://github.com/rust-lang/crates.io-index" 2096 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2097 2098 [[package]] 2099 name = "plist" ··· 2101 source = "registry+https://github.com/rust-lang/crates.io-index" 2102 checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 2103 dependencies = [ 2104 + "base64 0.21.7", 2105 "indexmap", 2106 "line-wrap", 2107 + "quick-xml", 2108 "serde", 2109 "time", 2110 ] 2111 2112 [[package]] 2113 name = "png" 2114 + version = "0.17.13" 2115 source = "registry+https://github.com/rust-lang/crates.io-index" 2116 + checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 2117 dependencies = [ 2118 "bitflags 1.3.2", 2119 "crc32fast", ··· 2139 ] 2140 2141 [[package]] 2142 + name = "portable-atomic" 2143 + version = "1.6.0" 2144 + source = "registry+https://github.com/rust-lang/crates.io-index" 2145 + checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 2146 + 2147 + [[package]] 2148 name = "postcard" 2149 version = "1.0.8" 2150 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2168 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2169 2170 [[package]] 2171 name = "proc-macro2" 2172 + version = "1.0.79" 2173 source = "registry+https://github.com/rust-lang/crates.io-index" 2174 + checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" 2175 dependencies = [ 2176 "unicode-ident", 2177 ] ··· 2186 ] 2187 2188 [[package]] 2189 + name = "qcms" 2190 + version = "0.3.0" 2191 source = "registry+https://github.com/rust-lang/crates.io-index" 2192 + checksum = "edecfcd5d755a5e5d98e24cf43113e7cdaec5a070edd0f6b250c03a573da30fa" 2193 2194 [[package]] 2195 name = "quick-xml" ··· 2198 checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2199 dependencies = [ 2200 "memchr", 2201 + "serde", 2202 ] 2203 2204 [[package]] 2205 name = "quote" 2206 + version = "1.0.35" 2207 source = "registry+https://github.com/rust-lang/crates.io-index" 2208 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2209 dependencies = [ 2210 "proc-macro2", 2211 ] ··· 2242 2243 [[package]] 2244 name = "rayon" 2245 + version = "1.9.0" 2246 source = "registry+https://github.com/rust-lang/crates.io-index" 2247 + checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" 2248 dependencies = [ 2249 "either", 2250 "rayon-core", ··· 2252 2253 [[package]] 2254 name = "rayon-core" 2255 + version = "1.12.1" 2256 source = "registry+https://github.com/rust-lang/crates.io-index" 2257 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 2258 dependencies = [ 2259 "crossbeam-deque", 2260 "crossbeam-utils", 2261 ] 2262 2263 [[package]] 2264 name = "redox_syscall" 2265 version = "0.3.5" 2266 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2291 2292 [[package]] 2293 name = "regex" 2294 + version = "1.10.3" 2295 source = "registry+https://github.com/rust-lang/crates.io-index" 2296 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2297 dependencies = [ 2298 "aho-corasick", 2299 "memchr", 2300 "regex-automata", 2301 + "regex-syntax", 2302 ] 2303 2304 [[package]] 2305 name = "regex-automata" 2306 + version = "0.4.6" 2307 source = "registry+https://github.com/rust-lang/crates.io-index" 2308 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 2309 dependencies = [ 2310 "aho-corasick", 2311 "memchr", 2312 + "regex-syntax", 2313 ] 2314 2315 [[package]] 2316 name = "regex-syntax" 2317 version = "0.8.2" 2318 source = "registry+https://github.com/rust-lang/crates.io-index" 2319 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2320 2321 [[package]] 2322 name = "reqwest" 2323 + version = "0.11.26" 2324 source = "registry+https://github.com/rust-lang/crates.io-index" 2325 + checksum = "78bf93c4af7a8bb7d879d51cebe797356ff10ae8516ace542b5182d9dcac10b2" 2326 dependencies = [ 2327 + "base64 0.21.7", 2328 "bytes", 2329 "encoding_rs", 2330 "futures-core", ··· 2348 "serde", 2349 "serde_json", 2350 "serde_urlencoded", 2351 + "sync_wrapper", 2352 "system-configuration", 2353 "tokio", 2354 "tokio-native-tls", ··· 2365 ] 2366 2367 [[package]] 2368 + name = "resvg" 2369 + version = "0.38.0" 2370 + source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + checksum = "5c34501046959e06470ba62a2dc7f31c15f94ac250d842a45f9e012f4ee40c1e" 2372 + dependencies = [ 2373 + "gif 0.12.0", 2374 + "jpeg-decoder", 2375 + "log", 2376 + "pico-args", 2377 + "png", 2378 + "rgb", 2379 + "svgtypes", 2380 + "tiny-skia", 2381 + "usvg", 2382 + ] 2383 + 2384 + [[package]] 2385 + name = "rgb" 2386 + version = "0.8.37" 2387 + source = "registry+https://github.com/rust-lang/crates.io-index" 2388 + checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 2389 + dependencies = [ 2390 + "bytemuck", 2391 + ] 2392 + 2393 + [[package]] 2394 name = "ring" 2395 + version = "0.17.8" 2396 source = "registry+https://github.com/rust-lang/crates.io-index" 2397 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 2398 dependencies = [ 2399 "cc", 2400 + "cfg-if", 2401 "getrandom", 2402 "libc", 2403 "spin", 2404 "untrusted", 2405 + "windows-sys 0.52.0", 2406 ] 2407 2408 [[package]] 2409 name = "roxmltree" 2410 + version = "0.19.0" 2411 source = "registry+https://github.com/rust-lang/crates.io-index" 2412 + checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" 2413 2414 [[package]] 2415 name = "rustc-demangle" ··· 2419 2420 [[package]] 2421 name = "rustix" 2422 + version = "0.38.31" 2423 source = "registry+https://github.com/rust-lang/crates.io-index" 2424 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 2425 dependencies = [ 2426 + "bitflags 2.4.2", 2427 "errno", 2428 "libc", 2429 "linux-raw-sys", ··· 2432 2433 [[package]] 2434 name = "rustls" 2435 + version = "0.21.10" 2436 source = "registry+https://github.com/rust-lang/crates.io-index" 2437 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 2438 dependencies = [ 2439 "log", 2440 "ring", ··· 2448 source = "registry+https://github.com/rust-lang/crates.io-index" 2449 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2450 dependencies = [ 2451 + "base64 0.21.7", 2452 ] 2453 2454 [[package]] ··· 2469 2470 [[package]] 2471 name = "rustybuzz" 2472 + version = "0.12.1" 2473 source = "registry+https://github.com/rust-lang/crates.io-index" 2474 + checksum = "f0ae5692c5beaad6a9e22830deeed7874eae8a4e3ba4076fb48e12c56856222c" 2475 dependencies = [ 2476 + "bitflags 2.4.2", 2477 "bytemuck", 2478 "smallvec", 2479 + "ttf-parser", 2480 "unicode-bidi-mirroring", 2481 "unicode-ccc", 2482 "unicode-properties", ··· 2485 2486 [[package]] 2487 name = "ryu" 2488 + version = "1.0.17" 2489 source = "registry+https://github.com/rust-lang/crates.io-index" 2490 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 2491 2492 [[package]] 2493 name = "safemem" ··· 2506 2507 [[package]] 2508 name = "schannel" 2509 + version = "0.1.23" 2510 source = "registry+https://github.com/rust-lang/crates.io-index" 2511 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 2512 dependencies = [ 2513 + "windows-sys 0.52.0", 2514 ] 2515 2516 [[package]] ··· 2554 2555 [[package]] 2556 name = "semver" 2557 + version = "1.0.22" 2558 source = "registry+https://github.com/rust-lang/crates.io-index" 2559 + checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 2560 dependencies = [ 2561 "serde", 2562 ] 2563 2564 [[package]] 2565 name = "serde" 2566 + version = "1.0.197" 2567 source = "registry+https://github.com/rust-lang/crates.io-index" 2568 + checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 2569 dependencies = [ 2570 "serde_derive", 2571 ] 2572 2573 [[package]] 2574 name = "serde_derive" 2575 + version = "1.0.197" 2576 source = "registry+https://github.com/rust-lang/crates.io-index" 2577 + checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 2578 dependencies = [ 2579 "proc-macro2", 2580 "quote", 2581 + "syn", 2582 ] 2583 2584 [[package]] 2585 name = "serde_json" 2586 + version = "1.0.114" 2587 source = "registry+https://github.com/rust-lang/crates.io-index" 2588 + checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 2589 dependencies = [ 2590 "itoa", 2591 "ryu", ··· 2594 2595 [[package]] 2596 name = "serde_repr" 2597 + version = "0.1.18" 2598 source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 2600 dependencies = [ 2601 "proc-macro2", 2602 "quote", 2603 + "syn", 2604 ] 2605 2606 [[package]] 2607 name = "serde_spanned" 2608 + version = "0.6.5" 2609 source = "registry+https://github.com/rust-lang/crates.io-index" 2610 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 2611 dependencies = [ 2612 "serde", 2613 ] ··· 2626 2627 [[package]] 2628 name = "serde_yaml" 2629 + version = "0.9.32" 2630 source = "registry+https://github.com/rust-lang/crates.io-index" 2631 + checksum = "8fd075d994154d4a774f95b51fb96bdc2832b0ea48425c92546073816cda1f2f" 2632 dependencies = [ 2633 "indexmap", 2634 "itoa", ··· 2704 2705 [[package]] 2706 name = "smallvec" 2707 + version = "1.13.1" 2708 source = "registry+https://github.com/rust-lang/crates.io-index" 2709 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2710 2711 [[package]] 2712 name = "socket2" 2713 + version = "0.5.6" 2714 source = "registry+https://github.com/rust-lang/crates.io-index" 2715 + checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 2716 dependencies = [ 2717 "libc", 2718 + "windows-sys 0.52.0", 2719 ] 2720 2721 [[package]] ··· 2754 2755 [[package]] 2756 name = "strum" 2757 + version = "0.26.2" 2758 source = "registry+https://github.com/rust-lang/crates.io-index" 2759 + checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" 2760 dependencies = [ 2761 "strum_macros", 2762 ] 2763 2764 [[package]] 2765 name = "strum_macros" 2766 + version = "0.26.2" 2767 source = "registry+https://github.com/rust-lang/crates.io-index" 2768 + checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" 2769 dependencies = [ 2770 "heck", 2771 "proc-macro2", 2772 "quote", 2773 "rustversion", 2774 + "syn", 2775 ] 2776 2777 [[package]] ··· 2792 2793 [[package]] 2794 name = "svg2pdf" 2795 + version = "0.10.0" 2796 source = "registry+https://github.com/rust-lang/crates.io-index" 2797 + checksum = "ba36b330062be8497fd96597227a757b621b86c4d24d164b06e4522b52b3693e" 2798 dependencies = [ 2799 "image", 2800 "miniz_oxide", 2801 "once_cell", 2802 "pdf-writer", 2803 + "resvg", 2804 + "tiny-skia", 2805 "usvg", 2806 ] 2807 2808 [[package]] 2809 name = "svgtypes" 2810 + version = "0.13.0" 2811 source = "registry+https://github.com/rust-lang/crates.io-index" 2812 + checksum = "6e44e288cd960318917cbd540340968b90becc8bc81f171345d706e7a89d9d70" 2813 dependencies = [ 2814 "kurbo", 2815 "siphasher 0.3.11", ··· 2817 2818 [[package]] 2819 name = "syn" 2820 + version = "2.0.52" 2821 source = "registry+https://github.com/rust-lang/crates.io-index" 2822 + checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" 2823 dependencies = [ 2824 "proc-macro2", 2825 "quote", ··· 2827 ] 2828 2829 [[package]] 2830 + name = "sync_wrapper" 2831 + version = "0.1.2" 2832 source = "registry+https://github.com/rust-lang/crates.io-index" 2833 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 2834 2835 [[package]] 2836 name = "synstructure" 2837 + version = "0.13.1" 2838 source = "registry+https://github.com/rust-lang/crates.io-index" 2839 + checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2840 dependencies = [ 2841 "proc-macro2", 2842 "quote", 2843 + "syn", 2844 ] 2845 2846 [[package]] 2847 name = "syntect" 2848 + version = "5.2.0" 2849 source = "registry+https://github.com/rust-lang/crates.io-index" 2850 + checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1" 2851 dependencies = [ 2852 "bincode", 2853 "bitflags 1.3.2", ··· 2856 "fnv", 2857 "once_cell", 2858 "plist", 2859 + "regex-syntax", 2860 "serde", 2861 + "serde_derive", 2862 "serde_json", 2863 "thiserror", 2864 "walkdir", ··· 2888 2889 [[package]] 2890 name = "temp-dir" 2891 + version = "0.1.12" 2892 source = "registry+https://github.com/rust-lang/crates.io-index" 2893 + checksum = "dd16aa9ffe15fe021c6ee3766772132c6e98dfa395a167e16864f61a9cfb71d6" 2894 2895 [[package]] 2896 name = "tempfile" 2897 + version = "3.10.1" 2898 source = "registry+https://github.com/rust-lang/crates.io-index" 2899 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 2900 dependencies = [ 2901 "cfg-if", 2902 "fastrand 2.0.1", 2903 "rustix", 2904 + "windows-sys 0.52.0", 2905 ] 2906 2907 [[package]] 2908 name = "thiserror" 2909 + version = "1.0.58" 2910 source = "registry+https://github.com/rust-lang/crates.io-index" 2911 + checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" 2912 dependencies = [ 2913 "thiserror-impl", 2914 ] 2915 2916 [[package]] 2917 name = "thiserror-impl" 2918 + version = "1.0.58" 2919 source = "registry+https://github.com/rust-lang/crates.io-index" 2920 + checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" 2921 dependencies = [ 2922 "proc-macro2", 2923 "quote", 2924 + "syn", 2925 ] 2926 2927 [[package]] 2928 name = "thread_local" 2929 + version = "1.1.8" 2930 source = "registry+https://github.com/rust-lang/crates.io-index" 2931 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2932 dependencies = [ 2933 "cfg-if", 2934 "once_cell", ··· 2958 2959 [[package]] 2960 name = "time" 2961 + version = "0.3.34" 2962 source = "registry+https://github.com/rust-lang/crates.io-index" 2963 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 2964 dependencies = [ 2965 "deranged", 2966 "itoa", 2967 + "num-conv", 2968 "powerfmt", 2969 "serde", 2970 "time-core", ··· 2979 2980 [[package]] 2981 name = "time-macros" 2982 + version = "0.2.17" 2983 source = "registry+https://github.com/rust-lang/crates.io-index" 2984 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 2985 dependencies = [ 2986 + "num-conv", 2987 "time-core", 2988 ] 2989 2990 [[package]] 2991 + name = "tiny-skia" 2992 + version = "0.11.4" 2993 + source = "registry+https://github.com/rust-lang/crates.io-index" 2994 + checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 2995 + dependencies = [ 2996 + "arrayref", 2997 + "arrayvec", 2998 + "bytemuck", 2999 + "cfg-if", 3000 + "log", 3001 + "png", 3002 + "tiny-skia-path", 3003 + ] 3004 + 3005 + [[package]] 3006 name = "tiny-skia-path" 3007 + version = "0.11.4" 3008 source = "registry+https://github.com/rust-lang/crates.io-index" 3009 + checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 3010 dependencies = [ 3011 "arrayref", 3012 "bytemuck", ··· 3041 3042 [[package]] 3043 name = "tokio" 3044 + version = "1.36.0" 3045 source = "registry+https://github.com/rust-lang/crates.io-index" 3046 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 3047 dependencies = [ 3048 "backtrace", 3049 "bytes", ··· 3051 "mio", 3052 "num_cpus", 3053 "pin-project-lite", 3054 + "socket2", 3055 "tokio-macros", 3056 "windows-sys 0.48.0", 3057 ] ··· 3064 dependencies = [ 3065 "proc-macro2", 3066 "quote", 3067 + "syn", 3068 ] 3069 3070 [[package]] ··· 3089 3090 [[package]] 3091 name = "tokio-stream" 3092 + version = "0.1.15" 3093 source = "registry+https://github.com/rust-lang/crates.io-index" 3094 + checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 3095 dependencies = [ 3096 "futures-core", 3097 "pin-project-lite", ··· 3141 3142 [[package]] 3143 name = "toml" 3144 + version = "0.8.11" 3145 source = "registry+https://github.com/rust-lang/crates.io-index" 3146 + checksum = "af06656561d28735e9c1cd63dfd57132c8155426aa6af24f36a00a351f88c48e" 3147 dependencies = [ 3148 "serde", 3149 "serde_spanned", 3150 "toml_datetime", 3151 + "toml_edit 0.22.7", 3152 ] 3153 3154 [[package]] ··· 3170 "serde", 3171 "serde_spanned", 3172 "toml_datetime", 3173 + "winnow 0.5.40", 3174 ] 3175 3176 [[package]] 3177 name = "toml_edit" 3178 + version = "0.22.7" 3179 source = "registry+https://github.com/rust-lang/crates.io-index" 3180 + checksum = "18769cd1cec395d70860ceb4d932812a0b4d06b1a4bb336745a4d21b9496e992" 3181 dependencies = [ 3182 "indexmap", 3183 "serde", 3184 "serde_spanned", 3185 "toml_datetime", 3186 + "winnow 0.6.5", 3187 ] 3188 3189 [[package]] ··· 3237 dependencies = [ 3238 "proc-macro2", 3239 "quote", 3240 + "syn", 3241 ] 3242 3243 [[package]] ··· 3266 dependencies = [ 3267 "proc-macro2", 3268 "quote", 3269 + "syn", 3270 ] 3271 3272 [[package]] ··· 3331 3332 [[package]] 3333 name = "try-lock" 3334 + version = "0.2.5" 3335 source = "registry+https://github.com/rust-lang/crates.io-index" 3336 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3337 3338 [[package]] 3339 name = "ttf-parser" 3340 + version = "0.20.0" 3341 source = "registry+https://github.com/rust-lang/crates.io-index" 3342 + checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4" 3343 3344 [[package]] 3345 + name = "two-face" 3346 + version = "0.3.0" 3347 source = "registry+https://github.com/rust-lang/crates.io-index" 3348 + checksum = "37bed2135b2459c7eefba72c906d374697eb15949c205f2f124e3636a46b5eeb" 3349 + dependencies = [ 3350 + "once_cell", 3351 + "serde", 3352 + "syntect", 3353 + ] 3354 3355 [[package]] 3356 name = "typed-arena" ··· 3360 3361 [[package]] 3362 name = "typst" 3363 + version = "0.11.0" 3364 + source = "registry+https://github.com/rust-lang/crates.io-index" 3365 + checksum = "82ce6533a33d2cc4b5eba6b009b862e75c8f9146a584f84ca154c94463e43993" 3366 dependencies = [ 3367 "az", 3368 + "bitflags 2.4.2", 3369 "chinese-number", 3370 "ciborium", 3371 + "comemo 0.4.0", 3372 "csv", 3373 + "ecow 0.2.1", 3374 + "fontdb", 3375 "hayagriva", 3376 "hypher", 3377 "icu_properties", ··· 3379 "icu_provider_adapters", 3380 "icu_provider_blob", 3381 "icu_segmenter", 3382 + "if_chain", 3383 "image", 3384 "indexmap", 3385 + "kamadak-exif", 3386 "kurbo", 3387 "lipsum", 3388 "log", 3389 "once_cell", 3390 "palette", 3391 + "phf", 3392 + "png", 3393 + "portable-atomic", 3394 + "qcms", 3395 "rayon", 3396 "regex", 3397 "roxmltree", ··· 3404 "stacker", 3405 "syntect", 3406 "time", 3407 + "toml 0.8.11", 3408 + "ttf-parser", 3409 + "two-face", 3410 "typed-arena", 3411 + "typst-assets", 3412 "typst-macros", 3413 + "typst-syntax 0.11.0", 3414 + "typst-timing", 3415 "unicode-bidi", 3416 "unicode-math-class", 3417 "unicode-script", ··· 3421 ] 3422 3423 [[package]] 3424 + name = "typst-assets" 3425 + version = "0.11.0" 3426 + source = "registry+https://github.com/rust-lang/crates.io-index" 3427 + checksum = "f13f85360328da54847dd7fefaf272dfa5b6d1fdeb53f32938924c39bf5b2c6c" 3428 + 3429 + [[package]] 3430 name = "typst-ide" 3431 + version = "0.11.0" 3432 + source = "registry+https://github.com/rust-lang/crates.io-index" 3433 + checksum = "dcb5654d91e00dc20e9bf0c427b4558392b03d59e684e10fae45ce915766be5e" 3434 dependencies = [ 3435 + "comemo 0.4.0", 3436 + "ecow 0.2.1", 3437 "if_chain", 3438 "log", 3439 "serde", ··· 3443 3444 [[package]] 3445 name = "typst-lsp" 3446 + version = "0.13.0" 3447 dependencies = [ 3448 "anyhow", 3449 "async-compression", ··· 3451 "bpaf", 3452 "cargo_metadata", 3453 "chrono", 3454 + "comemo 0.4.0", 3455 "dirs", 3456 "elsa", 3457 + "fontdb", 3458 "futures", 3459 "if_chain", 3460 "indexmap", 3461 "internment", 3462 + "itertools 0.12.1", 3463 "lazy_static", 3464 "once_cell", 3465 "opentelemetry", ··· 3491 3492 [[package]] 3493 name = "typst-macros" 3494 + version = "0.11.0" 3495 + source = "registry+https://github.com/rust-lang/crates.io-index" 3496 + checksum = "54e48fdd6dabf48a0e595960aaef6ae43dac7d243e8c1c6926a0787d5b8a9ba7" 3497 dependencies = [ 3498 "heck", 3499 "proc-macro2", 3500 "quote", 3501 + "syn", 3502 ] 3503 3504 [[package]] 3505 name = "typst-pdf" 3506 + version = "0.11.0" 3507 + source = "registry+https://github.com/rust-lang/crates.io-index" 3508 + checksum = "7c27957bbe3e17b961746a7ddf6f0831479674331457680bb8e3b84f7b83bd58" 3509 dependencies = [ 3510 + "base64 0.22.0", 3511 "bytemuck", 3512 + "comemo 0.4.0", 3513 + "ecow 0.2.1", 3514 "image", 3515 "miniz_oxide", 3516 "once_cell", 3517 "pdf-writer", 3518 "subsetter", 3519 "svg2pdf", 3520 + "ttf-parser", 3521 "typst", 3522 + "typst-assets", 3523 + "typst-macros", 3524 + "typst-timing", 3525 "unicode-properties", 3526 "unscanny", 3527 "xmp-writer", ··· 3532 version = "0.7.0" 3533 source = "git+https://github.com/typst/typst.git?tag=v0.7.0#da8367e189b02918a8fe1a98fd3059fd11a82cd9" 3534 dependencies = [ 3535 + "comemo 0.3.1", 3536 "ecow 0.1.2", 3537 "once_cell", 3538 "serde", ··· 3545 3546 [[package]] 3547 name = "typst-syntax" 3548 + version = "0.11.0" 3549 + source = "registry+https://github.com/rust-lang/crates.io-index" 3550 + checksum = "367d86bf18f0363146bea1ea76fad19b54458695fdfad5e74ead3ede574b75fe" 3551 dependencies = [ 3552 + "comemo 0.4.0", 3553 + "ecow 0.2.1", 3554 "once_cell", 3555 "serde", 3556 "unicode-ident", 3557 "unicode-math-class", 3558 "unicode-script", ··· 3561 ] 3562 3563 [[package]] 3564 + name = "typst-timing" 3565 + version = "0.11.0" 3566 + source = "registry+https://github.com/rust-lang/crates.io-index" 3567 + checksum = "6b2629933cde6f299c43627b90c83bb006cb906c56cc5dec7324f0a5017d5fd8" 3568 + dependencies = [ 3569 + "parking_lot", 3570 + "serde", 3571 + "serde_json", 3572 + "typst-syntax 0.11.0", 3573 + ] 3574 + 3575 + [[package]] 3576 name = "typstfmt_lib" 3577 version = "0.2.7" 3578 source = "git+https://github.com/astrale-sharp/typstfmt?tag=0.2.7#46b4ec34b4726c3c6541012f433c68c22d9e509c" ··· 3589 3590 [[package]] 3591 name = "unic-langid" 3592 + version = "0.9.4" 3593 source = "registry+https://github.com/rust-lang/crates.io-index" 3594 + checksum = "238722e6d794ed130f91f4ea33e01fcff4f188d92337a21297892521c72df516" 3595 dependencies = [ 3596 "unic-langid-impl", 3597 ] 3598 3599 [[package]] 3600 name = "unic-langid-impl" 3601 + version = "0.9.4" 3602 source = "registry+https://github.com/rust-lang/crates.io-index" 3603 + checksum = "4bd55a2063fdea4ef1f8633243a7b0524cbeef1905ae04c31a1c9b9775c55bc6" 3604 dependencies = [ 3605 "serde", 3606 "tinystr", ··· 3608 3609 [[package]] 3610 name = "unicode-bidi" 3611 + version = "0.3.15" 3612 source = "registry+https://github.com/rust-lang/crates.io-index" 3613 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 3614 3615 [[package]] 3616 name = "unicode-bidi-mirroring" ··· 3638 3639 [[package]] 3640 name = "unicode-normalization" 3641 + version = "0.1.23" 3642 source = "registry+https://github.com/rust-lang/crates.io-index" 3643 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 3644 dependencies = [ 3645 "tinyvec", 3646 ] 3647 3648 [[package]] 3649 name = "unicode-properties" 3650 + version = "0.1.1" 3651 source = "registry+https://github.com/rust-lang/crates.io-index" 3652 + checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 3653 3654 [[package]] 3655 name = "unicode-script" 3656 + version = "0.5.6" 3657 source = "registry+https://github.com/rust-lang/crates.io-index" 3658 + checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd" 3659 3660 [[package]] 3661 name = "unicode-segmentation" 3662 + version = "1.11.0" 3663 source = "registry+https://github.com/rust-lang/crates.io-index" 3664 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 3665 3666 [[package]] 3667 name = "unicode-vo" ··· 3670 checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" 3671 3672 [[package]] 3673 name = "unsafe-libyaml" 3674 version = "0.2.10" 3675 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3707 3708 [[package]] 3709 name = "usvg" 3710 + version = "0.38.0" 3711 source = "registry+https://github.com/rust-lang/crates.io-index" 3712 + checksum = "377f62b4a3c173de8654c1aa80ab1dac1154e6f13a779a9943e53780120d1625" 3713 dependencies = [ 3714 + "base64 0.21.7", 3715 "log", 3716 "pico-args", 3717 "usvg-parser", ··· 3722 3723 [[package]] 3724 name = "usvg-parser" 3725 + version = "0.38.0" 3726 source = "registry+https://github.com/rust-lang/crates.io-index" 3727 + checksum = "351a05e6f2023d6b4e946f734240a3927aefdcf930d7d42587a2c8a8869814b0" 3728 dependencies = [ 3729 "data-url", 3730 "flate2", ··· 3740 3741 [[package]] 3742 name = "usvg-text-layout" 3743 + version = "0.38.0" 3744 source = "registry+https://github.com/rust-lang/crates.io-index" 3745 + checksum = "8c41888b9d5cf431fe852eaf9d047bbde83251b98f1749c2f08b1071e6db46e2" 3746 dependencies = [ 3747 + "fontdb", 3748 "kurbo", 3749 "log", 3750 "rustybuzz", ··· 3756 3757 [[package]] 3758 name = "usvg-tree" 3759 + version = "0.38.0" 3760 source = "registry+https://github.com/rust-lang/crates.io-index" 3761 + checksum = "18863e0404ed153d6e56362c5b1146db9f4f262a3244e3cf2dbe7d8a85909f05" 3762 dependencies = [ 3763 "strict-num", 3764 "svgtypes", 3765 "tiny-skia-path", ··· 3797 3798 [[package]] 3799 name = "walkdir" 3800 + version = "2.5.0" 3801 source = "registry+https://github.com/rust-lang/crates.io-index" 3802 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3803 dependencies = [ 3804 "same-file", 3805 "winapi-util", ··· 3822 3823 [[package]] 3824 name = "wasm-bindgen" 3825 + version = "0.2.92" 3826 source = "registry+https://github.com/rust-lang/crates.io-index" 3827 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 3828 dependencies = [ 3829 "cfg-if", 3830 "wasm-bindgen-macro", ··· 3832 3833 [[package]] 3834 name = "wasm-bindgen-backend" 3835 + version = "0.2.92" 3836 source = "registry+https://github.com/rust-lang/crates.io-index" 3837 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 3838 dependencies = [ 3839 "bumpalo", 3840 "log", 3841 "once_cell", 3842 "proc-macro2", 3843 "quote", 3844 + "syn", 3845 "wasm-bindgen-shared", 3846 ] 3847 3848 [[package]] 3849 name = "wasm-bindgen-futures" 3850 + version = "0.4.42" 3851 source = "registry+https://github.com/rust-lang/crates.io-index" 3852 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 3853 dependencies = [ 3854 "cfg-if", 3855 "js-sys", ··· 3859 3860 [[package]] 3861 name = "wasm-bindgen-macro" 3862 + version = "0.2.92" 3863 source = "registry+https://github.com/rust-lang/crates.io-index" 3864 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 3865 dependencies = [ 3866 "quote", 3867 "wasm-bindgen-macro-support", ··· 3869 3870 [[package]] 3871 name = "wasm-bindgen-macro-support" 3872 + version = "0.2.92" 3873 source = "registry+https://github.com/rust-lang/crates.io-index" 3874 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 3875 dependencies = [ 3876 "proc-macro2", 3877 "quote", 3878 + "syn", 3879 "wasm-bindgen-backend", 3880 "wasm-bindgen-shared", 3881 ] 3882 3883 [[package]] 3884 name = "wasm-bindgen-shared" 3885 + version = "0.2.92" 3886 source = "registry+https://github.com/rust-lang/crates.io-index" 3887 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 3888 3889 [[package]] 3890 name = "wasm-streams" 3891 + version = "0.4.0" 3892 source = "registry+https://github.com/rust-lang/crates.io-index" 3893 + checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 3894 dependencies = [ 3895 "futures-util", 3896 "js-sys", ··· 3901 3902 [[package]] 3903 name = "wasmi" 3904 + version = "0.31.2" 3905 source = "registry+https://github.com/rust-lang/crates.io-index" 3906 + checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7" 3907 dependencies = [ 3908 "smallvec", 3909 "spin", ··· 3914 3915 [[package]] 3916 name = "wasmi_arena" 3917 + version = "0.4.1" 3918 source = "registry+https://github.com/rust-lang/crates.io-index" 3919 + checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073" 3920 3921 [[package]] 3922 name = "wasmi_core" ··· 3941 3942 [[package]] 3943 name = "web-sys" 3944 + version = "0.3.69" 3945 source = "registry+https://github.com/rust-lang/crates.io-index" 3946 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 3947 dependencies = [ 3948 "js-sys", 3949 "wasm-bindgen", ··· 3951 3952 [[package]] 3953 name = "web-time" 3954 + version = "0.2.4" 3955 source = "registry+https://github.com/rust-lang/crates.io-index" 3956 + checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0" 3957 dependencies = [ 3958 "js-sys", 3959 "wasm-bindgen", ··· 3961 3962 [[package]] 3963 name = "webpki-roots" 3964 + version = "0.25.4" 3965 source = "registry+https://github.com/rust-lang/crates.io-index" 3966 + checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 3967 3968 [[package]] 3969 name = "weezl" 3970 + version = "0.1.8" 3971 source = "registry+https://github.com/rust-lang/crates.io-index" 3972 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 3973 3974 [[package]] 3975 name = "winapi" ··· 4004 4005 [[package]] 4006 name = "windows-core" 4007 + version = "0.52.0" 4008 source = "registry+https://github.com/rust-lang/crates.io-index" 4009 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4010 dependencies = [ 4011 + "windows-targets 0.52.4", 4012 ] 4013 4014 [[package]] ··· 4026 source = "registry+https://github.com/rust-lang/crates.io-index" 4027 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4028 dependencies = [ 4029 + "windows-targets 0.52.4", 4030 ] 4031 4032 [[package]] ··· 4046 4047 [[package]] 4048 name = "windows-targets" 4049 + version = "0.52.4" 4050 source = "registry+https://github.com/rust-lang/crates.io-index" 4051 + checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 4052 dependencies = [ 4053 + "windows_aarch64_gnullvm 0.52.4", 4054 + "windows_aarch64_msvc 0.52.4", 4055 + "windows_i686_gnu 0.52.4", 4056 + "windows_i686_msvc 0.52.4", 4057 + "windows_x86_64_gnu 0.52.4", 4058 + "windows_x86_64_gnullvm 0.52.4", 4059 + "windows_x86_64_msvc 0.52.4", 4060 ] 4061 4062 [[package]] ··· 4067 4068 [[package]] 4069 name = "windows_aarch64_gnullvm" 4070 + version = "0.52.4" 4071 source = "registry+https://github.com/rust-lang/crates.io-index" 4072 + checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 4073 4074 [[package]] 4075 name = "windows_aarch64_msvc" ··· 4079 4080 [[package]] 4081 name = "windows_aarch64_msvc" 4082 + version = "0.52.4" 4083 source = "registry+https://github.com/rust-lang/crates.io-index" 4084 + checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 4085 4086 [[package]] 4087 name = "windows_i686_gnu" ··· 4091 4092 [[package]] 4093 name = "windows_i686_gnu" 4094 + version = "0.52.4" 4095 source = "registry+https://github.com/rust-lang/crates.io-index" 4096 + checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 4097 4098 [[package]] 4099 name = "windows_i686_msvc" ··· 4103 4104 [[package]] 4105 name = "windows_i686_msvc" 4106 + version = "0.52.4" 4107 source = "registry+https://github.com/rust-lang/crates.io-index" 4108 + checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 4109 4110 [[package]] 4111 name = "windows_x86_64_gnu" ··· 4115 4116 [[package]] 4117 name = "windows_x86_64_gnu" 4118 + version = "0.52.4" 4119 source = "registry+https://github.com/rust-lang/crates.io-index" 4120 + checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 4121 4122 [[package]] 4123 name = "windows_x86_64_gnullvm" ··· 4127 4128 [[package]] 4129 name = "windows_x86_64_gnullvm" 4130 + version = "0.52.4" 4131 source = "registry+https://github.com/rust-lang/crates.io-index" 4132 + checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 4133 4134 [[package]] 4135 name = "windows_x86_64_msvc" ··· 4139 4140 [[package]] 4141 name = "windows_x86_64_msvc" 4142 + version = "0.52.4" 4143 source = "registry+https://github.com/rust-lang/crates.io-index" 4144 + checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 4145 4146 [[package]] 4147 name = "winnow" 4148 + version = "0.5.40" 4149 source = "registry+https://github.com/rust-lang/crates.io-index" 4150 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 4151 + dependencies = [ 4152 + "memchr", 4153 + ] 4154 + 4155 + [[package]] 4156 + name = "winnow" 4157 + version = "0.6.5" 4158 + source = "registry+https://github.com/rust-lang/crates.io-index" 4159 + checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" 4160 dependencies = [ 4161 "memchr", 4162 ] ··· 4179 4180 [[package]] 4181 name = "xattr" 4182 + version = "1.3.1" 4183 source = "registry+https://github.com/rust-lang/crates.io-index" 4184 + checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 4185 dependencies = [ 4186 "libc", 4187 + "linux-raw-sys", 4188 + "rustix", 4189 ] 4190 4191 [[package]] 4192 name = "xmlwriter" 4193 version = "0.1.0" 4194 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4229 dependencies = [ 4230 "proc-macro2", 4231 "quote", 4232 + "syn", 4233 "synstructure", 4234 ] 4235 ··· 4250 dependencies = [ 4251 "proc-macro2", 4252 "quote", 4253 + "syn", 4254 "synstructure", 4255 ] 4256 ··· 4286 dependencies = [ 4287 "proc-macro2", 4288 "quote", 4289 + "syn", 4290 ]
+2 -3
pkgs/development/tools/language-servers/typst-lsp/default.nix
··· 9 pname = "typst-lsp"; 10 # Please update the corresponding vscode extension when updating 11 # this derivation. 12 - version = "0.12.1"; 13 14 src = fetchFromGitHub { 15 owner = "nvarner"; 16 repo = "typst-lsp"; 17 rev = "v${version}"; 18 - hash = "sha256-KFW2CzdDi/z3Tk9qEubssy/iTh7Awl/tLQGv9CVkdXw="; 19 }; 20 21 cargoLock = { 22 lockFile = ./Cargo.lock; 23 outputHashes = { 24 - "typst-0.10.0" = "sha256-qiskc0G/ZdLRZjTicoKIOztRFem59TM4ki23Rl55y9s="; 25 "typst-syntax-0.7.0" = "sha256-yrtOmlFAKOqAmhCP7n0HQCOQpU3DWyms5foCdUb9QTg="; 26 "typstfmt_lib-0.2.7" = "sha256-LBYsTCjZ+U+lgd7Z3H1sBcWwseoHsuepPd66bWgfvhI="; 27 };
··· 9 pname = "typst-lsp"; 10 # Please update the corresponding vscode extension when updating 11 # this derivation. 12 + version = "0.13.0"; 13 14 src = fetchFromGitHub { 15 owner = "nvarner"; 16 repo = "typst-lsp"; 17 rev = "v${version}"; 18 + hash = "sha256-OubKtSHw9L4GzVzZY0AVdHY7LzKg/XQIhUfUc2OYAG0="; 19 }; 20 21 cargoLock = { 22 lockFile = ./Cargo.lock; 23 outputHashes = { 24 "typst-syntax-0.7.0" = "sha256-yrtOmlFAKOqAmhCP7n0HQCOQpU3DWyms5foCdUb9QTg="; 25 "typstfmt_lib-0.2.7" = "sha256-LBYsTCjZ+U+lgd7Z3H1sBcWwseoHsuepPd66bWgfvhI="; 26 };
+3 -3
pkgs/development/tools/misc/fzf-make/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "fzf-make"; 13 - version = "0.24.0"; 14 15 src = fetchFromGitHub { 16 owner = "kyu08"; 17 repo = "fzf-make"; 18 rev = "v${version}"; 19 - hash = "sha256-2RA4EVhmn8edolUeL7y9b8PssPSGIZZjHx340J0GqVE="; 20 }; 21 22 - cargoHash = "sha256-Jfh+PMOep1WWTyt+LTGg+3f9pb6DlWu4ZLE9qvv8QyQ="; 23 24 nativeBuildInputs = [ makeBinaryWrapper ]; 25
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "fzf-make"; 13 + version = "0.25.0"; 14 15 src = fetchFromGitHub { 16 owner = "kyu08"; 17 repo = "fzf-make"; 18 rev = "v${version}"; 19 + hash = "sha256-jElKCOCTG33ysePz4SfrbN9xWdTB83G+/9DUqNKI6x8="; 20 }; 21 22 + cargoHash = "sha256-kXp/2F32aJFQ5z0TeggZWv1S2rDpnTPEYyHNZCtEjtg="; 23 24 nativeBuildInputs = [ makeBinaryWrapper ]; 25
+3 -3
pkgs/development/tools/protolint/default.nix
··· 1 { lib, buildGoModule, fetchFromGitHub }: 2 buildGoModule rec { 3 pname = "protolint"; 4 - version = "0.48.0"; 5 6 src = fetchFromGitHub { 7 owner = "yoheimuta"; 8 repo = pname; 9 rev = "v${version}"; 10 - hash = "sha256-8HqIDzt+mmSyxY1XYqMWbPN8MSuoqcQDyYYhtp+ZdF4="; 11 }; 12 13 - vendorHash = "sha256-62SxRvoN4ejmAczs823jftXUmeI4ozfb6plHYT1JwZ0="; 14 15 # Something about the way we run tests causes issues. It doesn't happen 16 # when using "go test" directly:
··· 1 { lib, buildGoModule, fetchFromGitHub }: 2 buildGoModule rec { 3 pname = "protolint"; 4 + version = "0.49.2"; 5 6 src = fetchFromGitHub { 7 owner = "yoheimuta"; 8 repo = pname; 9 rev = "v${version}"; 10 + hash = "sha256-JUSHAIyUMsZOWFhomR6s+gxUIwd/oziBZdlgaZX1sOk="; 11 }; 12 13 + vendorHash = "sha256-8yV/YyNSn6O2UjAQlzM90fOoi3TdxO+v4YPtmSQMFC0="; 14 15 # Something about the way we run tests causes issues. It doesn't happen 16 # when using "go test" directly:
+3 -3
pkgs/development/tools/rust/cargo-deny/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "cargo-deny"; 12 - version = "0.14.16"; 13 14 src = fetchFromGitHub { 15 owner = "EmbarkStudios"; 16 repo = "cargo-deny"; 17 rev = version; 18 - hash = "sha256-Evvr9In/ny+yQP77u47uTCWCtRqg/l9B5y79va8oMbw="; 19 }; 20 21 - cargoHash = "sha256-JgI4Tbl0C0lJEOMRwVjo9h6fuUL0u0mICGLsx8/0dMc="; 22 23 nativeBuildInputs = [ 24 pkg-config
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "cargo-deny"; 12 + version = "0.14.17"; 13 14 src = fetchFromGitHub { 15 owner = "EmbarkStudios"; 16 repo = "cargo-deny"; 17 rev = version; 18 + hash = "sha256-ccj9BvvEtTsiV6jfrmLsQGDfem9f8L7rfCY8lK4cC+Y="; 19 }; 20 21 + cargoHash = "sha256-pdVHBOxwhPgSl0+zoAobchxVkhtdx5/F/Rpp2uPx1K4="; 22 23 nativeBuildInputs = [ 24 pkg-config
+36 -4
pkgs/games/chiaki4deck/default.nix
··· 1 { lib 2 , fetchFromGitHub 3 - , mkDerivation 4 , cmake 5 , pkg-config 6 , protobuf 7 , python3 8 , ffmpeg_6 9 , libopus 10 , qtbase 11 , qtmultimedia 12 , qtsvg 13 , SDL2 14 , libevdev 15 , udev 16 , hidapi 17 , fftw 18 , speexdsp 19 }: 20 21 - mkDerivation rec { 22 pname = "chiaki4deck"; 23 - version = "1.5.1"; 24 25 src = fetchFromGitHub { 26 owner = "streetpea"; 27 repo = pname; 28 rev = "v${version}"; 29 - hash = "sha256-XNpD9JPbckiq0HgpV/QJR8hDmvGTptxBMoGihHz44lc="; 30 fetchSubmodules = true; 31 }; 32 33 nativeBuildInputs = [ 34 cmake 35 pkg-config 36 protobuf 37 python3 38 python3.pkgs.wrapPython ··· 46 qtbase 47 qtmultimedia 48 qtsvg 49 protobuf 50 SDL2 51 hidapi ··· 53 libevdev 54 udev 55 speexdsp 56 ]; 57 58 pythonPath = [
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchpatch 4 + , stdenv 5 , cmake 6 , pkg-config 7 , protobuf 8 , python3 9 , ffmpeg_6 10 , libopus 11 + , wrapQtAppsHook 12 , qtbase 13 , qtmultimedia 14 , qtsvg 15 + , qtwayland 16 + , qtdeclarative 17 + , qtwebengine 18 , SDL2 19 , libevdev 20 , udev 21 , hidapi 22 , fftw 23 , speexdsp 24 + , libplacebo 25 + , vulkan-loader 26 + , vulkan-headers 27 + , libunwind 28 + , shaderc 29 + , lcms2 30 + , libdovi 31 + , xxHash 32 }: 33 34 + stdenv.mkDerivation rec { 35 pname = "chiaki4deck"; 36 + version = "1.6.4"; 37 38 src = fetchFromGitHub { 39 owner = "streetpea"; 40 repo = pname; 41 rev = "v${version}"; 42 + hash = "sha256-x//E3HgS9NHQW7IHEJYWnAnfw2umcktcL0/28BPh1PY="; 43 fetchSubmodules = true; 44 }; 45 46 nativeBuildInputs = [ 47 cmake 48 pkg-config 49 + wrapQtAppsHook 50 protobuf 51 python3 52 python3.pkgs.wrapPython ··· 60 qtbase 61 qtmultimedia 62 qtsvg 63 + qtdeclarative 64 + qtwayland 65 + qtwebengine 66 protobuf 67 SDL2 68 hidapi ··· 70 libevdev 71 udev 72 speexdsp 73 + libplacebo 74 + vulkan-headers 75 + libunwind 76 + shaderc 77 + lcms2 78 + libdovi 79 + xxHash 80 + ]; 81 + 82 + cmakeFlags = [ 83 + "-Wno-dev" 84 + ]; 85 + 86 + qtWrapperArgs = [ 87 + "--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib" 88 ]; 89 90 pythonPath = [
+6
pkgs/games/heroic/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , fetchYarnDeps 5 , yarn 6 , prefetch-yarn-deps ··· 45 ./remove-drm-support.patch 46 # Make Heroic create Steam shortcuts (to non-steam games) with the correct path to heroic. 47 ./fix-non-steam-shortcuts.patch 48 ]; 49 50 postPatch = ''
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 + , fetchpatch 5 , fetchYarnDeps 6 , yarn 7 , prefetch-yarn-deps ··· 46 ./remove-drm-support.patch 47 # Make Heroic create Steam shortcuts (to non-steam games) with the correct path to heroic. 48 ./fix-non-steam-shortcuts.patch 49 + (fetchpatch { 50 + name = "adtraction-fallback.patch"; 51 + url = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/pull/3575.patch"; 52 + hash = "sha256-XhYYLQf/oSX3uK+0KzfnAb49iaGwhl9W64Tg2Fqi8Gg="; 53 + }) 54 ]; 55 56 postPatch = ''
+3 -2
pkgs/games/ultrastardx/default.nix
··· 31 32 in stdenv.mkDerivation rec { 33 pname = "ultrastardx"; 34 - version = "2024.1.0"; 35 36 src = fetchFromGitHub { 37 owner = "UltraStar-Deluxe"; 38 repo = "USDX"; 39 rev = "v${version}"; 40 - hash = "sha256-pyX2zQiCp9lHSV1sGz0GaM5jTaBtyw50I6bFVbSm5S4="; 41 }; 42 43 nativeBuildInputs = [ pkg-config autoreconfHook ]; ··· 82 description = "Free and open source karaoke game"; 83 license = licenses.gpl2Plus; 84 maintainers = with maintainers; [ Profpatsch ]; 85 }; 86 }
··· 31 32 in stdenv.mkDerivation rec { 33 pname = "ultrastardx"; 34 + version = "2024.3.0"; 35 36 src = fetchFromGitHub { 37 owner = "UltraStar-Deluxe"; 38 repo = "USDX"; 39 rev = "v${version}"; 40 + hash = "sha256-0+7PMSnQoNu6tcR9MB6b94fWlMRvH10ySUhdSicWU8U="; 41 }; 42 43 nativeBuildInputs = [ pkg-config autoreconfHook ]; ··· 82 description = "Free and open source karaoke game"; 83 license = licenses.gpl2Plus; 84 maintainers = with maintainers; [ Profpatsch ]; 85 + platforms = platforms.linux; 86 }; 87 }
+2 -2
pkgs/os-specific/linux/psmisc/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "psmisc"; 12 - version = "23.6"; 13 14 src = fetchFromGitLab { 15 owner = pname; 16 repo = pname; 17 rev = "v${version}"; 18 - hash = "sha256-TjnOn8a7HAgt11zcM0i5DM5ERmsvLJHvo1e5FOsl6IA="; 19 }; 20 21 nativeBuildInputs = [ autoconf automake gettext ];
··· 9 10 stdenv.mkDerivation rec { 11 pname = "psmisc"; 12 + version = "23.7"; 13 14 src = fetchFromGitLab { 15 owner = pname; 16 repo = pname; 17 rev = "v${version}"; 18 + hash = "sha256-49YpdIh0DxLHfxos4sw1HUkV0XQBqmm4M9b0T4eN2xI="; 19 }; 20 21 nativeBuildInputs = [ autoconf automake gettext ];
+2 -2
pkgs/os-specific/linux/xf86-input-wacom/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "xf86-input-wacom"; 22 - version = "1.2.0"; 23 24 src = fetchFromGitHub { 25 owner = "linuxwacom"; 26 repo = pname; 27 rev = "${pname}-${version}"; 28 - sha256 = "sha256-PuIfeHlkcoin7w2v822P8uhWBNhYQGuOA7yD62L3qto="; 29 }; 30 31 nativeBuildInputs = [ autoreconfHook pkg-config ];
··· 19 20 stdenv.mkDerivation rec { 21 pname = "xf86-input-wacom"; 22 + version = "1.2.1"; 23 24 src = fetchFromGitHub { 25 owner = "linuxwacom"; 26 repo = pname; 27 rev = "${pname}-${version}"; 28 + sha256 = "sha256-ldPNGa1ACjLivs2CVtkvKLsBZSzRuOM8Q7bvMdx0EWA="; 29 }; 30 31 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2
pkgs/servers/home-assistant/custom-components/default.nix
··· 26 27 prometheus_sensor = callPackage ./prometheus_sensor {}; 28 29 waste_collection_schedule = callPackage ./waste_collection_schedule {}; 30 }
··· 26 27 prometheus_sensor = callPackage ./prometheus_sensor {}; 28 29 + sensi = callPackage ./sensi {}; 30 + 31 waste_collection_schedule = callPackage ./waste_collection_schedule {}; 32 }
+30
pkgs/servers/home-assistant/custom-components/sensi/default.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildHomeAssistantComponent, 5 + websockets, 6 + }: 7 + buildHomeAssistantComponent rec { 8 + owner = "iprak"; 9 + domain = "sensi"; 10 + version = "1.3.1"; 11 + 12 + src = fetchFromGitHub { 13 + inherit owner; 14 + repo = domain; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-RF182b6OBpoXfDsalwZntuaN8VxkQK2jy9qa0zNFQdI="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + websockets 21 + ]; 22 + 23 + meta = with lib; { 24 + changelog = "https://github.com/iprak/sensi/releases/tag/v${version}"; 25 + description = "HomeAssistant integration for Sensi thermostat"; 26 + homepage = "https://github.com/iprak/sensi"; 27 + maintainers = with maintainers; [ ivan ]; 28 + license = licenses.mit; 29 + }; 30 + }
+3 -3
pkgs/servers/monitoring/grafana-image-renderer/default.nix
··· 7 8 mkYarnPackage rec { 9 pname = "grafana-image-renderer"; 10 - version = "3.10.0"; 11 12 src = fetchFromGitHub { 13 owner = "grafana"; 14 repo = "grafana-image-renderer"; 15 rev = "v${version}"; 16 - hash = "sha256-fl2vDaGLR2ZlHnljfHYPN0EmbGqJwVs5dBkXRDJ3fM8="; 17 }; 18 19 offlineCache = fetchYarnDeps { 20 yarnLock = src + "/yarn.lock"; 21 - hash = "sha256-6x42/UaTNmoglgHDqfa0LjQz8PeOwUVqI5BOEuzdnuM="; 22 }; 23 24 packageJSON = ./package.json;
··· 7 8 mkYarnPackage rec { 9 pname = "grafana-image-renderer"; 10 + version = "3.10.1"; 11 12 src = fetchFromGitHub { 13 owner = "grafana"; 14 repo = "grafana-image-renderer"; 15 rev = "v${version}"; 16 + hash = "sha256-hfq0wuDoZ/3kiXVgwFPGRXMGxeRRVvCzi+VWJczOwgM="; 17 }; 18 19 offlineCache = fetchYarnDeps { 20 yarnLock = src + "/yarn.lock"; 21 + hash = "sha256-NqzADMMjxxZQOPt0lJOWoJ8WEU7hFJmnwRnSQPYMtLo="; 22 }; 23 24 packageJSON = ./package.json;
+1 -1
pkgs/servers/monitoring/grafana-image-renderer/package.json
··· 59 "@types/supertest": "^2.0.15", 60 "@typescript-eslint/eslint-plugin": "5.37.0", 61 "@typescript-eslint/parser": "5.37.0", 62 - "axios": "1.6.0", 63 "cross-env": "7.0.3", 64 "eslint": "8.23.1", 65 "eslint-config-prettier": "8.5.0",
··· 59 "@types/supertest": "^2.0.15", 60 "@typescript-eslint/eslint-plugin": "5.37.0", 61 "@typescript-eslint/parser": "5.37.0", 62 + "axios": "1.6.7", 63 "cross-env": "7.0.3", 64 "eslint": "8.23.1", 65 "eslint-config-prettier": "8.5.0",
+2
pkgs/servers/neard/default.nix
··· 72 license = licenses.gpl2Only; 73 maintainers = with maintainers; [ ]; 74 platforms = platforms.unix; 75 }; 76 }
··· 72 license = licenses.gpl2Only; 73 maintainers = with maintainers; [ ]; 74 platforms = platforms.unix; 75 + # error: wcwidth-0.2.13 not supported for interpreter python2.7 76 + broken = true; # Added 2024-03-17 77 }; 78 }
-28
pkgs/servers/pufferpanel/bump-sha1cd.patch
··· 1 - diff --git a/go.mod b/go.mod 2 - index 107660ef..8efd7ebf 100644 3 - --- a/go.mod 4 - +++ b/go.mod 5 - @@ -128,7 +128,7 @@ require ( 6 - github.com/pelletier/go-toml v1.9.5 // indirect 7 - github.com/pelletier/go-toml/v2 v2.0.6 // indirect 8 - github.com/pierrec/lz4/v4 v4.1.2 // indirect 9 - - github.com/pjbgf/sha1cd v0.2.0 // indirect 10 - + github.com/pjbgf/sha1cd v0.3.0 // indirect 11 - github.com/pmezard/go-difflib v1.0.0 // indirect 12 - github.com/robfig/cron/v3 v3.0.1 // indirect 13 - github.com/rogpeppe/go-internal v1.9.0 // indirect 14 - diff --git a/go.sum b/go.sum 15 - index 021d3ab9..13592e36 100644 16 - --- a/go.sum 17 - +++ b/go.sum 18 - @@ -485,8 +485,9 @@ github.com/pelletier/go-toml/v2 v2.0.6 h1:nrzqCb7j9cDFj2coyLNLaZuJTLjWjlaz6nvTvI 19 - github.com/pelletier/go-toml/v2 v2.0.6/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= 20 - github.com/pierrec/lz4/v4 v4.1.2 h1:qvY3YFXRQE/XB8MlLzJH7mSzBs74eA2gg52YTk6jUPM= 21 - github.com/pierrec/lz4/v4 v4.1.2/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= 22 - -github.com/pjbgf/sha1cd v0.2.0 h1:gIsJVwjbRviE4gydidGztxH1IlJQoYBcCrwG4Dz8wvM= 23 - github.com/pjbgf/sha1cd v0.2.0/go.mod h1:HOK9QrgzdHpbc2Kzip0Q1yi3M2MFGPADtR6HjG65m5M= 24 - +github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= 25 - +github.com/pjbgf/sha1cd v0.3.0/go.mod h1:nZ1rrWOcGJ5uZgEEVL1VUM9iRQiZvWdbZjkKyFzPPsI= 26 - github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= 27 - github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= 28 - github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
···
+3 -2
pkgs/servers/pufferpanel/default.nix
··· 22 23 patches = [ 24 # Bump sha1cd package, otherwise i686-linux fails to build. 25 - ./bump-sha1cd.patch 26 27 # Seems to be an anti-feature. Startup is the only place where user/group is 28 # hardcoded and checked. ··· 57 58 nativeBuildInputs = [ makeWrapper go-swag ]; 59 60 - vendorHash = "sha256-402ND99FpU+zNV1e5Th1+aZKok49cIEdpPPLLfNyL3E="; 61 proxyVendor = true; 62 63 # Generate code for Swagger documentation endpoints (see web/swagger/docs.go).
··· 22 23 patches = [ 24 # Bump sha1cd package, otherwise i686-linux fails to build. 25 + # Also bump github.com/swaggo/swag for PR 257790. 26 + ./deps.patch 27 28 # Seems to be an anti-feature. Startup is the only place where user/group is 29 # hardcoded and checked. ··· 58 59 nativeBuildInputs = [ makeWrapper go-swag ]; 60 61 + vendorHash = "sha256-itiWROoIhnMbG9evH6X7kjClC4VdpX983d/SCwr4HbY="; 62 proxyVendor = true; 63 64 # Generate code for Swagger documentation endpoints (see web/swagger/docs.go).
+146
pkgs/servers/pufferpanel/deps.patch
···
··· 1 + diff --git a/go.mod b/go.mod 2 + index e7ed3367..6022e4cd 100644 3 + --- a/go.mod 4 + +++ b/go.mod 5 + @@ -36,9 +36,9 @@ require ( 6 + github.com/stretchr/testify v1.8.3 7 + github.com/swaggo/files v0.0.0-20220728132757-551d4a08d97a 8 + github.com/swaggo/gin-swagger v1.5.3 9 + - github.com/swaggo/swag v1.8.8 10 + - golang.org/x/crypto v0.9.0 11 + - golang.org/x/sys v0.8.0 12 + + github.com/swaggo/swag v1.16.3 13 + + golang.org/x/crypto v0.14.0 14 + + golang.org/x/sys v0.13.0 15 + gopkg.in/go-playground/validator.v9 v9.31.0 16 + gorm.io/driver/mysql v1.4.4 17 + gorm.io/driver/postgres v1.4.5 18 + @@ -132,7 +132,7 @@ require ( 19 + github.com/pelletier/go-toml v1.9.5 // indirect 20 + github.com/pelletier/go-toml/v2 v2.0.8 // indirect 21 + github.com/pierrec/lz4/v4 v4.1.2 // indirect 22 + - github.com/pjbgf/sha1cd v0.2.0 // indirect 23 + + github.com/pjbgf/sha1cd v0.3.0 // indirect 24 + github.com/pmezard/go-difflib v1.0.0 // indirect 25 + github.com/robfig/cron/v3 v3.0.1 // indirect 26 + github.com/rogpeppe/go-internal v1.9.0 // indirect 27 + @@ -151,12 +151,12 @@ require ( 28 + github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect 29 + github.com/yusufpapurcu/wmi v1.2.2 // indirect 30 + golang.org/x/arch v0.3.0 // indirect 31 + - golang.org/x/mod v0.8.0 // indirect 32 + - golang.org/x/net v0.10.0 // indirect 33 + + golang.org/x/mod v0.9.0 // indirect 34 + + golang.org/x/net v0.17.0 // indirect 35 + golang.org/x/sync v0.1.0 // indirect 36 + - golang.org/x/term v0.8.0 // indirect 37 + - golang.org/x/text v0.9.0 // indirect 38 + - golang.org/x/tools v0.6.0 // indirect 39 + + golang.org/x/term v0.13.0 // indirect 40 + + golang.org/x/text v0.13.0 // indirect 41 + + golang.org/x/tools v0.7.0 // indirect 42 + google.golang.org/protobuf v1.30.0 // indirect 43 + gopkg.in/go-playground/assert.v1 v1.2.1 // indirect 44 + gopkg.in/ini.v1 v1.67.0 // indirect 45 + diff --git a/go.sum b/go.sum 46 + index 5be69957..b70625d4 100644 47 + --- a/go.sum 48 + +++ b/go.sum 49 + @@ -497,8 +497,9 @@ github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZ 50 + github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4= 51 + github.com/pierrec/lz4/v4 v4.1.2 h1:qvY3YFXRQE/XB8MlLzJH7mSzBs74eA2gg52YTk6jUPM= 52 + github.com/pierrec/lz4/v4 v4.1.2/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= 53 + -github.com/pjbgf/sha1cd v0.2.0 h1:gIsJVwjbRviE4gydidGztxH1IlJQoYBcCrwG4Dz8wvM= 54 + github.com/pjbgf/sha1cd v0.2.0/go.mod h1:HOK9QrgzdHpbc2Kzip0Q1yi3M2MFGPADtR6HjG65m5M= 55 + +github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= 56 + +github.com/pjbgf/sha1cd v0.3.0/go.mod h1:nZ1rrWOcGJ5uZgEEVL1VUM9iRQiZvWdbZjkKyFzPPsI= 57 + github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= 58 + github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= 59 + github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= 60 + @@ -579,8 +580,8 @@ github.com/swaggo/files v0.0.0-20220728132757-551d4a08d97a/go.mod h1:lKJPbtWzJ9J 61 + github.com/swaggo/gin-swagger v1.5.3 h1:8mWmHLolIbrhJJTflsaFoZzRBYVmEE7JZGIq08EiC0Q= 62 + github.com/swaggo/gin-swagger v1.5.3/go.mod h1:3XJKSfHjDMB5dBo/0rrTXidPmgLeqsX89Yp4uA50HpI= 63 + github.com/swaggo/swag v1.8.1/go.mod h1:ugemnJsPZm/kRwFUnzBlbHRd0JY9zE1M4F+uy2pAaPQ= 64 + -github.com/swaggo/swag v1.8.8 h1:/GgJmrJ8/c0z4R4hoEPZ5UeEhVGdvsII4JbVDLbR7Xc= 65 + -github.com/swaggo/swag v1.8.8/go.mod h1:ezQVUUhly8dludpVk+/PuwJWvLLanB13ygV5Pr9enSk= 66 + +github.com/swaggo/swag v1.16.3 h1:PnCYjPCah8FK4I26l2F/KQ4yz3sILcVUN3cTlBFA9Pg= 67 + +github.com/swaggo/swag v1.16.3/go.mod h1:DImHIuOFXKpMFAQjcC7FG4m3Dg4+QuUgUzJmKjI/gRk= 68 + github.com/tklauser/go-sysconf v0.3.11 h1:89WgdJhk5SNwJfu+GKyYveZ4IaJ7xAkecBo+KdJV0CM= 69 + github.com/tklauser/go-sysconf v0.3.11/go.mod h1:GqXfhXY3kiPa0nAXPDIQIWzJbMCB7AmcWpGR8lSZfqI= 70 + github.com/tklauser/numcpus v0.6.0 h1:kebhY2Qt+3U6RNK7UqpYNA+tJ23IBEGKkB7JQBfDYms= 71 + @@ -651,8 +652,8 @@ golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0 72 + golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= 73 + golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= 74 + golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= 75 + -golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= 76 + -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= 77 + +golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= 78 + +golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= 79 + golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= 80 + golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= 81 + golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= 82 + @@ -688,8 +689,8 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= 83 + golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= 84 + golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= 85 + golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= 86 + -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= 87 + -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= 88 + +golang.org/x/mod v0.9.0 h1:KENHtAZL2y3NLMYZeHY9DW8HW8V+kQyJsY/V9JlKvCs= 89 + +golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= 90 + golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 91 + golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 92 + golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 93 + @@ -733,8 +734,8 @@ golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su 94 + golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= 95 + golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= 96 + golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= 97 + -golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= 98 + -golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= 99 + +golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= 100 + +golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= 101 + golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= 102 + golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= 103 + golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= 104 + @@ -828,16 +829,16 @@ golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64/go.mod h1:oPkhp1MJrh7nUepCBc 105 + golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 106 + golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 107 + golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 108 + -golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= 109 + -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 110 + +golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= 111 + +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 112 + golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= 113 + golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= 114 + golang.org/x/term v0.0.0-20210503060354-a79de5458b56/go.mod h1:tfny5GFUkzUvx4ps4ajbZsCe5lw1metzhBm9T3x7oIY= 115 + golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= 116 + golang.org/x/term v0.0.0-20220722155259-a9ba230a4035/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= 117 + golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= 118 + -golang.org/x/term v0.8.0 h1:n5xxQn2i3PC0yLAbjTpNT85q/Kgzcr2gIoX9OrJUols= 119 + -golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= 120 + +golang.org/x/term v0.13.0 h1:bb+I9cTfFazGW51MZqBVmZy7+JEJMouUHTUSKVQLBek= 121 + +golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= 122 + golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 123 + golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 124 + golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 125 + @@ -847,8 +848,8 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= 126 + golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= 127 + golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= 128 + golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= 129 + -golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= 130 + -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= 131 + +golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= 132 + +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= 133 + golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= 134 + golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= 135 + golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= 136 + @@ -912,8 +913,8 @@ golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4f 137 + golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= 138 + golang.org/x/tools v0.1.7/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= 139 + golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= 140 + -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= 141 + -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= 142 + +golang.org/x/tools v0.7.0 h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4= 143 + +golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= 144 + golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 145 + golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 146 + golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+2 -2
pkgs/stdenv/generic/make-derivation.nix
··· 556 557 meta = checkMeta.commonMeta { 558 inherit validity attrs pos; 559 - references = attrs.nativeBuildInputs ++ attrs.buildInputs 560 - ++ attrs.propagatedNativeBuildInputs ++ attrs.propagatedBuildInputs; 561 }; 562 validity = checkMeta.assertValidity { inherit meta attrs; }; 563
··· 556 557 meta = checkMeta.commonMeta { 558 inherit validity attrs pos; 559 + references = attrs.nativeBuildInputs or [] ++ attrs.buildInputs or [] 560 + ++ attrs.propagatedNativeBuildInputs or [] ++ attrs.propagatedBuildInputs or []; 561 }; 562 validity = checkMeta.assertValidity { inherit meta attrs; }; 563
+791 -628
pkgs/tools/admin/google-cloud-sdk/components.json
··· 5 "checksum": "5a65179c291bc480696ca323d2f8c4874985458303eff8f233e16cdca4e88e6f", 6 "contents_checksum": "038c999c7a7d70d5133eab7dc5868c4c3d0358431dad250f9833306af63016c8", 7 "size": 800, 8 - "source": "components/google-cloud-sdk-alpha-20231025210228.tar.gz", 9 "type": "tar" 10 }, 11 "dependencies": [ ··· 22 "platform": {}, 23 "platform_required": false, 24 "version": { 25 - "build_number": 20231025210228, 26 - "version_string": "2023.10.25" 27 } 28 }, 29 { ··· 56 "platform_required": false, 57 "version": { 58 "build_number": 0, 59 - "version_string": "1.4.4" 60 } 61 }, 62 { 63 "data": { 64 - "checksum": "f197d04a40be89731ecd7a653f83900dcc4dcd84e54e0833c529f9f8dfa4395c", 65 - "contents_checksum": "fa1d4910c1ce188c5c450d655c5d15e59a146364ec46e3fda0791db76c2edd17", 66 - "size": 20108065, 67 - "source": "components/google-cloud-sdk-anthos-auth-darwin-arm-20220923141408.tar.gz", 68 "type": "tar" 69 }, 70 "dependencies": [ ··· 88 }, 89 "platform_required": false, 90 "version": { 91 - "build_number": 20220923141408, 92 - "version_string": "1.4.4" 93 } 94 }, 95 { 96 "data": { 97 - "checksum": "5417a11523868f36d6b7c3199e3029cf9f43c8cb99c57dba016942db4141c939", 98 - "contents_checksum": "06a661642cbd20bcb9965c7a4b505d4d72944c48c30b8ada71db7e53c898d505", 99 - "size": 21183974, 100 - "source": "components/google-cloud-sdk-anthos-auth-darwin-x86_64-20220923141408.tar.gz", 101 "type": "tar" 102 }, 103 "dependencies": [ ··· 121 }, 122 "platform_required": false, 123 "version": { 124 - "build_number": 20220923141408, 125 - "version_string": "1.4.4" 126 } 127 }, 128 { 129 "data": { 130 - "checksum": "c9dee264071d169de081880019f2f6fdb14edc22cbd20c19de76bb7cfa196eae", 131 - "contents_checksum": "80ae98f1bfd1bd5cce9cddd642a1505d5401908d8890a22afa723490132b4342", 132 - "size": 19755666, 133 - "source": "components/google-cloud-sdk-anthos-auth-linux-arm-20220923141408.tar.gz", 134 "type": "tar" 135 }, 136 "dependencies": [ ··· 154 }, 155 "platform_required": false, 156 "version": { 157 - "build_number": 20220923141408, 158 - "version_string": "1.4.4" 159 } 160 }, 161 { 162 "data": { 163 - "checksum": "b5efe7e9cd17f44905186242e663b97734183e14c66daed35553bc59bbf07a3a", 164 - "contents_checksum": "57b753ecbde456973bed97af69aa7d1696694c1d30e9756d57658f79689fd925", 165 - "size": 21362894, 166 - "source": "components/google-cloud-sdk-anthos-auth-linux-x86_64-20220923141408.tar.gz", 167 "type": "tar" 168 }, 169 "dependencies": [ ··· 187 }, 188 "platform_required": false, 189 "version": { 190 - "build_number": 20220923141408, 191 - "version_string": "1.4.4" 192 } 193 }, 194 { 195 "data": { 196 - "checksum": "ab73e4c82e95a7b707f2298906a7a5fb9a2c1fe741c4584ab16e507bcf7b6d5b", 197 - "contents_checksum": "38d10a97aa0e5fbf2c927acda1c853c25a2b729615bebd2ac8fce4eb77c2466a", 198 - "size": 21470866, 199 - "source": "components/google-cloud-sdk-anthos-auth-windows-x86_64-20220923141408.tar.gz", 200 "type": "tar" 201 }, 202 "dependencies": [ ··· 220 }, 221 "platform_required": false, 222 "version": { 223 - "build_number": 20220923141408, 224 - "version_string": "1.4.4" 225 } 226 }, 227 { ··· 258 "platform_required": false, 259 "version": { 260 "build_number": 0, 261 - "version_string": "0.2.42" 262 } 263 }, 264 { 265 "data": { 266 - "checksum": "47cc151c673943cbfee58321453f85b32d673b3e453724fff31374a8605992b6", 267 - "contents_checksum": "3ff8b9ef0510722872095c6d027b78f45dce430eadf07fc219b7f435c503dcf1", 268 - "size": 70015524, 269 - "source": "components/google-cloud-sdk-anthoscli-darwin-arm-20231023224440.tar.gz", 270 "type": "tar" 271 }, 272 "dependencies": [ ··· 290 }, 291 "platform_required": false, 292 "version": { 293 - "build_number": 20231023224440, 294 - "version_string": "0.2.42" 295 } 296 }, 297 { 298 "data": { 299 - "checksum": "e99a7d19c60cbab6f5ce8578133e1c30c545e89b6f768b457abd2d84722f9c4d", 300 - "contents_checksum": "348b94e8d769713049f005663b17056668dc4e3429e682a6956dd7f624fccbbf", 301 - "size": 72896092, 302 - "source": "components/google-cloud-sdk-anthoscli-darwin-x86-20231023224440.tar.gz", 303 "type": "tar" 304 }, 305 "dependencies": [ ··· 323 }, 324 "platform_required": false, 325 "version": { 326 - "build_number": 20231023224440, 327 - "version_string": "0.2.42" 328 } 329 }, 330 { 331 "data": { 332 - "checksum": "f9e5e6e59e910787542ed59cd7a31f27774e7795989457689bb974238ea58312", 333 - "contents_checksum": "348b94e8d769713049f005663b17056668dc4e3429e682a6956dd7f624fccbbf", 334 - "size": 72896095, 335 - "source": "components/google-cloud-sdk-anthoscli-darwin-x86_64-20231023224440.tar.gz", 336 "type": "tar" 337 }, 338 "dependencies": [ ··· 356 }, 357 "platform_required": false, 358 "version": { 359 - "build_number": 20231023224440, 360 - "version_string": "0.2.42" 361 } 362 }, 363 { 364 "data": { 365 - "checksum": "768b260e7477339405cd191e43b5bcdc96150af0f309b58c24e48827237542be", 366 - "contents_checksum": "d3d2363c63df31848603536b8af09769ce6bb8a0fefbeaefd0336b2362d0ef31", 367 - "size": 67245549, 368 - "source": "components/google-cloud-sdk-anthoscli-linux-arm-20231023224440.tar.gz", 369 "type": "tar" 370 }, 371 "dependencies": [ ··· 389 }, 390 "platform_required": false, 391 "version": { 392 - "build_number": 20231023224440, 393 - "version_string": "0.2.42" 394 } 395 }, 396 { 397 "data": { 398 - "checksum": "390124c5fec46fb6800ca03dd9caf7f75259a6bc28d5841dcc972900cec9a9ba", 399 - "contents_checksum": "bf1c54e0b66c498b1d086940dee6ddd11aaa7ed745c65d03cd98f10ef1c49e83", 400 - "size": 65298977, 401 - "source": "components/google-cloud-sdk-anthoscli-linux-x86-20231023224440.tar.gz", 402 "type": "tar" 403 }, 404 "dependencies": [ ··· 422 }, 423 "platform_required": false, 424 "version": { 425 - "build_number": 20231023224440, 426 - "version_string": "0.2.42" 427 } 428 }, 429 { 430 "data": { 431 - "checksum": "091730628a45921ef9f34db8b9fbc9568007b0a2a771c60ca786fbc45728b884", 432 - "contents_checksum": "b30074343ee0a19121bf1163fccf5223b9e6125e744c00eef5c20977bcd3320a", 433 - "size": 71982294, 434 - "source": "components/google-cloud-sdk-anthoscli-linux-x86_64-20231023224440.tar.gz", 435 "type": "tar" 436 }, 437 "dependencies": [ ··· 455 }, 456 "platform_required": false, 457 "version": { 458 - "build_number": 20231023224440, 459 - "version_string": "0.2.42" 460 } 461 }, 462 { 463 "data": { 464 - "checksum": "d6f16a6a028d3247de10be2cd63d523b954c4f76347d6a5c88a301c4cd35ddcb", 465 - "contents_checksum": "2ad1786533a5cee19cddf36074f51726748422801d4417cb3793baff40ca9b0d", 466 - "size": 67251009, 467 - "source": "components/google-cloud-sdk-anthoscli-windows-x86-20231023224440.tar.gz", 468 "type": "tar" 469 }, 470 "dependencies": [ ··· 488 }, 489 "platform_required": false, 490 "version": { 491 - "build_number": 20231023224440, 492 - "version_string": "0.2.42" 493 } 494 }, 495 { 496 "data": { 497 - "checksum": "de36bc756712c520d88572641ccd4810acb6d9342b055291a517e32eda2d9e25", 498 - "contents_checksum": "686ac57e568ce4ae5b4ad352c3cc32643762e48d8c6009dae47eebb0fff7ae0d", 499 - "size": 72608049, 500 - "source": "components/google-cloud-sdk-anthoscli-windows-x86_64-20231023224440.tar.gz", 501 "type": "tar" 502 }, 503 "dependencies": [ ··· 521 }, 522 "platform_required": false, 523 "version": { 524 - "build_number": 20231023224440, 525 - "version_string": "0.2.42" 526 } 527 }, 528 { ··· 560 "platform_required": false, 561 "version": { 562 "build_number": 0, 563 - "version_string": "1.9.75" 564 } 565 }, 566 { 567 "data": { 568 - "checksum": "88f025a6822f74ffa4c34d23b656158f6191891abf9fbe244a4664077a45f57c", 569 - "contents_checksum": "7a27fc4862491e5690c8158b915dd6c2c27c4fd1668f273057e059af4977a6e8", 570 - "size": 4469651, 571 - "source": "components/google-cloud-sdk-app-engine-go-darwin-arm-20230417163046.tar.gz", 572 "type": "tar" 573 }, 574 "dependencies": [ ··· 594 }, 595 "platform_required": false, 596 "version": { 597 - "build_number": 20230417163046, 598 - "version_string": "1.9.75" 599 } 600 }, 601 { 602 "data": { 603 - "checksum": "4a093245d248d58197ea5ec35a65b4b329fc7aed383df80dd9a9206700ca830e", 604 - "contents_checksum": "f17f61e98b4f3221eae38212f727d736326ac5c803526067d2c0da965ade6000", 605 - "size": 4658659, 606 - "source": "components/google-cloud-sdk-app-engine-go-darwin-x86_64-20230417163046.tar.gz", 607 "type": "tar" 608 }, 609 "dependencies": [ ··· 629 }, 630 "platform_required": false, 631 "version": { 632 - "build_number": 20230417163046, 633 - "version_string": "1.9.75" 634 } 635 }, 636 { 637 "data": { 638 - "checksum": "18e5f83a7ae30202e2794d5a46641319dba24d01ac43d1e427b906109ce9069a", 639 - "contents_checksum": "22b5e43c2665f646b3b4c043ea8ce5d657576ba54392ffab81c64776ccb0e10e", 640 - "size": 4426107, 641 - "source": "components/google-cloud-sdk-app-engine-go-linux-arm-20230417163046.tar.gz", 642 "type": "tar" 643 }, 644 "dependencies": [ ··· 664 }, 665 "platform_required": false, 666 "version": { 667 - "build_number": 20230417163046, 668 - "version_string": "1.9.75" 669 } 670 }, 671 { 672 "data": { 673 - "checksum": "e6271bd8ecf5309c573cae3cf2386a51099517dbe8ec3a8563e96586d6b5beb2", 674 - "contents_checksum": "dab30a813f4c0da5028b46ca3ca4675b708358cb4d983b1bc52e03d385f49cfb", 675 - "size": 4798186, 676 - "source": "components/google-cloud-sdk-app-engine-go-linux-x86-20230417163046.tar.gz", 677 "type": "tar" 678 }, 679 "dependencies": [ ··· 699 }, 700 "platform_required": false, 701 "version": { 702 - "build_number": 20230417163046, 703 - "version_string": "1.9.75" 704 } 705 }, 706 { 707 "data": { 708 - "checksum": "1d5396984ff515be84c3bb526a802cfa9da49e677b46a23d192e09b063cad7d9", 709 - "contents_checksum": "d4dce85cce2a173cdfac1e039f409c364b3db99624010cc0c38bcfbc96996cc3", 710 - "size": 4731246, 711 - "source": "components/google-cloud-sdk-app-engine-go-linux-x86_64-20230417163046.tar.gz", 712 "type": "tar" 713 }, 714 "dependencies": [ ··· 734 }, 735 "platform_required": false, 736 "version": { 737 - "build_number": 20230417163046, 738 - "version_string": "1.9.75" 739 } 740 }, 741 { 742 "data": { 743 - "checksum": "d1bbf796ff06580baeccc60c792c348cb1e466a3e6cc587ef6972ad0f67cd522", 744 - "contents_checksum": "847ee7c88906720d640fbdb926b61105fd95e93d816fa5d1a83f1acf04ef8d74", 745 - "size": 4900275, 746 - "source": "components/google-cloud-sdk-app-engine-go-windows-x86-20230417163046.tar.gz", 747 "type": "tar" 748 }, 749 "dependencies": [ ··· 769 }, 770 "platform_required": false, 771 "version": { 772 - "build_number": 20230417163046, 773 - "version_string": "1.9.75" 774 } 775 }, 776 { 777 "data": { 778 - "checksum": "4f2b7379f39b50a092cf158174b5966f9e14f7cd3ca1ac5732f1164ae60ba94e", 779 - "contents_checksum": "9bd2d84c68d600bb3da84855996341596df3b8716d732fc9b7502db972dc5da3", 780 - "size": 4784860, 781 - "source": "components/google-cloud-sdk-app-engine-go-windows-x86_64-20230417163046.tar.gz", 782 "type": "tar" 783 }, 784 "dependencies": [ ··· 804 }, 805 "platform_required": false, 806 "version": { 807 - "build_number": 20230417163046, 808 - "version_string": "1.9.75" 809 } 810 }, 811 { ··· 1020 }, 1021 { 1022 "data": { 1023 - "checksum": "38175db1182e07654ddef6ff8794d3ddf0d830c180920392342ea4ceff027a58", 1024 - "contents_checksum": "2fb9f245011b3b51c4173522e015f899dd2d6a4bc54ea12bff941c9265aba2e5", 1025 - "size": 129915384, 1026 - "source": "components/google-cloud-sdk-app-engine-java-20231023224440.tar.gz", 1027 "type": "tar" 1028 }, 1029 "dependencies": [ ··· 1041 "platform": {}, 1042 "platform_required": false, 1043 "version": { 1044 - "build_number": 20231023224440, 1045 - "version_string": "2.0.21" 1046 } 1047 }, 1048 { ··· 1142 }, 1143 { 1144 "data": { 1145 - "checksum": "07c19454806ac60603f18bc9e7eeb56ae6eba1477e25a91fd95682c4011c6207", 1146 - "contents_checksum": "71ff9043af9fa982b8dbbc1f8f122d9f981cb5fe168356f4a7f13bf58ae23e25", 1147 - "size": 8748068, 1148 - "source": "components/google-cloud-sdk-app-engine-python-20231016163610.tar.gz", 1149 "type": "tar" 1150 }, 1151 "dependencies": [ ··· 1164 "platform": {}, 1165 "platform_required": false, 1166 "version": { 1167 - "build_number": 20231016163610, 1168 - "version_string": "1.9.107" 1169 } 1170 }, 1171 { ··· 1432 "checksum": "707d412854a14450b4fddee199d258e75946fe51b44eb2980c8cd7e274c15760", 1433 "contents_checksum": "0b4e9d8e6394dc841aece07ca4da91920a460cbd7ec22495be4a2b4f46635b4d", 1434 "size": 797, 1435 - "source": "components/google-cloud-sdk-beta-20231025210228.tar.gz", 1436 "type": "tar" 1437 }, 1438 "dependencies": [ ··· 1449 "platform": {}, 1450 "platform_required": false, 1451 "version": { 1452 - "build_number": 20231025210228, 1453 - "version_string": "2023.10.25" 1454 } 1455 }, 1456 { ··· 1493 }, 1494 { 1495 "data": { 1496 - "checksum": "5af8d24eb8da1c8229c414e9950bcdc453a9e316742541eefe830afaca8a158e", 1497 - "contents_checksum": "e08ae70a70d4da56bae3d13b09b898b865557461f01e7690fd25f82b91890910", 1498 - "size": 7097728, 1499 - "source": "components/google-cloud-sdk-bigtable-darwin-arm-20231006153333.tar.gz", 1500 "type": "tar" 1501 }, 1502 "dependencies": [ ··· 1521 }, 1522 "platform_required": false, 1523 "version": { 1524 - "build_number": 20231006153333, 1525 "version_string": "" 1526 } 1527 }, ··· 1561 }, 1562 { 1563 "data": { 1564 - "checksum": "aa2d0f3e322a7912fac2b012fc1c368eaa129905372b82560488ec9b803494d5", 1565 - "contents_checksum": "7c84152ea5f2da5f06f9b55b035534d9bd2270c9959ae162c3cb5f8d392d6801", 1566 - "size": 7333846, 1567 - "source": "components/google-cloud-sdk-bigtable-darwin-x86_64-20231006153333.tar.gz", 1568 "type": "tar" 1569 }, 1570 "dependencies": [ ··· 1589 }, 1590 "platform_required": false, 1591 "version": { 1592 - "build_number": 20231006153333, 1593 "version_string": "" 1594 } 1595 }, 1596 { 1597 "data": { 1598 - "checksum": "52ea181edb2b8b69fa3ebea25467238facc828dc79d1b22c2aafb79385e0f4e6", 1599 - "contents_checksum": "0dc475dc09c285508b6ba21ab40ebabf9151a9e5ecaf05a3754b3283a00df42a", 1600 - "size": 7011804, 1601 - "source": "components/google-cloud-sdk-bigtable-linux-arm-20231006153333.tar.gz", 1602 "type": "tar" 1603 }, 1604 "dependencies": [ ··· 1623 }, 1624 "platform_required": false, 1625 "version": { 1626 - "build_number": 20231006153333, 1627 "version_string": "" 1628 } 1629 }, 1630 { 1631 "data": { 1632 - "checksum": "972efb72c12e9fb15777d2f0b0ee49d34793bd088147eda1599826b261c54f8d", 1633 - "contents_checksum": "ea6f11df05804197e9a0f3ad1d52db162b23769aab97b2913248dc42044e2803", 1634 - "size": 7255397, 1635 - "source": "components/google-cloud-sdk-bigtable-linux-x86-20231006153333.tar.gz", 1636 "type": "tar" 1637 }, 1638 "dependencies": [ ··· 1657 }, 1658 "platform_required": false, 1659 "version": { 1660 - "build_number": 20231006153333, 1661 "version_string": "" 1662 } 1663 }, 1664 { 1665 "data": { 1666 - "checksum": "e62748c75c268a9648b26920838b281e50511b7f430dff0eca124f3f5763699e", 1667 - "contents_checksum": "19b5048d20242fc730b4544fe0b5ac800c30b02059efb4b26588eb31d1fc482a", 1668 - "size": 7454541, 1669 - "source": "components/google-cloud-sdk-bigtable-linux-x86_64-20231006153333.tar.gz", 1670 "type": "tar" 1671 }, 1672 "dependencies": [ ··· 1691 }, 1692 "platform_required": false, 1693 "version": { 1694 - "build_number": 20231006153333, 1695 "version_string": "" 1696 } 1697 }, 1698 { 1699 "data": { 1700 - "checksum": "e031eb7a2735c0bd2db4d82d8da081a264cbaddc58ed9b84e2b1564994e54643", 1701 - "contents_checksum": "7751a9071bb5830f7f3f9dc9a229a268405a1ba76d5bdd19483a8c66089c72eb", 1702 - "size": 7288454, 1703 - "source": "components/google-cloud-sdk-bigtable-windows-x86-20231006153333.tar.gz", 1704 "type": "tar" 1705 }, 1706 "dependencies": [ ··· 1725 }, 1726 "platform_required": false, 1727 "version": { 1728 - "build_number": 20231006153333, 1729 "version_string": "" 1730 } 1731 }, 1732 { 1733 "data": { 1734 - "checksum": "1f24acd6a6c63ed1c283e7b7bfbda31bc08a86b1241e5ad4f08858df7678d669", 1735 - "contents_checksum": "f640127893c4339c4f04791834143af3fe3931ac91877dd73dcb4ee3cecf6d01", 1736 - "size": 7451653, 1737 - "source": "components/google-cloud-sdk-bigtable-windows-x86_64-20231006153333.tar.gz", 1738 "type": "tar" 1739 }, 1740 "dependencies": [ ··· 1759 }, 1760 "platform_required": false, 1761 "version": { 1762 - "build_number": 20231006153333, 1763 "version_string": "" 1764 } 1765 }, 1766 { 1767 "data": { 1768 - "checksum": "5044841dc30f739de0c5f1a846580baf714a36b09070c00574360e906789d373", 1769 - "contents_checksum": "b1570cc1a0eb04a5856453cb234021a676ff276c0f779a248ddf589f5ed5724d", 1770 - "size": 1659622, 1771 - "source": "components/google-cloud-sdk-bq-20230913232318.tar.gz", 1772 "type": "tar" 1773 }, 1774 "dependencies": [ ··· 1787 "platform": {}, 1788 "platform_required": false, 1789 "version": { 1790 - "build_number": 20230913232318, 1791 - "version_string": "2.0.98" 1792 } 1793 }, 1794 { 1795 "data": { 1796 - "checksum": "b6a10d752554fb9cf518d697999f49806d1009455c78cc3c6fc67f6d97edf1b9", 1797 - "contents_checksum": "da65662d83df53b15ff35bdedace8671669280b875620876181ac0e9665cbc04", 1798 - "size": 2019, 1799 - "source": "components/google-cloud-sdk-bq-nix-20231025210228.tar.gz", 1800 "type": "tar" 1801 }, 1802 "dependencies": [ ··· 1821 }, 1822 "platform_required": false, 1823 "version": { 1824 - "build_number": 20231025210228, 1825 - "version_string": "2.0.98" 1826 } 1827 }, 1828 { 1829 "data": { 1830 - "checksum": "d4d4e87deaf12a2c8eefe6ae5d75d9fe160149488077579dc41d6010988ad432", 1831 - "contents_checksum": "515edb1628a75d42d3b465d7e8c8ad5d298538e75f78d00a0cda738ac9fcce5e", 1832 - "size": 2660, 1833 - "source": "components/google-cloud-sdk-bq-win-20230106151201.tar.gz", 1834 "type": "tar" 1835 }, 1836 "dependencies": [ ··· 1852 }, 1853 "platform_required": false, 1854 "version": { 1855 - "build_number": 20230106151201, 1856 - "version_string": "2.0.84" 1857 } 1858 }, 1859 { ··· 1963 "core" 1964 ], 1965 "details": { 1966 - "description": "Provides stand-alone Python 3.9.12 install.", 1967 - "display_name": "Bundled Python 3.9" 1968 }, 1969 "id": "bundled-python3", 1970 "is_configuration": false, ··· 1982 "platform_required": false, 1983 "version": { 1984 "build_number": 0, 1985 - "version_string": "3.9.12" 1986 } 1987 }, 1988 { ··· 1991 "core" 1992 ], 1993 "details": { 1994 - "description": "Provides stand-alone Python 3.9.17 installation for UNIX.", 1995 - "display_name": "Bundled Python 3.9" 1996 }, 1997 "id": "bundled-python3-unix", 1998 "is_configuration": false, ··· 2009 "platform_required": false, 2010 "version": { 2011 "build_number": 0, 2012 - "version_string": "3.9.17" 2013 } 2014 }, 2015 { 2016 "data": { 2017 - "checksum": "ad591cffcb3cb00ea73e1e8fa13d76d4ebeded14bb7d4d54f4dbd90cff79911c", 2018 - "contents_checksum": "d2c4025b7acd5008a935cbd1a71c399d28cb5723065576b1b31f917f10bb0479", 2019 - "size": 65481810, 2020 - "source": "components/google-cloud-sdk-bundled-python3-unix-linux-x86_64-20231023224440.tar.gz", 2021 "type": "tar" 2022 }, 2023 "dependencies": [ ··· 2025 "core" 2026 ], 2027 "details": { 2028 - "description": "Provides stand-alone Python 3.9.17 installation for UNIX.", 2029 - "display_name": "Bundled Python 3.9" 2030 }, 2031 "id": "bundled-python3-unix-linux-x86_64", 2032 "is_configuration": false, ··· 2042 }, 2043 "platform_required": false, 2044 "version": { 2045 - "build_number": 20231023224440, 2046 - "version_string": "3.9.17" 2047 } 2048 }, 2049 { 2050 "data": { 2051 - "checksum": "f893470fa6f4cabc0bbbd73275b563b9c97682fd199514440c9027b6c5b94b54", 2052 - "contents_checksum": "c486cae0284bb1138814cf54bb930441fd39d9ff791366a564d27d6bfac7a789", 2053 - "size": 20778243, 2054 - "source": "components/google-cloud-sdk-bundled-python3-windows-x86-20231016163610.tar.gz", 2055 "type": "tar" 2056 }, 2057 "dependencies": [ ··· 2059 "core" 2060 ], 2061 "details": { 2062 - "description": "Provides stand-alone Python 3.9.12 install.", 2063 - "display_name": "Bundled Python 3.9" 2064 }, 2065 "id": "bundled-python3-windows-x86", 2066 "is_configuration": false, ··· 2076 }, 2077 "platform_required": false, 2078 "version": { 2079 - "build_number": 20231016163610, 2080 - "version_string": "3.9.12" 2081 } 2082 }, 2083 { 2084 "data": { 2085 - "checksum": "cabdb1da4996629632a90399276a75058e46be4a6b92019960c4bdb62efcc4ea", 2086 - "contents_checksum": "3bb2ec678153e5bd214be0439970173d86729baaa33f06176bd2ec8435d4304d", 2087 - "size": 22193214, 2088 - "source": "components/google-cloud-sdk-bundled-python3-windows-x86_64-20231016163610.tar.gz", 2089 "type": "tar" 2090 }, 2091 "dependencies": [ ··· 2093 "core" 2094 ], 2095 "details": { 2096 - "description": "Provides stand-alone Python 3.9.12 install.", 2097 - "display_name": "Bundled Python 3.9" 2098 }, 2099 "id": "bundled-python3-windows-x86_64", 2100 "is_configuration": false, ··· 2110 }, 2111 "platform_required": false, 2112 "version": { 2113 - "build_number": 20231016163610, 2114 - "version_string": "3.9.12" 2115 } 2116 }, 2117 { ··· 2148 "platform_required": false, 2149 "version": { 2150 "build_number": 0, 2151 - "version_string": "0.16.2" 2152 } 2153 }, 2154 { 2155 "data": { 2156 - "checksum": "4cec674242be0d7a3de6d830325ef93d0b554eeab10431eaf0706199434d937c", 2157 - "contents_checksum": "c08a0d1bafbfc51f2aac4555268f1e1dba13f8222454ee8315a7855a114c7216", 2158 - "size": 16254518, 2159 - "source": "components/google-cloud-sdk-cbt-darwin-arm-20231006153333.tar.gz", 2160 "type": "tar" 2161 }, 2162 "dependencies": [ ··· 2180 }, 2181 "platform_required": false, 2182 "version": { 2183 - "build_number": 20231006153333, 2184 - "version_string": "0.16.2" 2185 } 2186 }, 2187 { ··· 2219 }, 2220 { 2221 "data": { 2222 - "checksum": "cab9647842e2c6702f739bcf7f4a390098a245f58798035914d47b2e023f5003", 2223 - "contents_checksum": "5437ed3b7499b97a8dc71d81f1446b429ca635676fdaada94e5089d181f851f1", 2224 - "size": 16717237, 2225 - "source": "components/google-cloud-sdk-cbt-darwin-x86_64-20231006153333.tar.gz", 2226 "type": "tar" 2227 }, 2228 "dependencies": [ ··· 2246 }, 2247 "platform_required": false, 2248 "version": { 2249 - "build_number": 20231006153333, 2250 - "version_string": "0.16.2" 2251 } 2252 }, 2253 { 2254 "data": { 2255 - "checksum": "50481ebc4a0a82e068b9d11e8af938c81dceae23f39a5d7eff888c5d9d29d379", 2256 - "contents_checksum": "f1a58b3ed33e5728def81f61e7e28b46239f0a2a0201fc9685d808d11df38f3b", 2257 - "size": 15863768, 2258 - "source": "components/google-cloud-sdk-cbt-linux-arm-20231006153333.tar.gz", 2259 "type": "tar" 2260 }, 2261 "dependencies": [ ··· 2279 }, 2280 "platform_required": false, 2281 "version": { 2282 - "build_number": 20231006153333, 2283 - "version_string": "0.16.2" 2284 } 2285 }, 2286 { 2287 "data": { 2288 - "checksum": "5a5539eab4133fade3206d5f7b546e8d51a5af18c0ac3f0b6ada98249847fa1e", 2289 - "contents_checksum": "961c6d25d74bae5b5c00b4e0d48393702c529ac0b1de2b85056f07d63933eb8d", 2290 - "size": 16051931, 2291 - "source": "components/google-cloud-sdk-cbt-linux-x86-20231006153333.tar.gz", 2292 "type": "tar" 2293 }, 2294 "dependencies": [ ··· 2312 }, 2313 "platform_required": false, 2314 "version": { 2315 - "build_number": 20231006153333, 2316 - "version_string": "0.16.2" 2317 } 2318 }, 2319 { 2320 "data": { 2321 - "checksum": "74d5a97a01d246acda0897004a5ece95f9c9ced8aa3c89f0e8cf742edd4284b3", 2322 - "contents_checksum": "5fdf279f55e77702b62280f58d19f5eb0adcd5d81e20f76cc7759de07a224ca3", 2323 - "size": 16868331, 2324 - "source": "components/google-cloud-sdk-cbt-linux-x86_64-20231006153333.tar.gz", 2325 "type": "tar" 2326 }, 2327 "dependencies": [ ··· 2345 }, 2346 "platform_required": false, 2347 "version": { 2348 - "build_number": 20231006153333, 2349 - "version_string": "0.16.2" 2350 } 2351 }, 2352 { 2353 "data": { 2354 - "checksum": "97b355f30dd40324f7724eb8a1e269d857316796a6d42fdcf3805fce9cefa402", 2355 - "contents_checksum": "e824180249e02e5d9c8805faa2cbbc1a237bac7fe53925d6290943234e42cf8c", 2356 - "size": 16305542, 2357 - "source": "components/google-cloud-sdk-cbt-windows-x86-20231006153333.tar.gz", 2358 "type": "tar" 2359 }, 2360 "dependencies": [ ··· 2378 }, 2379 "platform_required": false, 2380 "version": { 2381 - "build_number": 20231006153333, 2382 - "version_string": "0.16.2" 2383 } 2384 }, 2385 { 2386 "data": { 2387 - "checksum": "fc7d710003577bf740e4d8dd5f6ad3929620a7f088c1de321a41ff229acb6084", 2388 - "contents_checksum": "038673c9ff153e08f9e4cb6af1c7963483796d3f6654e746cb5bf414ff4a63ee", 2389 - "size": 16944208, 2390 - "source": "components/google-cloud-sdk-cbt-windows-x86_64-20231006153333.tar.gz", 2391 "type": "tar" 2392 }, 2393 "dependencies": [ ··· 2411 }, 2412 "platform_required": false, 2413 "version": { 2414 - "build_number": 20231006153333, 2415 - "version_string": "0.16.2" 2416 } 2417 }, 2418 { ··· 2572 }, 2573 { 2574 "data": { 2575 - "checksum": "1822e13b021d42edf1ee3d648b00be30960a57d3c74de708a14dd9758bb8f466", 2576 - "contents_checksum": "16cc1f413795a2197704184256179a5c65eb11b66d8af59f209bfbda798df11b", 2577 - "size": 44883913, 2578 - "source": "components/google-cloud-sdk-cloud-firestore-emulator-20230915145114.tar.gz", 2579 "type": "tar" 2580 }, 2581 "dependencies": [ ··· 2592 "platform": {}, 2593 "platform_required": false, 2594 "version": { 2595 - "build_number": 20230915145114, 2596 - "version_string": "1.18.2" 2597 } 2598 }, 2599 { ··· 2818 "platform_required": false, 2819 "version": { 2820 "build_number": 0, 2821 - "version_string": "1.5.10" 2822 } 2823 }, 2824 { 2825 "data": { 2826 - "checksum": "7460e9a21137063a8f9f8143f6da86d39d3fde425a956240b695924d45bf3e2f", 2827 - "contents_checksum": "3617a6b7497fc5cc13cb5764e374816940474072d2db432342c1bf0f6844f1c5", 2828 - "size": 36939704, 2829 - "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20230922151743.tar.gz", 2830 "type": "tar" 2831 }, 2832 "dependencies": [ ··· 2851 }, 2852 "platform_required": false, 2853 "version": { 2854 - "build_number": 20230922151743, 2855 - "version_string": "1.5.10" 2856 } 2857 }, 2858 { ··· 3322 }, 3323 { 3324 "data": { 3325 - "checksum": "8197db59e523d340b2da73594807ac5a2c0a09d2899fa5adb71cc6dbdb64c63e", 3326 - "contents_checksum": "a788f4961a718e4bc4717a5149874353b83ba4ad01f6587725d48bc2e689a07d", 3327 - "size": 23032301, 3328 - "source": "components/google-cloud-sdk-core-20231025210228.tar.gz", 3329 "type": "tar" 3330 }, 3331 "dependencies": [ ··· 3346 "platform": {}, 3347 "platform_required": false, 3348 "version": { 3349 - "build_number": 20231025210228, 3350 - "version_string": "2023.10.25" 3351 } 3352 }, 3353 { 3354 "data": { 3355 - "checksum": "0d68f826ada61d2ab98721bbab6c94132a1c210080fdd85c750073e009ae6d39", 3356 - "contents_checksum": "3e23fcf9fd07d22bf46bca03f951e715a328cb8420e09f34ce2e7f5ef401b982", 3357 - "size": 2402, 3358 - "source": "components/google-cloud-sdk-core-nix-20231025210228.tar.gz", 3359 "type": "tar" 3360 }, 3361 "dependencies": [ ··· 3382 }, 3383 "platform_required": false, 3384 "version": { 3385 - "build_number": 20231025210228, 3386 - "version_string": "2023.10.25" 3387 } 3388 }, 3389 { 3390 "data": { 3391 - "checksum": "0af3f8e9ba07b24f3821758107b18d273edf7fa7703ff4d659b9732e84a73a37", 3392 - "contents_checksum": "2ac264344fcf75702a4770bfcba3e6f47573351303cbba558bcde7f8c32cc731", 3393 - "size": 3200, 3394 - "source": "components/google-cloud-sdk-core-win-20230915145114.tar.gz", 3395 "type": "tar" 3396 }, 3397 "dependencies": [ ··· 3415 }, 3416 "platform_required": false, 3417 "version": { 3418 - "build_number": 20230915145114, 3419 - "version_string": "2023.09.15" 3420 } 3421 }, 3422 { ··· 3715 "platform_required": false, 3716 "version": { 3717 "build_number": 0, 3718 - "version_string": "0.2.1" 3719 } 3720 }, 3721 { 3722 "data": { 3723 - "checksum": "01c037710f20fe53e05715439a5de469469f10ee3953076c61387de8afc38d1d", 3724 - "contents_checksum": "367a10efe8b2bb1ca828cc4e91472f81dcbe3e51d98b16843ebe29e250201fab", 3725 - "size": 6390940, 3726 - "source": "components/google-cloud-sdk-enterprise-certificate-proxy-darwin-arm-20230224152814.tar.gz", 3727 "type": "tar" 3728 }, 3729 "dependencies": [ ··· 3747 }, 3748 "platform_required": false, 3749 "version": { 3750 - "build_number": 20230224152814, 3751 - "version_string": "0.2.1" 3752 } 3753 }, 3754 { 3755 "data": { 3756 - "checksum": "d0c4da5a4668b94ad0609f414beb05fad1e6ca153b28baa846155b9d6e353a64", 3757 - "contents_checksum": "9f784ec794093b9aa6867dd9895ca93f7b01eef4bc5a1893303e39e2d2141a31", 3758 - "size": 7001595, 3759 - "source": "components/google-cloud-sdk-enterprise-certificate-proxy-darwin-x86_64-20230224152814.tar.gz", 3760 "type": "tar" 3761 }, 3762 "dependencies": [ ··· 3780 }, 3781 "platform_required": false, 3782 "version": { 3783 - "build_number": 20230224152814, 3784 - "version_string": "0.2.1" 3785 } 3786 }, 3787 { 3788 "data": { 3789 - "checksum": "01ac1d6276ab45779d87f28970906b050aa1d91d113a76ba1c62a40895519e8a", 3790 - "contents_checksum": "5dd83c5800e0c515bfc776f8e92e2c8e5c70d84089ccdba9eeb81cc3cd579adb", 3791 - "size": 8611365, 3792 - "source": "components/google-cloud-sdk-enterprise-certificate-proxy-linux-x86_64-20230714124024.tar.gz", 3793 "type": "tar" 3794 }, 3795 "dependencies": [ ··· 3813 }, 3814 "platform_required": false, 3815 "version": { 3816 - "build_number": 20230714124024, 3817 - "version_string": "0.2.1" 3818 } 3819 }, 3820 { 3821 "data": { 3822 - "checksum": "211f5ac63a9397b6f7ac95d22fd34e18c98b348acfdb2cbf3bcd1384ee1deeb0", 3823 - "contents_checksum": "16743f19efef5cd51b3f1038e27a60ef68f626317a700acd6a25e2f72e381992", 3824 - "size": 6778179, 3825 - "source": "components/google-cloud-sdk-enterprise-certificate-proxy-windows-x86_64-20230519173220.tar.gz", 3826 "type": "tar" 3827 }, 3828 "dependencies": [ ··· 3846 }, 3847 "platform_required": false, 3848 "version": { 3849 - "build_number": 20230519173220, 3850 - "version_string": "0.2.1" 3851 } 3852 }, 3853 { ··· 3907 }, 3908 { 3909 "data": { 3910 - "checksum": "535ce4686c07b3bac76f7b107828d4059bf598c92aefac1ebb55d911d90cbc4c", 3911 - "contents_checksum": "e3b7aacbdc4d8a5adbf88bee4ac738d9e51755b994a700135dbfd8a758a054c2", 3912 - "size": 1243996, 3913 - "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-arm-20231023224440.tar.gz", 3914 "type": "tar" 3915 }, 3916 "dependencies": [ ··· 3934 }, 3935 "platform_required": false, 3936 "version": { 3937 - "build_number": 20231023224440, 3938 "version_string": "1.0.0" 3939 } 3940 }, 3941 { 3942 "data": { 3943 - "checksum": "00972aba9c56aa0bc4916798ab672cc1e6806e76b00783e15b5c5bbc4e804900", 3944 - "contents_checksum": "2db99100afdae388afbf96ba0440977d1ab0e9b1fdaa997fac07c5d2c9d6040e", 3945 - "size": 1284906, 3946 - "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-x86_64-20231023224440.tar.gz", 3947 "type": "tar" 3948 }, 3949 "dependencies": [ ··· 3967 }, 3968 "platform_required": false, 3969 "version": { 3970 - "build_number": 20231023224440, 3971 "version_string": "1.0.0" 3972 } 3973 }, 3974 { 3975 "data": { 3976 - "checksum": "d978d88831992d75a8d1c506c661e3caa702b65acb13bb881f7d2847360836ab", 3977 - "contents_checksum": "bc5cd52ce1950d6ac8b24d8f8a00c4bbf7f6af82a908fbe2be630b75ecfc35da", 3978 - "size": 1217581, 3979 - "source": "components/google-cloud-sdk-gcloud-crc32c-linux-arm-20231023224440.tar.gz", 3980 "type": "tar" 3981 }, 3982 "dependencies": [ ··· 4000 }, 4001 "platform_required": false, 4002 "version": { 4003 - "build_number": 20231023224440, 4004 "version_string": "1.0.0" 4005 } 4006 }, 4007 { 4008 "data": { 4009 - "checksum": "5abf460069b1f95004805a1f3469061dc340dda0a44fe89fa969e9693cfdd1c1", 4010 - "contents_checksum": "6a50901818b7cd1a27b2229b350f1869edea9c6aa3bf62a526679b81e967e5f0", 4011 - "size": 1236281, 4012 - "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86-20231023224440.tar.gz", 4013 "type": "tar" 4014 }, 4015 "dependencies": [ ··· 4033 }, 4034 "platform_required": false, 4035 "version": { 4036 - "build_number": 20231023224440, 4037 "version_string": "1.0.0" 4038 } 4039 }, 4040 { 4041 "data": { 4042 - "checksum": "ec15e4bb7d1a361ae7d931c79626b7a27ded310f118208b5b80e6d54b4f7c793", 4043 - "contents_checksum": "3d6e552b35cbf9a7cb8e34026d14de0422241344032487ff418514503c133ad4", 4044 - "size": 1289207, 4045 - "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86_64-20231023224440.tar.gz", 4046 "type": "tar" 4047 }, 4048 "dependencies": [ ··· 4066 }, 4067 "platform_required": false, 4068 "version": { 4069 - "build_number": 20231023224440, 4070 "version_string": "1.0.0" 4071 } 4072 }, 4073 { 4074 "data": { 4075 - "checksum": "98febf85b26c1a33eb215b2af9f3c8bee847ee71c84be463b26b6d0a763f6400", 4076 - "contents_checksum": "2e7b929903bc28273be12f0c28dbd68c51315a66600c9751e749ff448d89696f", 4077 - "size": 1268435, 4078 - "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86-20231023224440.tar.gz", 4079 "type": "tar" 4080 }, 4081 "dependencies": [ ··· 4099 }, 4100 "platform_required": false, 4101 "version": { 4102 - "build_number": 20231023224440, 4103 "version_string": "1.0.0" 4104 } 4105 }, 4106 { 4107 "data": { 4108 - "checksum": "a5ed8bb33c67304f57f1ab4c1922f0396565e868dd938b49ce9434a87992a5b8", 4109 - "contents_checksum": "0c794abb07a045e2c0110bbda9e4033410bb8b7a3d9ddcd329777626ab36d2b3", 4110 - "size": 1322057, 4111 - "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86_64-20231023224440.tar.gz", 4112 "type": "tar" 4113 }, 4114 "dependencies": [ ··· 4132 }, 4133 "platform_required": false, 4134 "version": { 4135 - "build_number": 20231023224440, 4136 "version_string": "1.0.0" 4137 } 4138 }, 4139 { 4140 "data": { 4141 - "checksum": "e6ff194b0ebb57cfca1c65a600e852bd5760a7257afb6240a0ed470ff0965fe0", 4142 - "contents_checksum": "25b6e403e06e65b9205d1258a1b9e09e5e84efb20007e5f940b90af41e3e7873", 4143 - "size": 12282466, 4144 - "source": "components/google-cloud-sdk-gcloud-deps-20231025210228.tar.gz", 4145 "type": "tar" 4146 }, 4147 "dependencies": [ ··· 4164 "platform": {}, 4165 "platform_required": false, 4166 "version": { 4167 - "build_number": 20231025210228, 4168 - "version_string": "2023.10.25" 4169 } 4170 }, 4171 { ··· 4401 }, 4402 { 4403 "data": { 4404 - "checksum": "a437611fe8ca14e5fbeada917374b7cd2f7d56ad2212e51b80fcb9e7b036a21a", 4405 - "contents_checksum": "4272d2b5be6e3778aaddfdd6a9d555b6dcf31d27428ed7d4aea76e68dfe5f839", 4406 - "size": 6464999, 4407 - "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20231023224440.tar.gz", 4408 "type": "tar" 4409 }, 4410 "dependencies": [ ··· 4429 }, 4430 "platform_required": false, 4431 "version": { 4432 - "build_number": 20231023224440, 4433 "version_string": "" 4434 } 4435 }, ··· 4466 "platform_required": false, 4467 "version": { 4468 "build_number": 0, 4469 - "version_string": "0.5.6" 4470 } 4471 }, 4472 { 4473 "data": { 4474 - "checksum": "748941d0f1088368cddbff04350c1156eb6c0b941fb4a8281f90e715de91600c", 4475 - "contents_checksum": "2e92b76de260589610789902d43950f9c23035d9492e9acde1ab81c2ce1b6f86", 4476 - "size": 7760852, 4477 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-darwin-arm-20230915145114.tar.gz", 4478 "type": "tar" 4479 }, 4480 "dependencies": [ ··· 4498 }, 4499 "platform_required": false, 4500 "version": { 4501 - "build_number": 20230915145114, 4502 - "version_string": "0.5.6" 4503 } 4504 }, 4505 { 4506 "data": { 4507 - "checksum": "87e8b9fa1ab657e6f9059b3e73987cdbcafcd0a54a7c0695933a1a630e8c40b6", 4508 - "contents_checksum": "e93346a6bed20405a41737b6894e5555fe6e65ff84e0c4dfef1c1ca8fbc8759a", 4509 - "size": 8135789, 4510 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-darwin-x86_64-20230915145114.tar.gz", 4511 "type": "tar" 4512 }, 4513 "dependencies": [ ··· 4531 }, 4532 "platform_required": false, 4533 "version": { 4534 - "build_number": 20230915145114, 4535 - "version_string": "0.5.6" 4536 } 4537 }, 4538 { 4539 "data": { 4540 - "checksum": "ba39fbdeae5f44a54a83a730d8df93a0b9ce7e18369dabe6f87b023b06b27632", 4541 - "contents_checksum": "4fe1de8207994103e77bad7d93ebcc9bffde9cb4fa03fd6d658f009454863ba6", 4542 - "size": 7669387, 4543 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-linux-arm-20230915145114.tar.gz", 4544 "type": "tar" 4545 }, 4546 "dependencies": [ ··· 4564 }, 4565 "platform_required": false, 4566 "version": { 4567 - "build_number": 20230915145114, 4568 - "version_string": "0.5.6" 4569 } 4570 }, 4571 { 4572 "data": { 4573 - "checksum": "dde5954dc3e5aeb70dd031d1f9dc06ca91fbfef353786dc7aeaf08fe47b8349e", 4574 - "contents_checksum": "23d71fc214901822027f64f6096b3a6559d963432c189b3bacc7ecf5bf36aef6", 4575 - "size": 8185793, 4576 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-linux-x86-20230915145114.tar.gz", 4577 "type": "tar" 4578 }, 4579 "dependencies": [ ··· 4597 }, 4598 "platform_required": false, 4599 "version": { 4600 - "build_number": 20230915145114, 4601 - "version_string": "0.5.6" 4602 } 4603 }, 4604 { 4605 "data": { 4606 - "checksum": "d8d9359bbbb0b8e2761bda8a315a50ad1580450d32e4b31d43da1805c408ec9a", 4607 - "contents_checksum": "08767b975276ca0651442a13bb7319c3c065dca875cf416a27251cf2093d576a", 4608 - "size": 8298454, 4609 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-linux-x86_64-20230915145114.tar.gz", 4610 "type": "tar" 4611 }, 4612 "dependencies": [ ··· 4630 }, 4631 "platform_required": false, 4632 "version": { 4633 - "build_number": 20230915145114, 4634 - "version_string": "0.5.6" 4635 } 4636 }, 4637 { 4638 "data": { 4639 - "checksum": "4e53ce9e76364f936a3730aa26d8396fc905443093bfcba5107e50d999767a28", 4640 - "contents_checksum": "e13da874c2f1330b78675428fbf7aead7c0f4a4bb8152c911906659d1e7923bb", 4641 - "size": 8294371, 4642 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-windows-x86-20230915145114.tar.gz", 4643 "type": "tar" 4644 }, 4645 "dependencies": [ ··· 4663 }, 4664 "platform_required": false, 4665 "version": { 4666 - "build_number": 20230915145114, 4667 - "version_string": "0.5.6" 4668 } 4669 }, 4670 { 4671 "data": { 4672 - "checksum": "72c35b4ec450e1e30e301e681c322bb2ddd8c9158b60f6d7a6c86f5d1d082396", 4673 - "contents_checksum": "1a1de077982ffdcb3762e47dea8d515cfe301ec2fab336aa2d3f968a142cff56", 4674 - "size": 8448839, 4675 - "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-windows-x86_64-20230915145114.tar.gz", 4676 "type": "tar" 4677 }, 4678 "dependencies": [ ··· 4696 }, 4697 "platform_required": false, 4698 "version": { 4699 - "build_number": 20230915145114, 4700 - "version_string": "0.5.6" 4701 } 4702 }, 4703 { ··· 4730 }, 4731 { 4732 "data": { 4733 - "checksum": "140a65cc728b7d7f0e0018c85f30ea6e7a0cae5e59af15fa51a6f1156f598ec8", 4734 - "contents_checksum": "865d885b3c86680b0f5581236d54916c71c2672b13e32c2c5b1d213429291bdf", 4735 - "size": 2035, 4736 - "source": "components/google-cloud-sdk-gsutil-nix-20231025210228.tar.gz", 4737 "type": "tar" 4738 }, 4739 "dependencies": [ ··· 4758 }, 4759 "platform_required": false, 4760 "version": { 4761 - "build_number": 20231025210228, 4762 "version_string": "5.27" 4763 } 4764 }, 4765 { 4766 "data": { 4767 - "checksum": "f44dc54214254bc4c977ac3635113b9299fc7077e2ff2ba649718b0b2b9754ee", 4768 - "contents_checksum": "d7ff72a9837188a8f602ba4833ea0f38bb0a55ac160121c59dba0b72fae4064e", 4769 - "size": 4125, 4770 - "source": "components/google-cloud-sdk-gsutil-win-20231025210228.tar.gz", 4771 "type": "tar" 4772 }, 4773 "dependencies": [ ··· 4789 }, 4790 "platform_required": false, 4791 "version": { 4792 - "build_number": 20231025210228, 4793 "version_string": "5.27" 4794 } 4795 }, ··· 4854 }, 4855 { 4856 "dependencies": [ 4857 "kpt-darwin-arm", 4858 "kpt-darwin-x86_64", 4859 "kpt-linux-arm", ··· 4880 "platform_required": false, 4881 "version": { 4882 "build_number": 0, 4883 - "version_string": "1.0.0-beta.45" 4884 } 4885 }, 4886 { 4887 "data": { 4888 - "checksum": "165e0d01221c66f8a02ca770a613af9e10ca84c301908cee016c4b9f62228c90", 4889 - "contents_checksum": "d69220663dd3189ef2d75698793f173994662ab4a1331f832cce561122dd3347", 4890 - "size": 15098362, 4891 - "source": "components/google-cloud-sdk-kpt-darwin-arm-20231006153333.tar.gz", 4892 "type": "tar" 4893 }, 4894 "dependencies": [ ··· 4912 }, 4913 "platform_required": false, 4914 "version": { 4915 - "build_number": 20231006153333, 4916 - "version_string": "1.0.0-beta.45" 4917 } 4918 }, 4919 { 4920 "data": { 4921 - "checksum": "8a507cc40d952611f0d3d7ef881cd2564be93a09d91a01c8d9af13a8477eebe8", 4922 - "contents_checksum": "bba9c09fe778ebccbeb4c2d77f7fa1a008fc134eebc024d3cfa74ad8737de55d", 4923 - "size": 15865808, 4924 - "source": "components/google-cloud-sdk-kpt-darwin-x86_64-20231006153333.tar.gz", 4925 "type": "tar" 4926 }, 4927 "dependencies": [ ··· 4945 }, 4946 "platform_required": false, 4947 "version": { 4948 - "build_number": 20231006153333, 4949 - "version_string": "1.0.0-beta.45" 4950 } 4951 }, 4952 { 4953 "data": { 4954 - "checksum": "00242648b8722bdecbbc422dfe5e947a711d14aeb9adb575cb664e07b61a16c0", 4955 - "contents_checksum": "b7acebf0b9a28366a0a7ee8f283bb01baa7ba9ab0c85a31d994604c9ee62e587", 4956 - "size": 13639470, 4957 - "source": "components/google-cloud-sdk-kpt-linux-arm-20231006153333.tar.gz", 4958 "type": "tar" 4959 }, 4960 "dependencies": [ ··· 4978 }, 4979 "platform_required": false, 4980 "version": { 4981 - "build_number": 20231006153333, 4982 - "version_string": "1.0.0-beta.45" 4983 } 4984 }, 4985 { 4986 "data": { 4987 - "checksum": "d429dbc12345c454e5494e3312bdff83d39ad5793a05423c4ae5fc07a8128aba", 4988 - "contents_checksum": "2d9bc0d3ace7952ca0e3e37df2545c0d30734162edd151f7759a75a186134604", 4989 - "size": 15103896, 4990 - "source": "components/google-cloud-sdk-kpt-linux-x86_64-20231006153333.tar.gz", 4991 "type": "tar" 4992 }, 4993 "dependencies": [ ··· 5011 }, 5012 "platform_required": false, 5013 "version": { 5014 - "build_number": 20231006153333, 5015 - "version_string": "1.0.0-beta.45" 5016 } 5017 }, 5018 { 5019 "data": { 5020 - "checksum": "1856710bc0df7be64bab8bf90cb5efb07dc3ea87affbd82d5fb95b1a87a0fd38", 5021 - "contents_checksum": "40d66e6d7f3852fcf4d60000bb89743f36516642a9fb5e4b4ac72d5db2b7d00f", 5022 - "size": 35802, 5023 - "source": "components/google-cloud-sdk-kubectl-20230901141909.tar.gz", 5024 "type": "tar" 5025 }, 5026 "dependencies": [ ··· 5044 "platform": {}, 5045 "platform_required": true, 5046 "version": { 5047 - "build_number": 20230901141909, 5048 - "version_string": "1.27.5" 5049 } 5050 }, 5051 { 5052 "data": { 5053 - "checksum": "98705f1c24b4deb4c4705890b9d96cf7304b8df3f9fa21d16d971b1e8d577c85", 5054 - "contents_checksum": "713724b4e531400e61289f6649a0ebc2a390c23c17f9b13cf36ddf713e8c6fff", 5055 - "size": 103078284, 5056 - "source": "components/google-cloud-sdk-kubectl-darwin-arm-20230901141909.tar.gz", 5057 "type": "tar" 5058 }, 5059 "dependencies": [ ··· 5078 }, 5079 "platform_required": true, 5080 "version": { 5081 - "build_number": 20230901141909, 5082 - "version_string": "1.27.5" 5083 } 5084 }, 5085 { 5086 "data": { 5087 - "checksum": "89fd68aa32498f5fa73e569cc6897c6ef2d12c822870703ce2cc004711260ca6", 5088 - "contents_checksum": "76c149262b6b45f75eec6d812f6c800924ddc42627bdfa757fbe8ba57c87c856", 5089 - "size": 108009509, 5090 - "source": "components/google-cloud-sdk-kubectl-darwin-x86_64-20230901141909.tar.gz", 5091 "type": "tar" 5092 }, 5093 "dependencies": [ ··· 5112 }, 5113 "platform_required": true, 5114 "version": { 5115 - "build_number": 20230901141909, 5116 - "version_string": "1.27.5" 5117 } 5118 }, 5119 { 5120 "data": { 5121 - "checksum": "277ce37c99d1da67302f0b96be2f81712c7655b8bd6e8a681e5ec42c7e839f3d", 5122 - "contents_checksum": "603f81934af743bec8493385ef0742e396547ab8d4730f1b25243ce6f9d6583c", 5123 - "size": 96034568, 5124 - "source": "components/google-cloud-sdk-kubectl-linux-arm-20230901141909.tar.gz", 5125 "type": "tar" 5126 }, 5127 "dependencies": [ ··· 5146 }, 5147 "platform_required": true, 5148 "version": { 5149 - "build_number": 20230901141909, 5150 - "version_string": "1.27.5" 5151 } 5152 }, 5153 { 5154 "data": { 5155 - "checksum": "d0aa47c656c3f62b046fcdebe292fdd4277423d27ae82e076b33b7ca9c39eefb", 5156 - "contents_checksum": "da0be2ec150a1178b21e571fc31f3a0c1bc97aec8808add47123f958c8c3f622", 5157 - "size": 96964577, 5158 - "source": "components/google-cloud-sdk-kubectl-linux-x86-20230901141909.tar.gz", 5159 "type": "tar" 5160 }, 5161 "dependencies": [ ··· 5180 }, 5181 "platform_required": true, 5182 "version": { 5183 - "build_number": 20230901141909, 5184 - "version_string": "1.27.5" 5185 } 5186 }, 5187 { 5188 "data": { 5189 - "checksum": "7ea12e2911cf031f4f1642d9be5a0336c9142d84b3e9511c2405ab742cddab5b", 5190 - "contents_checksum": "651b0f1e393ec6903229f7c170d1d54a41066fe5cfd6dd233c5a24e7ce08fb4d", 5191 - "size": 102779659, 5192 - "source": "components/google-cloud-sdk-kubectl-linux-x86_64-20230901141909.tar.gz", 5193 "type": "tar" 5194 }, 5195 "dependencies": [ ··· 5214 }, 5215 "platform_required": true, 5216 "version": { 5217 - "build_number": 20230901141909, 5218 - "version_string": "1.27.5" 5219 } 5220 }, 5221 { ··· 5248 "platform_required": false, 5249 "version": { 5250 "build_number": 0, 5251 - "version_string": "1.4.4" 5252 } 5253 }, 5254 { 5255 "data": { 5256 - "checksum": "a7d9d1a977856dc342b82936bedfda0032e27ec4657fd380048cd7dc5de05039", 5257 - "contents_checksum": "2d656b34043e23ff6a98a7fb432efa86d251eb0b14c4452d17c537dc02e04eaf", 5258 - "size": 20108100, 5259 - "source": "components/google-cloud-sdk-kubectl-oidc-darwin-arm-20220923141408.tar.gz", 5260 "type": "tar" 5261 }, 5262 "dependencies": [ ··· 5280 }, 5281 "platform_required": false, 5282 "version": { 5283 - "build_number": 20220923141408, 5284 - "version_string": "1.4.4" 5285 } 5286 }, 5287 { 5288 "data": { 5289 - "checksum": "1d6d08431d911928ef8500d1979720278f8116e86ae52afc32ce0b76ec4a5fb0", 5290 - "contents_checksum": "497465b1a0c3a6781d2bb0b68a951af0a4d2230ae67caa84288d38b853800a53", 5291 - "size": 21183987, 5292 - "source": "components/google-cloud-sdk-kubectl-oidc-darwin-x86_64-20220923141408.tar.gz", 5293 "type": "tar" 5294 }, 5295 "dependencies": [ ··· 5313 }, 5314 "platform_required": false, 5315 "version": { 5316 - "build_number": 20220923141408, 5317 - "version_string": "1.4.4" 5318 } 5319 }, 5320 { 5321 "data": { 5322 - "checksum": "87550a6e878b3091c8da5df8380c65f9e2579f012b7cbddc3e64fb637906fc38", 5323 - "contents_checksum": "2c33c85c5826938f014a33c21d28289676cccc09d7ffb87368fd94faf43b6cc1", 5324 - "size": 19755678, 5325 - "source": "components/google-cloud-sdk-kubectl-oidc-linux-arm-20220923141408.tar.gz", 5326 "type": "tar" 5327 }, 5328 "dependencies": [ ··· 5346 }, 5347 "platform_required": false, 5348 "version": { 5349 - "build_number": 20220923141408, 5350 - "version_string": "1.4.4" 5351 } 5352 }, 5353 { 5354 "data": { 5355 - "checksum": "cd6945af71ecfdf94c693ee22b7629ad62dc650cf0c19d58761fe260f792e36f", 5356 - "contents_checksum": "c2092312910a7e7e86adcd8d72c9e97d7d9757d6dce2f3e24124d9bcadd0d9eb", 5357 - "size": 21362894, 5358 - "source": "components/google-cloud-sdk-kubectl-oidc-linux-x86_64-20220923141408.tar.gz", 5359 "type": "tar" 5360 }, 5361 "dependencies": [ ··· 5379 }, 5380 "platform_required": false, 5381 "version": { 5382 - "build_number": 20220923141408, 5383 - "version_string": "1.4.4" 5384 } 5385 }, 5386 { 5387 "data": { 5388 - "checksum": "2cf3f2460446692a81c888ec16ac7cbd838fd83acdec46e99bd9225ed49a5d67", 5389 - "contents_checksum": "6477f1e7ad0e16d891b1b47c201c2bf0e4409789893be60e1697593c58f74025", 5390 - "size": 21470876, 5391 - "source": "components/google-cloud-sdk-kubectl-oidc-windows-x86_64-20220923141408.tar.gz", 5392 "type": "tar" 5393 }, 5394 "dependencies": [ ··· 5412 }, 5413 "platform_required": false, 5414 "version": { 5415 - "build_number": 20220923141408, 5416 - "version_string": "1.4.4" 5417 } 5418 }, 5419 { 5420 "data": { 5421 - "checksum": "f0f671d703d9f167ad6bd3eaa6160a1f3612f55cb4224a7f5d6e32fe24aad4bf", 5422 - "contents_checksum": "97933ed5d6afd63a6d24200980cadc6ebcfe962827cb1cc5fff294f425b02225", 5423 - "size": 101631898, 5424 - "source": "components/google-cloud-sdk-kubectl-windows-x86-20230901141909.tar.gz", 5425 "type": "tar" 5426 }, 5427 "dependencies": [ ··· 5448 }, 5449 "platform_required": true, 5450 "version": { 5451 - "build_number": 20230901141909, 5452 - "version_string": "1.27.5" 5453 } 5454 }, 5455 { 5456 "data": { 5457 - "checksum": "be9dfaab70e30013b181ca6b01db0cbe33a9998c8b42b294cb6ae42586c08dcb", 5458 - "contents_checksum": "8646408cad8f64abcbf575a5b9606d304d3f0a1c914b5c7ba4148d4024c22b34", 5459 - "size": 103973366, 5460 - "source": "components/google-cloud-sdk-kubectl-windows-x86_64-20230901141909.tar.gz", 5461 "type": "tar" 5462 }, 5463 "dependencies": [ ··· 5484 }, 5485 "platform_required": true, 5486 "version": { 5487 - "build_number": 20230901141909, 5488 - "version_string": "1.27.5" 5489 } 5490 }, 5491 { ··· 6042 "platform_required": false, 6043 "version": { 6044 "build_number": 0, 6045 - "version_string": "1.31.2" 6046 } 6047 }, 6048 { 6049 "data": { 6050 - "checksum": "78205e250353829eef8e4226427043612a26df3751750bdfeb4ce5096534477b", 6051 - "contents_checksum": "989ca8305dc5b0ac3ea012bde522d707e7893ec7b5601476015be170587c2484", 6052 - "size": 34507436, 6053 - "source": "components/google-cloud-sdk-minikube-darwin-arm-20230822145232.tar.gz", 6054 "type": "tar" 6055 }, 6056 "dependencies": [ ··· 6074 }, 6075 "platform_required": false, 6076 "version": { 6077 - "build_number": 20230822145232, 6078 - "version_string": "1.31.2" 6079 } 6080 }, 6081 { 6082 "data": { 6083 - "checksum": "09de85445c6b3df96b513fa5ef0893e141f2dd276d6ebe2a5c14805e02966386", 6084 - "contents_checksum": "6599c91419fd71db290d9df3d12a37cb335d9e30c206533767bcbccfb8415894", 6085 - "size": 35694869, 6086 - "source": "components/google-cloud-sdk-minikube-darwin-x86_64-20230822145232.tar.gz", 6087 "type": "tar" 6088 }, 6089 "dependencies": [ ··· 6107 }, 6108 "platform_required": false, 6109 "version": { 6110 - "build_number": 20230822145232, 6111 - "version_string": "1.31.2" 6112 } 6113 }, 6114 { 6115 "data": { 6116 - "checksum": "01f5ee655a8877b9d55912694d634151f411f84f59489c8f61129e60eec1dfbb", 6117 - "contents_checksum": "bdd299c7575c1365a3ebb3ece947b735a51234851358d24c53997228351232c9", 6118 - "size": 33636964, 6119 - "source": "components/google-cloud-sdk-minikube-linux-arm-20230822145232.tar.gz", 6120 "type": "tar" 6121 }, 6122 "dependencies": [ ··· 6140 }, 6141 "platform_required": false, 6142 "version": { 6143 - "build_number": 20230822145232, 6144 - "version_string": "1.31.2" 6145 } 6146 }, 6147 { 6148 "data": { 6149 - "checksum": "567adccb2ee4f3112208def4dda54ec4ec96815a95499444efde14b240175fde", 6150 - "contents_checksum": "8a3e8c01ca983d10eda486ffcae60cf59d6a1e7fa09e2e4424e5ee56be742d07", 6151 - "size": 36252687, 6152 - "source": "components/google-cloud-sdk-minikube-linux-x86_64-20230822145232.tar.gz", 6153 "type": "tar" 6154 }, 6155 "dependencies": [ ··· 6173 }, 6174 "platform_required": false, 6175 "version": { 6176 - "build_number": 20230822145232, 6177 - "version_string": "1.31.2" 6178 } 6179 }, 6180 { 6181 "data": { 6182 - "checksum": "2fc9ea9e26e672d5369e63e4084520b7e252f9c9eabf9e63edc30f362b79c751", 6183 - "contents_checksum": "f31c9d1fd17b363be49476ea676866474dabd71904101bc9cb748c1c8d50efa1", 6184 - "size": 36153509, 6185 - "source": "components/google-cloud-sdk-minikube-windows-x86_64-20230822145232.tar.gz", 6186 "type": "tar" 6187 }, 6188 "dependencies": [ ··· 6206 }, 6207 "platform_required": false, 6208 "version": { 6209 - "build_number": 20230822145232, 6210 - "version_string": "1.31.2" 6211 } 6212 }, 6213 { ··· 6235 "platform_required": false, 6236 "version": { 6237 "build_number": 0, 6238 - "version_string": "1.16.2-rc.2" 6239 } 6240 }, 6241 { 6242 "data": { 6243 - "checksum": "e985978e6f21b67b026ac23882b40fde32fce195c3618c845dce6e05e145359f", 6244 - "contents_checksum": "21fb7c2de16364b3e011aa4364c7b724cd7aacdfa21610ad891c1b8c3a388e02", 6245 - "size": 29892791, 6246 - "source": "components/google-cloud-sdk-nomos-darwin-x86_64-20231023224440.tar.gz", 6247 "type": "tar" 6248 }, 6249 "dependencies": [ ··· 6267 }, 6268 "platform_required": false, 6269 "version": { 6270 - "build_number": 20231023224440, 6271 - "version_string": "1.16.2-rc.2" 6272 } 6273 }, 6274 { 6275 "data": { 6276 - "checksum": "413f599d671855ce7bd0002a35b0f6793041282463342206246e42c01fd9c9b8", 6277 - "contents_checksum": "ef98a3d5add19c22799e9fe9031487e542f779b31fa604db671775dcd592b739", 6278 - "size": 30473701, 6279 - "source": "components/google-cloud-sdk-nomos-linux-x86_64-20231023224440.tar.gz", 6280 "type": "tar" 6281 }, 6282 "dependencies": [ ··· 6300 }, 6301 "platform_required": false, 6302 "version": { 6303 - "build_number": 20231023224440, 6304 - "version_string": "1.16.2-rc.2" 6305 } 6306 }, 6307 { ··· 6581 }, 6582 { 6583 "data": { 6584 - "checksum": "28574de6bc04f41d2ffc96e94fb00243ae6ec5e6c19524de7c833afd082a0a20", 6585 - "contents_checksum": "ec18cbdb02d4f8c9f3abe177bd0f9255eedc1e1d7739121a4ed7a29ce9ff36f4", 6586 - "size": 65097027, 6587 - "source": "components/google-cloud-sdk-pubsub-emulator-20231016163610.tar.gz", 6588 "type": "tar" 6589 }, 6590 "dependencies": [ ··· 6601 "platform": {}, 6602 "platform_required": false, 6603 "version": { 6604 - "build_number": 20231016163610, 6605 - "version_string": "0.8.10" 6606 } 6607 }, 6608 { ··· 6636 "platform_required": false, 6637 "version": { 6638 "build_number": 0, 6639 - "version_string": "2.7.1" 6640 } 6641 }, 6642 { 6643 "data": { 6644 - "checksum": "d82de49ad5de08e99bd6e77ec3dca58b7a48b6d440fffd24a136bc01d3f15c63", 6645 - "contents_checksum": "f919555748e2d8c1af435e9a62af9633d5146a251e152d0f077d6f3a5a90d5c5", 6646 - "size": 24334283, 6647 - "source": "components/google-cloud-sdk-skaffold-darwin-arm-20231002150006.tar.gz", 6648 "type": "tar" 6649 }, 6650 "dependencies": [ ··· 6669 }, 6670 "platform_required": false, 6671 "version": { 6672 - "build_number": 20231002150006, 6673 - "version_string": "2.7.1" 6674 } 6675 }, 6676 { 6677 "data": { 6678 - "checksum": "80f62a636612be395d304441b70cb94eb2137a21c5f27363a746fd70f3670565", 6679 - "contents_checksum": "e446714207056f4c0a70739472eca48de9a4063c6260a1609c55291a0756f75a", 6680 - "size": 26431910, 6681 - "source": "components/google-cloud-sdk-skaffold-darwin-x86_64-20231002150006.tar.gz", 6682 "type": "tar" 6683 }, 6684 "dependencies": [ ··· 6703 }, 6704 "platform_required": false, 6705 "version": { 6706 - "build_number": 20231002150006, 6707 - "version_string": "2.7.1" 6708 } 6709 }, 6710 { 6711 "data": { 6712 - "checksum": "6fd3ecbea23c64ccb1a7a43ba949df0108d5dcb279b8cd1d55a35f54b53bb674", 6713 - "contents_checksum": "d38419a04db49b0f30f761ae709c9fa902552871d0aa5522d1777643cc963579", 6714 - "size": 22351847, 6715 - "source": "components/google-cloud-sdk-skaffold-linux-arm-20231002150006.tar.gz", 6716 "type": "tar" 6717 }, 6718 "dependencies": [ ··· 6737 }, 6738 "platform_required": false, 6739 "version": { 6740 - "build_number": 20231002150006, 6741 - "version_string": "2.7.1" 6742 } 6743 }, 6744 { 6745 "data": { 6746 - "checksum": "6ed058de92dfa76751028437b05c76ce17030fc19d4ff7fde5f0d5c915b94110", 6747 - "contents_checksum": "c86e65478b18bc05b803e0d4d2c4cf5387b05bd99def05b7017dd74fd478bebc", 6748 - "size": 24456326, 6749 - "source": "components/google-cloud-sdk-skaffold-linux-x86_64-20231002150006.tar.gz", 6750 "type": "tar" 6751 }, 6752 "dependencies": [ ··· 6771 }, 6772 "platform_required": false, 6773 "version": { 6774 - "build_number": 20231002150006, 6775 - "version_string": "2.7.1" 6776 } 6777 }, 6778 { 6779 "data": { 6780 - "checksum": "c81abe9107f9b03476de18df93b7272bfe4942629e5202eea60611b0294f5883", 6781 - "contents_checksum": "027478d2605b71896dfffeb11c85da30e6fa3e6164b55701c5186137047e2771", 6782 - "size": 24939189, 6783 - "source": "components/google-cloud-sdk-skaffold-windows-x86_64-20231002150006.tar.gz", 6784 "type": "tar" 6785 }, 6786 "dependencies": [ ··· 6805 }, 6806 "platform_required": false, 6807 "version": { 6808 - "build_number": 20231002150006, 6809 - "version_string": "2.7.1" 6810 } 6811 }, 6812 { ··· 6832 "platform_required": false, 6833 "version": { 6834 "build_number": 0, 6835 - "version_string": "3.1.3" 6836 } 6837 }, 6838 { 6839 "data": { 6840 - "checksum": "f329d03249adcbd72707b0c723b3229bc3957bc2865ae0c2c13a90339ffed4f0", 6841 - "contents_checksum": "280d4a1fac4f797c9ca31c3a60ac377f32633678e92c45cb3d9c52d9ed697b52", 6842 - "size": 23033348, 6843 - "source": "components/google-cloud-sdk-spanner-migration-tool-linux-x86_64-20231023224440.tar.gz", 6844 "type": "tar" 6845 }, 6846 "dependencies": [ ··· 6864 }, 6865 "platform_required": false, 6866 "version": { 6867 - "build_number": 20231023224440, 6868 - "version_string": "3.1.3" 6869 } 6870 }, 6871 { ··· 7022 }, 7023 { 7024 "data": { 7025 - "checksum": "be800db8eba62f286ff49c2ad59c399a6375429bcab4d06285a0f6851b10ee01", 7026 - "contents_checksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", 7027 - "size": 105, 7028 - "source": "components/google-cloud-sdk-terraform-tools-linux-arm-20220325151342.tar.gz", 7029 "type": "tar" 7030 }, 7031 "dependencies": [ ··· 7049 }, 7050 "platform_required": false, 7051 "version": { 7052 - "build_number": 20220325151342, 7053 - "version_string": "0.2.1" 7054 } 7055 }, 7056 { ··· 7121 }, 7122 { 7123 "data": { 7124 - "checksum": "5f1b1acfd653d1c7906dca110f939cf3e3389778ae0d4328c722348e69c3ba58", 7125 - "contents_checksum": "7fa3155ffbfc1c7b90d78a1eabb7e722f274149645f0e3979a5493aad1fd9df1", 7126 - "size": 50896581, 7127 - "source": "components/google-cloud-sdk-tests-20231025210228.tar.gz", 7128 "type": "tar" 7129 }, 7130 "dependencies": [ ··· 7141 "platform": {}, 7142 "platform_required": false, 7143 "version": { 7144 - "build_number": 20231025210228, 7145 - "version_string": "2023.10.25" 7146 } 7147 } 7148 ], ··· 7161 ], 7162 "post_processing_command": "components post-process", 7163 "release_notes_url": "RELEASE_NOTES", 7164 - "revision": 20231025210228, 7165 "schema_version": { 7166 "no_update": false, 7167 "url": "https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz", 7168 "version": 3 7169 }, 7170 - "version": "452.0.1" 7171 }
··· 5 "checksum": "5a65179c291bc480696ca323d2f8c4874985458303eff8f233e16cdca4e88e6f", 6 "contents_checksum": "038c999c7a7d70d5133eab7dc5868c4c3d0358431dad250f9833306af63016c8", 7 "size": 800, 8 + "source": "components/google-cloud-sdk-alpha-20240229170130.tar.gz", 9 "type": "tar" 10 }, 11 "dependencies": [ ··· 22 "platform": {}, 23 "platform_required": false, 24 "version": { 25 + "build_number": 20240229170130, 26 + "version_string": "2024.02.29" 27 } 28 }, 29 { ··· 56 "platform_required": false, 57 "version": { 58 "build_number": 0, 59 + "version_string": "1.5.0" 60 } 61 }, 62 { 63 "data": { 64 + "checksum": "e644f1dfa8a4c25029b33fcf04f4c3c6e01c4c7ed2d572e550890c71d3e8105f", 65 + "contents_checksum": "1f789abe50e6cc5423d39c2530995849bda198e866abbd61904ffb964688e3b3", 66 + "size": 21674635, 67 + "source": "components/google-cloud-sdk-anthos-auth-darwin-arm-20231201141418.tar.gz", 68 "type": "tar" 69 }, 70 "dependencies": [ ··· 88 }, 89 "platform_required": false, 90 "version": { 91 + "build_number": 20231201141418, 92 + "version_string": "1.5.0" 93 } 94 }, 95 { 96 "data": { 97 + "checksum": "72a93a9df0d0647ac5587be7dc0f423c9700d191d21e870d7f8218195e8b7c67", 98 + "contents_checksum": "80a810795133e6ed5d17b963606a980c85e059011c9eeffc4b23fdecbbc95736", 99 + "size": 22732157, 100 + "source": "components/google-cloud-sdk-anthos-auth-darwin-x86_64-20231201141418.tar.gz", 101 "type": "tar" 102 }, 103 "dependencies": [ ··· 121 }, 122 "platform_required": false, 123 "version": { 124 + "build_number": 20231201141418, 125 + "version_string": "1.5.0" 126 } 127 }, 128 { 129 "data": { 130 + "checksum": "c6201122eb946238b632d68c944880a172759e7c6e60086d878c8f65017d4614", 131 + "contents_checksum": "def3aaea624bd24a35d2cd8321562cb5ef5f4b659415c552e439c47ea80be22b", 132 + "size": 21172533, 133 + "source": "components/google-cloud-sdk-anthos-auth-linux-arm-20231201141418.tar.gz", 134 "type": "tar" 135 }, 136 "dependencies": [ ··· 154 }, 155 "platform_required": false, 156 "version": { 157 + "build_number": 20231201141418, 158 + "version_string": "1.5.0" 159 } 160 }, 161 { 162 "data": { 163 + "checksum": "1a674e3872d702e59c8ef9b275f7e6dfb3a2e428fbaaa177442341f46c62b92d", 164 + "contents_checksum": "ce215c3c67f2445ff1e1bd7d3c897ed5e83b169edb6004ce0898da08a3dc5066", 165 + "size": 22854830, 166 + "source": "components/google-cloud-sdk-anthos-auth-linux-x86_64-20231201141418.tar.gz", 167 "type": "tar" 168 }, 169 "dependencies": [ ··· 187 }, 188 "platform_required": false, 189 "version": { 190 + "build_number": 20231201141418, 191 + "version_string": "1.5.0" 192 } 193 }, 194 { 195 "data": { 196 + "checksum": "340aff9659764a4b82358dc1face81ca6fccb6cdba0a4b176305d984706f136c", 197 + "contents_checksum": "603ea38b094e85e9a4836061bd057c086b37778a8cc2c7134d1d9bbd43b68639", 198 + "size": 23111838, 199 + "source": "components/google-cloud-sdk-anthos-auth-windows-x86_64-20231201141418.tar.gz", 200 "type": "tar" 201 }, 202 "dependencies": [ ··· 220 }, 221 "platform_required": false, 222 "version": { 223 + "build_number": 20231201141418, 224 + "version_string": "1.5.0" 225 } 226 }, 227 { ··· 258 "platform_required": false, 259 "version": { 260 "build_number": 0, 261 + "version_string": "0.2.48" 262 } 263 }, 264 { 265 "data": { 266 + "checksum": "4072c0c3b3d6f40c5ca5969cf4ce3d530d45cb260b0ccea3d40099504307b7f4", 267 + "contents_checksum": "0a6d7ed6b3073e8da7569f723fa6dd1c9907f0d270228dd02d16c9d1900089f7", 268 + "size": 70276185, 269 + "source": "components/google-cloud-sdk-anthoscli-darwin-arm-20240209195330.tar.gz", 270 "type": "tar" 271 }, 272 "dependencies": [ ··· 290 }, 291 "platform_required": false, 292 "version": { 293 + "build_number": 20240209195330, 294 + "version_string": "0.2.48" 295 } 296 }, 297 { 298 "data": { 299 + "checksum": "6d8ae30ff42cbd2549a77dd9b4542f1d6bd444adf7a9c1166a8688ca7a2f96da", 300 + "contents_checksum": "f6d26cbd246d289b9a5f6df50adc8a7179b98358dee21873f71283384cd260f5", 301 + "size": 73173000, 302 + "source": "components/google-cloud-sdk-anthoscli-darwin-x86-20240209195330.tar.gz", 303 "type": "tar" 304 }, 305 "dependencies": [ ··· 323 }, 324 "platform_required": false, 325 "version": { 326 + "build_number": 20240209195330, 327 + "version_string": "0.2.48" 328 } 329 }, 330 { 331 "data": { 332 + "checksum": "5aa411f1acee57507bd5ed78b9370ddc47b07ed7a97c551677c5847211ca9d12", 333 + "contents_checksum": "f6d26cbd246d289b9a5f6df50adc8a7179b98358dee21873f71283384cd260f5", 334 + "size": 73173003, 335 + "source": "components/google-cloud-sdk-anthoscli-darwin-x86_64-20240209195330.tar.gz", 336 "type": "tar" 337 }, 338 "dependencies": [ ··· 356 }, 357 "platform_required": false, 358 "version": { 359 + "build_number": 20240209195330, 360 + "version_string": "0.2.48" 361 } 362 }, 363 { 364 "data": { 365 + "checksum": "132825b8e3d349181132c31f6a9d3789997eaf733e79b49e6207315a00b21592", 366 + "contents_checksum": "32d0ae794185fd24adaecc5b1c31715f600afbb70f079546fdaa3c22a0a18823", 367 + "size": 67454849, 368 + "source": "components/google-cloud-sdk-anthoscli-linux-arm-20240209195330.tar.gz", 369 "type": "tar" 370 }, 371 "dependencies": [ ··· 389 }, 390 "platform_required": false, 391 "version": { 392 + "build_number": 20240209195330, 393 + "version_string": "0.2.48" 394 } 395 }, 396 { 397 "data": { 398 + "checksum": "f6451b9ed3b68042a5a58d5fa7d5281ac729291c3380733bb58e7fb4495339c5", 399 + "contents_checksum": "1d0815760f9ee60b2837a16837c5550cffe144de6ff6d766521f553584dcccea", 400 + "size": 65536636, 401 + "source": "components/google-cloud-sdk-anthoscli-linux-x86-20240209195330.tar.gz", 402 "type": "tar" 403 }, 404 "dependencies": [ ··· 422 }, 423 "platform_required": false, 424 "version": { 425 + "build_number": 20240209195330, 426 + "version_string": "0.2.48" 427 } 428 }, 429 { 430 "data": { 431 + "checksum": "353c04a84703c0a507ce095bdd2dae814b464a8d11273b29b517894815232707", 432 + "contents_checksum": "5c444bb3875fe95e3b4e961a425c30d0d664c18a8f61eaf82935b041bfc0e637", 433 + "size": 72231225, 434 + "source": "components/google-cloud-sdk-anthoscli-linux-x86_64-20240209195330.tar.gz", 435 "type": "tar" 436 }, 437 "dependencies": [ ··· 455 }, 456 "platform_required": false, 457 "version": { 458 + "build_number": 20240209195330, 459 + "version_string": "0.2.48" 460 } 461 }, 462 { 463 "data": { 464 + "checksum": "dddd7a0af6168ce4f23dd26010f15232972c3c7ce134c7677605f81316bd9ef7", 465 + "contents_checksum": "2f06c8d0090fdb54381888b0bcd66e8849c5c0e87a303a76bab56ab0a31c8bfd", 466 + "size": 67482145, 467 + "source": "components/google-cloud-sdk-anthoscli-windows-x86-20240209195330.tar.gz", 468 "type": "tar" 469 }, 470 "dependencies": [ ··· 488 }, 489 "platform_required": false, 490 "version": { 491 + "build_number": 20240209195330, 492 + "version_string": "0.2.48" 493 } 494 }, 495 { 496 "data": { 497 + "checksum": "d4fd88249c1cc7a91a63ea9c1142b14c82d1c9c022d0302f0cd981963601c41d", 498 + "contents_checksum": "a69fc1bacbf484cc8034c3eae2cb5479797c9db41461bef73cda18a96e26d672", 499 + "size": 72854116, 500 + "source": "components/google-cloud-sdk-anthoscli-windows-x86_64-20240209195330.tar.gz", 501 "type": "tar" 502 }, 503 "dependencies": [ ··· 521 }, 522 "platform_required": false, 523 "version": { 524 + "build_number": 20240209195330, 525 + "version_string": "0.2.48" 526 } 527 }, 528 { ··· 560 "platform_required": false, 561 "version": { 562 "build_number": 0, 563 + "version_string": "1.9.76" 564 } 565 }, 566 { 567 "data": { 568 + "checksum": "b1a1821583b0831db76219711dd5c5502a31d5a3a9b2f22c95c36f5457b91b7f", 569 + "contents_checksum": "fe65695e8101cb234a298f5129d6f93d3d113440eb42d5dd60690a5b0be941bd", 570 + "size": 4673886, 571 + "source": "components/google-cloud-sdk-app-engine-go-darwin-arm-20231215195722.tar.gz", 572 "type": "tar" 573 }, 574 "dependencies": [ ··· 594 }, 595 "platform_required": false, 596 "version": { 597 + "build_number": 20231215195722, 598 + "version_string": "1.9.76" 599 } 600 }, 601 { 602 "data": { 603 + "checksum": "0e280be54d40ebfb84015f9238e3b58df562cecf9a1ba832ea87288f1d21b63b", 604 + "contents_checksum": "b453bcc5bd1c9f4f0443462810dec6a4c31071b0e18c01f57e53cd6083306806", 605 + "size": 4927378, 606 + "source": "components/google-cloud-sdk-app-engine-go-darwin-x86_64-20231215195722.tar.gz", 607 "type": "tar" 608 }, 609 "dependencies": [ ··· 629 }, 630 "platform_required": false, 631 "version": { 632 + "build_number": 20231215195722, 633 + "version_string": "1.9.76" 634 } 635 }, 636 { 637 "data": { 638 + "checksum": "fc68960029cfcb4e66a29e75e45ccf52459b9f25313f7e6a3cea995febf5b0d1", 639 + "contents_checksum": "99a95e04cfa19eb3fed767ac461433d52c8cfd61dcc43f9c2a2b5be73c53a725", 640 + "size": 4628999, 641 + "source": "components/google-cloud-sdk-app-engine-go-linux-arm-20231215195722.tar.gz", 642 "type": "tar" 643 }, 644 "dependencies": [ ··· 664 }, 665 "platform_required": false, 666 "version": { 667 + "build_number": 20231215195722, 668 + "version_string": "1.9.76" 669 } 670 }, 671 { 672 "data": { 673 + "checksum": "492f92731d80bea2b5ef828276bf1fc54b7f32dbd52517f64fa6b211ca4684d8", 674 + "contents_checksum": "6ea55d86c3fa493cb0cfc0c1edeb625493976944f92765ffcfcb72fdef46ee9c", 675 + "size": 4811027, 676 + "source": "components/google-cloud-sdk-app-engine-go-linux-x86-20231215195722.tar.gz", 677 "type": "tar" 678 }, 679 "dependencies": [ ··· 699 }, 700 "platform_required": false, 701 "version": { 702 + "build_number": 20231215195722, 703 + "version_string": "1.9.76" 704 } 705 }, 706 { 707 "data": { 708 + "checksum": "aaf0cc3cb9782a103c36985f5dbcdde3fbfe50b3d18df580d298f9fd5fca3cc9", 709 + "contents_checksum": "e5044222f13b99b75a7559425e2c397be40229803ba1e5480e63a7a66a68a6c8", 710 + "size": 4957977, 711 + "source": "components/google-cloud-sdk-app-engine-go-linux-x86_64-20231215195722.tar.gz", 712 "type": "tar" 713 }, 714 "dependencies": [ ··· 734 }, 735 "platform_required": false, 736 "version": { 737 + "build_number": 20231215195722, 738 + "version_string": "1.9.76" 739 } 740 }, 741 { 742 "data": { 743 + "checksum": "190a523aa852a05e1d286936da6ee7e50f9f8e9f430813d08de42bc4b2266c57", 744 + "contents_checksum": "c67be57a817917cb43238a4ebc5fe6f59cb80c8cad3debd4bca18d019d75ead8", 745 + "size": 4901455, 746 + "source": "components/google-cloud-sdk-app-engine-go-windows-x86-20231215195722.tar.gz", 747 "type": "tar" 748 }, 749 "dependencies": [ ··· 769 }, 770 "platform_required": false, 771 "version": { 772 + "build_number": 20231215195722, 773 + "version_string": "1.9.76" 774 } 775 }, 776 { 777 "data": { 778 + "checksum": "1d3808bff8faf031d4f3dc0352cf5832a8fab0ff6fda44add456f3351604316d", 779 + "contents_checksum": "2c2bb14f552ba67a01ee7344075cee7a253d839668bdbbb5928b19ef4257c758", 780 + "size": 5030525, 781 + "source": "components/google-cloud-sdk-app-engine-go-windows-x86_64-20231215195722.tar.gz", 782 "type": "tar" 783 }, 784 "dependencies": [ ··· 804 }, 805 "platform_required": false, 806 "version": { 807 + "build_number": 20231215195722, 808 + "version_string": "1.9.76" 809 } 810 }, 811 { ··· 1020 }, 1021 { 1022 "data": { 1023 + "checksum": "ae39996160cebbed748ed12a6ef89ff73e93848b4b1a22f153c371c8ec2153ad", 1024 + "contents_checksum": "66509cd7d0ee0046439e2bc0e70eed9afecb637d578e518d6771925267693055", 1025 + "size": 132057381, 1026 + "source": "components/google-cloud-sdk-app-engine-java-20240106004423.tar.gz", 1027 "type": "tar" 1028 }, 1029 "dependencies": [ ··· 1041 "platform": {}, 1042 "platform_required": false, 1043 "version": { 1044 + "build_number": 20240106004423, 1045 + "version_string": "2.0.24" 1046 } 1047 }, 1048 { ··· 1142 }, 1143 { 1144 "data": { 1145 + "checksum": "893d741c65d65cfc20f3820fdf62cb71f111e814083c942fee4ced13b10944a2", 1146 + "contents_checksum": "a97004f0aedeff49894c2cce7b5f634762900f64f38f65c1676e7897f3fb2c53", 1147 + "size": 8780608, 1148 + "source": "components/google-cloud-sdk-app-engine-python-20240216153112.tar.gz", 1149 "type": "tar" 1150 }, 1151 "dependencies": [ ··· 1164 "platform": {}, 1165 "platform_required": false, 1166 "version": { 1167 + "build_number": 20240216153112, 1168 + "version_string": "1.9.109" 1169 } 1170 }, 1171 { ··· 1432 "checksum": "707d412854a14450b4fddee199d258e75946fe51b44eb2980c8cd7e274c15760", 1433 "contents_checksum": "0b4e9d8e6394dc841aece07ca4da91920a460cbd7ec22495be4a2b4f46635b4d", 1434 "size": 797, 1435 + "source": "components/google-cloud-sdk-beta-20240229170130.tar.gz", 1436 "type": "tar" 1437 }, 1438 "dependencies": [ ··· 1449 "platform": {}, 1450 "platform_required": false, 1451 "version": { 1452 + "build_number": 20240229170130, 1453 + "version_string": "2024.02.29" 1454 } 1455 }, 1456 { ··· 1493 }, 1494 { 1495 "data": { 1496 + "checksum": "663eb2bb5e083b366f739b81bc95ce7853187a823890c34e07a8bacdfce35244", 1497 + "contents_checksum": "20101432339e657f9f272c5898dbdffd89dad2e08dcfccfa26c6609343f39f4c", 1498 + "size": 7149239, 1499 + "source": "components/google-cloud-sdk-bigtable-darwin-arm-20240112150613.tar.gz", 1500 "type": "tar" 1501 }, 1502 "dependencies": [ ··· 1521 }, 1522 "platform_required": false, 1523 "version": { 1524 + "build_number": 20240112150613, 1525 "version_string": "" 1526 } 1527 }, ··· 1561 }, 1562 { 1563 "data": { 1564 + "checksum": "c00519ab786c673527f79f72770d1f4b5bf599c16f9c5d4b42a3f6658414ac22", 1565 + "contents_checksum": "55675241aba0458e9e7e272511ed469bc30949464d23cf672b2e8549e16559a5", 1566 + "size": 7384031, 1567 + "source": "components/google-cloud-sdk-bigtable-darwin-x86_64-20240112150613.tar.gz", 1568 "type": "tar" 1569 }, 1570 "dependencies": [ ··· 1589 }, 1590 "platform_required": false, 1591 "version": { 1592 + "build_number": 20240112150613, 1593 "version_string": "" 1594 } 1595 }, 1596 { 1597 "data": { 1598 + "checksum": "bb6a7e3068ba643e11505e2cbf2fb7418662045566105c711ccda37bbce2f235", 1599 + "contents_checksum": "a2613adc36a34833bf1e11c7f725688389a330d89e3719e5f4e00387dfa20fb8", 1600 + "size": 7032893, 1601 + "source": "components/google-cloud-sdk-bigtable-linux-arm-20240112150613.tar.gz", 1602 "type": "tar" 1603 }, 1604 "dependencies": [ ··· 1623 }, 1624 "platform_required": false, 1625 "version": { 1626 + "build_number": 20240112150613, 1627 "version_string": "" 1628 } 1629 }, 1630 { 1631 "data": { 1632 + "checksum": "5e762be2009986b3a9594cefc861d186eb3130c0f1b0dbf08bef6534ce868761", 1633 + "contents_checksum": "2adb488dd36830e794eb141ec5243b0bc5f24206a6bd0ae5a731a31346f08078", 1634 + "size": 7287874, 1635 + "source": "components/google-cloud-sdk-bigtable-linux-x86-20240112150613.tar.gz", 1636 "type": "tar" 1637 }, 1638 "dependencies": [ ··· 1657 }, 1658 "platform_required": false, 1659 "version": { 1660 + "build_number": 20240112150613, 1661 "version_string": "" 1662 } 1663 }, 1664 { 1665 "data": { 1666 + "checksum": "b3c54cb77875fddf48a0ff41a8870cb55891bf49ae81e23adeb72c1280fc1fd0", 1667 + "contents_checksum": "711fd9de39fbf4583dbb22c52e7b3fa801ad81dee1e2a4d65d98992738f2aa34", 1668 + "size": 7488736, 1669 + "source": "components/google-cloud-sdk-bigtable-linux-x86_64-20240112150613.tar.gz", 1670 "type": "tar" 1671 }, 1672 "dependencies": [ ··· 1691 }, 1692 "platform_required": false, 1693 "version": { 1694 + "build_number": 20240112150613, 1695 "version_string": "" 1696 } 1697 }, 1698 { 1699 "data": { 1700 + "checksum": "7ae926f8aad9bb48247a2468da737b1cd239764aca4ef31b02aebe14437bc5f9", 1701 + "contents_checksum": "a4409d3c0f7bce7ab0aeaf66adb80ea96a2f8c3854aa0570f3badf21b8b7d430", 1702 + "size": 7317721, 1703 + "source": "components/google-cloud-sdk-bigtable-windows-x86-20240112150613.tar.gz", 1704 "type": "tar" 1705 }, 1706 "dependencies": [ ··· 1725 }, 1726 "platform_required": false, 1727 "version": { 1728 + "build_number": 20240112150613, 1729 "version_string": "" 1730 } 1731 }, 1732 { 1733 "data": { 1734 + "checksum": "96eac561a6b2efe89e840ff2c6fa22e50f368a536a5db6c168ce9072f6142271", 1735 + "contents_checksum": "7d9e07ff31df84f57a66a4f9b0d3d0d666c70c7a17174cb2c69feea2db8a194e", 1736 + "size": 7479168, 1737 + "source": "components/google-cloud-sdk-bigtable-windows-x86_64-20240112150613.tar.gz", 1738 "type": "tar" 1739 }, 1740 "dependencies": [ ··· 1759 }, 1760 "platform_required": false, 1761 "version": { 1762 + "build_number": 20240112150613, 1763 "version_string": "" 1764 } 1765 }, 1766 { 1767 "data": { 1768 + "checksum": "8918c7fd033de8f13f331152e59dc16a33f0f7007a6be615b7b53337197be33f", 1769 + "contents_checksum": "f516a7a4d24280d59d67bf908d80d0a560b8d680e8c2699efc1071b1c0039c1f", 1770 + "size": 1679148, 1771 + "source": "components/google-cloud-sdk-bq-20240112150613.tar.gz", 1772 "type": "tar" 1773 }, 1774 "dependencies": [ ··· 1787 "platform": {}, 1788 "platform_required": false, 1789 "version": { 1790 + "build_number": 20240112150613, 1791 + "version_string": "2.0.101" 1792 } 1793 }, 1794 { 1795 "data": { 1796 + "checksum": "81d6fafb672c791a58b6d2cecbcb8a78ca1a1c7e885d359bcf3ec11ebf138ea0", 1797 + "contents_checksum": "fcd529ea7485a8621ac5d217ac7e7793cc8acabe5ba4c2c6f222b402580e5578", 1798 + "size": 2026, 1799 + "source": "components/google-cloud-sdk-bq-nix-20240106004423.tar.gz", 1800 "type": "tar" 1801 }, 1802 "dependencies": [ ··· 1821 }, 1822 "platform_required": false, 1823 "version": { 1824 + "build_number": 20240106004423, 1825 + "version_string": "2.0.101" 1826 } 1827 }, 1828 { 1829 "data": { 1830 + "checksum": "5d3fdd2bd23beba4e15e60d8e2befdb3d68ae9faed8a19b14526ffacb247546e", 1831 + "contents_checksum": "aa61d0c34c3b3d6509e7a529b28446faaa645f15abb56a27be3b425ed6404fac", 1832 + "size": 2683, 1833 + "source": "components/google-cloud-sdk-bq-win-20240226203415.tar.gz", 1834 "type": "tar" 1835 }, 1836 "dependencies": [ ··· 1852 }, 1853 "platform_required": false, 1854 "version": { 1855 + "build_number": 20240226203415, 1856 + "version_string": "2.0.101" 1857 } 1858 }, 1859 { ··· 1963 "core" 1964 ], 1965 "details": { 1966 + "description": "Provides stand-alone Python 3.11 install.", 1967 + "display_name": "Bundled Python 3.11" 1968 }, 1969 "id": "bundled-python3", 1970 "is_configuration": false, ··· 1982 "platform_required": false, 1983 "version": { 1984 "build_number": 0, 1985 + "version_string": "3.11.6" 1986 } 1987 }, 1988 { ··· 1991 "core" 1992 ], 1993 "details": { 1994 + "description": "Provides stand-alone Python 3.11.8 installation for UNIX.", 1995 + "display_name": "Bundled Python 3.11" 1996 }, 1997 "id": "bundled-python3-unix", 1998 "is_configuration": false, ··· 2009 "platform_required": false, 2010 "version": { 2011 "build_number": 0, 2012 + "version_string": "3.11.8" 2013 } 2014 }, 2015 { 2016 "data": { 2017 + "checksum": "e0819134f743b2524add92d5ed3bfff5e4098dfd5d77944ef1a8f95a14fe02ee", 2018 + "contents_checksum": "3969f4cfb146659adf2d3b34dfe6e0a3b471317db2512ff3c1523b809b5ad765", 2019 + "size": 78486918, 2020 + "source": "components/google-cloud-sdk-bundled-python3-unix-linux-x86_64-20240229170130.tar.gz", 2021 "type": "tar" 2022 }, 2023 "dependencies": [ ··· 2025 "core" 2026 ], 2027 "details": { 2028 + "description": "Provides stand-alone Python 3.11.8 installation for UNIX.", 2029 + "display_name": "Bundled Python 3.11" 2030 }, 2031 "id": "bundled-python3-unix-linux-x86_64", 2032 "is_configuration": false, ··· 2042 }, 2043 "platform_required": false, 2044 "version": { 2045 + "build_number": 20240229170130, 2046 + "version_string": "3.11.8" 2047 } 2048 }, 2049 { 2050 "data": { 2051 + "checksum": "78b090d3d133b622c8fa591e55d97dec41ebeceda117f1fc4c87a3a3053710fc", 2052 + "contents_checksum": "b18344f58a872b7fd500946a8ca7c7929608a4bf5257570e7c60c2f5b9208ad4", 2053 + "size": 20426074, 2054 + "source": "components/google-cloud-sdk-bundled-python3-windows-x86-20231110155547.tar.gz", 2055 "type": "tar" 2056 }, 2057 "dependencies": [ ··· 2059 "core" 2060 ], 2061 "details": { 2062 + "description": "Provides stand-alone Python 3.11 install.", 2063 + "display_name": "Bundled Python 3.11" 2064 }, 2065 "id": "bundled-python3-windows-x86", 2066 "is_configuration": false, ··· 2076 }, 2077 "platform_required": false, 2078 "version": { 2079 + "build_number": 20231110155547, 2080 + "version_string": "3.11.6" 2081 } 2082 }, 2083 { 2084 "data": { 2085 + "checksum": "f80970b12053a77afb5888982362396c379392462806837c47c4ed3271c19aaf", 2086 + "contents_checksum": "3207aea9e98dcf0cf0ee6ad339235fda213dbf8ac997bfa823698c52d68b7f65", 2087 + "size": 22512051, 2088 + "source": "components/google-cloud-sdk-bundled-python3-windows-x86_64-20231110155547.tar.gz", 2089 "type": "tar" 2090 }, 2091 "dependencies": [ ··· 2093 "core" 2094 ], 2095 "details": { 2096 + "description": "Provides stand-alone Python 3.11 install.", 2097 + "display_name": "Bundled Python 3.11" 2098 }, 2099 "id": "bundled-python3-windows-x86_64", 2100 "is_configuration": false, ··· 2110 }, 2111 "platform_required": false, 2112 "version": { 2113 + "build_number": 20231110155547, 2114 + "version_string": "3.11.6" 2115 } 2116 }, 2117 { ··· 2148 "platform_required": false, 2149 "version": { 2150 "build_number": 0, 2151 + "version_string": "1.17.2" 2152 } 2153 }, 2154 { 2155 "data": { 2156 + "checksum": "538df81550df3242dd9047437ceea867abb38125df24154ffafb5298dee1a2b8", 2157 + "contents_checksum": "02563cdae195531dc844381cd1cfed92ec8217adc475b9dac73898f1a25c0a45", 2158 + "size": 16720666, 2159 + "source": "components/google-cloud-sdk-cbt-darwin-arm-20240112150613.tar.gz", 2160 "type": "tar" 2161 }, 2162 "dependencies": [ ··· 2180 }, 2181 "platform_required": false, 2182 "version": { 2183 + "build_number": 20240112150613, 2184 + "version_string": "1.17.2" 2185 } 2186 }, 2187 { ··· 2219 }, 2220 { 2221 "data": { 2222 + "checksum": "b9194d1a8371dea7c63147767a6f9e3f8c6f4b03fa30ca3bc5ea901d97acd011", 2223 + "contents_checksum": "c359de592aa1b957326c205b8723a59520cac0f142bf278b84eed03399b56b59", 2224 + "size": 17196541, 2225 + "source": "components/google-cloud-sdk-cbt-darwin-x86_64-20240112150613.tar.gz", 2226 "type": "tar" 2227 }, 2228 "dependencies": [ ··· 2246 }, 2247 "platform_required": false, 2248 "version": { 2249 + "build_number": 20240112150613, 2250 + "version_string": "1.17.2" 2251 } 2252 }, 2253 { 2254 "data": { 2255 + "checksum": "eb0c6f7e7f9c3bfecbfd733ea018c09fb8ba61b78b1cf8c1c9263c7109ad8671", 2256 + "contents_checksum": "5c1a36f98fd4654ee47fccea2a9a50ce8b22cd70e013b83bb051fe357122638d", 2257 + "size": 16297518, 2258 + "source": "components/google-cloud-sdk-cbt-linux-arm-20240112150613.tar.gz", 2259 "type": "tar" 2260 }, 2261 "dependencies": [ ··· 2279 }, 2280 "platform_required": false, 2281 "version": { 2282 + "build_number": 20240112150613, 2283 + "version_string": "1.17.2" 2284 } 2285 }, 2286 { 2287 "data": { 2288 + "checksum": "39ca479add8bc11ad11a3b2965e562e62858901c96d79aa1aa2c938a7f40993c", 2289 + "contents_checksum": "fc6133d7e68b1ad303d87cb9e712bc94fd40511f3818979b4e20d7f5f2074df7", 2290 + "size": 16492482, 2291 + "source": "components/google-cloud-sdk-cbt-linux-x86-20240112150613.tar.gz", 2292 "type": "tar" 2293 }, 2294 "dependencies": [ ··· 2312 }, 2313 "platform_required": false, 2314 "version": { 2315 + "build_number": 20240112150613, 2316 + "version_string": "1.17.2" 2317 } 2318 }, 2319 { 2320 "data": { 2321 + "checksum": "23df574487ba9ddb32ffc8c387a0d428ef27be297d5769800710974266d4932c", 2322 + "contents_checksum": "8134edf246fa051787bf993034e8f1800bb1f04620bbd13cc1f40e965bf32599", 2323 + "size": 17340658, 2324 + "source": "components/google-cloud-sdk-cbt-linux-x86_64-20240112150613.tar.gz", 2325 "type": "tar" 2326 }, 2327 "dependencies": [ ··· 2345 }, 2346 "platform_required": false, 2347 "version": { 2348 + "build_number": 20240112150613, 2349 + "version_string": "1.17.2" 2350 } 2351 }, 2352 { 2353 "data": { 2354 + "checksum": "ae60d8116338562cc98ba1ad852842760d2ab78016377ec827701c80dc7b7b41", 2355 + "contents_checksum": "61f3390cc8c868a77e378f9d4aa37502d4e04357d8ab33735f1e5418a3a225e7", 2356 + "size": 16750394, 2357 + "source": "components/google-cloud-sdk-cbt-windows-x86-20240112150613.tar.gz", 2358 "type": "tar" 2359 }, 2360 "dependencies": [ ··· 2378 }, 2379 "platform_required": false, 2380 "version": { 2381 + "build_number": 20240112150613, 2382 + "version_string": "1.17.2" 2383 } 2384 }, 2385 { 2386 "data": { 2387 + "checksum": "ce201b8cb3e4e10d4ae1cbec9ff253474dff5931eaff9c1d260b117ac03781e3", 2388 + "contents_checksum": "d28a7a0d5156bff526e51932172d63a6bc8fc6258138551e81ffc241e20faeb3", 2389 + "size": 17415844, 2390 + "source": "components/google-cloud-sdk-cbt-windows-x86_64-20240112150613.tar.gz", 2391 "type": "tar" 2392 }, 2393 "dependencies": [ ··· 2411 }, 2412 "platform_required": false, 2413 "version": { 2414 + "build_number": 20240112150613, 2415 + "version_string": "1.17.2" 2416 } 2417 }, 2418 { ··· 2572 }, 2573 { 2574 "data": { 2575 + "checksum": "412203bd80a2ce63b6893f2fc7af0c9c86a4725bd9cf4aeca6a6905269f267b8", 2576 + "contents_checksum": "f43be764e885bb2206a1b7fdacabd0fca828cd76d95e5006c9509645dfd27b0e", 2577 + "size": 46597550, 2578 + "source": "components/google-cloud-sdk-cloud-firestore-emulator-20240229170130.tar.gz", 2579 "type": "tar" 2580 }, 2581 "dependencies": [ ··· 2592 "platform": {}, 2593 "platform_required": false, 2594 "version": { 2595 + "build_number": 20240229170130, 2596 + "version_string": "1.19.2" 2597 } 2598 }, 2599 { ··· 2818 "platform_required": false, 2819 "version": { 2820 "build_number": 0, 2821 + "version_string": "1.5.13" 2822 } 2823 }, 2824 { 2825 "data": { 2826 + "checksum": "7c8f4db773fae956a385c746203ef7d2784d992fd674cdbacf59720c4d3e0ca6", 2827 + "contents_checksum": "d3df9908458ec5b1115dd1c439b256fcc7ba00533f0c7363ac09685f5bc95790", 2828 + "size": 37731211, 2829 + "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20240106004423.tar.gz", 2830 "type": "tar" 2831 }, 2832 "dependencies": [ ··· 2851 }, 2852 "platform_required": false, 2853 "version": { 2854 + "build_number": 20240106004423, 2855 + "version_string": "1.5.13" 2856 } 2857 }, 2858 { ··· 3322 }, 3323 { 3324 "data": { 3325 + "checksum": "394b9a3441b3a88962ee3fe01e2b816671466ca55c244826adc1093395a08117", 3326 + "contents_checksum": "b22a86659b93e65751c75128448d23b9d935b9a85c46301498bc4054256aff86", 3327 + "size": 23893614, 3328 + "source": "components/google-cloud-sdk-core-20240229170130.tar.gz", 3329 "type": "tar" 3330 }, 3331 "dependencies": [ ··· 3346 "platform": {}, 3347 "platform_required": false, 3348 "version": { 3349 + "build_number": 20240229170130, 3350 + "version_string": "2024.02.29" 3351 } 3352 }, 3353 { 3354 "data": { 3355 + "checksum": "b7f76cd9c7f391d8504d31fba7c180b7c3028646c0efda8fafdb1abd13056917", 3356 + "contents_checksum": "35b7e083b5dc365a7f2ff9fac444ad23ddfae564c22296c502183ee4eb9fab00", 3357 + "size": 2410, 3358 + "source": "components/google-cloud-sdk-core-nix-20240106004423.tar.gz", 3359 "type": "tar" 3360 }, 3361 "dependencies": [ ··· 3382 }, 3383 "platform_required": false, 3384 "version": { 3385 + "build_number": 20240106004423, 3386 + "version_string": "2024.01.06" 3387 } 3388 }, 3389 { 3390 "data": { 3391 + "checksum": "75e34fa5b9f7524861796258e8140d9e9bab9921ace5e9bcd6f0bdd03c718ceb", 3392 + "contents_checksum": "5770aeb4c914a1193d8f6311d16eab708f76a1c78eb143d0215a8999a82630ca", 3393 + "size": 3549, 3394 + "source": "components/google-cloud-sdk-core-win-20240226203415.tar.gz", 3395 "type": "tar" 3396 }, 3397 "dependencies": [ ··· 3415 }, 3416 "platform_required": false, 3417 "version": { 3418 + "build_number": 20240226203415, 3419 + "version_string": "2024.02.26" 3420 } 3421 }, 3422 { ··· 3715 "platform_required": false, 3716 "version": { 3717 "build_number": 0, 3718 + "version_string": "0.3.2" 3719 } 3720 }, 3721 { 3722 "data": { 3723 + "checksum": "a3e8f5c45ac19bd3430201339c07f2f6dc21296702375c2381ecf5c8d3e88279", 3724 + "contents_checksum": "22e8de82f1f0cb7a6db65e095c15017866869cac0f1d5556c146c92b1c49acb9", 3725 + "size": 8680702, 3726 + "source": "components/google-cloud-sdk-enterprise-certificate-proxy-darwin-arm-20231208151900.tar.gz", 3727 "type": "tar" 3728 }, 3729 "dependencies": [ ··· 3747 }, 3748 "platform_required": false, 3749 "version": { 3750 + "build_number": 20231208151900, 3751 + "version_string": "0.3.2" 3752 } 3753 }, 3754 { 3755 "data": { 3756 + "checksum": "301757a2839dce01a6435ed4b0dfd05616f9a3c8aeba4624362b48f115e5b97a", 3757 + "contents_checksum": "6d407b55892613efd363344f855292ddda8fdbe81f549f318264480dc167b25a", 3758 + "size": 9536921, 3759 + "source": "components/google-cloud-sdk-enterprise-certificate-proxy-darwin-x86_64-20231208151900.tar.gz", 3760 "type": "tar" 3761 }, 3762 "dependencies": [ ··· 3780 }, 3781 "platform_required": false, 3782 "version": { 3783 + "build_number": 20231208151900, 3784 + "version_string": "0.3.2" 3785 } 3786 }, 3787 { 3788 "data": { 3789 + "checksum": "620e7f1598535dba84e52085cf12275e6e2264b281d7d43d71d4079ad0daab7e", 3790 + "contents_checksum": "1ccff0b7259285d34269926c6038535561cc6d24c0a5c40e3f1b49c7748c9808", 3791 + "size": 9012612, 3792 + "source": "components/google-cloud-sdk-enterprise-certificate-proxy-linux-x86_64-20231208151900.tar.gz", 3793 "type": "tar" 3794 }, 3795 "dependencies": [ ··· 3813 }, 3814 "platform_required": false, 3815 "version": { 3816 + "build_number": 20231208151900, 3817 + "version_string": "0.3.2" 3818 } 3819 }, 3820 { 3821 "data": { 3822 + "checksum": "d49562e0fac17a4ac3c4e30d7c7056320a69ebc157a6c3f3e744f5731bb16f92", 3823 + "contents_checksum": "bfa2c0f4ea80fb6e3299b6fb7554565213c39ed7b01140020f8ae00c260d09e1", 3824 + "size": 6801316, 3825 + "source": "components/google-cloud-sdk-enterprise-certificate-proxy-windows-x86_64-20231208151900.tar.gz", 3826 "type": "tar" 3827 }, 3828 "dependencies": [ ··· 3846 }, 3847 "platform_required": false, 3848 "version": { 3849 + "build_number": 20231208151900, 3850 + "version_string": "0.3.2" 3851 } 3852 }, 3853 { ··· 3907 }, 3908 { 3909 "data": { 3910 + "checksum": "77cacb09f213e98cd3461796567bb583dc05e7f2fe70c47da65e948daf2dfff7", 3911 + "contents_checksum": "d651a36a3f0e41f7cc7312d09bc3c089a55a583cdaaaa922b0d385e57dece361", 3912 + "size": 1242963, 3913 + "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-arm-20231215195722.tar.gz", 3914 "type": "tar" 3915 }, 3916 "dependencies": [ ··· 3934 }, 3935 "platform_required": false, 3936 "version": { 3937 + "build_number": 20231215195722, 3938 "version_string": "1.0.0" 3939 } 3940 }, 3941 { 3942 "data": { 3943 + "checksum": "ef420a608c6446543cf660c7d168f6af297aebb760d163e11c3af278e34eb731", 3944 + "contents_checksum": "48cfe6b4f0f12b23a1271ef686966959314ba9d3ac21de9082009cbb5e9ab1d8", 3945 + "size": 1283814, 3946 + "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-x86_64-20231215195722.tar.gz", 3947 "type": "tar" 3948 }, 3949 "dependencies": [ ··· 3967 }, 3968 "platform_required": false, 3969 "version": { 3970 + "build_number": 20231215195722, 3971 "version_string": "1.0.0" 3972 } 3973 }, 3974 { 3975 "data": { 3976 + "checksum": "c42492e21729fd33b413c7151e9b9d8c1b352a0f5fa94dbd42e39b0a417ea9da", 3977 + "contents_checksum": "06647040a666b59ce69c90e6ba9cbfba3f1763236a0872af722e62ea30e51e34", 3978 + "size": 1214415, 3979 + "source": "components/google-cloud-sdk-gcloud-crc32c-linux-arm-20231215195722.tar.gz", 3980 "type": "tar" 3981 }, 3982 "dependencies": [ ··· 4000 }, 4001 "platform_required": false, 4002 "version": { 4003 + "build_number": 20231215195722, 4004 "version_string": "1.0.0" 4005 } 4006 }, 4007 { 4008 "data": { 4009 + "checksum": "111269e6760bcf2c8d86c435ba6e1814b96281089d38dc73c699b9b12489c662", 4010 + "contents_checksum": "93fa6c57934e224e3e9e20eec8386ca1d3169b5a4e8f2515f1b042b11e000564", 4011 + "size": 1233668, 4012 + "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86-20231215195722.tar.gz", 4013 "type": "tar" 4014 }, 4015 "dependencies": [ ··· 4033 }, 4034 "platform_required": false, 4035 "version": { 4036 + "build_number": 20231215195722, 4037 "version_string": "1.0.0" 4038 } 4039 }, 4040 { 4041 "data": { 4042 + "checksum": "3fe726e72437a2257264bedb9bb4d61949c15c80b9f587888717c267f65ab91e", 4043 + "contents_checksum": "0b6b618de4cf9fc339b414d44e6e834e6cdb5fae2ddb65bde3525ad78c595d51", 4044 + "size": 1287877, 4045 + "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86_64-20231215195722.tar.gz", 4046 "type": "tar" 4047 }, 4048 "dependencies": [ ··· 4066 }, 4067 "platform_required": false, 4068 "version": { 4069 + "build_number": 20231215195722, 4070 "version_string": "1.0.0" 4071 } 4072 }, 4073 { 4074 "data": { 4075 + "checksum": "46a658000be7850ef81652659448e70c67e089d20946a572c6ba521676af668c", 4076 + "contents_checksum": "58e78452a22e94789408f6afbb86a65544cb1fac500ef3fbe7422c5eb6b19c10", 4077 + "size": 1267116, 4078 + "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86-20231215195722.tar.gz", 4079 "type": "tar" 4080 }, 4081 "dependencies": [ ··· 4099 }, 4100 "platform_required": false, 4101 "version": { 4102 + "build_number": 20231215195722, 4103 "version_string": "1.0.0" 4104 } 4105 }, 4106 { 4107 "data": { 4108 + "checksum": "b9752b5c9eccc0105ef06f322b2dff92f2542884475708b864ae02e800ef7765", 4109 + "contents_checksum": "96506b713c645adb109e0a7bf83fef4af59a24cd7f714f8455b8d66af8946213", 4110 + "size": 1321071, 4111 + "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86_64-20231215195722.tar.gz", 4112 "type": "tar" 4113 }, 4114 "dependencies": [ ··· 4132 }, 4133 "platform_required": false, 4134 "version": { 4135 + "build_number": 20231215195722, 4136 "version_string": "1.0.0" 4137 } 4138 }, 4139 { 4140 "data": { 4141 + "checksum": "199a922d9427440154dbd427650aac513dde9dcf5fb904f696011e208af16436", 4142 + "contents_checksum": "bd1cee79ccb1075e6174ce72da21507e22c9309c7d453ec4c0365c38184dbf72", 4143 + "size": 17398946, 4144 + "source": "components/google-cloud-sdk-gcloud-deps-20240229170130.tar.gz", 4145 "type": "tar" 4146 }, 4147 "dependencies": [ ··· 4164 "platform": {}, 4165 "platform_required": false, 4166 "version": { 4167 + "build_number": 20240229170130, 4168 + "version_string": "2024.02.29" 4169 } 4170 }, 4171 { ··· 4401 }, 4402 { 4403 "data": { 4404 + "checksum": "5002cd1d0b639317a879d8c6eaf1c8b65ae30d908be20168b3d1126a7a9931fb", 4405 + "contents_checksum": "be1175193dbcc96732f074ee8916e2d01bae057865ca4cc9af4fce96669a2e82", 4406 + "size": 6729281, 4407 + "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20240229170130.tar.gz", 4408 "type": "tar" 4409 }, 4410 "dependencies": [ ··· 4429 }, 4430 "platform_required": false, 4431 "version": { 4432 + "build_number": 20240229170130, 4433 "version_string": "" 4434 } 4435 }, ··· 4466 "platform_required": false, 4467 "version": { 4468 "build_number": 0, 4469 + "version_string": "0.5.8" 4470 } 4471 }, 4472 { 4473 "data": { 4474 + "checksum": "327a609642f03ff8f40490eed3794ecf937c6d5fdabf16b41711f037f86c283a", 4475 + "contents_checksum": "e63fd07984cbb296b5359bb35569445a539ed4e58c8bce640d4216a94c8a6881", 4476 + "size": 7784812, 4477 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-darwin-arm-20240106004423.tar.gz", 4478 "type": "tar" 4479 }, 4480 "dependencies": [ ··· 4498 }, 4499 "platform_required": false, 4500 "version": { 4501 + "build_number": 20240106004423, 4502 + "version_string": "0.5.8" 4503 } 4504 }, 4505 { 4506 "data": { 4507 + "checksum": "79c52f25361b485515fdf2d20283925997feeea6a3f276eb49f5476645c1fe10", 4508 + "contents_checksum": "aeff6edc3ea7bde1aa33f44744484644cd4e1ca56803f043e7ef27dba5e7b015", 4509 + "size": 8160991, 4510 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-darwin-x86_64-20240106004423.tar.gz", 4511 "type": "tar" 4512 }, 4513 "dependencies": [ ··· 4531 }, 4532 "platform_required": false, 4533 "version": { 4534 + "build_number": 20240106004423, 4535 + "version_string": "0.5.8" 4536 } 4537 }, 4538 { 4539 "data": { 4540 + "checksum": "51fcd3459f2ef594b441faea5433a26cc8d94ab638cdac3b9028a2710a5adcbb", 4541 + "contents_checksum": "b33be7d31ad5e77814ae435860a3ab9688672baaccda4bf86c000a5b7d1eea67", 4542 + "size": 7695357, 4543 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-linux-arm-20240106004423.tar.gz", 4544 "type": "tar" 4545 }, 4546 "dependencies": [ ··· 4564 }, 4565 "platform_required": false, 4566 "version": { 4567 + "build_number": 20240106004423, 4568 + "version_string": "0.5.8" 4569 } 4570 }, 4571 { 4572 "data": { 4573 + "checksum": "87066fca15ebfd79a716c54fd15ad5621fb67dc4a3a34d1e23bcd69d4b5ed5dd", 4574 + "contents_checksum": "2a425e75e5ec31bec2b7dbdec75ed1a4ca8920ccceee7b12bf658b2e1bd409a8", 4575 + "size": 8213296, 4576 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-linux-x86-20240106004423.tar.gz", 4577 "type": "tar" 4578 }, 4579 "dependencies": [ ··· 4597 }, 4598 "platform_required": false, 4599 "version": { 4600 + "build_number": 20240106004423, 4601 + "version_string": "0.5.8" 4602 } 4603 }, 4604 { 4605 "data": { 4606 + "checksum": "cb9856b2ae92bf1a5fd69c7f29bd6892abeb2a229732541f361adea37ede3d9f", 4607 + "contents_checksum": "811125a0907dc84d4603f7c3734cfd214509c7400397e705d234b06d31c6714f", 4608 + "size": 8323564, 4609 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-linux-x86_64-20240106004423.tar.gz", 4610 "type": "tar" 4611 }, 4612 "dependencies": [ ··· 4630 }, 4631 "platform_required": false, 4632 "version": { 4633 + "build_number": 20240106004423, 4634 + "version_string": "0.5.8" 4635 } 4636 }, 4637 { 4638 "data": { 4639 + "checksum": "3b4ffda0fab2631a3b43229390bbb7c2d35d6aa6c7b283d47d8107499c44ee58", 4640 + "contents_checksum": "3f148312f9edea79f254274261b0bb1a928dc979bd569ca1410699f576433156", 4641 + "size": 8319970, 4642 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-windows-x86-20240106004423.tar.gz", 4643 "type": "tar" 4644 }, 4645 "dependencies": [ ··· 4663 }, 4664 "platform_required": false, 4665 "version": { 4666 + "build_number": 20240106004423, 4667 + "version_string": "0.5.8" 4668 } 4669 }, 4670 { 4671 "data": { 4672 + "checksum": "56b20fa9e9fbe51bc2b8e5d8086088be75aaaf90fdeae444c7bb246bdd38454a", 4673 + "contents_checksum": "af802f48ffa244f12154321bc1bc4170e53d2ab7628df711cac7c36bb1b0493d", 4674 + "size": 8477137, 4675 + "source": "components/google-cloud-sdk-gke-gcloud-auth-plugin-windows-x86_64-20240106004423.tar.gz", 4676 "type": "tar" 4677 }, 4678 "dependencies": [ ··· 4696 }, 4697 "platform_required": false, 4698 "version": { 4699 + "build_number": 20240106004423, 4700 + "version_string": "0.5.8" 4701 } 4702 }, 4703 { ··· 4730 }, 4731 { 4732 "data": { 4733 + "checksum": "0e203c936ca846514c498e1bf3f18ecfd8f4e031eb65f1f915812fa31824d246", 4734 + "contents_checksum": "023019da3e1594d499efe2047aa7069fd138fba4022da534f245de4a9b25597c", 4735 + "size": 2042, 4736 + "source": "components/google-cloud-sdk-gsutil-nix-20240106004423.tar.gz", 4737 "type": "tar" 4738 }, 4739 "dependencies": [ ··· 4758 }, 4759 "platform_required": false, 4760 "version": { 4761 + "build_number": 20240106004423, 4762 "version_string": "5.27" 4763 } 4764 }, 4765 { 4766 "data": { 4767 + "checksum": "8b63a83d67b850db7e46f468c9a5370bcdf67aa826c39e5d686c1154e378cf27", 4768 + "contents_checksum": "0f40962ad671c9f7eb0c6d0d9fe2ea0cfa406fa550764864959335988172d5e6", 4769 + "size": 4160, 4770 + "source": "components/google-cloud-sdk-gsutil-win-20240226203415.tar.gz", 4771 "type": "tar" 4772 }, 4773 "dependencies": [ ··· 4789 }, 4790 "platform_required": false, 4791 "version": { 4792 + "build_number": 20240226203415, 4793 "version_string": "5.27" 4794 } 4795 }, ··· 4854 }, 4855 { 4856 "dependencies": [ 4857 + "istioctl-darwin-arm", 4858 + "istioctl-darwin-x86_64", 4859 + "istioctl-linux-arm", 4860 + "istioctl-linux-x86_64" 4861 + ], 4862 + "details": { 4863 + "description": "Support tool for Cloud Service Mesh.", 4864 + "display_name": "istioctl" 4865 + }, 4866 + "id": "istioctl", 4867 + "is_configuration": false, 4868 + "is_hidden": true, 4869 + "is_required": false, 4870 + "platform": { 4871 + "architectures": [ 4872 + "arm", 4873 + "x86_64" 4874 + ], 4875 + "operating_systems": [ 4876 + "LINUX", 4877 + "MACOSX" 4878 + ] 4879 + }, 4880 + "platform_required": false, 4881 + "version": { 4882 + "build_number": 0, 4883 + "version_string": "1.20.311" 4884 + } 4885 + }, 4886 + { 4887 + "data": { 4888 + "checksum": "e21e0b1b1a143e74b1b0ba7392ed4fdd1cf28323bd74ef59f116e218f49824fb", 4889 + "contents_checksum": "ea25e0ffad0fcd5877d24e86ef5b96be2e86446f432926385ebfc08590a9be36", 4890 + "size": 26043155, 4891 + "source": "components/google-cloud-sdk-istioctl-darwin-arm-20240229170130.tar.gz", 4892 + "type": "tar" 4893 + }, 4894 + "dependencies": [ 4895 + "istioctl" 4896 + ], 4897 + "details": { 4898 + "description": "Support tool for Cloud Service Mesh.", 4899 + "display_name": "istioctl" 4900 + }, 4901 + "id": "istioctl-darwin-arm", 4902 + "is_configuration": false, 4903 + "is_hidden": true, 4904 + "is_required": false, 4905 + "platform": { 4906 + "architectures": [ 4907 + "arm" 4908 + ], 4909 + "operating_systems": [ 4910 + "MACOSX" 4911 + ] 4912 + }, 4913 + "platform_required": false, 4914 + "version": { 4915 + "build_number": 20240229170130, 4916 + "version_string": "1.20.311" 4917 + } 4918 + }, 4919 + { 4920 + "data": { 4921 + "checksum": "e26416a75034738c5decb4e88b69f060849db045eb1a416dbe5def38ca036051", 4922 + "contents_checksum": "9ed26dc784a70ed4f98d845dac4ba8b298a90dcdfb169e665e1756cbbfadbfc7", 4923 + "size": 26886694, 4924 + "source": "components/google-cloud-sdk-istioctl-darwin-x86_64-20240229170130.tar.gz", 4925 + "type": "tar" 4926 + }, 4927 + "dependencies": [ 4928 + "istioctl" 4929 + ], 4930 + "details": { 4931 + "description": "Support tool for Cloud Service Mesh.", 4932 + "display_name": "istioctl" 4933 + }, 4934 + "id": "istioctl-darwin-x86_64", 4935 + "is_configuration": false, 4936 + "is_hidden": true, 4937 + "is_required": false, 4938 + "platform": { 4939 + "architectures": [ 4940 + "x86_64" 4941 + ], 4942 + "operating_systems": [ 4943 + "MACOSX" 4944 + ] 4945 + }, 4946 + "platform_required": false, 4947 + "version": { 4948 + "build_number": 20240229170130, 4949 + "version_string": "1.20.311" 4950 + } 4951 + }, 4952 + { 4953 + "data": { 4954 + "checksum": "5fbeafb59962e1f5e42b874caf897a151ce05f2082063e04edddd054be1b9b78", 4955 + "contents_checksum": "62e413e41af9e75ae3523f45e5e60063ce9363d9b73e7b5b427e6e451bbc6816", 4956 + "size": 22993370, 4957 + "source": "components/google-cloud-sdk-istioctl-linux-arm-20240229170130.tar.gz", 4958 + "type": "tar" 4959 + }, 4960 + "dependencies": [ 4961 + "istioctl" 4962 + ], 4963 + "details": { 4964 + "description": "Support tool for Cloud Service Mesh.", 4965 + "display_name": "istioctl" 4966 + }, 4967 + "id": "istioctl-linux-arm", 4968 + "is_configuration": false, 4969 + "is_hidden": true, 4970 + "is_required": false, 4971 + "platform": { 4972 + "architectures": [ 4973 + "arm" 4974 + ], 4975 + "operating_systems": [ 4976 + "LINUX" 4977 + ] 4978 + }, 4979 + "platform_required": false, 4980 + "version": { 4981 + "build_number": 20240229170130, 4982 + "version_string": "1.20.311" 4983 + } 4984 + }, 4985 + { 4986 + "data": { 4987 + "checksum": "167b9dc19cb7b64b5eca9e0efecf609a621eb18ce7ece2288a36038e1124658e", 4988 + "contents_checksum": "1d3a6f9870ab2b0b693927d32154cd44b4686079a9c117590cdc2b385b040869", 4989 + "size": 25190186, 4990 + "source": "components/google-cloud-sdk-istioctl-linux-x86_64-20240229170130.tar.gz", 4991 + "type": "tar" 4992 + }, 4993 + "dependencies": [ 4994 + "istioctl" 4995 + ], 4996 + "details": { 4997 + "description": "Support tool for Cloud Service Mesh.", 4998 + "display_name": "istioctl" 4999 + }, 5000 + "id": "istioctl-linux-x86_64", 5001 + "is_configuration": false, 5002 + "is_hidden": true, 5003 + "is_required": false, 5004 + "platform": { 5005 + "architectures": [ 5006 + "x86_64" 5007 + ], 5008 + "operating_systems": [ 5009 + "LINUX" 5010 + ] 5011 + }, 5012 + "platform_required": false, 5013 + "version": { 5014 + "build_number": 20240229170130, 5015 + "version_string": "1.20.311" 5016 + } 5017 + }, 5018 + { 5019 + "dependencies": [ 5020 "kpt-darwin-arm", 5021 "kpt-darwin-x86_64", 5022 "kpt-linux-arm", ··· 5043 "platform_required": false, 5044 "version": { 5045 "build_number": 0, 5046 + "version_string": "1.0.0-beta.49" 5047 } 5048 }, 5049 { 5050 "data": { 5051 + "checksum": "0790df1606aadcd3818ad4dd7e7826d454602c6e7d2c93376285c8b73487a91b", 5052 + "contents_checksum": "3dbe499874490929331944b276ff0332f4e94f1babf071e6779cb52746bdc906", 5053 + "size": 15088020, 5054 + "source": "components/google-cloud-sdk-kpt-darwin-arm-20231215195722.tar.gz", 5055 "type": "tar" 5056 }, 5057 "dependencies": [ ··· 5075 }, 5076 "platform_required": false, 5077 "version": { 5078 + "build_number": 20231215195722, 5079 + "version_string": "1.0.0-beta.49" 5080 } 5081 }, 5082 { 5083 "data": { 5084 + "checksum": "ca3bceb9312bb492a1050ba6ed200b835102c58c76d55f9d1c6822c3e074d7e9", 5085 + "contents_checksum": "706fe93e6842fe68860507bc65fdbe08660e1063d61c882667dee51608789284", 5086 + "size": 15854938, 5087 + "source": "components/google-cloud-sdk-kpt-darwin-x86_64-20231215195722.tar.gz", 5088 "type": "tar" 5089 }, 5090 "dependencies": [ ··· 5108 }, 5109 "platform_required": false, 5110 "version": { 5111 + "build_number": 20231215195722, 5112 + "version_string": "1.0.0-beta.49" 5113 } 5114 }, 5115 { 5116 "data": { 5117 + "checksum": "56d0a81d5b31304c153cf07d4b5eeb433a27245c095f9e181f49eb8b98536ace", 5118 + "contents_checksum": "78fe72d925a7144d71ac007c684d7fcbdb3f9b4e5e454bcd6c49ebc133cf132f", 5119 + "size": 13629886, 5120 + "source": "components/google-cloud-sdk-kpt-linux-arm-20231215195722.tar.gz", 5121 "type": "tar" 5122 }, 5123 "dependencies": [ ··· 5141 }, 5142 "platform_required": false, 5143 "version": { 5144 + "build_number": 20231215195722, 5145 + "version_string": "1.0.0-beta.49" 5146 } 5147 }, 5148 { 5149 "data": { 5150 + "checksum": "72b3a2a1e41963a892899e273fff38aa93a83acdc90d59c9f3c335fa62b1d30b", 5151 + "contents_checksum": "3de022e880f11c7cbb0e258281b2dc5a7c32ebf688958a99feecaae684cc62bd", 5152 + "size": 15090734, 5153 + "source": "components/google-cloud-sdk-kpt-linux-x86_64-20231215195722.tar.gz", 5154 "type": "tar" 5155 }, 5156 "dependencies": [ ··· 5174 }, 5175 "platform_required": false, 5176 "version": { 5177 + "build_number": 20231215195722, 5178 + "version_string": "1.0.0-beta.49" 5179 } 5180 }, 5181 { 5182 "data": { 5183 + "checksum": "e06b2f2bd331421fa8f8c5776b7370b793101232a8316c61420ebad9622e2709", 5184 + "contents_checksum": "d7c1385f3b9bedea994733230851e6d3548ea4be8f5014b1feadbf4ca2c6ca46", 5185 + "size": 35936, 5186 + "source": "components/google-cloud-sdk-kubectl-20240209195330.tar.gz", 5187 "type": "tar" 5188 }, 5189 "dependencies": [ ··· 5207 "platform": {}, 5208 "platform_required": true, 5209 "version": { 5210 + "build_number": 20240209195330, 5211 + "version_string": "1.26.13" 5212 } 5213 }, 5214 { 5215 "data": { 5216 + "checksum": "ad4230981ddba174dc301d5ed31704c86819b99de90fc0a391d379197b221ff0", 5217 + "contents_checksum": "8208474ff6408f57a030648f9e0409eb66f854f95eb1cc8fc28897e3dae882b7", 5218 + "size": 76487537, 5219 + "source": "components/google-cloud-sdk-kubectl-darwin-arm-20240209195330.tar.gz", 5220 "type": "tar" 5221 }, 5222 "dependencies": [ ··· 5241 }, 5242 "platform_required": true, 5243 "version": { 5244 + "build_number": 20240209195330, 5245 + "version_string": "1.26.13" 5246 } 5247 }, 5248 { 5249 "data": { 5250 + "checksum": "7154fc7e724a41ba9109fc4d3211fdfb24bb9c706f82175a0543158a74ea64f4", 5251 + "contents_checksum": "1db2fb77158d4aeb37b895ca7beb34d2380b6d7bda97e18189c03a235473a26f", 5252 + "size": 80131408, 5253 + "source": "components/google-cloud-sdk-kubectl-darwin-x86_64-20240209195330.tar.gz", 5254 "type": "tar" 5255 }, 5256 "dependencies": [ ··· 5275 }, 5276 "platform_required": true, 5277 "version": { 5278 + "build_number": 20240209195330, 5279 + "version_string": "1.26.13" 5280 } 5281 }, 5282 { 5283 "data": { 5284 + "checksum": "655be0e96cc23f6e04c4ec176ef19d6ac4164f0093de7e6a5ab882128bacf3cc", 5285 + "contents_checksum": "69a8d347c6cc78a42b8ec340794632e449b2ceac8f7a8cf3e677f97743fa6e66", 5286 + "size": 72277260, 5287 + "source": "components/google-cloud-sdk-kubectl-linux-arm-20240209195330.tar.gz", 5288 "type": "tar" 5289 }, 5290 "dependencies": [ ··· 5309 }, 5310 "platform_required": true, 5311 "version": { 5312 + "build_number": 20240209195330, 5313 + "version_string": "1.26.13" 5314 } 5315 }, 5316 { 5317 "data": { 5318 + "checksum": "37931d1405a46bac8833f106c35734512445fc218cc9f1e007604bb48cdee55b", 5319 + "contents_checksum": "8222dd939577e50f8ffc0f667d6a2ccbd88c8a0813925f4889a58d27b180ff98", 5320 + "size": 71637401, 5321 + "source": "components/google-cloud-sdk-kubectl-linux-x86-20240209195330.tar.gz", 5322 "type": "tar" 5323 }, 5324 "dependencies": [ ··· 5343 }, 5344 "platform_required": true, 5345 "version": { 5346 + "build_number": 20240209195330, 5347 + "version_string": "1.26.13" 5348 } 5349 }, 5350 { 5351 "data": { 5352 + "checksum": "479be7e5c55b77eacb26a86afb8063ee0c22664eca0af154c6725c6d413f4631", 5353 + "contents_checksum": "0d9e46f2a36f34ac1d485901b2243bbedc5f66e54cb3d8e42172cbc6484075ea", 5354 + "size": 76232083, 5355 + "source": "components/google-cloud-sdk-kubectl-linux-x86_64-20240209195330.tar.gz", 5356 "type": "tar" 5357 }, 5358 "dependencies": [ ··· 5377 }, 5378 "platform_required": true, 5379 "version": { 5380 + "build_number": 20240209195330, 5381 + "version_string": "1.26.13" 5382 } 5383 }, 5384 { ··· 5411 "platform_required": false, 5412 "version": { 5413 "build_number": 0, 5414 + "version_string": "1.5.0" 5415 } 5416 }, 5417 { 5418 "data": { 5419 + "checksum": "ca1e67289f1d377b6fc300777cdd8853a4ebc7eb11c00db85a3e7394c8daea30", 5420 + "contents_checksum": "3d35d8343042427849f27fe09652e94dbb563ebb6026ded792641beb1c536ebd", 5421 + "size": 21674622, 5422 + "source": "components/google-cloud-sdk-kubectl-oidc-darwin-arm-20231201141418.tar.gz", 5423 "type": "tar" 5424 }, 5425 "dependencies": [ ··· 5443 }, 5444 "platform_required": false, 5445 "version": { 5446 + "build_number": 20231201141418, 5447 + "version_string": "1.5.0" 5448 } 5449 }, 5450 { 5451 "data": { 5452 + "checksum": "d8b175936d29c11412e099627cbc9d4bc4574e7201a48bd045714aa4d5039d97", 5453 + "contents_checksum": "b4c5609dd10b63e9946c1afaf9a6e242fe3b09cb0d5c0c453e4ead4fb173c4e2", 5454 + "size": 22732154, 5455 + "source": "components/google-cloud-sdk-kubectl-oidc-darwin-x86_64-20231201141418.tar.gz", 5456 "type": "tar" 5457 }, 5458 "dependencies": [ ··· 5476 }, 5477 "platform_required": false, 5478 "version": { 5479 + "build_number": 20231201141418, 5480 + "version_string": "1.5.0" 5481 } 5482 }, 5483 { 5484 "data": { 5485 + "checksum": "da25e182095d25746563ded62b84c614f6ba87514e751e1f445b8ef9ddbcf239", 5486 + "contents_checksum": "f1bd3477dd4ad77ed8c02631cfd0b7e102000e6bac495dcd3fb69daf6b21ba93", 5487 + "size": 21172499, 5488 + "source": "components/google-cloud-sdk-kubectl-oidc-linux-arm-20231201141418.tar.gz", 5489 "type": "tar" 5490 }, 5491 "dependencies": [ ··· 5509 }, 5510 "platform_required": false, 5511 "version": { 5512 + "build_number": 20231201141418, 5513 + "version_string": "1.5.0" 5514 } 5515 }, 5516 { 5517 "data": { 5518 + "checksum": "94eb2344e8f1a5cff5b2f1db0c35e3cfc378336f148a701ac94e4111f17069f1", 5519 + "contents_checksum": "9ddfa977b16e32f97c5d5ad574ff09ae06f67b87f218f45a178cfae5f88d4355", 5520 + "size": 22854824, 5521 + "source": "components/google-cloud-sdk-kubectl-oidc-linux-x86_64-20231201141418.tar.gz", 5522 "type": "tar" 5523 }, 5524 "dependencies": [ ··· 5542 }, 5543 "platform_required": false, 5544 "version": { 5545 + "build_number": 20231201141418, 5546 + "version_string": "1.5.0" 5547 } 5548 }, 5549 { 5550 "data": { 5551 + "checksum": "386b201a127ea6723ba4f4ac943c596310d03aa0568d947f23980577fc0c5685", 5552 + "contents_checksum": "72ccfee0b039eaf5d4bd5445044806c84a1af5d55318de032a372af0fdf779c4", 5553 + "size": 23111830, 5554 + "source": "components/google-cloud-sdk-kubectl-oidc-windows-x86_64-20231201141418.tar.gz", 5555 "type": "tar" 5556 }, 5557 "dependencies": [ ··· 5575 }, 5576 "platform_required": false, 5577 "version": { 5578 + "build_number": 20231201141418, 5579 + "version_string": "1.5.0" 5580 } 5581 }, 5582 { 5583 "data": { 5584 + "checksum": "80b067c1eed2401d32b2078e9296322ceecad8de4903105c8627a182bc626f89", 5585 + "contents_checksum": "008b98a6902a2d260427a6067f7b26278c947c3da0f65a135bea6806906de7cc", 5586 + "size": 75077053, 5587 + "source": "components/google-cloud-sdk-kubectl-windows-x86-20240209195330.tar.gz", 5588 "type": "tar" 5589 }, 5590 "dependencies": [ ··· 5611 }, 5612 "platform_required": true, 5613 "version": { 5614 + "build_number": 20240209195330, 5615 + "version_string": "1.26.13" 5616 } 5617 }, 5618 { 5619 "data": { 5620 + "checksum": "a632645797fb65db3f112548543ce4f7b1e048963f264bf5bc9e318f9f85cda2", 5621 + "contents_checksum": "bcdf97a387126e7b831c903b905bc96af608ff2fc5d2013482280535f077c21c", 5622 + "size": 77301897, 5623 + "source": "components/google-cloud-sdk-kubectl-windows-x86_64-20240209195330.tar.gz", 5624 "type": "tar" 5625 }, 5626 "dependencies": [ ··· 5647 }, 5648 "platform_required": true, 5649 "version": { 5650 + "build_number": 20240209195330, 5651 + "version_string": "1.26.13" 5652 } 5653 }, 5654 { ··· 6205 "platform_required": false, 6206 "version": { 6207 "build_number": 0, 6208 + "version_string": "1.32.0" 6209 } 6210 }, 6211 { 6212 "data": { 6213 + "checksum": "6cdb5663bc455017a2c1b7a7d34acaacc7cb4b0af5785db6ccdbfb0beec199fd", 6214 + "contents_checksum": "f7ca3880897a3db31c4619210464df1577b933823248436b8d7b1981d5d302df", 6215 + "size": 35193661, 6216 + "source": "components/google-cloud-sdk-minikube-darwin-arm-20231201141418.tar.gz", 6217 "type": "tar" 6218 }, 6219 "dependencies": [ ··· 6237 }, 6238 "platform_required": false, 6239 "version": { 6240 + "build_number": 20231201141418, 6241 + "version_string": "1.32.0" 6242 } 6243 }, 6244 { 6245 "data": { 6246 + "checksum": "cdad196423217d1a81f1a00f8d706d4e05a27f58c21660e383d78351f4eda51c", 6247 + "contents_checksum": "da96e69ac893ea621f909904c57c57e34b1ae56f60b2de84427fb5d0a6df568f", 6248 + "size": 36498067, 6249 + "source": "components/google-cloud-sdk-minikube-darwin-x86_64-20231201141418.tar.gz", 6250 "type": "tar" 6251 }, 6252 "dependencies": [ ··· 6270 }, 6271 "platform_required": false, 6272 "version": { 6273 + "build_number": 20231201141418, 6274 + "version_string": "1.32.0" 6275 } 6276 }, 6277 { 6278 "data": { 6279 + "checksum": "8a80e98200d3572f803d700c8475c25f143d30997491ff4aaddb30633ab2cf76", 6280 + "contents_checksum": "af8b9577ef05c98d3cb2fe6832a8c2bf182f2cd19cb64a22f492581fc2882d2b", 6281 + "size": 34568485, 6282 + "source": "components/google-cloud-sdk-minikube-linux-arm-20231201141418.tar.gz", 6283 "type": "tar" 6284 }, 6285 "dependencies": [ ··· 6303 }, 6304 "platform_required": false, 6305 "version": { 6306 + "build_number": 20231201141418, 6307 + "version_string": "1.32.0" 6308 } 6309 }, 6310 { 6311 "data": { 6312 + "checksum": "54e5932d307b935e9033bfa9ab956f701ce2bee640c16fddf2ba1f061f2707cd", 6313 + "contents_checksum": "28c6cb2657e863e1023b2f905edf91735e0a122c210669fd59e914ecdcb25846", 6314 + "size": 37111912, 6315 + "source": "components/google-cloud-sdk-minikube-linux-x86_64-20231201141418.tar.gz", 6316 "type": "tar" 6317 }, 6318 "dependencies": [ ··· 6336 }, 6337 "platform_required": false, 6338 "version": { 6339 + "build_number": 20231201141418, 6340 + "version_string": "1.32.0" 6341 } 6342 }, 6343 { 6344 "data": { 6345 + "checksum": "66ccc0487812cac8ab071d878eda07fae7440eb232df9177520cd1522d67cd92", 6346 + "contents_checksum": "6a7de15384ab840952fdbcecad98e73b479542120dc0b9621b0c9452bcca4023", 6347 + "size": 37199202, 6348 + "source": "components/google-cloud-sdk-minikube-windows-x86_64-20231201141418.tar.gz", 6349 "type": "tar" 6350 }, 6351 "dependencies": [ ··· 6369 }, 6370 "platform_required": false, 6371 "version": { 6372 + "build_number": 20231201141418, 6373 + "version_string": "1.32.0" 6374 } 6375 }, 6376 { ··· 6398 "platform_required": false, 6399 "version": { 6400 "build_number": 0, 6401 + "version_string": "1.17.2-rc.1" 6402 } 6403 }, 6404 { 6405 "data": { 6406 + "checksum": "3fd0c679ed6a308edc3460a04e939ef67152e9717ebac4c18b38e98edac51cea", 6407 + "contents_checksum": "bc7d9a0ef3f3a61d1d4d59a500ec650acae2425ab17b723bc4c2ad5d05a0837a", 6408 + "size": 29981784, 6409 + "source": "components/google-cloud-sdk-nomos-darwin-x86_64-20240229170130.tar.gz", 6410 "type": "tar" 6411 }, 6412 "dependencies": [ ··· 6430 }, 6431 "platform_required": false, 6432 "version": { 6433 + "build_number": 20240229170130, 6434 + "version_string": "1.17.2-rc.1" 6435 } 6436 }, 6437 { 6438 "data": { 6439 + "checksum": "93d532890f146415a74734c921ded0e8bdd408d3d9424beb6bbb7113530ec5fe", 6440 + "contents_checksum": "b429ab3ef37405bc06cbd594edc0730dd162f37a933fa854597a1bd5e59c761d", 6441 + "size": 30144691, 6442 + "source": "components/google-cloud-sdk-nomos-linux-x86_64-20240229170130.tar.gz", 6443 "type": "tar" 6444 }, 6445 "dependencies": [ ··· 6463 }, 6464 "platform_required": false, 6465 "version": { 6466 + "build_number": 20240229170130, 6467 + "version_string": "1.17.2-rc.1" 6468 } 6469 }, 6470 { ··· 6744 }, 6745 { 6746 "data": { 6747 + "checksum": "a080b9775844f83bcce039e5c9dff7f4c87d69ae7cf6f0cc85a3c9212b8361ed", 6748 + "contents_checksum": "bcc50b05f18aabe3fd90857ec8933e7580ee9212d764d3efb9ac6ef26b01a9fa", 6749 + "size": 66384213, 6750 + "source": "components/google-cloud-sdk-pubsub-emulator-20240229170130.tar.gz", 6751 "type": "tar" 6752 }, 6753 "dependencies": [ ··· 6764 "platform": {}, 6765 "platform_required": false, 6766 "version": { 6767 + "build_number": 20240229170130, 6768 + "version_string": "0.8.12" 6769 } 6770 }, 6771 { ··· 6799 "platform_required": false, 6800 "version": { 6801 "build_number": 0, 6802 + "version_string": "2.9.0" 6803 } 6804 }, 6805 { 6806 "data": { 6807 + "checksum": "badd2854a9b5a3b4d3b8b55c163656776778c572eba854262bfd637c803ca3b7", 6808 + "contents_checksum": "45e2f3eb2703f29f735cbc820e9d4004f1e95bea1ab96e698ded74f2a5de857d", 6809 + "size": 24426195, 6810 + "source": "components/google-cloud-sdk-skaffold-darwin-arm-20231110155547.tar.gz", 6811 "type": "tar" 6812 }, 6813 "dependencies": [ ··· 6832 }, 6833 "platform_required": false, 6834 "version": { 6835 + "build_number": 20231110155547, 6836 + "version_string": "2.9.0" 6837 } 6838 }, 6839 { 6840 "data": { 6841 + "checksum": "cba0d4046df4764747f9a15ebe061fec60f9f768d1079041feea2321c5cd5e76", 6842 + "contents_checksum": "941bc43d4633be69ed64eadf7ad3ba477929bd6dcb519dc668b77f29b5115a57", 6843 + "size": 26530698, 6844 + "source": "components/google-cloud-sdk-skaffold-darwin-x86_64-20231110155547.tar.gz", 6845 "type": "tar" 6846 }, 6847 "dependencies": [ ··· 6866 }, 6867 "platform_required": false, 6868 "version": { 6869 + "build_number": 20231110155547, 6870 + "version_string": "2.9.0" 6871 } 6872 }, 6873 { 6874 "data": { 6875 + "checksum": "45cb0e94d47b3b28db5d8dda5fbd1dd7fbfad96936ce3bbbdce3f2f8be63a093", 6876 + "contents_checksum": "2f36d4b1b0eab170b21fe0df2964aa31d79694a8860070c32b7eb7bc471a74aa", 6877 + "size": 22439050, 6878 + "source": "components/google-cloud-sdk-skaffold-linux-arm-20231110155547.tar.gz", 6879 "type": "tar" 6880 }, 6881 "dependencies": [ ··· 6900 }, 6901 "platform_required": false, 6902 "version": { 6903 + "build_number": 20231110155547, 6904 + "version_string": "2.9.0" 6905 } 6906 }, 6907 { 6908 "data": { 6909 + "checksum": "6add62f50ef3b9d77259177118ee30251c2f07074fc4555d516a3ae5dfbbb3b6", 6910 + "contents_checksum": "065a00f4d25312efad8a854d21809862d9f0e41588511a1c1930ed5c34e7e57b", 6911 + "size": 24544699, 6912 + "source": "components/google-cloud-sdk-skaffold-linux-x86_64-20231110155547.tar.gz", 6913 "type": "tar" 6914 }, 6915 "dependencies": [ ··· 6934 }, 6935 "platform_required": false, 6936 "version": { 6937 + "build_number": 20231110155547, 6938 + "version_string": "2.9.0" 6939 } 6940 }, 6941 { 6942 "data": { 6943 + "checksum": "577504b2686302f74a7e00bebe9a561b0caa15d3294dc0c9e15dba2d9d745f32", 6944 + "contents_checksum": "940d470dd53773d3e907de4d80ef70df247824167fcb95a05494e66e6bb28c9a", 6945 + "size": 25035980, 6946 + "source": "components/google-cloud-sdk-skaffold-windows-x86_64-20231110155547.tar.gz", 6947 "type": "tar" 6948 }, 6949 "dependencies": [ ··· 6968 }, 6969 "platform_required": false, 6970 "version": { 6971 + "build_number": 20231110155547, 6972 + "version_string": "2.9.0" 6973 } 6974 }, 6975 { ··· 6995 "platform_required": false, 6996 "version": { 6997 "build_number": 0, 6998 + "version_string": "3.2.2" 6999 } 7000 }, 7001 { 7002 "data": { 7003 + "checksum": "6f55289b6cdb9206c110e5e1f3e040e4c9a69aa129c5c0caae71bc668b17bca9", 7004 + "contents_checksum": "2284e73fc19acea54651526b45fd808530a9272fd56b0c553386bbfaac02f729", 7005 + "size": 24615874, 7006 + "source": "components/google-cloud-sdk-spanner-migration-tool-linux-x86_64-20240112150613.tar.gz", 7007 "type": "tar" 7008 }, 7009 "dependencies": [ ··· 7027 }, 7028 "platform_required": false, 7029 "version": { 7030 + "build_number": 20240112150613, 7031 + "version_string": "3.2.2" 7032 } 7033 }, 7034 { ··· 7185 }, 7186 { 7187 "data": { 7188 + "checksum": "a227491c831d1ed3619bfebd69a3a4379729372b302de64c77891f0955316445", 7189 + "contents_checksum": "84c92ebb4b1ae244c96595c4774a9594857e37d900306958fb63fcc58ef61a0f", 7190 + "size": 64183072, 7191 + "source": "components/google-cloud-sdk-terraform-tools-linux-arm-20231201141418.tar.gz", 7192 "type": "tar" 7193 }, 7194 "dependencies": [ ··· 7212 }, 7213 "platform_required": false, 7214 "version": { 7215 + "build_number": 20231201141418, 7216 + "version_string": "0.11.1" 7217 } 7218 }, 7219 { ··· 7284 }, 7285 { 7286 "data": { 7287 + "checksum": "274f5f8fa50423d400d3df880f06bab3a10fadf9ce9a4b65bbb00d5ef84afe3a", 7288 + "contents_checksum": "d3d35039158b47815d55b4cf508dccc25076c4250104e4277e3555782fc81317", 7289 + "size": 51453272, 7290 + "source": "components/google-cloud-sdk-tests-20240229170130.tar.gz", 7291 "type": "tar" 7292 }, 7293 "dependencies": [ ··· 7304 "platform": {}, 7305 "platform_required": false, 7306 "version": { 7307 + "build_number": 20240229170130, 7308 + "version_string": "2024.02.29" 7309 } 7310 } 7311 ], ··· 7324 ], 7325 "post_processing_command": "components post-process", 7326 "release_notes_url": "RELEASE_NOTES", 7327 + "revision": 20240229170130, 7328 "schema_version": { 7329 "no_update": false, 7330 "url": "https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz", 7331 "version": 3 7332 }, 7333 + "version": "467.0.0" 7334 }
+11 -11
pkgs/tools/admin/google-cloud-sdk/data.nix
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 - version = "452.0.1"; 5 googleCloudSdkPkgs = { 6 x86_64-linux = 7 { 8 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-452.0.1-linux-x86_64.tar.gz"; 9 - sha256 = "0dj0hzhfvw1p74ja079jmhrhzrbsivgfm0509rxf9xvh1a0kb8zx"; 10 }; 11 x86_64-darwin = 12 { 13 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-452.0.1-darwin-x86_64.tar.gz"; 14 - sha256 = "0gxz12sblc3slw9rhy0i7x8k61sakr0gwipx75h3cghf72hsx0cn"; 15 }; 16 aarch64-linux = 17 { 18 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-452.0.1-linux-arm.tar.gz"; 19 - sha256 = "1jcacwqxa5ylffpfp5mr509imay24ddsv43l04fygzahv2sv8a2d"; 20 }; 21 aarch64-darwin = 22 { 23 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-452.0.1-darwin-arm.tar.gz"; 24 - sha256 = "1mpydxqkmfrnqiifgplvc5ghn6rs4981p4pw5zgxip7khw64dfap"; 25 }; 26 i686-linux = 27 { 28 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-452.0.1-linux-x86.tar.gz"; 29 - sha256 = "1whijjp2bn24j78rlfpp01y832fnlgj557v6fim9l78zcavgnahz"; 30 }; 31 }; 32 }
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 + version = "467.0.0"; 5 googleCloudSdkPkgs = { 6 x86_64-linux = 7 { 8 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-467.0.0-linux-x86_64.tar.gz"; 9 + sha256 = "09qkz9zw23rza5siz77m52nzfyikdzszrqsl200z2zs2cm69g50w"; 10 }; 11 x86_64-darwin = 12 { 13 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-467.0.0-darwin-x86_64.tar.gz"; 14 + sha256 = "0il26ivqym4n94kjb22pcizgmy6j1p70l2yxjfrsj8i6vhwi3qbq"; 15 }; 16 aarch64-linux = 17 { 18 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-467.0.0-linux-arm.tar.gz"; 19 + sha256 = "1d72l35jcxg7r2r8ajhyigadj8ydp2k1g25kw6rkwvlg4whv8d7b"; 20 }; 21 aarch64-darwin = 22 { 23 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-467.0.0-darwin-arm.tar.gz"; 24 + sha256 = "0yd9hjn8pgaih7hj3hhbl70apcmg5b3gkx758r8m9823vhqkk5wm"; 25 }; 26 i686-linux = 27 { 28 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-467.0.0-linux-x86.tar.gz"; 29 + sha256 = "0wag0qjzh0m6kmpzvmzvr7sy74w20xzgysljwjfravqr1xmw9m48"; 30 }; 31 }; 32 }
+4 -4
pkgs/tools/backup/discordchatexporter-cli/default.nix pkgs/by-name/di/discordchatexporter-cli/package.nix
··· 8 9 buildDotnetModule rec { 10 pname = "discordchatexporter-cli"; 11 - version = "2.41.2"; 12 13 src = fetchFromGitHub { 14 owner = "tyrrrz"; 15 repo = "discordchatexporter"; 16 rev = version; 17 - hash = "sha256-8ETEIZXIo7Tx6Vb9Id/E/8IklpcvO9OpcrYD+mHRX3o="; 18 }; 19 20 projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj"; 21 nugetDeps = ./deps.nix; 22 - dotnet-sdk = dotnetCorePackages.sdk_7_0; 23 - dotnet-runtime = dotnetCorePackages.runtime_7_0; 24 25 postFixup = '' 26 ln -s $out/bin/DiscordChatExporter.Cli $out/bin/discordchatexporter-cli
··· 8 9 buildDotnetModule rec { 10 pname = "discordchatexporter-cli"; 11 + version = "2.42.8"; 12 13 src = fetchFromGitHub { 14 owner = "tyrrrz"; 15 repo = "discordchatexporter"; 16 rev = version; 17 + hash = "sha256-54NTeIs0a8hd2xKQkAxwfyGwEPUlSSXXvDamGLfa9ls="; 18 }; 19 20 projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj"; 21 nugetDeps = ./deps.nix; 22 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 23 + dotnet-runtime = dotnetCorePackages.runtime_8_0; 24 25 postFixup = '' 26 ln -s $out/bin/DiscordChatExporter.Cli $out/bin/discordchatexporter-cli
-23
pkgs/tools/backup/discordchatexporter-cli/deps.nix
··· 1 - # This file was automatically generated by passthru.fetch-deps. 2 - # Please dont edit it manually, your changes might get overwritten! 3 - 4 - { fetchNuGet }: [ 5 - (fetchNuGet { pname = "AdvancedStringBuilder"; version = "0.1.0"; sha256 = "1lpv5sggdxza0bmcqmzf5r4i340f0m7nr5073lac18naj5697q5g"; }) 6 - (fetchNuGet { pname = "AngleSharp"; version = "1.0.4"; sha256 = "1b4qd0z27fdkgy5l8fqcbpzwm29gmmjm2h0mqb9ac94rv6ynq510"; }) 7 - (fetchNuGet { pname = "AsyncKeyedLock"; version = "6.2.1"; sha256 = "0281mj9ppz6q454li6xyllb1hdfkl59bh3psbj4z6l9xjbhnjhz0"; }) 8 - (fetchNuGet { pname = "CliFx"; version = "2.3.4"; sha256 = "14nj8w3j0hbsr5cghj39jx2sh5cg3wsvl517dk8whva5kgy3q1mf"; }) 9 - (fetchNuGet { pname = "CSharpier.MsBuild"; version = "0.25.0"; sha256 = "0xpdb2mss9zhdpks9ajm2h611khhw69xjwxv1k6qf7qrbkb0rgr3"; }) 10 - (fetchNuGet { pname = "Deorcify"; version = "1.0.2"; sha256 = "0nwxyrl4rd5x621i2hs5fl3w7fxpm13lkdssxr9fd5042px2gqbm"; }) 11 - (fetchNuGet { pname = "DotnetRuntimeBootstrapper"; version = "2.5.1"; sha256 = "192795akjmdxvp8p52g256rg0nzriipfsr8j808h69j6himhp4d7"; }) 12 - (fetchNuGet { pname = "Gress"; version = "2.1.1"; sha256 = "1svz1flhyl26h3xjch0acjjinympgf6bhj5vpb188njfih3ip4ck"; }) 13 - (fetchNuGet { pname = "JsonExtensions"; version = "1.2.0"; sha256 = "0g54hibabbqqfhxjlnxwv1rxagpali5agvnpymp2w3dk8h6q66xy"; }) 14 - (fetchNuGet { pname = "Polly"; version = "8.0.0"; sha256 = "08wzmkz9qjz61sczmipm8m5j4bg8dg4mbjgspagx4hh28q8mvagn"; }) 15 - (fetchNuGet { pname = "Polly.Core"; version = "8.0.0"; sha256 = "10w6z81kidkdhbwkhyas9kc1zmvz0r3mzcsii01wpydw27v0rzxp"; }) 16 - (fetchNuGet { pname = "RazorBlade"; version = "0.4.4"; sha256 = "1dkyyn58gcrl1sh6mv3g7zqapqg8lb5nzn10aj3vh4l51wpl0l5r"; }) 17 - (fetchNuGet { pname = "Spectre.Console"; version = "0.47.0"; sha256 = "0gc9ana660an7d76w9qd8l62lv66dc69vr5lslr896b1313ywakp"; }) 18 - (fetchNuGet { pname = "Superpower"; version = "3.0.0"; sha256 = "0p6riay4732j1fahc081dzgs9q4z3n2fpxrin4zfpj6q2226dhz4"; }) 19 - (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; }) 20 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "7.0.0"; sha256 = "0sn6hxdjm7bw3xgsmg041ccchsa4sp02aa27cislw3x61dbr68kq"; }) 21 - (fetchNuGet { pname = "WebMarkupMin.Core"; version = "2.14.0"; sha256 = "0c41zw1bwz6ybxagq5vr26cx7najd17rrdbqjpn8mabynq380ayr"; }) 22 - (fetchNuGet { pname = "YoutubeExplode"; version = "6.3.4"; sha256 = "0zlfga8aigxxqa96jmqsp95h5plvxxlgymsrbcl5z1ds9ga0ldkd"; }) 23 - ]
···
-15
pkgs/tools/backup/discordchatexporter-cli/updater.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts 3 - set -eo pipefail 4 - cd "$(dirname "${BASH_SOURCE[0]}")" 5 - 6 - new_version="$(curl -s "https://api.github.com/repos/tyrrrz/DiscordChatExporter/releases?per_page=1" | jq -r '.[0].name')" 7 - old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)" 8 - if [[ "$new_version" == "$old_version" ]]; then 9 - echo "Up to date" 10 - exit 0 11 - fi 12 - 13 - cd ../../../.. 14 - update-source-version discordchatexporter-cli "$new_version" 15 - $(nix-build -A discordchatexporter-cli.fetch-deps --no-out-link)
···
+3
pkgs/tools/filesystems/ceph/default.nix
··· 218 inherit version; 219 hash = "sha256-hBSYub7GFiOxtsR+u8AjZ8B9YODhlfGXkIF/EMyNsLc="; 220 }; 221 }); 222 223 # Ceph does not support `kubernetes` >= 19, see:
··· 218 inherit version; 219 hash = "sha256-hBSYub7GFiOxtsR+u8AjZ8B9YODhlfGXkIF/EMyNsLc="; 220 }; 221 + pytestFlagsArray = [ 222 + "-W" "ignore::pytest.PytestRemovedIn8Warning" 223 + ]; 224 }); 225 226 # Ceph does not support `kubernetes` >= 19, see:
+2 -2
pkgs/tools/misc/diffoscope/default.nix
··· 79 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 80 python3.pkgs.buildPythonApplication rec { 81 pname = "diffoscope"; 82 - version = "259"; 83 84 src = fetchurl { 85 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 86 - hash = "sha256-WYgFWM6HKFt3xVcRNytQPWOf3ZpH1cG7Cghhu/AES80="; 87 }; 88 89 outputs = [
··· 79 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 80 python3.pkgs.buildPythonApplication rec { 81 pname = "diffoscope"; 82 + version = "260"; 83 84 src = fetchurl { 85 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 86 + hash = "sha256-jZXBX6aIArm3eFmJpr60HxlcSlVNCK/wSL1yeIl/MjQ="; 87 }; 88 89 outputs = [
+2 -2
pkgs/tools/package-management/dpkg/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "dpkg"; 21 - version = "1.22.4"; 22 23 src = fetchgit { 24 url = "https://git.launchpad.net/ubuntu/+source/dpkg"; 25 rev = "applied/${version}"; 26 - hash = "sha256-tpYSOimBd78rAthQUga/MNraWll9qEA+vRG+/F+t3mM="; 27 }; 28 29 configureFlags = [
··· 18 19 stdenv.mkDerivation rec { 20 pname = "dpkg"; 21 + version = "1.22.5"; 22 23 src = fetchgit { 24 url = "https://git.launchpad.net/ubuntu/+source/dpkg"; 25 rev = "applied/${version}"; 26 + hash = "sha256-Rm3DacQF/0yAVtDaixPzE8IZ2Y+RZneCCVBCoYM64K4="; 27 }; 28 29 configureFlags = [
+1
pkgs/tools/package-management/nix/common.nix
··· 20 # Major.minor versions unaffected by CVE-2024-27297 21 unaffectedByFodSandboxEscape = [ 22 "2.3" 23 "2.18" 24 "2.19" 25 "2.20"
··· 20 # Major.minor versions unaffected by CVE-2024-27297 21 unaffectedByFodSandboxEscape = [ 22 "2.3" 23 + "2.16" 24 "2.18" 25 "2.19" 26 "2.20"
+2 -5
pkgs/tools/package-management/nix/default.nix
··· 230 }; 231 232 nix_2_16 = common { 233 - version = "2.16.2"; 234 - hash = "sha256-VXIYCDkvAWeMoU0W2ZI0TeOszCZA1o8trz6YCPFD5ac="; 235 - patches = [ 236 - patch-rapidcheck-shared 237 - ]; 238 }; 239 240 nix_2_17 = common {
··· 230 }; 231 232 nix_2_16 = common { 233 + version = "2.16.3"; 234 + hash = "sha256-/tnjRCk+VaWPThzdn3C0zU1AMON+7AFsHgTTzErFxV4="; 235 }; 236 237 nix_2_17 = common {
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 - version = "2024-03-15"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-5PUgea2Gz0qtHp+O31fxYTTWIc19Z0ZwVB7XqyFAxNU="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 + version = "2024-03-17"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-Vqdi7/jr+Di20y1HoFbXnl2riZfadgsRmzpSryW03M0="; 16 }; 17 18 nativeBuildInputs = [
+2 -2
pkgs/tools/security/lynis/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "lynis"; 5 - version = "3.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "CISOfy"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-NdGq/sItJIjLX+7qKIwKpaZKqS/0PNFSO9H4Hp5umVk="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "lynis"; 5 + version = "3.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "CISOfy"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-DdsBGISKZuqDwSeuy8/73qskP3XoO3QRT7+bkKIJcBU="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles makeWrapper ];
+2 -2
pkgs/tools/security/trufflehog/default.nix
··· 7 8 buildGoModule rec { 9 pname = "trufflehog"; 10 - version = "3.70.0"; 11 12 src = fetchFromGitHub { 13 owner = "trufflesecurity"; 14 repo = "trufflehog"; 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-KcJhnev2j4Y7jlIZe2cUgkiJEz5V+oG69SURs5tXCVU="; 17 }; 18 19 vendorHash = "sha256-oJ5aPffmBDCJ6cD2nG1Q5w+R6LV6oDf4v9hIWN9jNdc=";
··· 7 8 buildGoModule rec { 9 pname = "trufflehog"; 10 + version = "3.70.1"; 11 12 src = fetchFromGitHub { 13 owner = "trufflesecurity"; 14 repo = "trufflehog"; 15 rev = "refs/tags/v${version}"; 16 + hash = "sha256-02sBzWMzpSUx1wFpKapP93JVLSlPmnXMwLAYhOVqiYE="; 17 }; 18 19 vendorHash = "sha256-oJ5aPffmBDCJ6cD2nG1Q5w+R6LV6oDf4v9hIWN9jNdc=";
+4 -8
pkgs/top-level/all-packages.nix
··· 6769 6770 cicero-tui = callPackage ../tools/misc/cicero-tui { }; 6771 6772 - cilium-cli = callPackage ../applications/networking/cluster/cilium { }; 6773 6774 cjdns = callPackage ../tools/networking/cjdns { }; 6775 cjdns-tools = callPackage ../tools/admin/cjdns-tools { }; ··· 20792 dillong = callPackage ../applications/networking/browsers/dillong { }; 20793 20794 directfb = callPackage ../development/libraries/directfb { }; 20795 - 20796 - discordchatexporter-cli = callPackage ../tools/backup/discordchatexporter-cli { }; 20797 20798 discord-gamesdk = callPackage ../development/libraries/discord-gamesdk { }; 20799 ··· 35284 35285 tijolo = callPackage ../applications/editors/tijolo { }; 35286 35287 - tilemaker = callPackage ../applications/misc/tilemaker { 35288 - protobuf = protobuf_21; 35289 - }; 35290 - 35291 timbreid = callPackage ../applications/audio/pd-plugins/timbreid { 35292 fftw = fftwSinglePrec; 35293 }; ··· 37019 37020 chiaki = libsForQt5.callPackage ../games/chiaki { }; 37021 37022 - chiaki4deck = libsForQt5.callPackage ../games/chiaki4deck { }; 37023 37024 chromium-bsu = callPackage ../games/chromium-bsu { }; 37025
··· 6769 6770 cicero-tui = callPackage ../tools/misc/cicero-tui { }; 6771 6772 + cilium-cli = callPackage ../applications/networking/cluster/cilium { 6773 + buildGoModule = buildGo122Module; 6774 + }; 6775 6776 cjdns = callPackage ../tools/networking/cjdns { }; 6777 cjdns-tools = callPackage ../tools/admin/cjdns-tools { }; ··· 20794 dillong = callPackage ../applications/networking/browsers/dillong { }; 20795 20796 directfb = callPackage ../development/libraries/directfb { }; 20797 20798 discord-gamesdk = callPackage ../development/libraries/discord-gamesdk { }; 20799 ··· 35284 35285 tijolo = callPackage ../applications/editors/tijolo { }; 35286 35287 timbreid = callPackage ../applications/audio/pd-plugins/timbreid { 35288 fftw = fftwSinglePrec; 35289 }; ··· 37015 37016 chiaki = libsForQt5.callPackage ../games/chiaki { }; 37017 37018 + chiaki4deck = qt6Packages.callPackage ../games/chiaki4deck { }; 37019 37020 chromium-bsu = callPackage ../games/chromium-bsu { }; 37021