Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 14c5be0a baa66216

+2651 -5637
+11
maintainers/maintainer-list.nix
··· 4589 githubId = 399718; 4590 name = "Chris Martin"; 4591 }; 4592 chrisjefferson = { 4593 email = "chris@bubblescope.net"; 4594 github = "ChrisJefferson"; ··· 22598 github = "sargon"; 22599 githubId = 178904; 22600 name = "Daniel Ehlers"; 22601 }; 22602 sascha8a = { 22603 email = "sascha@localhost.systems";
··· 4589 githubId = 399718; 4590 name = "Chris Martin"; 4591 }; 4592 + chrisheib = { 4593 + github = "chrisheib"; 4594 + githubId = 6112968; 4595 + name = "Christoph Heibutzki"; 4596 + }; 4597 chrisjefferson = { 4598 email = "chris@bubblescope.net"; 4599 github = "ChrisJefferson"; ··· 22603 github = "sargon"; 22604 githubId = 178904; 22605 name = "Daniel Ehlers"; 22606 + }; 22607 + sarunint = { 22608 + email = "nixpkgs@sarunint.com"; 22609 + github = "sarunint"; 22610 + githubId = 3850197; 22611 + name = "Sarun Intaralawan"; 22612 }; 22613 sascha8a = { 22614 email = "sascha@localhost.systems";
+6 -1
nixos/modules/hardware/cpu/amd-microcode.nix
··· 4 pkgs, 5 ... 6 }: 7 { 8 ###### interface 9 options = { ··· 16 ''; 17 }; 18 19 }; 20 21 ###### implementation 22 config = lib.mkIf config.hardware.cpu.amd.updateMicrocode { 23 # Microcode updates must be the first item prepended in the initrd 24 - boot.initrd.prepend = lib.mkOrder 1 [ "${pkgs.microcode-amd}/amd-ucode.img" ]; 25 }; 26 27 }
··· 4 pkgs, 5 ... 6 }: 7 + 8 + let 9 + cfg = config.hardware.cpu.amd; 10 + in 11 { 12 ###### interface 13 options = { ··· 20 ''; 21 }; 22 23 + hardware.cpu.amd.microcodePackage = lib.mkPackageOption pkgs "microcode-amd" { }; 24 }; 25 26 ###### implementation 27 config = lib.mkIf config.hardware.cpu.amd.updateMicrocode { 28 # Microcode updates must be the first item prepended in the initrd 29 + boot.initrd.prepend = lib.mkOrder 1 [ "${cfg.microcodePackage}/amd-ucode.img" ]; 30 }; 31 32 }
+1
nixos/modules/module-list.nix
··· 1036 ./services/monitoring/ups.nix 1037 ./services/monitoring/uptime-kuma.nix 1038 ./services/monitoring/uptime.nix 1039 ./services/monitoring/vmagent.nix 1040 ./services/monitoring/vmalert.nix 1041 ./services/monitoring/vnstat.nix
··· 1036 ./services/monitoring/ups.nix 1037 ./services/monitoring/uptime-kuma.nix 1038 ./services/monitoring/uptime.nix 1039 + ./services/monitoring/vlagent.nix 1040 ./services/monitoring/vmagent.nix 1041 ./services/monitoring/vmalert.nix 1042 ./services/monitoring/vnstat.nix
+39 -4
nixos/modules/services/databases/victorialogs.nix
··· 2 config, 3 pkgs, 4 lib, 5 ... 6 }: 7 let ··· 24 "-storageDataPath=/var/lib/${cfg.stateDir}" 25 "-httpListenAddr=${cfg.listenAddress}" 26 ] 27 - ++ cfg.extraOptions; 28 in 29 { 30 options.services.victorialogs = { ··· 45 This directory will be created automatically using systemd's StateDirectory mechanism. 46 ''; 47 }; 48 extraOptions = mkOption { 49 type = types.listOf types.str; 50 default = [ ]; 51 example = literalExpression '' 52 [ 53 - "-httpAuth.username=username" 54 - "-httpAuth.password=file:///abs/path/to/file" 55 "-loggerLevel=WARN" 56 ] 57 ''; ··· 62 }; 63 }; 64 config = mkIf cfg.enable { 65 systemd.services.victorialogs = { 66 description = "VictoriaLogs logs database"; 67 wantedBy = [ "multi-user.target" ]; ··· 69 startLimitBurst = 5; 70 71 serviceConfig = { 72 - ExecStart = escapeShellArgs startCLIList; 73 DynamicUser = true; 74 RestartSec = 1; 75 Restart = "on-failure"; 76 RuntimeDirectory = "victorialogs";
··· 2 config, 3 pkgs, 4 lib, 5 + utils, 6 ... 7 }: 8 let ··· 25 "-storageDataPath=/var/lib/${cfg.stateDir}" 26 "-httpListenAddr=${cfg.listenAddress}" 27 ] 28 + ++ lib.optionals (cfg.basicAuthUsername != null) [ 29 + "-httpAuth.username=${cfg.basicAuthUsername}" 30 + ] 31 + ++ lib.optionals (cfg.basicAuthPasswordFile != null) [ 32 + "-httpAuth.password=file://%d/basic_auth_password" 33 + ]; 34 in 35 { 36 options.services.victorialogs = { ··· 51 This directory will be created automatically using systemd's StateDirectory mechanism. 52 ''; 53 }; 54 + basicAuthUsername = lib.mkOption { 55 + default = null; 56 + type = lib.types.nullOr lib.types.str; 57 + description = '' 58 + Basic Auth username used to protect VictoriaLogs instance by authorization 59 + ''; 60 + }; 61 + 62 + basicAuthPasswordFile = lib.mkOption { 63 + default = null; 64 + type = lib.types.nullOr lib.types.str; 65 + description = '' 66 + File that contains the Basic Auth password used to protect VictoriaLogs instance by authorization 67 + ''; 68 + }; 69 extraOptions = mkOption { 70 type = types.listOf types.str; 71 default = [ ]; 72 example = literalExpression '' 73 [ 74 "-loggerLevel=WARN" 75 ] 76 ''; ··· 81 }; 82 }; 83 config = mkIf cfg.enable { 84 + 85 + assertions = [ 86 + { 87 + assertion = 88 + (cfg.basicAuthUsername == null && cfg.basicAuthPasswordFile == null) 89 + || (cfg.basicAuthUsername != null && cfg.basicAuthPasswordFile != null); 90 + message = "Both basicAuthUsername and basicAuthPasswordFile must be set together to enable basicAuth functionality, or neither should be set."; 91 + } 92 + ]; 93 + 94 systemd.services.victorialogs = { 95 description = "VictoriaLogs logs database"; 96 wantedBy = [ "multi-user.target" ]; ··· 98 startLimitBurst = 5; 99 100 serviceConfig = { 101 + ExecStart = lib.concatStringsSep " " [ 102 + (escapeShellArgs startCLIList) 103 + (utils.escapeSystemdExecArgs cfg.extraOptions) 104 + ]; 105 DynamicUser = true; 106 + LoadCredential = lib.optional ( 107 + cfg.basicAuthPasswordFile != null 108 + ) "basic_auth_password:${cfg.basicAuthPasswordFile}"; 109 RestartSec = 1; 110 Restart = "on-failure"; 111 RuntimeDirectory = "victorialogs";
+132
nixos/modules/services/monitoring/vlagent.nix
···
··· 1 + { 2 + config, 3 + pkgs, 4 + lib, 5 + utils, 6 + ... 7 + }: 8 + 9 + let 10 + cfg = config.services.vlagent; 11 + 12 + startCLIList = [ 13 + (lib.getExe cfg.package) 14 + ] 15 + ++ lib.optionals (cfg.remoteWrite.url != null) [ 16 + "-remoteWrite.url=${cfg.remoteWrite.url}" 17 + "-remoteWrite.tmpDataPath=%C/vlagent/remote_write_tmp" 18 + ] 19 + ++ lib.optionals (cfg.remoteWrite.basicAuthPasswordFile != null) [ 20 + "-remoteWrite.basicAuth.passwordFile=%d/remote_write_basic_auth_password" 21 + ] 22 + ++ lib.optionals (cfg.remoteWrite.basicAuthUsername != null) [ 23 + "-remoteWrite.basicAuth.username=${cfg.remoteWrite.basicAuthUsername}" 24 + ] 25 + ++ lib.optionals (cfg.remoteWrite.maxDiskUsagePerUrl != null) [ 26 + "-remoteWrite.maxDiskUsagePerUrl=${cfg.remoteWrite.maxDiskUsagePerUrl}" 27 + ]; 28 + in 29 + { 30 + meta = { 31 + maintainers = [ lib.maintainers.shawn8901 ]; 32 + }; 33 + 34 + options.services.vlagent = { 35 + enable = lib.mkOption { 36 + type = lib.types.bool; 37 + default = false; 38 + description = '' 39 + Whether to enable VictoriaMetrics's `vlagent`. 40 + 41 + `vlagent` is a tiny agent which helps you collect logs from various sources and store them in VictoriaLogs . 42 + ''; 43 + }; 44 + 45 + package = lib.mkPackageOption pkgs "vlagent" { }; 46 + 47 + remoteWrite = { 48 + url = lib.mkOption { 49 + default = null; 50 + type = lib.types.nullOr lib.types.str; 51 + description = '' 52 + Endpoint for the victorialogs instance 53 + ''; 54 + }; 55 + maxDiskUsagePerUrl = lib.mkOption { 56 + default = null; 57 + type = lib.types.nullOr lib.types.str; 58 + description = '' 59 + The maximum file-based buffer size in bytes. Supports the following optional suffixes for size values: KB, MB, GB, TB, KiB, MiB, GiB, TiB. 60 + See docs for more infomations: <https://docs.victoriametrics.com/vlagent.html#advanced-usage> 61 + ''; 62 + }; 63 + basicAuthUsername = lib.mkOption { 64 + default = null; 65 + type = lib.types.nullOr lib.types.str; 66 + description = '' 67 + Basic Auth username used to connect to remote_write endpoint 68 + ''; 69 + }; 70 + basicAuthPasswordFile = lib.mkOption { 71 + default = null; 72 + type = lib.types.nullOr lib.types.str; 73 + description = '' 74 + File that contains the Basic Auth password used to connect to remote_write endpoint 75 + ''; 76 + }; 77 + }; 78 + 79 + openFirewall = lib.mkOption { 80 + type = lib.types.bool; 81 + default = false; 82 + description = '' 83 + Whether to open the firewall for the default ports. 84 + ''; 85 + }; 86 + 87 + extraArgs = lib.mkOption { 88 + type = lib.types.listOf lib.types.str; 89 + default = [ ]; 90 + description = '' 91 + Extra args to pass to `vlagent`. See the docs: 92 + <https://docs.victoriametrics.com/vlagent.html#advanced-usage> 93 + or {command}`vlagent -help` for more information. 94 + ''; 95 + }; 96 + }; 97 + 98 + config = lib.mkIf cfg.enable { 99 + 100 + assertions = [ 101 + { 102 + assertion = 103 + (cfg.remoteWrite.basicAuthUsername == null && cfg.remoteWrite.basicAuthPasswordFile == null) 104 + || (cfg.remoteWrite.basicAuthUsername != null && cfg.remoteWrite.basicAuthPasswordFile != null); 105 + message = "Both basicAuthUsername and basicAuthPasswordFile must be set together to enable basicAuth functionality, or neither should be set."; 106 + } 107 + ]; 108 + 109 + networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall [ 9429 ]; 110 + 111 + systemd.services.vlagent = { 112 + wantedBy = [ "multi-user.target" ]; 113 + after = [ "network.target" ]; 114 + description = "vlagent system service"; 115 + serviceConfig = { 116 + DynamicUser = true; 117 + User = "vlagent"; 118 + Group = "vlagent"; 119 + Type = "simple"; 120 + Restart = "on-failure"; 121 + CacheDirectory = "vlagent"; 122 + ExecStart = lib.concatStringsSep " " [ 123 + (lib.escapeShellArgs startCLIList) 124 + (utils.escapeSystemdExecArgs cfg.extraArgs) 125 + ]; 126 + LoadCredential = lib.optional ( 127 + cfg.remoteWrite.basicAuthPasswordFile != null 128 + ) "remote_write_basic_auth_password:${cfg.remoteWrite.basicAuthPasswordFile}"; 129 + }; 130 + }; 131 + }; 132 + }
+1 -1
nixos/tests/all-tests.nix
··· 1575 vector = import ./vector { inherit runTest; }; 1576 velocity = runTest ./velocity.nix; 1577 vengi-tools = runTest ./vengi-tools.nix; 1578 - victorialogs = runTest ./victorialogs.nix; 1579 victoriametrics = import ./victoriametrics { inherit runTest; }; 1580 vikunja = runTest ./vikunja.nix; 1581 virtualbox = handleTestOn [ "x86_64-linux" ] ./virtualbox.nix { };
··· 1575 vector = import ./vector { inherit runTest; }; 1576 velocity = runTest ./velocity.nix; 1577 vengi-tools = runTest ./vengi-tools.nix; 1578 + victorialogs = import ./victorialogs { inherit runTest; }; 1579 victoriametrics = import ./victoriametrics { inherit runTest; }; 1580 vikunja = runTest ./vikunja.nix; 1581 virtualbox = handleTestOn [ "x86_64-linux" ] ./virtualbox.nix { };
+1 -1
nixos/tests/victorialogs.nix nixos/tests/victorialogs/local-write.nix
··· 1 { lib, ... }: 2 { 3 - name = "victorialogs"; 4 meta.maintainers = with lib.maintainers; [ marie ]; 5 6 nodes.machine =
··· 1 { lib, ... }: 2 { 3 + name = "victorialogs-local-write"; 4 meta.maintainers = with lib.maintainers; [ marie ]; 5 6 nodes.machine =
+5
nixos/tests/victorialogs/default.nix
···
··· 1 + { runTest }: 2 + { 3 + local-write = runTest ./local-write.nix; 4 + remote-write-with-vlagent = runTest ./remote-write-with-vlagent.nix; 5 + }
+58
nixos/tests/victorialogs/remote-write-with-vlagent.nix
···
··· 1 + { lib, pkgs, ... }: 2 + let 3 + 4 + username = "vltest"; 5 + password = "rUceu1W41U"; # random string 6 + passwordFile = pkgs.writeText "password-file" password; 7 + in 8 + { 9 + name = "victorialogs-remote-write-with-vlagent"; 10 + meta.maintainers = [ lib.maintainers.shawn8901 ]; 11 + 12 + nodes.server = 13 + { pkgs, ... }: 14 + { 15 + networking.firewall.allowedTCPPorts = [ 9428 ]; 16 + services.victorialogs = { 17 + enable = true; 18 + basicAuthUsername = username; 19 + basicAuthPasswordFile = toString passwordFile; 20 + }; 21 + }; 22 + 23 + nodes.client = 24 + { pkgs, ... }: 25 + { 26 + services.vlagent = { 27 + enable = true; 28 + remoteWrite = { 29 + url = "http://server:9428/internal/insert"; 30 + basicAuthUsername = username; 31 + basicAuthPasswordFile = toString passwordFile; 32 + }; 33 + }; 34 + 35 + services.journald.upload = { 36 + enable = true; 37 + settings = { 38 + Upload.URL = "http://localhost:9429/insert/journald"; 39 + }; 40 + }; 41 + environment.systemPackages = [ pkgs.curl ]; 42 + 43 + }; 44 + 45 + testScript = '' 46 + server.wait_for_unit("victorialogs.service") 47 + server.wait_for_open_port(9428) 48 + 49 + client.wait_for_unit("vlagent") 50 + client.wait_for_open_port(9429) 51 + 52 + client.wait_for_unit("systemd-journal-upload") 53 + 54 + client.succeed("echo 'meow' | systemd-cat -p info") 55 + 56 + server.wait_until_succeeds("curl -u ${username}:${password} --fail http://localhost:9428/select/logsql/query -d 'query=\"meow\"' | grep meow") 57 + ''; 58 + }
+2 -2
pkgs/applications/editors/vscode/extensions/default.nix
··· 4853 mktplcRef = { 4854 name = "emacs-mcx"; 4855 publisher = "tuttieee"; 4856 - version = "0.88.10"; 4857 - hash = "sha256-Umfe+V3BzHsEow6nOvtvg9EN1T0O6SbVwt5g2YHkaSU="; 4858 }; 4859 meta = { 4860 changelog = "https://github.com/whitphx/vscode-emacs-mcx/blob/main/CHANGELOG.md";
··· 4853 mktplcRef = { 4854 name = "emacs-mcx"; 4855 publisher = "tuttieee"; 4856 + version = "0.89.0"; 4857 + hash = "sha256-dlAgnN8Ku6hapJrWI8DPAFbbOFllr9pu8H6atWdkNYc="; 4858 }; 4859 meta = { 4860 changelog = "https://github.com/whitphx/vscode-emacs-mcx/blob/main/CHANGELOG.md";
+2 -2
pkgs/applications/editors/vscode/extensions/github.copilot-chat/default.nix
··· 7 mktplcRef = { 8 publisher = "github"; 9 name = "copilot-chat"; 10 - version = "0.29.1"; 11 - hash = "sha256-v9PP+3psOOMCrIgIaVqrwOUZ9tqTXiSjUUuOcCrEie4="; 12 }; 13 14 meta = {
··· 7 mktplcRef = { 8 publisher = "github"; 9 name = "copilot-chat"; 10 + version = "0.30.1"; 11 + hash = "sha256-itANvwMSzFBPnU4B6erEXO/x3SNlqHygXlTE6jLc+0U="; 12 }; 13 14 meta = {
+6
pkgs/applications/emulators/wine/winetricks.nix
··· 13 gnused, 14 gnugrep, 15 bash, 16 }: 17 18 stdenv.mkDerivation rec { ··· 39 gnused 40 gnugrep 41 bash 42 ]; 43 44 makeFlags = [ "PREFIX=$(out)" ];
··· 13 gnused, 14 gnugrep, 15 bash, 16 + gawk, 17 + gnutar, 18 + gzip, 19 }: 20 21 stdenv.mkDerivation rec { ··· 42 gnused 43 gnugrep 44 bash 45 + gawk 46 + gnutar 47 + gzip 48 ]; 49 50 makeFlags = [ "PREFIX=$(out)" ];
+13 -13
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 36 "vendorHash": "sha256-jK7JuARpoxq7hvq5+vTtUwcYot0YqlOZdtDwq4IqKvk=" 37 }, 38 "aiven": { 39 - "hash": "sha256-36gEDXAZgeniGe6zCmfLkVj0yxYfSk11tmk61cWly04=", 40 "homepage": "https://registry.terraform.io/providers/aiven/aiven", 41 "owner": "aiven", 42 "repo": "terraform-provider-aiven", 43 - "rev": "v4.43.0", 44 "spdx": "MIT", 45 - "vendorHash": "sha256-jZ950/nPFt3+t3CHsNEkYo7POabRCHVvcfu04Iq3cJc=" 46 }, 47 "akamai": { 48 "hash": "sha256-pXBQikG5yjCPj/Nv6+qJBv3+BpRx04CbDQo9Q9nU0o4=", ··· 180 "vendorHash": null 181 }, 182 "bigip": { 183 - "hash": "sha256-lhN9YPufx6JITEhwLfqUMudXKTJqFdRCPkS+lTZpmH8=", 184 "homepage": "https://registry.terraform.io/providers/F5Networks/bigip", 185 "owner": "F5Networks", 186 "repo": "terraform-provider-bigip", 187 - "rev": "v1.23.1", 188 "spdx": "MPL-2.0", 189 "vendorHash": null 190 }, ··· 435 "vendorHash": "sha256-oVTanZpCWs05HwyIKW2ajiBPz1HXOFzBAt5Us+EtTRw=" 436 }, 437 "equinix": { 438 - "hash": "sha256-xa8u2qaaCZVOE5pRpPNHGGwG1LiP2CBtQmjeefkUQIU=", 439 "homepage": "https://registry.terraform.io/providers/equinix/equinix", 440 "owner": "equinix", 441 "repo": "terraform-provider-equinix", 442 - "rev": "v4.0.0", 443 "spdx": "MIT", 444 - "vendorHash": "sha256-sAzGv+g1y2y4InpUE2HyT5ibfWWkxW9q29bNGSiDyn8=" 445 }, 446 "exoscale": { 447 "hash": "sha256-TA8mMMeelnkvGcvRy9+QLiRegQYf8xo6vRZ+kb+DY5A=", ··· 1255 "vendorHash": "sha256-4gtM8U//RXpYc4klCgpZS/3ZRzAHfcbOPTnNqlX4H7M=" 1256 }, 1257 "spacelift": { 1258 - "hash": "sha256-ovKmGAJ2uLWaVVdwApzCK9RI/tgPS5SoxVmBM8kclxI=", 1259 "homepage": "https://registry.terraform.io/providers/spacelift-io/spacelift", 1260 "owner": "spacelift-io", 1261 "repo": "terraform-provider-spacelift", 1262 - "rev": "v1.28.1", 1263 "spdx": "MIT", 1264 "vendorHash": "sha256-D8VG9CWP4wo+cxb/ewP+b6qAeaBCu6lNwH2leoiBMAc=" 1265 }, 1266 "spotinst": { 1267 - "hash": "sha256-0SuXvbGms5JM05YqRFZ1RpzI/qy6VO5tSXFP43C2bhw=", 1268 "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", 1269 "owner": "spotinst", 1270 "repo": "terraform-provider-spotinst", 1271 - "rev": "v1.224.1", 1272 "spdx": "MPL-2.0", 1273 - "vendorHash": "sha256-vY8ii9HtItuNmbX1ij/orH7RmVV6OhIbKV0VEjQpaig=" 1274 }, 1275 "ssh": { 1276 "hash": "sha256-1UN5QJyjCuxs2vQYlSuz2jsu/HgGTxOoWWRcv4qcwow=",
··· 36 "vendorHash": "sha256-jK7JuARpoxq7hvq5+vTtUwcYot0YqlOZdtDwq4IqKvk=" 37 }, 38 "aiven": { 39 + "hash": "sha256-9VyYG1wtYJf/eOvHhNWKgs439uSbHmsz7caoq0odZXM=", 40 "homepage": "https://registry.terraform.io/providers/aiven/aiven", 41 "owner": "aiven", 42 "repo": "terraform-provider-aiven", 43 + "rev": "v4.44.0", 44 "spdx": "MIT", 45 + "vendorHash": "sha256-HABnNXDWP1s8Gcv1ZW/fNr+dOyUnJ4nTMujjRXsVxu4=" 46 }, 47 "akamai": { 48 "hash": "sha256-pXBQikG5yjCPj/Nv6+qJBv3+BpRx04CbDQo9Q9nU0o4=", ··· 180 "vendorHash": null 181 }, 182 "bigip": { 183 + "hash": "sha256-oJIIhIBQXx5u2OwYcyMo4uRdzWdWLz2PlO9r9ZSRIzo=", 184 "homepage": "https://registry.terraform.io/providers/F5Networks/bigip", 185 "owner": "F5Networks", 186 "repo": "terraform-provider-bigip", 187 + "rev": "v1.24.0", 188 "spdx": "MPL-2.0", 189 "vendorHash": null 190 }, ··· 435 "vendorHash": "sha256-oVTanZpCWs05HwyIKW2ajiBPz1HXOFzBAt5Us+EtTRw=" 436 }, 437 "equinix": { 438 + "hash": "sha256-h/KqxQJVXBszpAxY8zYO8iQxwowtmRbDMdsHeOasjwQ=", 439 "homepage": "https://registry.terraform.io/providers/equinix/equinix", 440 "owner": "equinix", 441 "repo": "terraform-provider-equinix", 442 + "rev": "v4.1.0", 443 "spdx": "MIT", 444 + "vendorHash": "sha256-65gJeUzeWB4BA76Mbw4eBScByyYyUqOl2/jwRVMJOVM=" 445 }, 446 "exoscale": { 447 "hash": "sha256-TA8mMMeelnkvGcvRy9+QLiRegQYf8xo6vRZ+kb+DY5A=", ··· 1255 "vendorHash": "sha256-4gtM8U//RXpYc4klCgpZS/3ZRzAHfcbOPTnNqlX4H7M=" 1256 }, 1257 "spacelift": { 1258 + "hash": "sha256-3YjA+x2pL0qzo2ucb8oK5+X+Zb5ewNQkDbizKKop6e0=", 1259 "homepage": "https://registry.terraform.io/providers/spacelift-io/spacelift", 1260 "owner": "spacelift-io", 1261 "repo": "terraform-provider-spacelift", 1262 + "rev": "v1.29.0", 1263 "spdx": "MIT", 1264 "vendorHash": "sha256-D8VG9CWP4wo+cxb/ewP+b6qAeaBCu6lNwH2leoiBMAc=" 1265 }, 1266 "spotinst": { 1267 + "hash": "sha256-uLIm4j7rCPvA8xVZwdd7xHrL8KNLbZypGLVNzUuhVjw=", 1268 "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", 1269 "owner": "spotinst", 1270 "repo": "terraform-provider-spotinst", 1271 + "rev": "v1.225.0", 1272 "spdx": "MPL-2.0", 1273 + "vendorHash": "sha256-tfANShbNhWcMZvnJUIbErukbGZyPABVS4l0VKWcLqZA=" 1274 }, 1275 "ssh": { 1276 "hash": "sha256-1UN5QJyjCuxs2vQYlSuz2jsu/HgGTxOoWWRcv4qcwow=",
+18 -11
pkgs/by-name/_0/_010editor/package.nix
··· 15 pname = "010editor"; 16 version = "16.0"; 17 18 - src = 19 - if stdenv.hostPlatform.isLinux then 20 - fetchzip { 21 - url = "https://download.sweetscape.com/010EditorLinux64Installer${finalAttrs.version}.tar.gz"; 22 - hash = "sha256-DK+AIk90AC/KjZR0yBMHaRF7ajuX+UvT8rqDVdL678M="; 23 - } 24 - else 25 - fetchurl { 26 - url = "https://download.sweetscape.com/010EditorMac64Installer${finalAttrs.version}.dmg"; 27 - hash = "sha256-TWatSVqm9a+bVLXtJjiWAtkcB7qZqoeJ7Gmr62XUVz4="; 28 - }; 29 30 sourceRoot = "."; 31 ··· 94 "text/x-c++src" 95 "text/xml" 96 ]; 97 }; 98 99 meta = {
··· 15 pname = "010editor"; 16 version = "16.0"; 17 18 + src = finalAttrs.passthru.srcs.${stdenv.hostPlatform.system}; 19 20 sourceRoot = "."; 21 ··· 84 "text/x-c++src" 85 "text/xml" 86 ]; 87 + }; 88 + 89 + passthru.srcs = { 90 + x86_64-linux = fetchzip { 91 + url = "https://download.sweetscape.com/010EditorLinux64Installer${finalAttrs.version}.tar.gz"; 92 + hash = "sha256-DK+AIk90AC/KjZR0yBMHaRF7ajuX+UvT8rqDVdL678M="; 93 + }; 94 + 95 + x86_64-darwin = fetchurl { 96 + url = "https://download.sweetscape.com/010EditorMac64Installer${finalAttrs.version}.dmg"; 97 + hash = "sha256-TWatSVqm9a+bVLXtJjiWAtkcB7qZqoeJ7Gmr62XUVz4="; 98 + }; 99 + 100 + aarch64-darwin = fetchurl { 101 + url = "https://download.sweetscape.com/010EditorMacARM64Installer${finalAttrs.version}.dmg"; 102 + hash = "sha256-CtExBuu6EL8ilq3+gtwjNwnMxXkKgPdrk34tYvjN2ps="; 103 + }; 104 }; 105 106 meta = {
+2 -2
pkgs/by-name/ar/armadillo/package.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "armadillo"; 14 - version = "14.6.2"; 15 16 src = fetchurl { 17 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 18 - hash = "sha256-Sd23ZnCx0aFC92BjfmU+xbILpzDnYwovPCsT0yTDfgg="; 19 }; 20 21 nativeBuildInputs = [ cmake ];
··· 11 12 stdenv.mkDerivation rec { 13 pname = "armadillo"; 14 + version = "14.6.3"; 15 16 src = fetchurl { 17 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 18 + hash = "sha256-rR4qpbkKOJq3FOLQCXLOZNpCWCsX3YnBiTU1hVHm4gU="; 19 }; 20 21 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/at/attic-client/package.nix
··· 21 22 rustPlatform.buildRustPackage { 23 pname = "attic"; 24 - version = "0-unstable-2025-08-07"; 25 26 src = fetchFromGitHub { 27 owner = "zhaofengli"; 28 repo = "attic"; 29 - rev = "687dd7d607824edf11bf33e3d91038467e7fad43"; 30 - hash = "sha256-swR4GCqp5LHYJQ7pdePBtsqYyiyy+ASfUvhAgou23KI="; 31 }; 32 33 nativeBuildInputs = [
··· 21 22 rustPlatform.buildRustPackage { 23 pname = "attic"; 24 + version = "0-unstable-2025-08-16"; 25 26 src = fetchFromGitHub { 27 owner = "zhaofengli"; 28 repo = "attic"; 29 + rev = "c1cfee9b63e48d9cee18e538ca32f1721078de91"; 30 + hash = "sha256-cKw1bfEwW+pQWsvzOAe0GfsSNXTSFS+5MYcZFQB5dFc="; 31 }; 32 33 nativeBuildInputs = [
+3 -3
pkgs/by-name/au/auth0-cli/package.nix
··· 8 9 buildGoModule rec { 10 pname = "auth0-cli"; 11 - version = "1.17.0"; 12 13 src = fetchFromGitHub { 14 owner = "auth0"; 15 repo = "auth0-cli"; 16 tag = "v${version}"; 17 - hash = "sha256-Tt+7uWQ7SAC6R/gnvJDBkdLjXA60s1H5YSU8IPTNSnc="; 18 }; 19 20 - vendorHash = "sha256-oyHERi5dpq/fEAgJ/RDapfDY918g3+VqFfqPpQDh+Cg="; 21 22 ldflags = [ 23 "-s"
··· 8 9 buildGoModule rec { 10 pname = "auth0-cli"; 11 + version = "1.17.1"; 12 13 src = fetchFromGitHub { 14 owner = "auth0"; 15 repo = "auth0-cli"; 16 tag = "v${version}"; 17 + hash = "sha256-0FdKsLwONsTgysdxjaXvT4nRarPsNhKuBRRkk2ldz90="; 18 }; 19 20 + vendorHash = "sha256-JJ1ppCTgclxiljNsRlDP8KNlW/wCVFaV1ExXf1ItheU="; 21 22 ldflags = [ 23 "-s"
+3 -3
pkgs/by-name/ba/bacon/package.nix
··· 27 28 rustPlatform.buildRustPackage (finalAttrs: { 29 pname = "bacon"; 30 - version = "3.16.0"; 31 32 src = fetchFromGitHub { 33 owner = "Canop"; 34 repo = "bacon"; 35 tag = "v${finalAttrs.version}"; 36 - hash = "sha256-+gcH527HaYQsyCqULWhEgz8DNwK8vIWJjVSZhcGme74="; 37 }; 38 39 - cargoHash = "sha256-kr6c5n9A6Cjv3CPdIS9XkelauK/uBsTDt5iowWmAZn4="; 40 41 buildFeatures = lib.optionals withSound [ 42 "sound"
··· 27 28 rustPlatform.buildRustPackage (finalAttrs: { 29 pname = "bacon"; 30 + version = "3.17.0"; 31 32 src = fetchFromGitHub { 33 owner = "Canop"; 34 repo = "bacon"; 35 tag = "v${finalAttrs.version}"; 36 + hash = "sha256-pXdwcihl3fXv9vn6YiU+Da/LL3ImDiDPDnghM/NA1mc="; 37 }; 38 39 + cargoHash = "sha256-GHJqgVa7yym1B1s6rZ2/0FbJ0ZJck76FFHqzcgWhFt0="; 40 41 buildFeatures = lib.optionals withSound [ 42 "sound"
-1621
pkgs/by-name/br/break-time/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "android_system_properties" 7 - version = "0.1.5" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 10 - dependencies = [ 11 - "libc", 12 - ] 13 - 14 - [[package]] 15 - name = "ansi_term" 16 - version = "0.12.1" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 19 - dependencies = [ 20 - "winapi", 21 - ] 22 - 23 - [[package]] 24 - name = "antidote" 25 - version = "1.0.0" 26 - source = "registry+https://github.com/rust-lang/crates.io-index" 27 - checksum = "34fde25430d87a9388dadbe6e34d7f72a462c8b43ac8d309b42b0a8505d7e2a5" 28 - 29 - [[package]] 30 - name = "atk" 31 - version = "0.8.0" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "444daefa55f229af145ea58d77efd23725024ee1f6f3102743709aa6b18c663e" 34 - dependencies = [ 35 - "atk-sys", 36 - "bitflags", 37 - "glib", 38 - "glib-sys", 39 - "gobject-sys", 40 - "libc", 41 - ] 42 - 43 - [[package]] 44 - name = "atk-sys" 45 - version = "0.9.1" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "e552c1776737a4c80110d06b36d099f47c727335f9aaa5d942a72b6863a8ec6f" 48 - dependencies = [ 49 - "glib-sys", 50 - "gobject-sys", 51 - "libc", 52 - "pkg-config", 53 - ] 54 - 55 - [[package]] 56 - name = "atty" 57 - version = "0.2.14" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 60 - dependencies = [ 61 - "hermit-abi 0.1.19", 62 - "libc", 63 - "winapi", 64 - ] 65 - 66 - [[package]] 67 - name = "autocfg" 68 - version = "1.1.0" 69 - source = "registry+https://github.com/rust-lang/crates.io-index" 70 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 71 - 72 - [[package]] 73 - name = "base64" 74 - version = "0.9.3" 75 - source = "registry+https://github.com/rust-lang/crates.io-index" 76 - checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" 77 - dependencies = [ 78 - "byteorder", 79 - "safemem", 80 - ] 81 - 82 - [[package]] 83 - name = "base64" 84 - version = "0.10.1" 85 - source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" 87 - dependencies = [ 88 - "byteorder", 89 - ] 90 - 91 - [[package]] 92 - name = "bitflags" 93 - version = "1.3.2" 94 - source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 96 - 97 - [[package]] 98 - name = "break-time" 99 - version = "0.1.2" 100 - dependencies = [ 101 - "byteorder", 102 - "cairo-rs", 103 - "chrono", 104 - "gdk", 105 - "gdk-pixbuf", 106 - "gdk-pixbuf-sys", 107 - "gio", 108 - "glib", 109 - "glib-sys", 110 - "gobject-sys", 111 - "google-calendar3", 112 - "gtk", 113 - "gtk-sys", 114 - "hyper", 115 - "hyper-rustls", 116 - "indoc", 117 - "pango", 118 - "serde", 119 - "serde_json", 120 - "structopt", 121 - "toml", 122 - "xcb", 123 - "xdg", 124 - "yup-oauth2", 125 - ] 126 - 127 - [[package]] 128 - name = "bumpalo" 129 - version = "3.12.2" 130 - source = "registry+https://github.com/rust-lang/crates.io-index" 131 - checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 132 - 133 - [[package]] 134 - name = "byteorder" 135 - version = "1.4.3" 136 - source = "registry+https://github.com/rust-lang/crates.io-index" 137 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 138 - 139 - [[package]] 140 - name = "cairo-rs" 141 - version = "0.8.1" 142 - source = "registry+https://github.com/rust-lang/crates.io-index" 143 - checksum = "157049ba9618aa3a61c39d5d785102c04d3b1f40632a706c621a9aedc21e6084" 144 - dependencies = [ 145 - "bitflags", 146 - "cairo-sys-rs", 147 - "glib", 148 - "glib-sys", 149 - "gobject-sys", 150 - "libc", 151 - ] 152 - 153 - [[package]] 154 - name = "cairo-sys-rs" 155 - version = "0.9.2" 156 - source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "ff65ba02cac715be836f63429ab00a767d48336efc5497c5637afb53b4f14d63" 158 - dependencies = [ 159 - "glib-sys", 160 - "libc", 161 - "pkg-config", 162 - ] 163 - 164 - [[package]] 165 - name = "cc" 166 - version = "1.0.79" 167 - source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 169 - 170 - [[package]] 171 - name = "cfg-if" 172 - version = "1.0.0" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 175 - 176 - [[package]] 177 - name = "chrono" 178 - version = "0.4.24" 179 - source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 181 - dependencies = [ 182 - "iana-time-zone", 183 - "js-sys", 184 - "num-integer", 185 - "num-traits", 186 - "time", 187 - "wasm-bindgen", 188 - "winapi", 189 - ] 190 - 191 - [[package]] 192 - name = "clap" 193 - version = "2.34.0" 194 - source = "registry+https://github.com/rust-lang/crates.io-index" 195 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 196 - dependencies = [ 197 - "ansi_term", 198 - "atty", 199 - "bitflags", 200 - "strsim", 201 - "textwrap", 202 - "unicode-width", 203 - "vec_map", 204 - ] 205 - 206 - [[package]] 207 - name = "core-foundation" 208 - version = "0.9.3" 209 - source = "registry+https://github.com/rust-lang/crates.io-index" 210 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 211 - dependencies = [ 212 - "core-foundation-sys", 213 - "libc", 214 - ] 215 - 216 - [[package]] 217 - name = "core-foundation-sys" 218 - version = "0.8.4" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 221 - 222 - [[package]] 223 - name = "either" 224 - version = "1.8.1" 225 - source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 227 - 228 - [[package]] 229 - name = "errno" 230 - version = "0.3.1" 231 - source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 233 - dependencies = [ 234 - "errno-dragonfly", 235 - "libc", 236 - "windows-sys 0.48.0", 237 - ] 238 - 239 - [[package]] 240 - name = "errno-dragonfly" 241 - version = "0.1.2" 242 - source = "registry+https://github.com/rust-lang/crates.io-index" 243 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 244 - dependencies = [ 245 - "cc", 246 - "libc", 247 - ] 248 - 249 - [[package]] 250 - name = "fastrand" 251 - version = "1.9.0" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 254 - dependencies = [ 255 - "instant", 256 - ] 257 - 258 - [[package]] 259 - name = "foreign-types" 260 - version = "0.3.2" 261 - source = "registry+https://github.com/rust-lang/crates.io-index" 262 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 263 - dependencies = [ 264 - "foreign-types-shared", 265 - ] 266 - 267 - [[package]] 268 - name = "foreign-types-shared" 269 - version = "0.1.1" 270 - source = "registry+https://github.com/rust-lang/crates.io-index" 271 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 272 - 273 - [[package]] 274 - name = "futures-channel" 275 - version = "0.3.28" 276 - source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 278 - dependencies = [ 279 - "futures-core", 280 - ] 281 - 282 - [[package]] 283 - name = "futures-core" 284 - version = "0.3.28" 285 - source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 287 - 288 - [[package]] 289 - name = "futures-executor" 290 - version = "0.3.28" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 293 - dependencies = [ 294 - "futures-core", 295 - "futures-task", 296 - "futures-util", 297 - ] 298 - 299 - [[package]] 300 - name = "futures-io" 301 - version = "0.3.28" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 304 - 305 - [[package]] 306 - name = "futures-macro" 307 - version = "0.3.28" 308 - source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 310 - dependencies = [ 311 - "proc-macro2", 312 - "quote", 313 - "syn 2.0.15", 314 - ] 315 - 316 - [[package]] 317 - name = "futures-task" 318 - version = "0.3.28" 319 - source = "registry+https://github.com/rust-lang/crates.io-index" 320 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 321 - 322 - [[package]] 323 - name = "futures-util" 324 - version = "0.3.28" 325 - source = "registry+https://github.com/rust-lang/crates.io-index" 326 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 327 - dependencies = [ 328 - "futures-core", 329 - "futures-macro", 330 - "futures-task", 331 - "pin-project-lite", 332 - "pin-utils", 333 - "slab", 334 - ] 335 - 336 - [[package]] 337 - name = "gdk" 338 - version = "0.12.1" 339 - source = "registry+https://github.com/rust-lang/crates.io-index" 340 - checksum = "fbe5e8772fc0865c52460cdd7a59d7d47700f44d9809d1dd00eecceb769a7589" 341 - dependencies = [ 342 - "bitflags", 343 - "cairo-rs", 344 - "cairo-sys-rs", 345 - "gdk-pixbuf", 346 - "gdk-sys", 347 - "gio", 348 - "gio-sys", 349 - "glib", 350 - "glib-sys", 351 - "gobject-sys", 352 - "libc", 353 - "pango", 354 - ] 355 - 356 - [[package]] 357 - name = "gdk-pixbuf" 358 - version = "0.8.0" 359 - source = "registry+https://github.com/rust-lang/crates.io-index" 360 - checksum = "e248220c46b329b097d4b158d2717f8c688f16dd76d0399ace82b3e98062bdd7" 361 - dependencies = [ 362 - "gdk-pixbuf-sys", 363 - "gio", 364 - "gio-sys", 365 - "glib", 366 - "glib-sys", 367 - "gobject-sys", 368 - "libc", 369 - ] 370 - 371 - [[package]] 372 - name = "gdk-pixbuf-sys" 373 - version = "0.9.1" 374 - source = "registry+https://github.com/rust-lang/crates.io-index" 375 - checksum = "d8991b060a9e9161bafd09bf4a202e6fd404f5b4dd1a08d53a1e84256fb34ab0" 376 - dependencies = [ 377 - "gio-sys", 378 - "glib-sys", 379 - "gobject-sys", 380 - "libc", 381 - "pkg-config", 382 - ] 383 - 384 - [[package]] 385 - name = "gdk-sys" 386 - version = "0.9.1" 387 - source = "registry+https://github.com/rust-lang/crates.io-index" 388 - checksum = "6adf679e91d1bff0c06860287f80403e7db54c2d2424dce0a470023b56c88fbb" 389 - dependencies = [ 390 - "cairo-sys-rs", 391 - "gdk-pixbuf-sys", 392 - "gio-sys", 393 - "glib-sys", 394 - "gobject-sys", 395 - "libc", 396 - "pango-sys", 397 - "pkg-config", 398 - ] 399 - 400 - [[package]] 401 - name = "gio" 402 - version = "0.8.1" 403 - source = "registry+https://github.com/rust-lang/crates.io-index" 404 - checksum = "0cd10f9415cce39b53f8024bf39a21f84f8157afa52da53837b102e585a296a5" 405 - dependencies = [ 406 - "bitflags", 407 - "futures-channel", 408 - "futures-core", 409 - "futures-io", 410 - "futures-util", 411 - "gio-sys", 412 - "glib", 413 - "glib-sys", 414 - "gobject-sys", 415 - "lazy_static", 416 - "libc", 417 - ] 418 - 419 - [[package]] 420 - name = "gio-sys" 421 - version = "0.9.1" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "4fad225242b9eae7ec8a063bb86974aca56885014672375e5775dc0ea3533911" 424 - dependencies = [ 425 - "glib-sys", 426 - "gobject-sys", 427 - "libc", 428 - "pkg-config", 429 - ] 430 - 431 - [[package]] 432 - name = "glib" 433 - version = "0.9.3" 434 - source = "registry+https://github.com/rust-lang/crates.io-index" 435 - checksum = "40fb573a09841b6386ddf15fd4bc6655b4f5b106ca962f57ecaecde32a0061c0" 436 - dependencies = [ 437 - "bitflags", 438 - "futures-channel", 439 - "futures-core", 440 - "futures-executor", 441 - "futures-task", 442 - "futures-util", 443 - "glib-sys", 444 - "gobject-sys", 445 - "lazy_static", 446 - "libc", 447 - ] 448 - 449 - [[package]] 450 - name = "glib-sys" 451 - version = "0.9.1" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "95856f3802f446c05feffa5e24859fe6a183a7cb849c8449afc35c86b1e316e2" 454 - dependencies = [ 455 - "libc", 456 - "pkg-config", 457 - ] 458 - 459 - [[package]] 460 - name = "gobject-sys" 461 - version = "0.9.1" 462 - source = "registry+https://github.com/rust-lang/crates.io-index" 463 - checksum = "31d1a804f62034eccf370006ccaef3708a71c31d561fee88564abe71177553d9" 464 - dependencies = [ 465 - "glib-sys", 466 - "libc", 467 - "pkg-config", 468 - ] 469 - 470 - [[package]] 471 - name = "google-calendar3" 472 - version = "1.0.14+20200705" 473 - source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "f214b09a7438ccd85fe20a491c8d7c05d0ccd07a125112411aadf0f0d0b17cbb" 475 - dependencies = [ 476 - "hyper", 477 - "mime", 478 - "serde", 479 - "serde_derive", 480 - "serde_json", 481 - "url", 482 - "yup-oauth2", 483 - ] 484 - 485 - [[package]] 486 - name = "gtk" 487 - version = "0.8.1" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "87e1e8d70290239c668594002d1b174fcc7d7ef5d26670ee141490ede8facf8f" 490 - dependencies = [ 491 - "atk", 492 - "bitflags", 493 - "cairo-rs", 494 - "cairo-sys-rs", 495 - "cc", 496 - "gdk", 497 - "gdk-pixbuf", 498 - "gdk-pixbuf-sys", 499 - "gdk-sys", 500 - "gio", 501 - "gio-sys", 502 - "glib", 503 - "glib-sys", 504 - "gobject-sys", 505 - "gtk-sys", 506 - "lazy_static", 507 - "libc", 508 - "pango", 509 - "pango-sys", 510 - ] 511 - 512 - [[package]] 513 - name = "gtk-sys" 514 - version = "0.9.2" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "53def660c7b48b00b510c81ef2d2fbd3c570f1527081d8d7947f471513e1a4c1" 517 - dependencies = [ 518 - "atk-sys", 519 - "cairo-sys-rs", 520 - "gdk-pixbuf-sys", 521 - "gdk-sys", 522 - "gio-sys", 523 - "glib-sys", 524 - "gobject-sys", 525 - "libc", 526 - "pango-sys", 527 - "pkg-config", 528 - ] 529 - 530 - [[package]] 531 - name = "heck" 532 - version = "0.3.3" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 535 - dependencies = [ 536 - "unicode-segmentation", 537 - ] 538 - 539 - [[package]] 540 - name = "hermit-abi" 541 - version = "0.1.19" 542 - source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 544 - dependencies = [ 545 - "libc", 546 - ] 547 - 548 - [[package]] 549 - name = "hermit-abi" 550 - version = "0.2.6" 551 - source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 553 - dependencies = [ 554 - "libc", 555 - ] 556 - 557 - [[package]] 558 - name = "hermit-abi" 559 - version = "0.3.1" 560 - source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 562 - 563 - [[package]] 564 - name = "home" 565 - version = "0.5.5" 566 - source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 568 - dependencies = [ 569 - "windows-sys 0.48.0", 570 - ] 571 - 572 - [[package]] 573 - name = "httparse" 574 - version = "1.8.0" 575 - source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 577 - 578 - [[package]] 579 - name = "hyper" 580 - version = "0.10.16" 581 - source = "registry+https://github.com/rust-lang/crates.io-index" 582 - checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" 583 - dependencies = [ 584 - "base64 0.9.3", 585 - "httparse", 586 - "language-tags", 587 - "log 0.3.9", 588 - "mime", 589 - "num_cpus", 590 - "time", 591 - "traitobject", 592 - "typeable", 593 - "unicase", 594 - "url", 595 - ] 596 - 597 - [[package]] 598 - name = "hyper-native-tls" 599 - version = "0.3.0" 600 - source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "6d375598f442742b0e66208ee12501391f1c7ac0bafb90b4fe53018f81f06068" 602 - dependencies = [ 603 - "antidote", 604 - "hyper", 605 - "native-tls", 606 - ] 607 - 608 - [[package]] 609 - name = "hyper-rustls" 610 - version = "0.6.2" 611 - source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "71f7b2e5858ab9e19771dc361159f09ee5031734a6f7471fe0947db0238d92b7" 613 - dependencies = [ 614 - "hyper", 615 - "rustls", 616 - "webpki", 617 - "webpki-roots", 618 - ] 619 - 620 - [[package]] 621 - name = "iana-time-zone" 622 - version = "0.1.56" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 625 - dependencies = [ 626 - "android_system_properties", 627 - "core-foundation-sys", 628 - "iana-time-zone-haiku", 629 - "js-sys", 630 - "wasm-bindgen", 631 - "windows", 632 - ] 633 - 634 - [[package]] 635 - name = "iana-time-zone-haiku" 636 - version = "0.1.2" 637 - source = "registry+https://github.com/rust-lang/crates.io-index" 638 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 639 - dependencies = [ 640 - "cc", 641 - ] 642 - 643 - [[package]] 644 - name = "idna" 645 - version = "0.1.5" 646 - source = "registry+https://github.com/rust-lang/crates.io-index" 647 - checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 648 - dependencies = [ 649 - "matches", 650 - "unicode-bidi", 651 - "unicode-normalization", 652 - ] 653 - 654 - [[package]] 655 - name = "indoc" 656 - version = "0.3.6" 657 - source = "registry+https://github.com/rust-lang/crates.io-index" 658 - checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 659 - dependencies = [ 660 - "indoc-impl", 661 - "proc-macro-hack", 662 - ] 663 - 664 - [[package]] 665 - name = "indoc-impl" 666 - version = "0.3.6" 667 - source = "registry+https://github.com/rust-lang/crates.io-index" 668 - checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 669 - dependencies = [ 670 - "proc-macro-hack", 671 - "proc-macro2", 672 - "quote", 673 - "syn 1.0.109", 674 - "unindent", 675 - ] 676 - 677 - [[package]] 678 - name = "instant" 679 - version = "0.1.12" 680 - source = "registry+https://github.com/rust-lang/crates.io-index" 681 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 682 - dependencies = [ 683 - "cfg-if", 684 - ] 685 - 686 - [[package]] 687 - name = "io-lifetimes" 688 - version = "1.0.10" 689 - source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 691 - dependencies = [ 692 - "hermit-abi 0.3.1", 693 - "libc", 694 - "windows-sys 0.48.0", 695 - ] 696 - 697 - [[package]] 698 - name = "itertools" 699 - version = "0.8.2" 700 - source = "registry+https://github.com/rust-lang/crates.io-index" 701 - checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" 702 - dependencies = [ 703 - "either", 704 - ] 705 - 706 - [[package]] 707 - name = "itoa" 708 - version = "1.0.6" 709 - source = "registry+https://github.com/rust-lang/crates.io-index" 710 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 711 - 712 - [[package]] 713 - name = "js-sys" 714 - version = "0.3.62" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" 717 - dependencies = [ 718 - "wasm-bindgen", 719 - ] 720 - 721 - [[package]] 722 - name = "language-tags" 723 - version = "0.2.2" 724 - source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" 726 - 727 - [[package]] 728 - name = "lazy_static" 729 - version = "1.4.0" 730 - source = "registry+https://github.com/rust-lang/crates.io-index" 731 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 732 - 733 - [[package]] 734 - name = "libc" 735 - version = "0.2.144" 736 - source = "registry+https://github.com/rust-lang/crates.io-index" 737 - checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 738 - 739 - [[package]] 740 - name = "linux-raw-sys" 741 - version = "0.3.7" 742 - source = "registry+https://github.com/rust-lang/crates.io-index" 743 - checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 744 - 745 - [[package]] 746 - name = "log" 747 - version = "0.3.9" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 750 - dependencies = [ 751 - "log 0.4.17", 752 - ] 753 - 754 - [[package]] 755 - name = "log" 756 - version = "0.4.17" 757 - source = "registry+https://github.com/rust-lang/crates.io-index" 758 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 759 - dependencies = [ 760 - "cfg-if", 761 - ] 762 - 763 - [[package]] 764 - name = "matches" 765 - version = "0.1.10" 766 - source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 768 - 769 - [[package]] 770 - name = "mime" 771 - version = "0.2.6" 772 - source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" 774 - dependencies = [ 775 - "log 0.3.9", 776 - ] 777 - 778 - [[package]] 779 - name = "native-tls" 780 - version = "0.2.11" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 783 - dependencies = [ 784 - "lazy_static", 785 - "libc", 786 - "log 0.4.17", 787 - "openssl", 788 - "openssl-probe", 789 - "openssl-sys", 790 - "schannel", 791 - "security-framework", 792 - "security-framework-sys", 793 - "tempfile", 794 - ] 795 - 796 - [[package]] 797 - name = "num-integer" 798 - version = "0.1.45" 799 - source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 801 - dependencies = [ 802 - "autocfg", 803 - "num-traits", 804 - ] 805 - 806 - [[package]] 807 - name = "num-traits" 808 - version = "0.2.15" 809 - source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 811 - dependencies = [ 812 - "autocfg", 813 - ] 814 - 815 - [[package]] 816 - name = "num_cpus" 817 - version = "1.15.0" 818 - source = "registry+https://github.com/rust-lang/crates.io-index" 819 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 820 - dependencies = [ 821 - "hermit-abi 0.2.6", 822 - "libc", 823 - ] 824 - 825 - [[package]] 826 - name = "once_cell" 827 - version = "1.17.1" 828 - source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 830 - 831 - [[package]] 832 - name = "openssl" 833 - version = "0.10.52" 834 - source = "registry+https://github.com/rust-lang/crates.io-index" 835 - checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 836 - dependencies = [ 837 - "bitflags", 838 - "cfg-if", 839 - "foreign-types", 840 - "libc", 841 - "once_cell", 842 - "openssl-macros", 843 - "openssl-sys", 844 - ] 845 - 846 - [[package]] 847 - name = "openssl-macros" 848 - version = "0.1.1" 849 - source = "registry+https://github.com/rust-lang/crates.io-index" 850 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 851 - dependencies = [ 852 - "proc-macro2", 853 - "quote", 854 - "syn 2.0.15", 855 - ] 856 - 857 - [[package]] 858 - name = "openssl-probe" 859 - version = "0.1.5" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 862 - 863 - [[package]] 864 - name = "openssl-sys" 865 - version = "0.9.87" 866 - source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 868 - dependencies = [ 869 - "cc", 870 - "libc", 871 - "pkg-config", 872 - "vcpkg", 873 - ] 874 - 875 - [[package]] 876 - name = "pango" 877 - version = "0.8.0" 878 - source = "registry+https://github.com/rust-lang/crates.io-index" 879 - checksum = "1e9c6b728f1be8edb5f9f981420b651d5ea30bdb9de89f1f1262d0084a020577" 880 - dependencies = [ 881 - "bitflags", 882 - "glib", 883 - "glib-sys", 884 - "gobject-sys", 885 - "lazy_static", 886 - "libc", 887 - "pango-sys", 888 - ] 889 - 890 - [[package]] 891 - name = "pango-sys" 892 - version = "0.9.1" 893 - source = "registry+https://github.com/rust-lang/crates.io-index" 894 - checksum = "86b93d84907b3cf0819bff8f13598ba72843bee579d5ebc2502e4b0367b4be7d" 895 - dependencies = [ 896 - "glib-sys", 897 - "gobject-sys", 898 - "libc", 899 - "pkg-config", 900 - ] 901 - 902 - [[package]] 903 - name = "percent-encoding" 904 - version = "1.0.1" 905 - source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 907 - 908 - [[package]] 909 - name = "pin-project-lite" 910 - version = "0.2.9" 911 - source = "registry+https://github.com/rust-lang/crates.io-index" 912 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 913 - 914 - [[package]] 915 - name = "pin-utils" 916 - version = "0.1.0" 917 - source = "registry+https://github.com/rust-lang/crates.io-index" 918 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 919 - 920 - [[package]] 921 - name = "pkg-config" 922 - version = "0.3.27" 923 - source = "registry+https://github.com/rust-lang/crates.io-index" 924 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 925 - 926 - [[package]] 927 - name = "proc-macro-error" 928 - version = "1.0.4" 929 - source = "registry+https://github.com/rust-lang/crates.io-index" 930 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 931 - dependencies = [ 932 - "proc-macro-error-attr", 933 - "proc-macro2", 934 - "quote", 935 - "syn 1.0.109", 936 - "version_check 0.9.4", 937 - ] 938 - 939 - [[package]] 940 - name = "proc-macro-error-attr" 941 - version = "1.0.4" 942 - source = "registry+https://github.com/rust-lang/crates.io-index" 943 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 944 - dependencies = [ 945 - "proc-macro2", 946 - "quote", 947 - "version_check 0.9.4", 948 - ] 949 - 950 - [[package]] 951 - name = "proc-macro-hack" 952 - version = "0.5.20+deprecated" 953 - source = "registry+https://github.com/rust-lang/crates.io-index" 954 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 955 - 956 - [[package]] 957 - name = "proc-macro2" 958 - version = "1.0.56" 959 - source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 961 - dependencies = [ 962 - "unicode-ident", 963 - ] 964 - 965 - [[package]] 966 - name = "quote" 967 - version = "1.0.27" 968 - source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 970 - dependencies = [ 971 - "proc-macro2", 972 - ] 973 - 974 - [[package]] 975 - name = "redox_syscall" 976 - version = "0.3.5" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 979 - dependencies = [ 980 - "bitflags", 981 - ] 982 - 983 - [[package]] 984 - name = "ring" 985 - version = "0.13.5" 986 - source = "registry+https://github.com/rust-lang/crates.io-index" 987 - checksum = "2c4db68a2e35f3497146b7e4563df7d4773a2433230c5e4b448328e31740458a" 988 - dependencies = [ 989 - "cc", 990 - "lazy_static", 991 - "libc", 992 - "untrusted", 993 - ] 994 - 995 - [[package]] 996 - name = "rustix" 997 - version = "0.37.19" 998 - source = "registry+https://github.com/rust-lang/crates.io-index" 999 - checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 1000 - dependencies = [ 1001 - "bitflags", 1002 - "errno", 1003 - "io-lifetimes", 1004 - "libc", 1005 - "linux-raw-sys", 1006 - "windows-sys 0.48.0", 1007 - ] 1008 - 1009 - [[package]] 1010 - name = "rustls" 1011 - version = "0.13.1" 1012 - source = "registry+https://github.com/rust-lang/crates.io-index" 1013 - checksum = "942b71057b31981152970d57399c25f72e27a6ee0d207a669d8304cabf44705b" 1014 - dependencies = [ 1015 - "base64 0.9.3", 1016 - "log 0.4.17", 1017 - "ring", 1018 - "sct", 1019 - "untrusted", 1020 - "webpki", 1021 - ] 1022 - 1023 - [[package]] 1024 - name = "ryu" 1025 - version = "1.0.13" 1026 - source = "registry+https://github.com/rust-lang/crates.io-index" 1027 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1028 - 1029 - [[package]] 1030 - name = "safemem" 1031 - version = "0.3.3" 1032 - source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1034 - 1035 - [[package]] 1036 - name = "schannel" 1037 - version = "0.1.21" 1038 - source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 1040 - dependencies = [ 1041 - "windows-sys 0.42.0", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "sct" 1046 - version = "0.4.0" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "cb8f61f9e6eadd062a71c380043d28036304a4706b3c4dd001ff3387ed00745a" 1049 - dependencies = [ 1050 - "ring", 1051 - "untrusted", 1052 - ] 1053 - 1054 - [[package]] 1055 - name = "security-framework" 1056 - version = "2.9.0" 1057 - source = "registry+https://github.com/rust-lang/crates.io-index" 1058 - checksum = "ca2855b3715770894e67cbfa3df957790aa0c9edc3bf06efa1a84d77fa0839d1" 1059 - dependencies = [ 1060 - "bitflags", 1061 - "core-foundation", 1062 - "core-foundation-sys", 1063 - "libc", 1064 - "security-framework-sys", 1065 - ] 1066 - 1067 - [[package]] 1068 - name = "security-framework-sys" 1069 - version = "2.9.0" 1070 - source = "registry+https://github.com/rust-lang/crates.io-index" 1071 - checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 1072 - dependencies = [ 1073 - "core-foundation-sys", 1074 - "libc", 1075 - ] 1076 - 1077 - [[package]] 1078 - name = "serde" 1079 - version = "1.0.163" 1080 - source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 1082 - dependencies = [ 1083 - "serde_derive", 1084 - ] 1085 - 1086 - [[package]] 1087 - name = "serde_derive" 1088 - version = "1.0.163" 1089 - source = "registry+https://github.com/rust-lang/crates.io-index" 1090 - checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 1091 - dependencies = [ 1092 - "proc-macro2", 1093 - "quote", 1094 - "syn 2.0.15", 1095 - ] 1096 - 1097 - [[package]] 1098 - name = "serde_json" 1099 - version = "1.0.96" 1100 - source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 1102 - dependencies = [ 1103 - "itoa", 1104 - "ryu", 1105 - "serde", 1106 - ] 1107 - 1108 - [[package]] 1109 - name = "slab" 1110 - version = "0.4.8" 1111 - source = "registry+https://github.com/rust-lang/crates.io-index" 1112 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1113 - dependencies = [ 1114 - "autocfg", 1115 - ] 1116 - 1117 - [[package]] 1118 - name = "strsim" 1119 - version = "0.8.0" 1120 - source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1122 - 1123 - [[package]] 1124 - name = "structopt" 1125 - version = "0.3.26" 1126 - source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" 1128 - dependencies = [ 1129 - "clap", 1130 - "lazy_static", 1131 - "structopt-derive", 1132 - ] 1133 - 1134 - [[package]] 1135 - name = "structopt-derive" 1136 - version = "0.4.18" 1137 - source = "registry+https://github.com/rust-lang/crates.io-index" 1138 - checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 1139 - dependencies = [ 1140 - "heck", 1141 - "proc-macro-error", 1142 - "proc-macro2", 1143 - "quote", 1144 - "syn 1.0.109", 1145 - ] 1146 - 1147 - [[package]] 1148 - name = "syn" 1149 - version = "1.0.109" 1150 - source = "registry+https://github.com/rust-lang/crates.io-index" 1151 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1152 - dependencies = [ 1153 - "proc-macro2", 1154 - "quote", 1155 - "unicode-ident", 1156 - ] 1157 - 1158 - [[package]] 1159 - name = "syn" 1160 - version = "2.0.15" 1161 - source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 1163 - dependencies = [ 1164 - "proc-macro2", 1165 - "quote", 1166 - "unicode-ident", 1167 - ] 1168 - 1169 - [[package]] 1170 - name = "tempfile" 1171 - version = "3.5.0" 1172 - source = "registry+https://github.com/rust-lang/crates.io-index" 1173 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 1174 - dependencies = [ 1175 - "cfg-if", 1176 - "fastrand", 1177 - "redox_syscall", 1178 - "rustix", 1179 - "windows-sys 0.45.0", 1180 - ] 1181 - 1182 - [[package]] 1183 - name = "textwrap" 1184 - version = "0.11.0" 1185 - source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1187 - dependencies = [ 1188 - "unicode-width", 1189 - ] 1190 - 1191 - [[package]] 1192 - name = "time" 1193 - version = "0.1.45" 1194 - source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 1196 - dependencies = [ 1197 - "libc", 1198 - "wasi", 1199 - "winapi", 1200 - ] 1201 - 1202 - [[package]] 1203 - name = "tinyvec" 1204 - version = "1.6.0" 1205 - source = "registry+https://github.com/rust-lang/crates.io-index" 1206 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1207 - dependencies = [ 1208 - "tinyvec_macros", 1209 - ] 1210 - 1211 - [[package]] 1212 - name = "tinyvec_macros" 1213 - version = "0.1.1" 1214 - source = "registry+https://github.com/rust-lang/crates.io-index" 1215 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1216 - 1217 - [[package]] 1218 - name = "toml" 1219 - version = "0.5.11" 1220 - source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 1222 - dependencies = [ 1223 - "serde", 1224 - ] 1225 - 1226 - [[package]] 1227 - name = "traitobject" 1228 - version = "0.1.0" 1229 - source = "registry+https://github.com/rust-lang/crates.io-index" 1230 - checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" 1231 - 1232 - [[package]] 1233 - name = "typeable" 1234 - version = "0.1.2" 1235 - source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" 1237 - 1238 - [[package]] 1239 - name = "unicase" 1240 - version = "1.4.2" 1241 - source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" 1243 - dependencies = [ 1244 - "version_check 0.1.5", 1245 - ] 1246 - 1247 - [[package]] 1248 - name = "unicode-bidi" 1249 - version = "0.3.13" 1250 - source = "registry+https://github.com/rust-lang/crates.io-index" 1251 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1252 - 1253 - [[package]] 1254 - name = "unicode-ident" 1255 - version = "1.0.8" 1256 - source = "registry+https://github.com/rust-lang/crates.io-index" 1257 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 1258 - 1259 - [[package]] 1260 - name = "unicode-normalization" 1261 - version = "0.1.22" 1262 - source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1264 - dependencies = [ 1265 - "tinyvec", 1266 - ] 1267 - 1268 - [[package]] 1269 - name = "unicode-segmentation" 1270 - version = "1.10.1" 1271 - source = "registry+https://github.com/rust-lang/crates.io-index" 1272 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 1273 - 1274 - [[package]] 1275 - name = "unicode-width" 1276 - version = "0.1.10" 1277 - source = "registry+https://github.com/rust-lang/crates.io-index" 1278 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 1279 - 1280 - [[package]] 1281 - name = "unindent" 1282 - version = "0.1.11" 1283 - source = "registry+https://github.com/rust-lang/crates.io-index" 1284 - checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 1285 - 1286 - [[package]] 1287 - name = "untrusted" 1288 - version = "0.6.2" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" 1291 - 1292 - [[package]] 1293 - name = "url" 1294 - version = "1.7.2" 1295 - source = "registry+https://github.com/rust-lang/crates.io-index" 1296 - checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 1297 - dependencies = [ 1298 - "idna", 1299 - "matches", 1300 - "percent-encoding", 1301 - ] 1302 - 1303 - [[package]] 1304 - name = "vcpkg" 1305 - version = "0.2.15" 1306 - source = "registry+https://github.com/rust-lang/crates.io-index" 1307 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1308 - 1309 - [[package]] 1310 - name = "vec_map" 1311 - version = "0.8.2" 1312 - source = "registry+https://github.com/rust-lang/crates.io-index" 1313 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1314 - 1315 - [[package]] 1316 - name = "version_check" 1317 - version = "0.1.5" 1318 - source = "registry+https://github.com/rust-lang/crates.io-index" 1319 - checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" 1320 - 1321 - [[package]] 1322 - name = "version_check" 1323 - version = "0.9.4" 1324 - source = "registry+https://github.com/rust-lang/crates.io-index" 1325 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1326 - 1327 - [[package]] 1328 - name = "wasi" 1329 - version = "0.10.0+wasi-snapshot-preview1" 1330 - source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1332 - 1333 - [[package]] 1334 - name = "wasm-bindgen" 1335 - version = "0.2.85" 1336 - source = "registry+https://github.com/rust-lang/crates.io-index" 1337 - checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" 1338 - dependencies = [ 1339 - "cfg-if", 1340 - "wasm-bindgen-macro", 1341 - ] 1342 - 1343 - [[package]] 1344 - name = "wasm-bindgen-backend" 1345 - version = "0.2.85" 1346 - source = "registry+https://github.com/rust-lang/crates.io-index" 1347 - checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" 1348 - dependencies = [ 1349 - "bumpalo", 1350 - "log 0.4.17", 1351 - "once_cell", 1352 - "proc-macro2", 1353 - "quote", 1354 - "syn 2.0.15", 1355 - "wasm-bindgen-shared", 1356 - ] 1357 - 1358 - [[package]] 1359 - name = "wasm-bindgen-macro" 1360 - version = "0.2.85" 1361 - source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" 1363 - dependencies = [ 1364 - "quote", 1365 - "wasm-bindgen-macro-support", 1366 - ] 1367 - 1368 - [[package]] 1369 - name = "wasm-bindgen-macro-support" 1370 - version = "0.2.85" 1371 - source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" 1373 - dependencies = [ 1374 - "proc-macro2", 1375 - "quote", 1376 - "syn 2.0.15", 1377 - "wasm-bindgen-backend", 1378 - "wasm-bindgen-shared", 1379 - ] 1380 - 1381 - [[package]] 1382 - name = "wasm-bindgen-shared" 1383 - version = "0.2.85" 1384 - source = "registry+https://github.com/rust-lang/crates.io-index" 1385 - checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" 1386 - 1387 - [[package]] 1388 - name = "webpki" 1389 - version = "0.18.1" 1390 - source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "17d7967316d8411ca3b01821ee6c332bde138ba4363becdb492f12e514daa17f" 1392 - dependencies = [ 1393 - "ring", 1394 - "untrusted", 1395 - ] 1396 - 1397 - [[package]] 1398 - name = "webpki-roots" 1399 - version = "0.15.0" 1400 - source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "85d1f408918fd590908a70d36b7ac388db2edc221470333e4d6e5b598e44cabf" 1402 - dependencies = [ 1403 - "untrusted", 1404 - "webpki", 1405 - ] 1406 - 1407 - [[package]] 1408 - name = "winapi" 1409 - version = "0.3.9" 1410 - source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1412 - dependencies = [ 1413 - "winapi-i686-pc-windows-gnu", 1414 - "winapi-x86_64-pc-windows-gnu", 1415 - ] 1416 - 1417 - [[package]] 1418 - name = "winapi-i686-pc-windows-gnu" 1419 - version = "0.4.0" 1420 - source = "registry+https://github.com/rust-lang/crates.io-index" 1421 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1422 - 1423 - [[package]] 1424 - name = "winapi-x86_64-pc-windows-gnu" 1425 - version = "0.4.0" 1426 - source = "registry+https://github.com/rust-lang/crates.io-index" 1427 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1428 - 1429 - [[package]] 1430 - name = "windows" 1431 - version = "0.48.0" 1432 - source = "registry+https://github.com/rust-lang/crates.io-index" 1433 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 1434 - dependencies = [ 1435 - "windows-targets 0.48.0", 1436 - ] 1437 - 1438 - [[package]] 1439 - name = "windows-sys" 1440 - version = "0.42.0" 1441 - source = "registry+https://github.com/rust-lang/crates.io-index" 1442 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1443 - dependencies = [ 1444 - "windows_aarch64_gnullvm 0.42.2", 1445 - "windows_aarch64_msvc 0.42.2", 1446 - "windows_i686_gnu 0.42.2", 1447 - "windows_i686_msvc 0.42.2", 1448 - "windows_x86_64_gnu 0.42.2", 1449 - "windows_x86_64_gnullvm 0.42.2", 1450 - "windows_x86_64_msvc 0.42.2", 1451 - ] 1452 - 1453 - [[package]] 1454 - name = "windows-sys" 1455 - version = "0.45.0" 1456 - source = "registry+https://github.com/rust-lang/crates.io-index" 1457 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1458 - dependencies = [ 1459 - "windows-targets 0.42.2", 1460 - ] 1461 - 1462 - [[package]] 1463 - name = "windows-sys" 1464 - version = "0.48.0" 1465 - source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1467 - dependencies = [ 1468 - "windows-targets 0.48.0", 1469 - ] 1470 - 1471 - [[package]] 1472 - name = "windows-targets" 1473 - version = "0.42.2" 1474 - source = "registry+https://github.com/rust-lang/crates.io-index" 1475 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1476 - dependencies = [ 1477 - "windows_aarch64_gnullvm 0.42.2", 1478 - "windows_aarch64_msvc 0.42.2", 1479 - "windows_i686_gnu 0.42.2", 1480 - "windows_i686_msvc 0.42.2", 1481 - "windows_x86_64_gnu 0.42.2", 1482 - "windows_x86_64_gnullvm 0.42.2", 1483 - "windows_x86_64_msvc 0.42.2", 1484 - ] 1485 - 1486 - [[package]] 1487 - name = "windows-targets" 1488 - version = "0.48.0" 1489 - source = "registry+https://github.com/rust-lang/crates.io-index" 1490 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1491 - dependencies = [ 1492 - "windows_aarch64_gnullvm 0.48.0", 1493 - "windows_aarch64_msvc 0.48.0", 1494 - "windows_i686_gnu 0.48.0", 1495 - "windows_i686_msvc 0.48.0", 1496 - "windows_x86_64_gnu 0.48.0", 1497 - "windows_x86_64_gnullvm 0.48.0", 1498 - "windows_x86_64_msvc 0.48.0", 1499 - ] 1500 - 1501 - [[package]] 1502 - name = "windows_aarch64_gnullvm" 1503 - version = "0.42.2" 1504 - source = "registry+https://github.com/rust-lang/crates.io-index" 1505 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1506 - 1507 - [[package]] 1508 - name = "windows_aarch64_gnullvm" 1509 - version = "0.48.0" 1510 - source = "registry+https://github.com/rust-lang/crates.io-index" 1511 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1512 - 1513 - [[package]] 1514 - name = "windows_aarch64_msvc" 1515 - version = "0.42.2" 1516 - source = "registry+https://github.com/rust-lang/crates.io-index" 1517 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1518 - 1519 - [[package]] 1520 - name = "windows_aarch64_msvc" 1521 - version = "0.48.0" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1524 - 1525 - [[package]] 1526 - name = "windows_i686_gnu" 1527 - version = "0.42.2" 1528 - source = "registry+https://github.com/rust-lang/crates.io-index" 1529 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1530 - 1531 - [[package]] 1532 - name = "windows_i686_gnu" 1533 - version = "0.48.0" 1534 - source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1536 - 1537 - [[package]] 1538 - name = "windows_i686_msvc" 1539 - version = "0.42.2" 1540 - source = "registry+https://github.com/rust-lang/crates.io-index" 1541 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1542 - 1543 - [[package]] 1544 - name = "windows_i686_msvc" 1545 - version = "0.48.0" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1548 - 1549 - [[package]] 1550 - name = "windows_x86_64_gnu" 1551 - version = "0.42.2" 1552 - source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1554 - 1555 - [[package]] 1556 - name = "windows_x86_64_gnu" 1557 - version = "0.48.0" 1558 - source = "registry+https://github.com/rust-lang/crates.io-index" 1559 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1560 - 1561 - [[package]] 1562 - name = "windows_x86_64_gnullvm" 1563 - version = "0.42.2" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1566 - 1567 - [[package]] 1568 - name = "windows_x86_64_gnullvm" 1569 - version = "0.48.0" 1570 - source = "registry+https://github.com/rust-lang/crates.io-index" 1571 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1572 - 1573 - [[package]] 1574 - name = "windows_x86_64_msvc" 1575 - version = "0.42.2" 1576 - source = "registry+https://github.com/rust-lang/crates.io-index" 1577 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1578 - 1579 - [[package]] 1580 - name = "windows_x86_64_msvc" 1581 - version = "0.48.0" 1582 - source = "registry+https://github.com/rust-lang/crates.io-index" 1583 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1584 - 1585 - [[package]] 1586 - name = "xcb" 1587 - version = "0.9.0" 1588 - source = "registry+https://github.com/rust-lang/crates.io-index" 1589 - checksum = "62056f63138b39116f82a540c983cc11f1c90cd70b3d492a70c25eaa50bd22a6" 1590 - dependencies = [ 1591 - "libc", 1592 - "log 0.4.17", 1593 - ] 1594 - 1595 - [[package]] 1596 - name = "xdg" 1597 - version = "2.5.0" 1598 - source = "registry+https://github.com/rust-lang/crates.io-index" 1599 - checksum = "688597db5a750e9cad4511cb94729a078e274308099a0382b5b8203bbc767fee" 1600 - dependencies = [ 1601 - "home", 1602 - ] 1603 - 1604 - [[package]] 1605 - name = "yup-oauth2" 1606 - version = "1.0.12" 1607 - source = "registry+https://github.com/rust-lang/crates.io-index" 1608 - checksum = "add0ccdddbb13a69ba8f7c4738bd6af551425889cc4633b6f8cb3034bb359b07" 1609 - dependencies = [ 1610 - "base64 0.10.1", 1611 - "chrono", 1612 - "hyper", 1613 - "hyper-native-tls", 1614 - "itertools", 1615 - "log 0.3.9", 1616 - "openssl", 1617 - "serde", 1618 - "serde_derive", 1619 - "serde_json", 1620 - "url", 1621 - ]
···
+1402
pkgs/by-name/br/break-time/openssl3-support.patch
···
··· 1 + --- result/Cargo.lock 1970-01-01 01:00:01.000000000 +0100 2 + +++ pkgs/by-name/br/break-time/Cargo.lock 2025-05-14 03:32:35.105373982 +0200 3 + @@ -1,10 +1,21 @@ 4 + # This file is automatically @generated by Cargo. 5 + # It is not intended for manual editing. 6 + +version = 3 7 + + 8 + +[[package]] 9 + +name = "android_system_properties" 10 + +version = "0.1.5" 11 + +source = "registry+https://github.com/rust-lang/crates.io-index" 12 + +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 13 + +dependencies = [ 14 + + "libc", 15 + +] 16 + + 17 + [[package]] 18 + name = "ansi_term" 19 + -version = "0.11.0" 20 + +version = "0.12.1" 21 + source = "registry+https://github.com/rust-lang/crates.io-index" 22 + -checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 23 + +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 24 + dependencies = [ 25 + "winapi", 26 + ] 27 + @@ -47,16 +58,16 @@ 28 + source = "registry+https://github.com/rust-lang/crates.io-index" 29 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 30 + dependencies = [ 31 + - "hermit-abi", 32 + + "hermit-abi 0.1.19", 33 + "libc", 34 + "winapi", 35 + ] 36 + 37 + [[package]] 38 + name = "autocfg" 39 + -version = "1.0.0" 40 + +version = "1.1.0" 41 + source = "registry+https://github.com/rust-lang/crates.io-index" 42 + -checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" 43 + +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 44 + 45 + [[package]] 46 + name = "base64" 47 + @@ -79,9 +90,9 @@ 48 + 49 + [[package]] 50 + name = "bitflags" 51 + -version = "1.2.1" 52 + +version = "1.3.2" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + -checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 55 + +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 56 + 57 + [[package]] 58 + name = "break-time" 59 + @@ -114,19 +125,16 @@ 60 + ] 61 + 62 + [[package]] 63 + -name = "byteorder" 64 + -version = "1.3.4" 65 + +name = "bumpalo" 66 + +version = "3.12.2" 67 + source = "registry+https://github.com/rust-lang/crates.io-index" 68 + -checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" 69 + +checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 70 + 71 + [[package]] 72 + -name = "c2-chacha" 73 + -version = "0.2.3" 74 + +name = "byteorder" 75 + +version = "1.4.3" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + -checksum = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" 78 + -dependencies = [ 79 + - "ppv-lite86", 80 + -] 81 + +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 82 + 83 + [[package]] 84 + name = "cairo-rs" 85 + @@ -155,32 +163,36 @@ 86 + 87 + [[package]] 88 + name = "cc" 89 + -version = "1.0.50" 90 + +version = "1.0.79" 91 + source = "registry+https://github.com/rust-lang/crates.io-index" 92 + -checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" 93 + +checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 94 + 95 + [[package]] 96 + name = "cfg-if" 97 + -version = "0.1.10" 98 + +version = "1.0.0" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 101 + +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 102 + 103 + [[package]] 104 + name = "chrono" 105 + -version = "0.4.10" 106 + +version = "0.4.24" 107 + source = "registry+https://github.com/rust-lang/crates.io-index" 108 + -checksum = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01" 109 + +checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 110 + dependencies = [ 111 + + "iana-time-zone", 112 + + "js-sys", 113 + "num-integer", 114 + "num-traits", 115 + "time", 116 + + "wasm-bindgen", 117 + + "winapi", 118 + ] 119 + 120 + [[package]] 121 + name = "clap" 122 + -version = "2.33.0" 123 + +version = "2.34.0" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + -checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" 126 + +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 127 + dependencies = [ 128 + "ansi_term", 129 + "atty", 130 + @@ -193,9 +205,9 @@ 131 + 132 + [[package]] 133 + name = "core-foundation" 134 + -version = "0.7.0" 135 + +version = "0.9.3" 136 + source = "registry+https://github.com/rust-lang/crates.io-index" 137 + -checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" 138 + +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 139 + dependencies = [ 140 + "core-foundation-sys", 141 + "libc", 142 + @@ -203,15 +215,45 @@ 143 + 144 + [[package]] 145 + name = "core-foundation-sys" 146 + -version = "0.7.0" 147 + +version = "0.8.4" 148 + source = "registry+https://github.com/rust-lang/crates.io-index" 149 + -checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" 150 + +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 151 + 152 + [[package]] 153 + name = "either" 154 + -version = "1.5.3" 155 + +version = "1.8.1" 156 + +source = "registry+https://github.com/rust-lang/crates.io-index" 157 + +checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 158 + + 159 + +[[package]] 160 + +name = "errno" 161 + +version = "0.3.1" 162 + +source = "registry+https://github.com/rust-lang/crates.io-index" 163 + +checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 164 + +dependencies = [ 165 + + "errno-dragonfly", 166 + + "libc", 167 + + "windows-sys 0.48.0", 168 + +] 169 + + 170 + +[[package]] 171 + +name = "errno-dragonfly" 172 + +version = "0.1.2" 173 + source = "registry+https://github.com/rust-lang/crates.io-index" 174 + -checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" 175 + +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 176 + +dependencies = [ 177 + + "cc", 178 + + "libc", 179 + +] 180 + + 181 + +[[package]] 182 + +name = "fastrand" 183 + +version = "1.9.0" 184 + +source = "registry+https://github.com/rust-lang/crates.io-index" 185 + +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 186 + +dependencies = [ 187 + + "instant", 188 + +] 189 + 190 + [[package]] 191 + name = "foreign-types" 192 + @@ -230,24 +272,24 @@ 193 + 194 + [[package]] 195 + name = "futures-channel" 196 + -version = "0.3.4" 197 + +version = "0.3.28" 198 + source = "registry+https://github.com/rust-lang/crates.io-index" 199 + -checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8" 200 + +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 201 + dependencies = [ 202 + "futures-core", 203 + ] 204 + 205 + [[package]] 206 + name = "futures-core" 207 + -version = "0.3.4" 208 + +version = "0.3.28" 209 + source = "registry+https://github.com/rust-lang/crates.io-index" 210 + -checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a" 211 + +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 212 + 213 + [[package]] 214 + name = "futures-executor" 215 + -version = "0.3.4" 216 + +version = "0.3.28" 217 + source = "registry+https://github.com/rust-lang/crates.io-index" 218 + -checksum = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba" 219 + +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 220 + dependencies = [ 221 + "futures-core", 222 + "futures-task", 223 + @@ -256,40 +298,38 @@ 224 + 225 + [[package]] 226 + name = "futures-io" 227 + -version = "0.3.4" 228 + +version = "0.3.28" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + -checksum = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6" 231 + +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 232 + 233 + [[package]] 234 + name = "futures-macro" 235 + -version = "0.3.4" 236 + +version = "0.3.28" 237 + source = "registry+https://github.com/rust-lang/crates.io-index" 238 + -checksum = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7" 239 + +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 240 + dependencies = [ 241 + - "proc-macro-hack", 242 + "proc-macro2", 243 + "quote", 244 + - "syn", 245 + + "syn 2.0.15", 246 + ] 247 + 248 + [[package]] 249 + name = "futures-task" 250 + -version = "0.3.4" 251 + +version = "0.3.28" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + -checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27" 254 + +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 255 + 256 + [[package]] 257 + name = "futures-util" 258 + -version = "0.3.4" 259 + +version = "0.3.28" 260 + source = "registry+https://github.com/rust-lang/crates.io-index" 261 + -checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5" 262 + +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 263 + dependencies = [ 264 + "futures-core", 265 + "futures-macro", 266 + "futures-task", 267 + + "pin-project-lite", 268 + "pin-utils", 269 + - "proc-macro-hack", 270 + - "proc-macro-nested", 271 + "slab", 272 + ] 273 + 274 + @@ -358,17 +398,6 @@ 275 + ] 276 + 277 + [[package]] 278 + -name = "getrandom" 279 + -version = "0.1.14" 280 + -source = "registry+https://github.com/rust-lang/crates.io-index" 281 + -checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" 282 + -dependencies = [ 283 + - "cfg-if", 284 + - "libc", 285 + - "wasi", 286 + -] 287 + - 288 + -[[package]] 289 + name = "gio" 290 + version = "0.8.1" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + @@ -440,9 +469,9 @@ 293 + 294 + [[package]] 295 + name = "google-calendar3" 296 + -version = "1.0.12+20190702" 297 + +version = "1.0.14+20200705" 298 + source = "registry+https://github.com/rust-lang/crates.io-index" 299 + -checksum = "f1bbb34e6d67c93bd7f1ffa299b34b79d71af26a26b48386fcc1582421d6b618" 300 + +checksum = "f214b09a7438ccd85fe20a491c8d7c05d0ccd07a125112411aadf0f0d0b17cbb" 301 + dependencies = [ 302 + "hyper", 303 + "mime", 304 + @@ -500,27 +529,51 @@ 305 + 306 + [[package]] 307 + name = "heck" 308 + -version = "0.3.1" 309 + +version = "0.3.3" 310 + source = "registry+https://github.com/rust-lang/crates.io-index" 311 + -checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" 312 + +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 313 + dependencies = [ 314 + "unicode-segmentation", 315 + ] 316 + 317 + [[package]] 318 + name = "hermit-abi" 319 + -version = "0.1.8" 320 + +version = "0.1.19" 321 + +source = "registry+https://github.com/rust-lang/crates.io-index" 322 + +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 323 + +dependencies = [ 324 + + "libc", 325 + +] 326 + + 327 + +[[package]] 328 + +name = "hermit-abi" 329 + +version = "0.2.6" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + -checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" 332 + +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 333 + dependencies = [ 334 + "libc", 335 + ] 336 + 337 + [[package]] 338 + +name = "hermit-abi" 339 + +version = "0.3.1" 340 + +source = "registry+https://github.com/rust-lang/crates.io-index" 341 + +checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 342 + + 343 + +[[package]] 344 + +name = "home" 345 + +version = "0.5.5" 346 + +source = "registry+https://github.com/rust-lang/crates.io-index" 347 + +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 348 + +dependencies = [ 349 + + "windows-sys 0.48.0", 350 + +] 351 + + 352 + +[[package]] 353 + name = "httparse" 354 + -version = "1.3.4" 355 + +version = "1.8.0" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + -checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" 358 + +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 359 + 360 + [[package]] 361 + name = "hyper" 362 + @@ -565,6 +618,29 @@ 363 + ] 364 + 365 + [[package]] 366 + +name = "iana-time-zone" 367 + +version = "0.1.56" 368 + +source = "registry+https://github.com/rust-lang/crates.io-index" 369 + +checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 370 + +dependencies = [ 371 + + "android_system_properties", 372 + + "core-foundation-sys", 373 + + "iana-time-zone-haiku", 374 + + "js-sys", 375 + + "wasm-bindgen", 376 + + "windows", 377 + +] 378 + + 379 + +[[package]] 380 + +name = "iana-time-zone-haiku" 381 + +version = "0.1.2" 382 + +source = "registry+https://github.com/rust-lang/crates.io-index" 383 + +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 384 + +dependencies = [ 385 + + "cc", 386 + +] 387 + + 388 + +[[package]] 389 + name = "idna" 390 + version = "0.1.5" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + @@ -577,9 +653,9 @@ 393 + 394 + [[package]] 395 + name = "indoc" 396 + -version = "0.3.5" 397 + +version = "0.3.6" 398 + source = "registry+https://github.com/rust-lang/crates.io-index" 399 + -checksum = "79255cf29f5711995ddf9ec261b4057b1deb34e66c90656c201e41376872c544" 400 + +checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 401 + dependencies = [ 402 + "indoc-impl", 403 + "proc-macro-hack", 404 + @@ -587,18 +663,38 @@ 405 + 406 + [[package]] 407 + name = "indoc-impl" 408 + -version = "0.3.5" 409 + +version = "0.3.6" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + -checksum = "54554010aa3d17754e484005ea0022f1c93839aabc627c2c55f3d7b47206134c" 412 + +checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 413 + dependencies = [ 414 + "proc-macro-hack", 415 + "proc-macro2", 416 + "quote", 417 + - "syn", 418 + + "syn 1.0.109", 419 + "unindent", 420 + ] 421 + 422 + [[package]] 423 + +name = "instant" 424 + +version = "0.1.12" 425 + +source = "registry+https://github.com/rust-lang/crates.io-index" 426 + +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 427 + +dependencies = [ 428 + + "cfg-if", 429 + +] 430 + + 431 + +[[package]] 432 + +name = "io-lifetimes" 433 + +version = "1.0.10" 434 + +source = "registry+https://github.com/rust-lang/crates.io-index" 435 + +checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 436 + +dependencies = [ 437 + + "hermit-abi 0.3.1", 438 + + "libc", 439 + + "windows-sys 0.48.0", 440 + +] 441 + + 442 + +[[package]] 443 + name = "itertools" 444 + version = "0.8.2" 445 + source = "registry+https://github.com/rust-lang/crates.io-index" 446 + @@ -609,9 +705,18 @@ 447 + 448 + [[package]] 449 + name = "itoa" 450 + -version = "0.4.5" 451 + +version = "1.0.6" 452 + +source = "registry+https://github.com/rust-lang/crates.io-index" 453 + +checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 454 + + 455 + +[[package]] 456 + +name = "js-sys" 457 + +version = "0.3.62" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + -checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" 460 + +checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" 461 + +dependencies = [ 462 + + "wasm-bindgen", 463 + +] 464 + 465 + [[package]] 466 + name = "language-tags" 467 + @@ -627,9 +732,15 @@ 468 + 469 + [[package]] 470 + name = "libc" 471 + -version = "0.2.67" 472 + +version = "0.2.144" 473 + +source = "registry+https://github.com/rust-lang/crates.io-index" 474 + +checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 475 + + 476 + +[[package]] 477 + +name = "linux-raw-sys" 478 + +version = "0.3.7" 479 + source = "registry+https://github.com/rust-lang/crates.io-index" 480 + -checksum = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018" 481 + +checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 482 + 483 + [[package]] 484 + name = "log" 485 + @@ -637,23 +748,23 @@ 486 + source = "registry+https://github.com/rust-lang/crates.io-index" 487 + checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 488 + dependencies = [ 489 + - "log 0.4.8", 490 + + "log 0.4.17", 491 + ] 492 + 493 + [[package]] 494 + name = "log" 495 + -version = "0.4.8" 496 + +version = "0.4.17" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + -checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" 499 + +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 500 + dependencies = [ 501 + "cfg-if", 502 + ] 503 + 504 + [[package]] 505 + name = "matches" 506 + -version = "0.1.8" 507 + +version = "0.1.10" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + -checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 510 + +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 511 + 512 + [[package]] 513 + name = "mime" 514 + @@ -666,13 +777,13 @@ 515 + 516 + [[package]] 517 + name = "native-tls" 518 + -version = "0.2.4" 519 + +version = "0.2.11" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + -checksum = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d" 522 + +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 523 + dependencies = [ 524 + "lazy_static", 525 + "libc", 526 + - "log 0.4.8", 527 + + "log 0.4.17", 528 + "openssl", 529 + "openssl-probe", 530 + "openssl-sys", 531 + @@ -684,9 +795,9 @@ 532 + 533 + [[package]] 534 + name = "num-integer" 535 + -version = "0.1.42" 536 + +version = "0.1.45" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + -checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba" 539 + +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 540 + dependencies = [ 541 + "autocfg", 542 + "num-traits", 543 + @@ -694,50 +805,67 @@ 544 + 545 + [[package]] 546 + name = "num-traits" 547 + -version = "0.2.11" 548 + +version = "0.2.15" 549 + source = "registry+https://github.com/rust-lang/crates.io-index" 550 + -checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" 551 + +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 552 + dependencies = [ 553 + "autocfg", 554 + ] 555 + 556 + [[package]] 557 + name = "num_cpus" 558 + -version = "1.12.0" 559 + +version = "1.15.0" 560 + source = "registry+https://github.com/rust-lang/crates.io-index" 561 + -checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" 562 + +checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 563 + dependencies = [ 564 + - "hermit-abi", 565 + + "hermit-abi 0.2.6", 566 + "libc", 567 + ] 568 + 569 + [[package]] 570 + +name = "once_cell" 571 + +version = "1.17.1" 572 + +source = "registry+https://github.com/rust-lang/crates.io-index" 573 + +checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 574 + + 575 + +[[package]] 576 + name = "openssl" 577 + -version = "0.10.28" 578 + +version = "0.10.52" 579 + source = "registry+https://github.com/rust-lang/crates.io-index" 580 + -checksum = "973293749822d7dd6370d6da1e523b0d1db19f06c459134c658b2a4261378b52" 581 + +checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 582 + dependencies = [ 583 + "bitflags", 584 + "cfg-if", 585 + "foreign-types", 586 + - "lazy_static", 587 + "libc", 588 + + "once_cell", 589 + + "openssl-macros", 590 + "openssl-sys", 591 + ] 592 + 593 + [[package]] 594 + +name = "openssl-macros" 595 + +version = "0.1.1" 596 + +source = "registry+https://github.com/rust-lang/crates.io-index" 597 + +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 598 + +dependencies = [ 599 + + "proc-macro2", 600 + + "quote", 601 + + "syn 2.0.15", 602 + +] 603 + + 604 + +[[package]] 605 + name = "openssl-probe" 606 + -version = "0.1.2" 607 + +version = "0.1.5" 608 + source = "registry+https://github.com/rust-lang/crates.io-index" 609 + -checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 610 + +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 611 + 612 + [[package]] 613 + name = "openssl-sys" 614 + -version = "0.9.54" 615 + +version = "0.9.87" 616 + source = "registry+https://github.com/rust-lang/crates.io-index" 617 + -checksum = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986" 618 + +checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 619 + dependencies = [ 620 + - "autocfg", 621 + "cc", 622 + "libc", 623 + "pkg-config", 624 + @@ -778,138 +906,78 @@ 625 + checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 626 + 627 + [[package]] 628 + -name = "pin-utils" 629 + -version = "0.1.0-alpha.4" 630 + +name = "pin-project-lite" 631 + +version = "0.2.9" 632 + source = "registry+https://github.com/rust-lang/crates.io-index" 633 + -checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" 634 + +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 635 + 636 + [[package]] 637 + -name = "pkg-config" 638 + -version = "0.3.17" 639 + +name = "pin-utils" 640 + +version = "0.1.0" 641 + source = "registry+https://github.com/rust-lang/crates.io-index" 642 + -checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" 643 + +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 644 + 645 + [[package]] 646 + -name = "ppv-lite86" 647 + -version = "0.2.6" 648 + +name = "pkg-config" 649 + +version = "0.3.27" 650 + source = "registry+https://github.com/rust-lang/crates.io-index" 651 + -checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" 652 + +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 653 + 654 + [[package]] 655 + name = "proc-macro-error" 656 + -version = "0.4.11" 657 + +version = "1.0.4" 658 + source = "registry+https://github.com/rust-lang/crates.io-index" 659 + -checksum = "e7959c6467d962050d639361f7703b2051c43036d03493c36f01d440fdd3138a" 660 + +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 661 + dependencies = [ 662 + "proc-macro-error-attr", 663 + "proc-macro2", 664 + "quote", 665 + - "syn", 666 + - "version_check 0.9.1", 667 + + "syn 1.0.109", 668 + + "version_check 0.9.4", 669 + ] 670 + 671 + [[package]] 672 + name = "proc-macro-error-attr" 673 + -version = "0.4.11" 674 + +version = "1.0.4" 675 + source = "registry+https://github.com/rust-lang/crates.io-index" 676 + -checksum = "e4002d9f55991d5e019fb940a90e1a95eb80c24e77cb2462dd4dc869604d543a" 677 + +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 678 + dependencies = [ 679 + "proc-macro2", 680 + "quote", 681 + - "syn", 682 + - "syn-mid", 683 + - "version_check 0.9.1", 684 + + "version_check 0.9.4", 685 + ] 686 + 687 + [[package]] 688 + name = "proc-macro-hack" 689 + -version = "0.5.11" 690 + -source = "registry+https://github.com/rust-lang/crates.io-index" 691 + -checksum = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" 692 + -dependencies = [ 693 + - "proc-macro2", 694 + - "quote", 695 + - "syn", 696 + -] 697 + - 698 + -[[package]] 699 + -name = "proc-macro-nested" 700 + -version = "0.1.3" 701 + +version = "0.5.20+deprecated" 702 + source = "registry+https://github.com/rust-lang/crates.io-index" 703 + -checksum = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" 704 + +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 705 + 706 + [[package]] 707 + name = "proc-macro2" 708 + -version = "1.0.9" 709 + +version = "1.0.56" 710 + source = "registry+https://github.com/rust-lang/crates.io-index" 711 + -checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" 712 + +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 713 + dependencies = [ 714 + - "unicode-xid", 715 + + "unicode-ident", 716 + ] 717 + 718 + [[package]] 719 + name = "quote" 720 + -version = "1.0.3" 721 + +version = "1.0.27" 722 + source = "registry+https://github.com/rust-lang/crates.io-index" 723 + -checksum = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f" 724 + +checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 725 + dependencies = [ 726 + "proc-macro2", 727 + ] 728 + 729 + [[package]] 730 + -name = "rand" 731 + -version = "0.7.3" 732 + -source = "registry+https://github.com/rust-lang/crates.io-index" 733 + -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 734 + -dependencies = [ 735 + - "getrandom", 736 + - "libc", 737 + - "rand_chacha", 738 + - "rand_core", 739 + - "rand_hc", 740 + -] 741 + - 742 + -[[package]] 743 + -name = "rand_chacha" 744 + -version = "0.2.1" 745 + -source = "registry+https://github.com/rust-lang/crates.io-index" 746 + -checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" 747 + -dependencies = [ 748 + - "c2-chacha", 749 + - "rand_core", 750 + -] 751 + - 752 + -[[package]] 753 + -name = "rand_core" 754 + -version = "0.5.1" 755 + -source = "registry+https://github.com/rust-lang/crates.io-index" 756 + -checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 757 + -dependencies = [ 758 + - "getrandom", 759 + -] 760 + - 761 + -[[package]] 762 + -name = "rand_hc" 763 + -version = "0.2.0" 764 + -source = "registry+https://github.com/rust-lang/crates.io-index" 765 + -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 766 + -dependencies = [ 767 + - "rand_core", 768 + -] 769 + - 770 + -[[package]] 771 + name = "redox_syscall" 772 + -version = "0.1.56" 773 + -source = "registry+https://github.com/rust-lang/crates.io-index" 774 + -checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" 775 + - 776 + -[[package]] 777 + -name = "remove_dir_all" 778 + -version = "0.5.2" 779 + +version = "0.3.5" 780 + source = "registry+https://github.com/rust-lang/crates.io-index" 781 + -checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" 782 + +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 783 + dependencies = [ 784 + - "winapi", 785 + + "bitflags", 786 + ] 787 + 788 + [[package]] 789 + @@ -925,13 +993,27 @@ 790 + ] 791 + 792 + [[package]] 793 + +name = "rustix" 794 + +version = "0.37.19" 795 + +source = "registry+https://github.com/rust-lang/crates.io-index" 796 + +checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 797 + +dependencies = [ 798 + + "bitflags", 799 + + "errno", 800 + + "io-lifetimes", 801 + + "libc", 802 + + "linux-raw-sys", 803 + + "windows-sys 0.48.0", 804 + +] 805 + + 806 + +[[package]] 807 + name = "rustls" 808 + version = "0.13.1" 809 + source = "registry+https://github.com/rust-lang/crates.io-index" 810 + checksum = "942b71057b31981152970d57399c25f72e27a6ee0d207a669d8304cabf44705b" 811 + dependencies = [ 812 + "base64 0.9.3", 813 + - "log 0.4.8", 814 + + "log 0.4.17", 815 + "ring", 816 + "sct", 817 + "untrusted", 818 + @@ -940,9 +1022,9 @@ 819 + 820 + [[package]] 821 + name = "ryu" 822 + -version = "1.0.2" 823 + +version = "1.0.13" 824 + source = "registry+https://github.com/rust-lang/crates.io-index" 825 + -checksum = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" 826 + +checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 827 + 828 + [[package]] 829 + name = "safemem" 830 + @@ -952,12 +1034,11 @@ 831 + 832 + [[package]] 833 + name = "schannel" 834 + -version = "0.1.17" 835 + +version = "0.1.21" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + -checksum = "507a9e6e8ffe0a4e0ebb9a10293e62fdf7657c06f1b8bb07a8fcf697d2abf295" 838 + +checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 839 + dependencies = [ 840 + - "lazy_static", 841 + - "winapi", 842 + + "windows-sys 0.42.0", 843 + ] 844 + 845 + [[package]] 846 + @@ -972,21 +1053,22 @@ 847 + 848 + [[package]] 849 + name = "security-framework" 850 + -version = "0.4.1" 851 + +version = "2.9.0" 852 + source = "registry+https://github.com/rust-lang/crates.io-index" 853 + -checksum = "97bbedbe81904398b6ebb054b3e912f99d55807125790f3198ac990d98def5b0" 854 + +checksum = "ca2855b3715770894e67cbfa3df957790aa0c9edc3bf06efa1a84d77fa0839d1" 855 + dependencies = [ 856 + "bitflags", 857 + "core-foundation", 858 + "core-foundation-sys", 859 + + "libc", 860 + "security-framework-sys", 861 + ] 862 + 863 + [[package]] 864 + name = "security-framework-sys" 865 + -version = "0.4.1" 866 + +version = "2.9.0" 867 + source = "registry+https://github.com/rust-lang/crates.io-index" 868 + -checksum = "06fd2f23e31ef68dd2328cc383bd493142e46107a3a0e24f7d734e3f3b80fe4c" 869 + +checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 870 + dependencies = [ 871 + "core-foundation-sys", 872 + "libc", 873 + @@ -994,29 +1076,29 @@ 874 + 875 + [[package]] 876 + name = "serde" 877 + -version = "1.0.104" 878 + +version = "1.0.163" 879 + source = "registry+https://github.com/rust-lang/crates.io-index" 880 + -checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" 881 + +checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 882 + dependencies = [ 883 + "serde_derive", 884 + ] 885 + 886 + [[package]] 887 + name = "serde_derive" 888 + -version = "1.0.104" 889 + +version = "1.0.163" 890 + source = "registry+https://github.com/rust-lang/crates.io-index" 891 + -checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" 892 + +checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 893 + dependencies = [ 894 + "proc-macro2", 895 + "quote", 896 + - "syn", 897 + + "syn 2.0.15", 898 + ] 899 + 900 + [[package]] 901 + name = "serde_json" 902 + -version = "1.0.48" 903 + +version = "1.0.96" 904 + source = "registry+https://github.com/rust-lang/crates.io-index" 905 + -checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" 906 + +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 907 + dependencies = [ 908 + "itoa", 909 + "ryu", 910 + @@ -1025,15 +1107,12 @@ 911 + 912 + [[package]] 913 + name = "slab" 914 + -version = "0.4.2" 915 + -source = "registry+https://github.com/rust-lang/crates.io-index" 916 + -checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" 917 + - 918 + -[[package]] 919 + -name = "smallvec" 920 + -version = "1.2.0" 921 + +version = "0.4.8" 922 + source = "registry+https://github.com/rust-lang/crates.io-index" 923 + -checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" 924 + +checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 925 + +dependencies = [ 926 + + "autocfg", 927 + +] 928 + 929 + [[package]] 930 + name = "strsim" 931 + @@ -1043,9 +1122,9 @@ 932 + 933 + [[package]] 934 + name = "structopt" 935 + -version = "0.3.11" 936 + +version = "0.3.26" 937 + source = "registry+https://github.com/rust-lang/crates.io-index" 938 + -checksum = "3fe43617218c0805c6eb37160119dc3c548110a67786da7218d1c6555212f073" 939 + +checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" 940 + dependencies = [ 941 + "clap", 942 + "lazy_static", 943 + @@ -1054,51 +1133,50 @@ 944 + 945 + [[package]] 946 + name = "structopt-derive" 947 + -version = "0.4.4" 948 + +version = "0.4.18" 949 + source = "registry+https://github.com/rust-lang/crates.io-index" 950 + -checksum = "c6e79c80e0f4efd86ca960218d4e056249be189ff1c42824dcd9a7f51a56f0bd" 951 + +checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 952 + dependencies = [ 953 + "heck", 954 + "proc-macro-error", 955 + "proc-macro2", 956 + "quote", 957 + - "syn", 958 + + "syn 1.0.109", 959 + ] 960 + 961 + [[package]] 962 + name = "syn" 963 + -version = "1.0.16" 964 + +version = "1.0.109" 965 + source = "registry+https://github.com/rust-lang/crates.io-index" 966 + -checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" 967 + +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 968 + dependencies = [ 969 + "proc-macro2", 970 + "quote", 971 + - "unicode-xid", 972 + + "unicode-ident", 973 + ] 974 + 975 + [[package]] 976 + -name = "syn-mid" 977 + -version = "0.5.0" 978 + +name = "syn" 979 + +version = "2.0.15" 980 + source = "registry+https://github.com/rust-lang/crates.io-index" 981 + -checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a" 982 + +checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 983 + dependencies = [ 984 + "proc-macro2", 985 + "quote", 986 + - "syn", 987 + + "unicode-ident", 988 + ] 989 + 990 + [[package]] 991 + name = "tempfile" 992 + -version = "3.1.0" 993 + +version = "3.5.0" 994 + source = "registry+https://github.com/rust-lang/crates.io-index" 995 + -checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" 996 + +checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 997 + dependencies = [ 998 + "cfg-if", 999 + - "libc", 1000 + - "rand", 1001 + + "fastrand", 1002 + "redox_syscall", 1003 + - "remove_dir_all", 1004 + - "winapi", 1005 + + "rustix", 1006 + + "windows-sys 0.45.0", 1007 + ] 1008 + 1009 + [[package]] 1010 + @@ -1112,20 +1190,35 @@ 1011 + 1012 + [[package]] 1013 + name = "time" 1014 + -version = "0.1.42" 1015 + +version = "0.1.45" 1016 + source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + -checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" 1018 + +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 1019 + dependencies = [ 1020 + "libc", 1021 + - "redox_syscall", 1022 + + "wasi", 1023 + "winapi", 1024 + ] 1025 + 1026 + [[package]] 1027 + +name = "tinyvec" 1028 + +version = "1.6.0" 1029 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1031 + +dependencies = [ 1032 + + "tinyvec_macros", 1033 + +] 1034 + + 1035 + +[[package]] 1036 + +name = "tinyvec_macros" 1037 + +version = "0.1.1" 1038 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1040 + + 1041 + +[[package]] 1042 + name = "toml" 1043 + -version = "0.5.6" 1044 + +version = "0.5.11" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + -checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a" 1047 + +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 1048 + dependencies = [ 1049 + "serde", 1050 + ] 1051 + @@ -1153,45 +1246,42 @@ 1052 + 1053 + [[package]] 1054 + name = "unicode-bidi" 1055 + -version = "0.3.4" 1056 + +version = "0.3.13" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + -checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 1059 + -dependencies = [ 1060 + - "matches", 1061 + -] 1062 + +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1063 + + 1064 + +[[package]] 1065 + +name = "unicode-ident" 1066 + +version = "1.0.8" 1067 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1068 + +checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 1069 + 1070 + [[package]] 1071 + name = "unicode-normalization" 1072 + -version = "0.1.12" 1073 + +version = "0.1.22" 1074 + source = "registry+https://github.com/rust-lang/crates.io-index" 1075 + -checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4" 1076 + +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1077 + dependencies = [ 1078 + - "smallvec", 1079 + + "tinyvec", 1080 + ] 1081 + 1082 + [[package]] 1083 + name = "unicode-segmentation" 1084 + -version = "1.6.0" 1085 + +version = "1.10.1" 1086 + source = "registry+https://github.com/rust-lang/crates.io-index" 1087 + -checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" 1088 + +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 1089 + 1090 + [[package]] 1091 + name = "unicode-width" 1092 + -version = "0.1.7" 1093 + -source = "registry+https://github.com/rust-lang/crates.io-index" 1094 + -checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" 1095 + - 1096 + -[[package]] 1097 + -name = "unicode-xid" 1098 + -version = "0.2.0" 1099 + +version = "0.1.10" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + -checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" 1102 + +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 1103 + 1104 + [[package]] 1105 + name = "unindent" 1106 + -version = "0.1.5" 1107 + +version = "0.1.11" 1108 + source = "registry+https://github.com/rust-lang/crates.io-index" 1109 + -checksum = "63f18aa3b0e35fed5a0048f029558b1518095ffe2a0a31fb87c93dece93a4993" 1110 + +checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 1111 + 1112 + [[package]] 1113 + name = "untrusted" 1114 + @@ -1212,15 +1302,15 @@ 1115 + 1116 + [[package]] 1117 + name = "vcpkg" 1118 + -version = "0.2.8" 1119 + +version = "0.2.15" 1120 + source = "registry+https://github.com/rust-lang/crates.io-index" 1121 + -checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168" 1122 + +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1123 + 1124 + [[package]] 1125 + name = "vec_map" 1126 + -version = "0.8.1" 1127 + +version = "0.8.2" 1128 + source = "registry+https://github.com/rust-lang/crates.io-index" 1129 + -checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" 1130 + +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1131 + 1132 + [[package]] 1133 + name = "version_check" 1134 + @@ -1230,15 +1320,69 @@ 1135 + 1136 + [[package]] 1137 + name = "version_check" 1138 + -version = "0.9.1" 1139 + +version = "0.9.4" 1140 + source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + -checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" 1142 + +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1143 + 1144 + [[package]] 1145 + name = "wasi" 1146 + -version = "0.9.0+wasi-snapshot-preview1" 1147 + +version = "0.10.0+wasi-snapshot-preview1" 1148 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1149 + +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1150 + + 1151 + +[[package]] 1152 + +name = "wasm-bindgen" 1153 + +version = "0.2.85" 1154 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + +checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" 1156 + +dependencies = [ 1157 + + "cfg-if", 1158 + + "wasm-bindgen-macro", 1159 + +] 1160 + + 1161 + +[[package]] 1162 + +name = "wasm-bindgen-backend" 1163 + +version = "0.2.85" 1164 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1165 + +checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" 1166 + +dependencies = [ 1167 + + "bumpalo", 1168 + + "log 0.4.17", 1169 + + "once_cell", 1170 + + "proc-macro2", 1171 + + "quote", 1172 + + "syn 2.0.15", 1173 + + "wasm-bindgen-shared", 1174 + +] 1175 + + 1176 + +[[package]] 1177 + +name = "wasm-bindgen-macro" 1178 + +version = "0.2.85" 1179 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1180 + +checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" 1181 + +dependencies = [ 1182 + + "quote", 1183 + + "wasm-bindgen-macro-support", 1184 + +] 1185 + + 1186 + +[[package]] 1187 + +name = "wasm-bindgen-macro-support" 1188 + +version = "0.2.85" 1189 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + +checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" 1191 + +dependencies = [ 1192 + + "proc-macro2", 1193 + + "quote", 1194 + + "syn 2.0.15", 1195 + + "wasm-bindgen-backend", 1196 + + "wasm-bindgen-shared", 1197 + +] 1198 + + 1199 + +[[package]] 1200 + +name = "wasm-bindgen-shared" 1201 + +version = "0.2.85" 1202 + source = "registry+https://github.com/rust-lang/crates.io-index" 1203 + -checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 1204 + +checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" 1205 + 1206 + [[package]] 1207 + name = "webpki" 1208 + @@ -1262,9 +1406,9 @@ 1209 + 1210 + [[package]] 1211 + name = "winapi" 1212 + -version = "0.3.8" 1213 + +version = "0.3.9" 1214 + source = "registry+https://github.com/rust-lang/crates.io-index" 1215 + -checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" 1216 + +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1217 + dependencies = [ 1218 + "winapi-i686-pc-windows-gnu", 1219 + "winapi-x86_64-pc-windows-gnu", 1220 + @@ -1283,20 +1427,179 @@ 1221 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1222 + 1223 + [[package]] 1224 + +name = "windows" 1225 + +version = "0.48.0" 1226 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 1228 + +dependencies = [ 1229 + + "windows-targets 0.48.0", 1230 + +] 1231 + + 1232 + +[[package]] 1233 + +name = "windows-sys" 1234 + +version = "0.42.0" 1235 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1236 + +checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1237 + +dependencies = [ 1238 + + "windows_aarch64_gnullvm 0.42.2", 1239 + + "windows_aarch64_msvc 0.42.2", 1240 + + "windows_i686_gnu 0.42.2", 1241 + + "windows_i686_msvc 0.42.2", 1242 + + "windows_x86_64_gnu 0.42.2", 1243 + + "windows_x86_64_gnullvm 0.42.2", 1244 + + "windows_x86_64_msvc 0.42.2", 1245 + +] 1246 + + 1247 + +[[package]] 1248 + +name = "windows-sys" 1249 + +version = "0.45.0" 1250 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1252 + +dependencies = [ 1253 + + "windows-targets 0.42.2", 1254 + +] 1255 + + 1256 + +[[package]] 1257 + +name = "windows-sys" 1258 + +version = "0.48.0" 1259 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1260 + +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1261 + +dependencies = [ 1262 + + "windows-targets 0.48.0", 1263 + +] 1264 + + 1265 + +[[package]] 1266 + +name = "windows-targets" 1267 + +version = "0.42.2" 1268 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1269 + +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1270 + +dependencies = [ 1271 + + "windows_aarch64_gnullvm 0.42.2", 1272 + + "windows_aarch64_msvc 0.42.2", 1273 + + "windows_i686_gnu 0.42.2", 1274 + + "windows_i686_msvc 0.42.2", 1275 + + "windows_x86_64_gnu 0.42.2", 1276 + + "windows_x86_64_gnullvm 0.42.2", 1277 + + "windows_x86_64_msvc 0.42.2", 1278 + +] 1279 + + 1280 + +[[package]] 1281 + +name = "windows-targets" 1282 + +version = "0.48.0" 1283 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1284 + +checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1285 + +dependencies = [ 1286 + + "windows_aarch64_gnullvm 0.48.0", 1287 + + "windows_aarch64_msvc 0.48.0", 1288 + + "windows_i686_gnu 0.48.0", 1289 + + "windows_i686_msvc 0.48.0", 1290 + + "windows_x86_64_gnu 0.48.0", 1291 + + "windows_x86_64_gnullvm 0.48.0", 1292 + + "windows_x86_64_msvc 0.48.0", 1293 + +] 1294 + + 1295 + +[[package]] 1296 + +name = "windows_aarch64_gnullvm" 1297 + +version = "0.42.2" 1298 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1300 + + 1301 + +[[package]] 1302 + +name = "windows_aarch64_gnullvm" 1303 + +version = "0.48.0" 1304 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1305 + +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1306 + + 1307 + +[[package]] 1308 + +name = "windows_aarch64_msvc" 1309 + +version = "0.42.2" 1310 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1311 + +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1312 + + 1313 + +[[package]] 1314 + +name = "windows_aarch64_msvc" 1315 + +version = "0.48.0" 1316 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1318 + + 1319 + +[[package]] 1320 + +name = "windows_i686_gnu" 1321 + +version = "0.42.2" 1322 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1323 + +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1324 + + 1325 + +[[package]] 1326 + +name = "windows_i686_gnu" 1327 + +version = "0.48.0" 1328 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1329 + +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1330 + + 1331 + +[[package]] 1332 + +name = "windows_i686_msvc" 1333 + +version = "0.42.2" 1334 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1335 + +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1336 + + 1337 + +[[package]] 1338 + +name = "windows_i686_msvc" 1339 + +version = "0.48.0" 1340 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1341 + +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1342 + + 1343 + +[[package]] 1344 + +name = "windows_x86_64_gnu" 1345 + +version = "0.42.2" 1346 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1347 + +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1348 + + 1349 + +[[package]] 1350 + +name = "windows_x86_64_gnu" 1351 + +version = "0.48.0" 1352 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1353 + +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1354 + + 1355 + +[[package]] 1356 + +name = "windows_x86_64_gnullvm" 1357 + +version = "0.42.2" 1358 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1360 + + 1361 + +[[package]] 1362 + +name = "windows_x86_64_gnullvm" 1363 + +version = "0.48.0" 1364 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1366 + + 1367 + +[[package]] 1368 + +name = "windows_x86_64_msvc" 1369 + +version = "0.42.2" 1370 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1372 + + 1373 + +[[package]] 1374 + +name = "windows_x86_64_msvc" 1375 + +version = "0.48.0" 1376 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1378 + + 1379 + +[[package]] 1380 + name = "xcb" 1381 + version = "0.9.0" 1382 + source = "registry+https://github.com/rust-lang/crates.io-index" 1383 + checksum = "62056f63138b39116f82a540c983cc11f1c90cd70b3d492a70c25eaa50bd22a6" 1384 + dependencies = [ 1385 + "libc", 1386 + - "log 0.4.8", 1387 + + "log 0.4.17", 1388 + ] 1389 + 1390 + [[package]] 1391 + name = "xdg" 1392 + -version = "2.2.0" 1393 + +version = "2.5.0" 1394 + source = "registry+https://github.com/rust-lang/crates.io-index" 1395 + -checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" 1396 + +checksum = "688597db5a750e9cad4511cb94729a078e274308099a0382b5b8203bbc767fee" 1397 + +dependencies = [ 1398 + + "home", 1399 + +] 1400 + 1401 + [[package]] 1402 + name = "yup-oauth2"
+6 -8
pkgs/by-name/br/break-time/package.nix
··· 21 sha256 = "sha256-q79JXaBwd/oKtJPvK2+72pY2YvaR3of2CMC8cF6wwQ8="; 22 }; 23 24 - cargoLock = { 25 - lockFile = ./Cargo.lock; 26 - }; 27 28 nativeBuildInputs = [ 29 pkg-config ··· 36 gtk3 37 openssl 38 ]; 39 - 40 - # update Cargo.lock to work with openssl 41 - postPatch = '' 42 - ln -sf ${./Cargo.lock} Cargo.lock 43 - ''; 44 45 meta = with lib; { 46 description = "Break timer that forces you to take a break";
··· 21 sha256 = "sha256-q79JXaBwd/oKtJPvK2+72pY2YvaR3of2CMC8cF6wwQ8="; 22 }; 23 24 + cargoPatches = [ 25 + # update Cargo.lock to work with openssl 3 26 + ./openssl3-support.patch 27 + ]; 28 + 29 + cargoHash = "sha256-HthrPtIWvYLAQDpW12r250OWP7CF4SORlqFbxIq/Dzo="; 30 31 nativeBuildInputs = [ 32 pkg-config ··· 39 gtk3 40 openssl 41 ]; 42 43 meta = with lib; { 44 description = "Break timer that forces you to take a break";
+5
pkgs/by-name/br/breitbandmessung/package.nix
··· 62 63 nativeBuildInputs = [ undmg ]; 64 65 installPhase = '' 66 runHook preInstall 67 mkdir -p $out/Applications/Breitbandmessung.app
··· 62 63 nativeBuildInputs = [ undmg ]; 64 65 + sourceRoot = "Breitbandmessung.app"; 66 + 67 + dontFixup = true; 68 + dontStrip = true; 69 + 70 installPhase = '' 71 runHook preInstall 72 mkdir -p $out/Applications/Breitbandmessung.app
+3 -3
pkgs/by-name/ca/capslock/package.nix
··· 7 8 buildGoModule (finalAttrs: { 9 pname = "capslock"; 10 - version = "0.2.7"; 11 12 src = fetchFromGitHub { 13 owner = "google"; 14 repo = "capslock"; 15 rev = "v${finalAttrs.version}"; 16 - hash = "sha256-kRuEcrx9LBzCpXFWlc9bSsgZt84T8R8VFdbAWAseSPQ="; 17 }; 18 19 - vendorHash = "sha256-CUw4ukSAs12dprgcQRfdoKzY7gbzUCHk0t2SrUMtrxo="; 20 21 subPackages = [ "cmd/capslock" ]; 22
··· 7 8 buildGoModule (finalAttrs: { 9 pname = "capslock"; 10 + version = "0.2.8"; 11 12 src = fetchFromGitHub { 13 owner = "google"; 14 repo = "capslock"; 15 rev = "v${finalAttrs.version}"; 16 + hash = "sha256-7FMsW51LYEjEXcil6e64tAHaBeDAYRnBBX4E1PjSXtU="; 17 }; 18 19 + vendorHash = "sha256-UOpreQceWgwbQ+Qup4iEStQqJA77uiiupfTUFxNBIcM="; 20 21 subPackages = [ "cmd/capslock" ]; 22
-2548
pkgs/by-name/ca/cargo-dephell/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "adler" 7 - version = "1.0.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 - 11 - [[package]] 12 - name = "aho-corasick" 13 - version = "0.7.20" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 16 - dependencies = [ 17 - "memchr", 18 - ] 19 - 20 - [[package]] 21 - name = "aho-corasick" 22 - version = "1.0.1" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 25 - dependencies = [ 26 - "memchr", 27 - ] 28 - 29 - [[package]] 30 - name = "android_system_properties" 31 - version = "0.1.5" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 34 - dependencies = [ 35 - "libc", 36 - ] 37 - 38 - [[package]] 39 - name = "ansi_term" 40 - version = "0.12.1" 41 - source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 43 - dependencies = [ 44 - "winapi 0.3.9", 45 - ] 46 - 47 - [[package]] 48 - name = "anyhow" 49 - version = "1.0.71" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 52 - 53 - [[package]] 54 - name = "arrayvec" 55 - version = "0.5.2" 56 - source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 58 - 59 - [[package]] 60 - name = "askama" 61 - version = "0.10.5" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "d298738b6e47e1034e560e5afe63aa488fea34e25ec11b855a76f0d7b8e73134" 64 - dependencies = [ 65 - "askama_derive", 66 - "askama_escape", 67 - "askama_shared", 68 - ] 69 - 70 - [[package]] 71 - name = "askama_derive" 72 - version = "0.10.5" 73 - source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "ca2925c4c290382f9d2fa3d1c1b6a63fa1427099721ecca4749b154cc9c25522" 75 - dependencies = [ 76 - "askama_shared", 77 - "proc-macro2", 78 - "syn 1.0.109", 79 - ] 80 - 81 - [[package]] 82 - name = "askama_escape" 83 - version = "0.10.3" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 86 - 87 - [[package]] 88 - name = "askama_shared" 89 - version = "0.11.2" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "7d6083ccb191711e9c2b80b22ee24a8381a18524444914c746d4239e21d1afaf" 92 - dependencies = [ 93 - "askama_escape", 94 - "humansize", 95 - "nom", 96 - "num-traits", 97 - "percent-encoding", 98 - "proc-macro2", 99 - "quote", 100 - "serde", 101 - "syn 1.0.109", 102 - "toml", 103 - ] 104 - 105 - [[package]] 106 - name = "atty" 107 - version = "0.2.14" 108 - source = "registry+https://github.com/rust-lang/crates.io-index" 109 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 110 - dependencies = [ 111 - "hermit-abi 0.1.19", 112 - "libc", 113 - "winapi 0.3.9", 114 - ] 115 - 116 - [[package]] 117 - name = "autocfg" 118 - version = "1.1.0" 119 - source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 121 - 122 - [[package]] 123 - name = "base64" 124 - version = "0.13.1" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 127 - 128 - [[package]] 129 - name = "bitflags" 130 - version = "1.3.2" 131 - source = "registry+https://github.com/rust-lang/crates.io-index" 132 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 133 - 134 - [[package]] 135 - name = "bitmaps" 136 - version = "2.1.0" 137 - source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" 139 - dependencies = [ 140 - "typenum", 141 - ] 142 - 143 - [[package]] 144 - name = "bitvec" 145 - version = "0.19.6" 146 - source = "registry+https://github.com/rust-lang/crates.io-index" 147 - checksum = "55f93d0ef3363c364d5976646a38f04cf67cfe1d4c8d160cdea02cab2c116b33" 148 - dependencies = [ 149 - "funty", 150 - "radium", 151 - "tap", 152 - "wyz", 153 - ] 154 - 155 - [[package]] 156 - name = "bstr" 157 - version = "1.4.0" 158 - source = "registry+https://github.com/rust-lang/crates.io-index" 159 - checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 160 - dependencies = [ 161 - "memchr", 162 - "serde", 163 - ] 164 - 165 - [[package]] 166 - name = "bumpalo" 167 - version = "3.12.2" 168 - source = "registry+https://github.com/rust-lang/crates.io-index" 169 - checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 170 - 171 - [[package]] 172 - name = "bytes" 173 - version = "0.5.6" 174 - source = "registry+https://github.com/rust-lang/crates.io-index" 175 - checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" 176 - 177 - [[package]] 178 - name = "bytes" 179 - version = "1.4.0" 180 - source = "registry+https://github.com/rust-lang/crates.io-index" 181 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 182 - 183 - [[package]] 184 - name = "bytesize" 185 - version = "1.2.0" 186 - source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5" 188 - 189 - [[package]] 190 - name = "camino" 191 - version = "1.1.4" 192 - source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2" 194 - 195 - [[package]] 196 - name = "cargo" 197 - version = "0.51.0" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "bb7d89cbdcbeada632f64aa9f692e265852b0eb6ccdf3b1814716cc62101eeb6" 200 - dependencies = [ 201 - "anyhow", 202 - "atty", 203 - "bytesize", 204 - "cargo-platform", 205 - "clap", 206 - "core-foundation", 207 - "crates-io", 208 - "crossbeam-utils", 209 - "crypto-hash", 210 - "curl", 211 - "curl-sys", 212 - "env_logger", 213 - "filetime", 214 - "flate2", 215 - "fwdansi", 216 - "git2", 217 - "git2-curl", 218 - "glob", 219 - "hex 0.4.3", 220 - "home", 221 - "humantime", 222 - "ignore", 223 - "im-rc", 224 - "jobserver", 225 - "lazy_static", 226 - "lazycell", 227 - "libc", 228 - "libgit2-sys", 229 - "log", 230 - "memchr", 231 - "miow 0.3.7", 232 - "num_cpus", 233 - "opener", 234 - "percent-encoding", 235 - "rustc-workspace-hack", 236 - "rustfix", 237 - "same-file", 238 - "semver 0.10.0", 239 - "serde", 240 - "serde_ignored", 241 - "serde_json", 242 - "shell-escape", 243 - "strip-ansi-escapes", 244 - "tar", 245 - "tempfile", 246 - "termcolor", 247 - "toml", 248 - "unicode-width", 249 - "unicode-xid", 250 - "url", 251 - "walkdir", 252 - "winapi 0.3.9", 253 - ] 254 - 255 - [[package]] 256 - name = "cargo-dephell" 257 - version = "0.5.1" 258 - dependencies = [ 259 - "askama", 260 - "base64", 261 - "camino", 262 - "cargo", 263 - "cargo_metadata", 264 - "chrono", 265 - "clap", 266 - "glob", 267 - "guppy", 268 - "ignore", 269 - "loc", 270 - "regex", 271 - "reqwest", 272 - "serde", 273 - "serde_json", 274 - "tempdir", 275 - ] 276 - 277 - [[package]] 278 - name = "cargo-platform" 279 - version = "0.1.2" 280 - source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" 282 - dependencies = [ 283 - "serde", 284 - ] 285 - 286 - [[package]] 287 - name = "cargo_metadata" 288 - version = "0.12.3" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "7714a157da7991e23d90686b9524b9e12e0407a108647f52e9328f4b3d51ac7f" 291 - dependencies = [ 292 - "cargo-platform", 293 - "semver 0.11.0", 294 - "semver-parser 0.10.2", 295 - "serde", 296 - "serde_json", 297 - ] 298 - 299 - [[package]] 300 - name = "cc" 301 - version = "1.0.79" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 304 - dependencies = [ 305 - "jobserver", 306 - ] 307 - 308 - [[package]] 309 - name = "cfg-expr" 310 - version = "0.7.4" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "30aa9e2ffbb838c6b451db14f3cd8e63ed622bf859f9956bc93845a10fafc26a" 313 - dependencies = [ 314 - "smallvec 1.10.0", 315 - ] 316 - 317 - [[package]] 318 - name = "cfg-if" 319 - version = "0.1.10" 320 - source = "registry+https://github.com/rust-lang/crates.io-index" 321 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 322 - 323 - [[package]] 324 - name = "cfg-if" 325 - version = "1.0.0" 326 - source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 328 - 329 - [[package]] 330 - name = "chrono" 331 - version = "0.4.24" 332 - source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 334 - dependencies = [ 335 - "iana-time-zone", 336 - "js-sys", 337 - "num-integer", 338 - "num-traits", 339 - "time", 340 - "wasm-bindgen", 341 - "winapi 0.3.9", 342 - ] 343 - 344 - [[package]] 345 - name = "clap" 346 - version = "2.34.0" 347 - source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 349 - dependencies = [ 350 - "ansi_term", 351 - "atty", 352 - "bitflags", 353 - "strsim", 354 - "textwrap", 355 - "unicode-width", 356 - "vec_map", 357 - ] 358 - 359 - [[package]] 360 - name = "commoncrypto" 361 - version = "0.2.0" 362 - source = "registry+https://github.com/rust-lang/crates.io-index" 363 - checksum = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007" 364 - dependencies = [ 365 - "commoncrypto-sys", 366 - ] 367 - 368 - [[package]] 369 - name = "commoncrypto-sys" 370 - version = "0.2.0" 371 - source = "registry+https://github.com/rust-lang/crates.io-index" 372 - checksum = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2" 373 - dependencies = [ 374 - "libc", 375 - ] 376 - 377 - [[package]] 378 - name = "core-foundation" 379 - version = "0.9.3" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 382 - dependencies = [ 383 - "core-foundation-sys", 384 - "libc", 385 - ] 386 - 387 - [[package]] 388 - name = "core-foundation-sys" 389 - version = "0.8.4" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 392 - 393 - [[package]] 394 - name = "crates-io" 395 - version = "0.31.1" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "09f977948a46e9edf93eb3dc2d7a8dd4ce3105d36de63300befed37cdf051d4a" 398 - dependencies = [ 399 - "anyhow", 400 - "curl", 401 - "percent-encoding", 402 - "serde", 403 - "serde_derive", 404 - "serde_json", 405 - "url", 406 - ] 407 - 408 - [[package]] 409 - name = "crc32fast" 410 - version = "1.3.2" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 413 - dependencies = [ 414 - "cfg-if 1.0.0", 415 - ] 416 - 417 - [[package]] 418 - name = "crossbeam-utils" 419 - version = "0.8.15" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 422 - dependencies = [ 423 - "cfg-if 1.0.0", 424 - ] 425 - 426 - [[package]] 427 - name = "crypto-hash" 428 - version = "0.3.4" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "8a77162240fd97248d19a564a565eb563a3f592b386e4136fb300909e67dddca" 431 - dependencies = [ 432 - "commoncrypto", 433 - "hex 0.3.2", 434 - "openssl", 435 - "winapi 0.3.9", 436 - ] 437 - 438 - [[package]] 439 - name = "curl" 440 - version = "0.4.44" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" 443 - dependencies = [ 444 - "curl-sys", 445 - "libc", 446 - "openssl-probe", 447 - "openssl-sys", 448 - "schannel", 449 - "socket2 0.4.9", 450 - "winapi 0.3.9", 451 - ] 452 - 453 - [[package]] 454 - name = "curl-sys" 455 - version = "0.4.61+curl-8.0.1" 456 - source = "registry+https://github.com/rust-lang/crates.io-index" 457 - checksum = "14d05c10f541ae6f3bc5b3d923c20001f47db7d5f0b2bc6ad16490133842db79" 458 - dependencies = [ 459 - "cc", 460 - "libc", 461 - "libnghttp2-sys", 462 - "libz-sys", 463 - "openssl-sys", 464 - "pkg-config", 465 - "vcpkg", 466 - "winapi 0.3.9", 467 - ] 468 - 469 - [[package]] 470 - name = "deque" 471 - version = "0.3.2" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "a694dae478589798d752c7125542f8a5ae8b6e59476172baf2eed67357bdfa27" 474 - 475 - [[package]] 476 - name = "edit-distance" 477 - version = "2.1.0" 478 - source = "registry+https://github.com/rust-lang/crates.io-index" 479 - checksum = "bbbaaaf38131deb9ca518a274a45bfdb8771f139517b073b16c2d3d32ae5037b" 480 - 481 - [[package]] 482 - name = "either" 483 - version = "1.8.1" 484 - source = "registry+https://github.com/rust-lang/crates.io-index" 485 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 486 - 487 - [[package]] 488 - name = "encoding_rs" 489 - version = "0.8.32" 490 - source = "registry+https://github.com/rust-lang/crates.io-index" 491 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 492 - dependencies = [ 493 - "cfg-if 1.0.0", 494 - ] 495 - 496 - [[package]] 497 - name = "env_logger" 498 - version = "0.8.4" 499 - source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 501 - dependencies = [ 502 - "atty", 503 - "humantime", 504 - "log", 505 - "regex", 506 - "termcolor", 507 - ] 508 - 509 - [[package]] 510 - name = "errno" 511 - version = "0.3.1" 512 - source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 514 - dependencies = [ 515 - "errno-dragonfly", 516 - "libc", 517 - "windows-sys 0.48.0", 518 - ] 519 - 520 - [[package]] 521 - name = "errno-dragonfly" 522 - version = "0.1.2" 523 - source = "registry+https://github.com/rust-lang/crates.io-index" 524 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 525 - dependencies = [ 526 - "cc", 527 - "libc", 528 - ] 529 - 530 - [[package]] 531 - name = "fastrand" 532 - version = "1.9.0" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 535 - dependencies = [ 536 - "instant", 537 - ] 538 - 539 - [[package]] 540 - name = "filetime" 541 - version = "0.2.21" 542 - source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 544 - dependencies = [ 545 - "cfg-if 1.0.0", 546 - "libc", 547 - "redox_syscall 0.2.16", 548 - "windows-sys 0.48.0", 549 - ] 550 - 551 - [[package]] 552 - name = "fixedbitset" 553 - version = "0.2.0" 554 - source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" 556 - 557 - [[package]] 558 - name = "flate2" 559 - version = "1.0.26" 560 - source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 562 - dependencies = [ 563 - "crc32fast", 564 - "libz-sys", 565 - "miniz_oxide", 566 - ] 567 - 568 - [[package]] 569 - name = "fnv" 570 - version = "1.0.7" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 573 - 574 - [[package]] 575 - name = "foreign-types" 576 - version = "0.3.2" 577 - source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 579 - dependencies = [ 580 - "foreign-types-shared", 581 - ] 582 - 583 - [[package]] 584 - name = "foreign-types-shared" 585 - version = "0.1.1" 586 - source = "registry+https://github.com/rust-lang/crates.io-index" 587 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 588 - 589 - [[package]] 590 - name = "form_urlencoded" 591 - version = "1.1.0" 592 - source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 594 - dependencies = [ 595 - "percent-encoding", 596 - ] 597 - 598 - [[package]] 599 - name = "fuchsia-cprng" 600 - version = "0.1.1" 601 - source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 603 - 604 - [[package]] 605 - name = "fuchsia-zircon" 606 - version = "0.3.3" 607 - source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 609 - dependencies = [ 610 - "bitflags", 611 - "fuchsia-zircon-sys", 612 - ] 613 - 614 - [[package]] 615 - name = "fuchsia-zircon-sys" 616 - version = "0.3.3" 617 - source = "registry+https://github.com/rust-lang/crates.io-index" 618 - checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 619 - 620 - [[package]] 621 - name = "funty" 622 - version = "1.1.0" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" 625 - 626 - [[package]] 627 - name = "futures-channel" 628 - version = "0.3.28" 629 - source = "registry+https://github.com/rust-lang/crates.io-index" 630 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 631 - dependencies = [ 632 - "futures-core", 633 - ] 634 - 635 - [[package]] 636 - name = "futures-core" 637 - version = "0.3.28" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 640 - 641 - [[package]] 642 - name = "futures-io" 643 - version = "0.3.28" 644 - source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 646 - 647 - [[package]] 648 - name = "futures-sink" 649 - version = "0.3.28" 650 - source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 652 - 653 - [[package]] 654 - name = "futures-task" 655 - version = "0.3.28" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 658 - 659 - [[package]] 660 - name = "futures-util" 661 - version = "0.3.28" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 664 - dependencies = [ 665 - "futures-core", 666 - "futures-io", 667 - "futures-task", 668 - "memchr", 669 - "pin-project-lite 0.2.9", 670 - "pin-utils", 671 - "slab", 672 - ] 673 - 674 - [[package]] 675 - name = "fwdansi" 676 - version = "1.1.0" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "08c1f5787fe85505d1f7777268db5103d80a7a374d2316a7ce262e57baf8f208" 679 - dependencies = [ 680 - "memchr", 681 - "termcolor", 682 - ] 683 - 684 - [[package]] 685 - name = "git2" 686 - version = "0.13.25" 687 - source = "registry+https://github.com/rust-lang/crates.io-index" 688 - checksum = "f29229cc1b24c0e6062f6e742aa3e256492a5323365e5ed3413599f8a5eff7d6" 689 - dependencies = [ 690 - "bitflags", 691 - "libc", 692 - "libgit2-sys", 693 - "log", 694 - "openssl-probe", 695 - "openssl-sys", 696 - "url", 697 - ] 698 - 699 - [[package]] 700 - name = "git2-curl" 701 - version = "0.14.1" 702 - source = "registry+https://github.com/rust-lang/crates.io-index" 703 - checksum = "883539cb0ea94bab3f8371a98cd8e937bbe9ee7c044499184aa4c17deb643a50" 704 - dependencies = [ 705 - "curl", 706 - "git2", 707 - "log", 708 - "url", 709 - ] 710 - 711 - [[package]] 712 - name = "glob" 713 - version = "0.3.1" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 716 - 717 - [[package]] 718 - name = "globset" 719 - version = "0.4.10" 720 - source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 722 - dependencies = [ 723 - "aho-corasick 0.7.20", 724 - "bstr", 725 - "fnv", 726 - "log", 727 - "regex", 728 - ] 729 - 730 - [[package]] 731 - name = "guppy" 732 - version = "0.8.0" 733 - source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "ec4cbddce827d660864974dc3dc62a1c810e813d17e518cc5830716b977cd110" 735 - dependencies = [ 736 - "camino", 737 - "cargo_metadata", 738 - "fixedbitset", 739 - "indexmap", 740 - "itertools", 741 - "nested", 742 - "once_cell", 743 - "pathdiff", 744 - "petgraph", 745 - "semver 0.11.0", 746 - "serde", 747 - "serde_json", 748 - "supercow", 749 - "target-spec", 750 - ] 751 - 752 - [[package]] 753 - name = "h2" 754 - version = "0.2.7" 755 - source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535" 757 - dependencies = [ 758 - "bytes 0.5.6", 759 - "fnv", 760 - "futures-core", 761 - "futures-sink", 762 - "futures-util", 763 - "http", 764 - "indexmap", 765 - "slab", 766 - "tokio", 767 - "tokio-util", 768 - "tracing", 769 - "tracing-futures", 770 - ] 771 - 772 - [[package]] 773 - name = "hashbrown" 774 - version = "0.12.3" 775 - source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 777 - 778 - [[package]] 779 - name = "hermit-abi" 780 - version = "0.1.19" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 783 - dependencies = [ 784 - "libc", 785 - ] 786 - 787 - [[package]] 788 - name = "hermit-abi" 789 - version = "0.2.6" 790 - source = "registry+https://github.com/rust-lang/crates.io-index" 791 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 792 - dependencies = [ 793 - "libc", 794 - ] 795 - 796 - [[package]] 797 - name = "hermit-abi" 798 - version = "0.3.1" 799 - source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 801 - 802 - [[package]] 803 - name = "hex" 804 - version = "0.3.2" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" 807 - 808 - [[package]] 809 - name = "hex" 810 - version = "0.4.3" 811 - source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 813 - 814 - [[package]] 815 - name = "home" 816 - version = "0.5.5" 817 - source = "registry+https://github.com/rust-lang/crates.io-index" 818 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 819 - dependencies = [ 820 - "windows-sys 0.48.0", 821 - ] 822 - 823 - [[package]] 824 - name = "http" 825 - version = "0.2.9" 826 - source = "registry+https://github.com/rust-lang/crates.io-index" 827 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 828 - dependencies = [ 829 - "bytes 1.4.0", 830 - "fnv", 831 - "itoa 1.0.6", 832 - ] 833 - 834 - [[package]] 835 - name = "http-body" 836 - version = "0.3.1" 837 - source = "registry+https://github.com/rust-lang/crates.io-index" 838 - checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b" 839 - dependencies = [ 840 - "bytes 0.5.6", 841 - "http", 842 - ] 843 - 844 - [[package]] 845 - name = "httparse" 846 - version = "1.8.0" 847 - source = "registry+https://github.com/rust-lang/crates.io-index" 848 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 849 - 850 - [[package]] 851 - name = "httpdate" 852 - version = "0.3.2" 853 - source = "registry+https://github.com/rust-lang/crates.io-index" 854 - checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" 855 - 856 - [[package]] 857 - name = "humansize" 858 - version = "1.1.1" 859 - source = "registry+https://github.com/rust-lang/crates.io-index" 860 - checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026" 861 - 862 - [[package]] 863 - name = "humantime" 864 - version = "2.1.0" 865 - source = "registry+https://github.com/rust-lang/crates.io-index" 866 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 867 - 868 - [[package]] 869 - name = "hyper" 870 - version = "0.13.10" 871 - source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb" 873 - dependencies = [ 874 - "bytes 0.5.6", 875 - "futures-channel", 876 - "futures-core", 877 - "futures-util", 878 - "h2", 879 - "http", 880 - "http-body", 881 - "httparse", 882 - "httpdate", 883 - "itoa 0.4.8", 884 - "pin-project", 885 - "socket2 0.3.19", 886 - "tokio", 887 - "tower-service", 888 - "tracing", 889 - "want", 890 - ] 891 - 892 - [[package]] 893 - name = "hyper-tls" 894 - version = "0.4.3" 895 - source = "registry+https://github.com/rust-lang/crates.io-index" 896 - checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed" 897 - dependencies = [ 898 - "bytes 0.5.6", 899 - "hyper", 900 - "native-tls", 901 - "tokio", 902 - "tokio-tls", 903 - ] 904 - 905 - [[package]] 906 - name = "iana-time-zone" 907 - version = "0.1.56" 908 - source = "registry+https://github.com/rust-lang/crates.io-index" 909 - checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 910 - dependencies = [ 911 - "android_system_properties", 912 - "core-foundation-sys", 913 - "iana-time-zone-haiku", 914 - "js-sys", 915 - "wasm-bindgen", 916 - "windows", 917 - ] 918 - 919 - [[package]] 920 - name = "iana-time-zone-haiku" 921 - version = "0.1.2" 922 - source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 924 - dependencies = [ 925 - "cc", 926 - ] 927 - 928 - [[package]] 929 - name = "idna" 930 - version = "0.3.0" 931 - source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 933 - dependencies = [ 934 - "unicode-bidi", 935 - "unicode-normalization", 936 - ] 937 - 938 - [[package]] 939 - name = "ignore" 940 - version = "0.4.20" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 943 - dependencies = [ 944 - "globset", 945 - "lazy_static", 946 - "log", 947 - "memchr", 948 - "regex", 949 - "same-file", 950 - "thread_local", 951 - "walkdir", 952 - "winapi-util", 953 - ] 954 - 955 - [[package]] 956 - name = "im-rc" 957 - version = "15.1.0" 958 - source = "registry+https://github.com/rust-lang/crates.io-index" 959 - checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe" 960 - dependencies = [ 961 - "bitmaps", 962 - "rand_core 0.6.4", 963 - "rand_xoshiro", 964 - "sized-chunks", 965 - "typenum", 966 - "version_check", 967 - ] 968 - 969 - [[package]] 970 - name = "indexmap" 971 - version = "1.9.3" 972 - source = "registry+https://github.com/rust-lang/crates.io-index" 973 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 974 - dependencies = [ 975 - "autocfg", 976 - "hashbrown", 977 - ] 978 - 979 - [[package]] 980 - name = "instant" 981 - version = "0.1.12" 982 - source = "registry+https://github.com/rust-lang/crates.io-index" 983 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 984 - dependencies = [ 985 - "cfg-if 1.0.0", 986 - ] 987 - 988 - [[package]] 989 - name = "io-lifetimes" 990 - version = "1.0.10" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 993 - dependencies = [ 994 - "hermit-abi 0.3.1", 995 - "libc", 996 - "windows-sys 0.48.0", 997 - ] 998 - 999 - [[package]] 1000 - name = "iovec" 1001 - version = "0.1.4" 1002 - source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 1004 - dependencies = [ 1005 - "libc", 1006 - ] 1007 - 1008 - [[package]] 1009 - name = "ipnet" 1010 - version = "2.7.2" 1011 - source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 1013 - 1014 - [[package]] 1015 - name = "itertools" 1016 - version = "0.10.5" 1017 - source = "registry+https://github.com/rust-lang/crates.io-index" 1018 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1019 - dependencies = [ 1020 - "either", 1021 - ] 1022 - 1023 - [[package]] 1024 - name = "itoa" 1025 - version = "0.4.8" 1026 - source = "registry+https://github.com/rust-lang/crates.io-index" 1027 - checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1028 - 1029 - [[package]] 1030 - name = "itoa" 1031 - version = "1.0.6" 1032 - source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1034 - 1035 - [[package]] 1036 - name = "jobserver" 1037 - version = "0.1.26" 1038 - source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1040 - dependencies = [ 1041 - "libc", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "js-sys" 1046 - version = "0.3.62" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" 1049 - dependencies = [ 1050 - "wasm-bindgen", 1051 - ] 1052 - 1053 - [[package]] 1054 - name = "kernel32-sys" 1055 - version = "0.2.2" 1056 - source = "registry+https://github.com/rust-lang/crates.io-index" 1057 - checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1058 - dependencies = [ 1059 - "winapi 0.2.8", 1060 - "winapi-build", 1061 - ] 1062 - 1063 - [[package]] 1064 - name = "lazy_static" 1065 - version = "1.4.0" 1066 - source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1068 - 1069 - [[package]] 1070 - name = "lazycell" 1071 - version = "1.3.0" 1072 - source = "registry+https://github.com/rust-lang/crates.io-index" 1073 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1074 - 1075 - [[package]] 1076 - name = "lexical-core" 1077 - version = "0.7.6" 1078 - source = "registry+https://github.com/rust-lang/crates.io-index" 1079 - checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" 1080 - dependencies = [ 1081 - "arrayvec", 1082 - "bitflags", 1083 - "cfg-if 1.0.0", 1084 - "ryu", 1085 - "static_assertions", 1086 - ] 1087 - 1088 - [[package]] 1089 - name = "libc" 1090 - version = "0.2.144" 1091 - source = "registry+https://github.com/rust-lang/crates.io-index" 1092 - checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 1093 - 1094 - [[package]] 1095 - name = "libgit2-sys" 1096 - version = "0.12.26+1.3.0" 1097 - source = "registry+https://github.com/rust-lang/crates.io-index" 1098 - checksum = "19e1c899248e606fbfe68dcb31d8b0176ebab833b103824af31bddf4b7457494" 1099 - dependencies = [ 1100 - "cc", 1101 - "libc", 1102 - "libssh2-sys", 1103 - "libz-sys", 1104 - "openssl-sys", 1105 - "pkg-config", 1106 - ] 1107 - 1108 - [[package]] 1109 - name = "libnghttp2-sys" 1110 - version = "0.1.7+1.45.0" 1111 - source = "registry+https://github.com/rust-lang/crates.io-index" 1112 - checksum = "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f" 1113 - dependencies = [ 1114 - "cc", 1115 - "libc", 1116 - ] 1117 - 1118 - [[package]] 1119 - name = "libssh2-sys" 1120 - version = "0.2.23" 1121 - source = "registry+https://github.com/rust-lang/crates.io-index" 1122 - checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca" 1123 - dependencies = [ 1124 - "cc", 1125 - "libc", 1126 - "libz-sys", 1127 - "openssl-sys", 1128 - "pkg-config", 1129 - "vcpkg", 1130 - ] 1131 - 1132 - [[package]] 1133 - name = "libz-sys" 1134 - version = "1.1.9" 1135 - source = "registry+https://github.com/rust-lang/crates.io-index" 1136 - checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 1137 - dependencies = [ 1138 - "cc", 1139 - "libc", 1140 - "pkg-config", 1141 - "vcpkg", 1142 - ] 1143 - 1144 - [[package]] 1145 - name = "linux-raw-sys" 1146 - version = "0.3.7" 1147 - source = "registry+https://github.com/rust-lang/crates.io-index" 1148 - checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 1149 - 1150 - [[package]] 1151 - name = "loc" 1152 - version = "0.5.0" 1153 - source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - checksum = "19667875e98831e0135a1eb4e7ddc775b09dd317809e34e0d0fc8172443c85e3" 1155 - dependencies = [ 1156 - "clap", 1157 - "deque", 1158 - "edit-distance", 1159 - "ignore", 1160 - "memchr", 1161 - "num_cpus", 1162 - "regex", 1163 - "smallvec 0.6.14", 1164 - ] 1165 - 1166 - [[package]] 1167 - name = "log" 1168 - version = "0.4.17" 1169 - source = "registry+https://github.com/rust-lang/crates.io-index" 1170 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1171 - dependencies = [ 1172 - "cfg-if 1.0.0", 1173 - ] 1174 - 1175 - [[package]] 1176 - name = "maybe-uninit" 1177 - version = "2.0.0" 1178 - source = "registry+https://github.com/rust-lang/crates.io-index" 1179 - checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 1180 - 1181 - [[package]] 1182 - name = "memchr" 1183 - version = "2.5.0" 1184 - source = "registry+https://github.com/rust-lang/crates.io-index" 1185 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1186 - 1187 - [[package]] 1188 - name = "mime" 1189 - version = "0.3.17" 1190 - source = "registry+https://github.com/rust-lang/crates.io-index" 1191 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1192 - 1193 - [[package]] 1194 - name = "mime_guess" 1195 - version = "2.0.4" 1196 - source = "registry+https://github.com/rust-lang/crates.io-index" 1197 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1198 - dependencies = [ 1199 - "mime", 1200 - "unicase", 1201 - ] 1202 - 1203 - [[package]] 1204 - name = "miniz_oxide" 1205 - version = "0.7.1" 1206 - source = "registry+https://github.com/rust-lang/crates.io-index" 1207 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1208 - dependencies = [ 1209 - "adler", 1210 - ] 1211 - 1212 - [[package]] 1213 - name = "mio" 1214 - version = "0.6.23" 1215 - source = "registry+https://github.com/rust-lang/crates.io-index" 1216 - checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 1217 - dependencies = [ 1218 - "cfg-if 0.1.10", 1219 - "fuchsia-zircon", 1220 - "fuchsia-zircon-sys", 1221 - "iovec", 1222 - "kernel32-sys", 1223 - "libc", 1224 - "log", 1225 - "miow 0.2.2", 1226 - "net2", 1227 - "slab", 1228 - "winapi 0.2.8", 1229 - ] 1230 - 1231 - [[package]] 1232 - name = "miow" 1233 - version = "0.2.2" 1234 - source = "registry+https://github.com/rust-lang/crates.io-index" 1235 - checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 1236 - dependencies = [ 1237 - "kernel32-sys", 1238 - "net2", 1239 - "winapi 0.2.8", 1240 - "ws2_32-sys", 1241 - ] 1242 - 1243 - [[package]] 1244 - name = "miow" 1245 - version = "0.3.7" 1246 - source = "registry+https://github.com/rust-lang/crates.io-index" 1247 - checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 1248 - dependencies = [ 1249 - "winapi 0.3.9", 1250 - ] 1251 - 1252 - [[package]] 1253 - name = "native-tls" 1254 - version = "0.2.11" 1255 - source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1257 - dependencies = [ 1258 - "lazy_static", 1259 - "libc", 1260 - "log", 1261 - "openssl", 1262 - "openssl-probe", 1263 - "openssl-sys", 1264 - "schannel", 1265 - "security-framework", 1266 - "security-framework-sys", 1267 - "tempfile", 1268 - ] 1269 - 1270 - [[package]] 1271 - name = "nested" 1272 - version = "0.1.1" 1273 - source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "ca2b420f638f07fe83056b55ea190bb815f609ec5a35e7017884a10f78839c9e" 1275 - 1276 - [[package]] 1277 - name = "net2" 1278 - version = "0.2.38" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631" 1281 - dependencies = [ 1282 - "cfg-if 0.1.10", 1283 - "libc", 1284 - "winapi 0.3.9", 1285 - ] 1286 - 1287 - [[package]] 1288 - name = "nom" 1289 - version = "6.1.2" 1290 - source = "registry+https://github.com/rust-lang/crates.io-index" 1291 - checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2" 1292 - dependencies = [ 1293 - "bitvec", 1294 - "funty", 1295 - "lexical-core", 1296 - "memchr", 1297 - "version_check", 1298 - ] 1299 - 1300 - [[package]] 1301 - name = "num-integer" 1302 - version = "0.1.45" 1303 - source = "registry+https://github.com/rust-lang/crates.io-index" 1304 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1305 - dependencies = [ 1306 - "autocfg", 1307 - "num-traits", 1308 - ] 1309 - 1310 - [[package]] 1311 - name = "num-traits" 1312 - version = "0.2.15" 1313 - source = "registry+https://github.com/rust-lang/crates.io-index" 1314 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1315 - dependencies = [ 1316 - "autocfg", 1317 - ] 1318 - 1319 - [[package]] 1320 - name = "num_cpus" 1321 - version = "1.15.0" 1322 - source = "registry+https://github.com/rust-lang/crates.io-index" 1323 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1324 - dependencies = [ 1325 - "hermit-abi 0.2.6", 1326 - "libc", 1327 - ] 1328 - 1329 - [[package]] 1330 - name = "once_cell" 1331 - version = "1.17.1" 1332 - source = "registry+https://github.com/rust-lang/crates.io-index" 1333 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1334 - 1335 - [[package]] 1336 - name = "opener" 1337 - version = "0.4.1" 1338 - source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "13117407ca9d0caf3a0e74f97b490a7e64c0ae3aa90a8b7085544d0c37b6f3ae" 1340 - dependencies = [ 1341 - "winapi 0.3.9", 1342 - ] 1343 - 1344 - [[package]] 1345 - name = "openssl" 1346 - version = "0.10.52" 1347 - source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 1349 - dependencies = [ 1350 - "bitflags", 1351 - "cfg-if 1.0.0", 1352 - "foreign-types", 1353 - "libc", 1354 - "once_cell", 1355 - "openssl-macros", 1356 - "openssl-sys", 1357 - ] 1358 - 1359 - [[package]] 1360 - name = "openssl-macros" 1361 - version = "0.1.1" 1362 - source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1364 - dependencies = [ 1365 - "proc-macro2", 1366 - "quote", 1367 - "syn 2.0.15", 1368 - ] 1369 - 1370 - [[package]] 1371 - name = "openssl-probe" 1372 - version = "0.1.5" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1375 - 1376 - [[package]] 1377 - name = "openssl-sys" 1378 - version = "0.9.87" 1379 - source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 1381 - dependencies = [ 1382 - "cc", 1383 - "libc", 1384 - "pkg-config", 1385 - "vcpkg", 1386 - ] 1387 - 1388 - [[package]] 1389 - name = "pathdiff" 1390 - version = "0.2.1" 1391 - source = "registry+https://github.com/rust-lang/crates.io-index" 1392 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1393 - 1394 - [[package]] 1395 - name = "percent-encoding" 1396 - version = "2.2.0" 1397 - source = "registry+https://github.com/rust-lang/crates.io-index" 1398 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1399 - 1400 - [[package]] 1401 - name = "pest" 1402 - version = "2.6.0" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70" 1405 - dependencies = [ 1406 - "thiserror", 1407 - "ucd-trie", 1408 - ] 1409 - 1410 - [[package]] 1411 - name = "petgraph" 1412 - version = "0.5.1" 1413 - source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7" 1415 - dependencies = [ 1416 - "fixedbitset", 1417 - "indexmap", 1418 - ] 1419 - 1420 - [[package]] 1421 - name = "pin-project" 1422 - version = "1.0.12" 1423 - source = "registry+https://github.com/rust-lang/crates.io-index" 1424 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 1425 - dependencies = [ 1426 - "pin-project-internal", 1427 - ] 1428 - 1429 - [[package]] 1430 - name = "pin-project-internal" 1431 - version = "1.0.12" 1432 - source = "registry+https://github.com/rust-lang/crates.io-index" 1433 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 1434 - dependencies = [ 1435 - "proc-macro2", 1436 - "quote", 1437 - "syn 1.0.109", 1438 - ] 1439 - 1440 - [[package]] 1441 - name = "pin-project-lite" 1442 - version = "0.1.12" 1443 - source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" 1445 - 1446 - [[package]] 1447 - name = "pin-project-lite" 1448 - version = "0.2.9" 1449 - source = "registry+https://github.com/rust-lang/crates.io-index" 1450 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1451 - 1452 - [[package]] 1453 - name = "pin-utils" 1454 - version = "0.1.0" 1455 - source = "registry+https://github.com/rust-lang/crates.io-index" 1456 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1457 - 1458 - [[package]] 1459 - name = "pkg-config" 1460 - version = "0.3.27" 1461 - source = "registry+https://github.com/rust-lang/crates.io-index" 1462 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1463 - 1464 - [[package]] 1465 - name = "proc-macro2" 1466 - version = "1.0.56" 1467 - source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 1469 - dependencies = [ 1470 - "unicode-ident", 1471 - ] 1472 - 1473 - [[package]] 1474 - name = "quote" 1475 - version = "1.0.27" 1476 - source = "registry+https://github.com/rust-lang/crates.io-index" 1477 - checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 1478 - dependencies = [ 1479 - "proc-macro2", 1480 - ] 1481 - 1482 - [[package]] 1483 - name = "radium" 1484 - version = "0.5.3" 1485 - source = "registry+https://github.com/rust-lang/crates.io-index" 1486 - checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8" 1487 - 1488 - [[package]] 1489 - name = "rand" 1490 - version = "0.4.6" 1491 - source = "registry+https://github.com/rust-lang/crates.io-index" 1492 - checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 1493 - dependencies = [ 1494 - "fuchsia-cprng", 1495 - "libc", 1496 - "rand_core 0.3.1", 1497 - "rdrand", 1498 - "winapi 0.3.9", 1499 - ] 1500 - 1501 - [[package]] 1502 - name = "rand_core" 1503 - version = "0.3.1" 1504 - source = "registry+https://github.com/rust-lang/crates.io-index" 1505 - checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 1506 - dependencies = [ 1507 - "rand_core 0.4.2", 1508 - ] 1509 - 1510 - [[package]] 1511 - name = "rand_core" 1512 - version = "0.4.2" 1513 - source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 1515 - 1516 - [[package]] 1517 - name = "rand_core" 1518 - version = "0.6.4" 1519 - source = "registry+https://github.com/rust-lang/crates.io-index" 1520 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1521 - 1522 - [[package]] 1523 - name = "rand_xoshiro" 1524 - version = "0.6.0" 1525 - source = "registry+https://github.com/rust-lang/crates.io-index" 1526 - checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" 1527 - dependencies = [ 1528 - "rand_core 0.6.4", 1529 - ] 1530 - 1531 - [[package]] 1532 - name = "rdrand" 1533 - version = "0.4.0" 1534 - source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 1536 - dependencies = [ 1537 - "rand_core 0.3.1", 1538 - ] 1539 - 1540 - [[package]] 1541 - name = "redox_syscall" 1542 - version = "0.2.16" 1543 - source = "registry+https://github.com/rust-lang/crates.io-index" 1544 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1545 - dependencies = [ 1546 - "bitflags", 1547 - ] 1548 - 1549 - [[package]] 1550 - name = "redox_syscall" 1551 - version = "0.3.5" 1552 - source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1554 - dependencies = [ 1555 - "bitflags", 1556 - ] 1557 - 1558 - [[package]] 1559 - name = "regex" 1560 - version = "1.8.1" 1561 - source = "registry+https://github.com/rust-lang/crates.io-index" 1562 - checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 1563 - dependencies = [ 1564 - "aho-corasick 1.0.1", 1565 - "memchr", 1566 - "regex-syntax", 1567 - ] 1568 - 1569 - [[package]] 1570 - name = "regex-syntax" 1571 - version = "0.7.1" 1572 - source = "registry+https://github.com/rust-lang/crates.io-index" 1573 - checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 1574 - 1575 - [[package]] 1576 - name = "remove_dir_all" 1577 - version = "0.5.3" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1580 - dependencies = [ 1581 - "winapi 0.3.9", 1582 - ] 1583 - 1584 - [[package]] 1585 - name = "reqwest" 1586 - version = "0.10.10" 1587 - source = "registry+https://github.com/rust-lang/crates.io-index" 1588 - checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c" 1589 - dependencies = [ 1590 - "base64", 1591 - "bytes 0.5.6", 1592 - "encoding_rs", 1593 - "futures-core", 1594 - "futures-util", 1595 - "http", 1596 - "http-body", 1597 - "hyper", 1598 - "hyper-tls", 1599 - "ipnet", 1600 - "js-sys", 1601 - "lazy_static", 1602 - "log", 1603 - "mime", 1604 - "mime_guess", 1605 - "native-tls", 1606 - "percent-encoding", 1607 - "pin-project-lite 0.2.9", 1608 - "serde", 1609 - "serde_json", 1610 - "serde_urlencoded", 1611 - "tokio", 1612 - "tokio-tls", 1613 - "url", 1614 - "wasm-bindgen", 1615 - "wasm-bindgen-futures", 1616 - "web-sys", 1617 - "winreg", 1618 - ] 1619 - 1620 - [[package]] 1621 - name = "rustc-workspace-hack" 1622 - version = "1.0.0" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "fc71d2faa173b74b232dedc235e3ee1696581bb132fc116fa3626d6151a1a8fb" 1625 - 1626 - [[package]] 1627 - name = "rustfix" 1628 - version = "0.5.1" 1629 - source = "registry+https://github.com/rust-lang/crates.io-index" 1630 - checksum = "f2c50b74badcddeb8f7652fa8323ce440b95286f8e4b64ebfd871c609672704e" 1631 - dependencies = [ 1632 - "anyhow", 1633 - "log", 1634 - "serde", 1635 - "serde_json", 1636 - ] 1637 - 1638 - [[package]] 1639 - name = "rustix" 1640 - version = "0.37.19" 1641 - source = "registry+https://github.com/rust-lang/crates.io-index" 1642 - checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 1643 - dependencies = [ 1644 - "bitflags", 1645 - "errno", 1646 - "io-lifetimes", 1647 - "libc", 1648 - "linux-raw-sys", 1649 - "windows-sys 0.48.0", 1650 - ] 1651 - 1652 - [[package]] 1653 - name = "ryu" 1654 - version = "1.0.13" 1655 - source = "registry+https://github.com/rust-lang/crates.io-index" 1656 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1657 - 1658 - [[package]] 1659 - name = "same-file" 1660 - version = "1.0.6" 1661 - source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1663 - dependencies = [ 1664 - "winapi-util", 1665 - ] 1666 - 1667 - [[package]] 1668 - name = "schannel" 1669 - version = "0.1.21" 1670 - source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 1672 - dependencies = [ 1673 - "windows-sys 0.42.0", 1674 - ] 1675 - 1676 - [[package]] 1677 - name = "security-framework" 1678 - version = "2.8.2" 1679 - source = "registry+https://github.com/rust-lang/crates.io-index" 1680 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 1681 - dependencies = [ 1682 - "bitflags", 1683 - "core-foundation", 1684 - "core-foundation-sys", 1685 - "libc", 1686 - "security-framework-sys", 1687 - ] 1688 - 1689 - [[package]] 1690 - name = "security-framework-sys" 1691 - version = "2.8.0" 1692 - source = "registry+https://github.com/rust-lang/crates.io-index" 1693 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 1694 - dependencies = [ 1695 - "core-foundation-sys", 1696 - "libc", 1697 - ] 1698 - 1699 - [[package]] 1700 - name = "semver" 1701 - version = "0.10.0" 1702 - source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - checksum = "394cec28fa623e00903caf7ba4fa6fb9a0e260280bb8cdbbba029611108a0190" 1704 - dependencies = [ 1705 - "semver-parser 0.7.0", 1706 - "serde", 1707 - ] 1708 - 1709 - [[package]] 1710 - name = "semver" 1711 - version = "0.11.0" 1712 - source = "registry+https://github.com/rust-lang/crates.io-index" 1713 - checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 1714 - dependencies = [ 1715 - "semver-parser 0.10.2", 1716 - "serde", 1717 - ] 1718 - 1719 - [[package]] 1720 - name = "semver-parser" 1721 - version = "0.7.0" 1722 - source = "registry+https://github.com/rust-lang/crates.io-index" 1723 - checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1724 - 1725 - [[package]] 1726 - name = "semver-parser" 1727 - version = "0.10.2" 1728 - source = "registry+https://github.com/rust-lang/crates.io-index" 1729 - checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 1730 - dependencies = [ 1731 - "pest", 1732 - ] 1733 - 1734 - [[package]] 1735 - name = "serde" 1736 - version = "1.0.163" 1737 - source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 1739 - dependencies = [ 1740 - "serde_derive", 1741 - ] 1742 - 1743 - [[package]] 1744 - name = "serde_derive" 1745 - version = "1.0.163" 1746 - source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 1748 - dependencies = [ 1749 - "proc-macro2", 1750 - "quote", 1751 - "syn 2.0.15", 1752 - ] 1753 - 1754 - [[package]] 1755 - name = "serde_ignored" 1756 - version = "0.1.7" 1757 - source = "registry+https://github.com/rust-lang/crates.io-index" 1758 - checksum = "94eb4a4087ba8bdf14a9208ac44fddbf55c01a6195f7edfc511ddaff6cae45a6" 1759 - dependencies = [ 1760 - "serde", 1761 - ] 1762 - 1763 - [[package]] 1764 - name = "serde_json" 1765 - version = "1.0.96" 1766 - source = "registry+https://github.com/rust-lang/crates.io-index" 1767 - checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 1768 - dependencies = [ 1769 - "itoa 1.0.6", 1770 - "ryu", 1771 - "serde", 1772 - ] 1773 - 1774 - [[package]] 1775 - name = "serde_urlencoded" 1776 - version = "0.7.1" 1777 - source = "registry+https://github.com/rust-lang/crates.io-index" 1778 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1779 - dependencies = [ 1780 - "form_urlencoded", 1781 - "itoa 1.0.6", 1782 - "ryu", 1783 - "serde", 1784 - ] 1785 - 1786 - [[package]] 1787 - name = "shell-escape" 1788 - version = "0.1.5" 1789 - source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 1791 - 1792 - [[package]] 1793 - name = "sized-chunks" 1794 - version = "0.6.5" 1795 - source = "registry+https://github.com/rust-lang/crates.io-index" 1796 - checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" 1797 - dependencies = [ 1798 - "bitmaps", 1799 - "typenum", 1800 - ] 1801 - 1802 - [[package]] 1803 - name = "slab" 1804 - version = "0.4.8" 1805 - source = "registry+https://github.com/rust-lang/crates.io-index" 1806 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1807 - dependencies = [ 1808 - "autocfg", 1809 - ] 1810 - 1811 - [[package]] 1812 - name = "smallvec" 1813 - version = "0.6.14" 1814 - source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" 1816 - dependencies = [ 1817 - "maybe-uninit", 1818 - ] 1819 - 1820 - [[package]] 1821 - name = "smallvec" 1822 - version = "1.10.0" 1823 - source = "registry+https://github.com/rust-lang/crates.io-index" 1824 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1825 - 1826 - [[package]] 1827 - name = "socket2" 1828 - version = "0.3.19" 1829 - source = "registry+https://github.com/rust-lang/crates.io-index" 1830 - checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" 1831 - dependencies = [ 1832 - "cfg-if 1.0.0", 1833 - "libc", 1834 - "winapi 0.3.9", 1835 - ] 1836 - 1837 - [[package]] 1838 - name = "socket2" 1839 - version = "0.4.9" 1840 - source = "registry+https://github.com/rust-lang/crates.io-index" 1841 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1842 - dependencies = [ 1843 - "libc", 1844 - "winapi 0.3.9", 1845 - ] 1846 - 1847 - [[package]] 1848 - name = "static_assertions" 1849 - version = "1.1.0" 1850 - source = "registry+https://github.com/rust-lang/crates.io-index" 1851 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1852 - 1853 - [[package]] 1854 - name = "strip-ansi-escapes" 1855 - version = "0.1.1" 1856 - source = "registry+https://github.com/rust-lang/crates.io-index" 1857 - checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8" 1858 - dependencies = [ 1859 - "vte", 1860 - ] 1861 - 1862 - [[package]] 1863 - name = "strsim" 1864 - version = "0.8.0" 1865 - source = "registry+https://github.com/rust-lang/crates.io-index" 1866 - checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1867 - 1868 - [[package]] 1869 - name = "supercow" 1870 - version = "0.1.0" 1871 - source = "registry+https://github.com/rust-lang/crates.io-index" 1872 - checksum = "171758edb47aa306a78dfa4ab9aeb5167405bd4e3dc2b64e88f6a84bbe98bd63" 1873 - 1874 - [[package]] 1875 - name = "syn" 1876 - version = "1.0.109" 1877 - source = "registry+https://github.com/rust-lang/crates.io-index" 1878 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1879 - dependencies = [ 1880 - "proc-macro2", 1881 - "quote", 1882 - "unicode-ident", 1883 - ] 1884 - 1885 - [[package]] 1886 - name = "syn" 1887 - version = "2.0.15" 1888 - source = "registry+https://github.com/rust-lang/crates.io-index" 1889 - checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 1890 - dependencies = [ 1891 - "proc-macro2", 1892 - "quote", 1893 - "unicode-ident", 1894 - ] 1895 - 1896 - [[package]] 1897 - name = "tap" 1898 - version = "1.0.1" 1899 - source = "registry+https://github.com/rust-lang/crates.io-index" 1900 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 1901 - 1902 - [[package]] 1903 - name = "tar" 1904 - version = "0.4.38" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 1907 - dependencies = [ 1908 - "filetime", 1909 - "libc", 1910 - ] 1911 - 1912 - [[package]] 1913 - name = "target-spec" 1914 - version = "0.7.0" 1915 - source = "registry+https://github.com/rust-lang/crates.io-index" 1916 - checksum = "ac395241acf0f3d224dd2b07b334994adf6f37c904d1826867332ab8c6ddedbf" 1917 - dependencies = [ 1918 - "cfg-expr", 1919 - ] 1920 - 1921 - [[package]] 1922 - name = "tempdir" 1923 - version = "0.3.7" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" 1926 - dependencies = [ 1927 - "rand", 1928 - "remove_dir_all", 1929 - ] 1930 - 1931 - [[package]] 1932 - name = "tempfile" 1933 - version = "3.5.0" 1934 - source = "registry+https://github.com/rust-lang/crates.io-index" 1935 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 1936 - dependencies = [ 1937 - "cfg-if 1.0.0", 1938 - "fastrand", 1939 - "redox_syscall 0.3.5", 1940 - "rustix", 1941 - "windows-sys 0.45.0", 1942 - ] 1943 - 1944 - [[package]] 1945 - name = "termcolor" 1946 - version = "1.2.0" 1947 - source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1949 - dependencies = [ 1950 - "winapi-util", 1951 - ] 1952 - 1953 - [[package]] 1954 - name = "textwrap" 1955 - version = "0.11.0" 1956 - source = "registry+https://github.com/rust-lang/crates.io-index" 1957 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1958 - dependencies = [ 1959 - "unicode-width", 1960 - ] 1961 - 1962 - [[package]] 1963 - name = "thiserror" 1964 - version = "1.0.40" 1965 - source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 1967 - dependencies = [ 1968 - "thiserror-impl", 1969 - ] 1970 - 1971 - [[package]] 1972 - name = "thiserror-impl" 1973 - version = "1.0.40" 1974 - source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 1976 - dependencies = [ 1977 - "proc-macro2", 1978 - "quote", 1979 - "syn 2.0.15", 1980 - ] 1981 - 1982 - [[package]] 1983 - name = "thread_local" 1984 - version = "1.1.7" 1985 - source = "registry+https://github.com/rust-lang/crates.io-index" 1986 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1987 - dependencies = [ 1988 - "cfg-if 1.0.0", 1989 - "once_cell", 1990 - ] 1991 - 1992 - [[package]] 1993 - name = "time" 1994 - version = "0.1.45" 1995 - source = "registry+https://github.com/rust-lang/crates.io-index" 1996 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 1997 - dependencies = [ 1998 - "libc", 1999 - "wasi", 2000 - "winapi 0.3.9", 2001 - ] 2002 - 2003 - [[package]] 2004 - name = "tinyvec" 2005 - version = "1.6.0" 2006 - source = "registry+https://github.com/rust-lang/crates.io-index" 2007 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2008 - dependencies = [ 2009 - "tinyvec_macros", 2010 - ] 2011 - 2012 - [[package]] 2013 - name = "tinyvec_macros" 2014 - version = "0.1.1" 2015 - source = "registry+https://github.com/rust-lang/crates.io-index" 2016 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2017 - 2018 - [[package]] 2019 - name = "tokio" 2020 - version = "0.2.25" 2021 - source = "registry+https://github.com/rust-lang/crates.io-index" 2022 - checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092" 2023 - dependencies = [ 2024 - "bytes 0.5.6", 2025 - "fnv", 2026 - "futures-core", 2027 - "iovec", 2028 - "lazy_static", 2029 - "memchr", 2030 - "mio", 2031 - "num_cpus", 2032 - "pin-project-lite 0.1.12", 2033 - "slab", 2034 - ] 2035 - 2036 - [[package]] 2037 - name = "tokio-tls" 2038 - version = "0.3.1" 2039 - source = "registry+https://github.com/rust-lang/crates.io-index" 2040 - checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343" 2041 - dependencies = [ 2042 - "native-tls", 2043 - "tokio", 2044 - ] 2045 - 2046 - [[package]] 2047 - name = "tokio-util" 2048 - version = "0.3.1" 2049 - source = "registry+https://github.com/rust-lang/crates.io-index" 2050 - checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499" 2051 - dependencies = [ 2052 - "bytes 0.5.6", 2053 - "futures-core", 2054 - "futures-sink", 2055 - "log", 2056 - "pin-project-lite 0.1.12", 2057 - "tokio", 2058 - ] 2059 - 2060 - [[package]] 2061 - name = "toml" 2062 - version = "0.5.11" 2063 - source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2065 - dependencies = [ 2066 - "serde", 2067 - ] 2068 - 2069 - [[package]] 2070 - name = "tower-service" 2071 - version = "0.3.2" 2072 - source = "registry+https://github.com/rust-lang/crates.io-index" 2073 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2074 - 2075 - [[package]] 2076 - name = "tracing" 2077 - version = "0.1.37" 2078 - source = "registry+https://github.com/rust-lang/crates.io-index" 2079 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2080 - dependencies = [ 2081 - "cfg-if 1.0.0", 2082 - "log", 2083 - "pin-project-lite 0.2.9", 2084 - "tracing-core", 2085 - ] 2086 - 2087 - [[package]] 2088 - name = "tracing-core" 2089 - version = "0.1.31" 2090 - source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2092 - dependencies = [ 2093 - "once_cell", 2094 - ] 2095 - 2096 - [[package]] 2097 - name = "tracing-futures" 2098 - version = "0.2.5" 2099 - source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 2101 - dependencies = [ 2102 - "pin-project", 2103 - "tracing", 2104 - ] 2105 - 2106 - [[package]] 2107 - name = "try-lock" 2108 - version = "0.2.4" 2109 - source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2111 - 2112 - [[package]] 2113 - name = "typenum" 2114 - version = "1.16.0" 2115 - source = "registry+https://github.com/rust-lang/crates.io-index" 2116 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2117 - 2118 - [[package]] 2119 - name = "ucd-trie" 2120 - version = "0.1.5" 2121 - source = "registry+https://github.com/rust-lang/crates.io-index" 2122 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 2123 - 2124 - [[package]] 2125 - name = "unicase" 2126 - version = "2.6.0" 2127 - source = "registry+https://github.com/rust-lang/crates.io-index" 2128 - checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 2129 - dependencies = [ 2130 - "version_check", 2131 - ] 2132 - 2133 - [[package]] 2134 - name = "unicode-bidi" 2135 - version = "0.3.13" 2136 - source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2138 - 2139 - [[package]] 2140 - name = "unicode-ident" 2141 - version = "1.0.8" 2142 - source = "registry+https://github.com/rust-lang/crates.io-index" 2143 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2144 - 2145 - [[package]] 2146 - name = "unicode-normalization" 2147 - version = "0.1.22" 2148 - source = "registry+https://github.com/rust-lang/crates.io-index" 2149 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2150 - dependencies = [ 2151 - "tinyvec", 2152 - ] 2153 - 2154 - [[package]] 2155 - name = "unicode-width" 2156 - version = "0.1.10" 2157 - source = "registry+https://github.com/rust-lang/crates.io-index" 2158 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2159 - 2160 - [[package]] 2161 - name = "unicode-xid" 2162 - version = "0.2.4" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 2165 - 2166 - [[package]] 2167 - name = "url" 2168 - version = "2.3.1" 2169 - source = "registry+https://github.com/rust-lang/crates.io-index" 2170 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2171 - dependencies = [ 2172 - "form_urlencoded", 2173 - "idna", 2174 - "percent-encoding", 2175 - ] 2176 - 2177 - [[package]] 2178 - name = "utf8parse" 2179 - version = "0.2.1" 2180 - source = "registry+https://github.com/rust-lang/crates.io-index" 2181 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2182 - 2183 - [[package]] 2184 - name = "vcpkg" 2185 - version = "0.2.15" 2186 - source = "registry+https://github.com/rust-lang/crates.io-index" 2187 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2188 - 2189 - [[package]] 2190 - name = "vec_map" 2191 - version = "0.8.2" 2192 - source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 2194 - 2195 - [[package]] 2196 - name = "version_check" 2197 - version = "0.9.4" 2198 - source = "registry+https://github.com/rust-lang/crates.io-index" 2199 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2200 - 2201 - [[package]] 2202 - name = "vte" 2203 - version = "0.10.1" 2204 - source = "registry+https://github.com/rust-lang/crates.io-index" 2205 - checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983" 2206 - dependencies = [ 2207 - "arrayvec", 2208 - "utf8parse", 2209 - "vte_generate_state_changes", 2210 - ] 2211 - 2212 - [[package]] 2213 - name = "vte_generate_state_changes" 2214 - version = "0.1.1" 2215 - source = "registry+https://github.com/rust-lang/crates.io-index" 2216 - checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 2217 - dependencies = [ 2218 - "proc-macro2", 2219 - "quote", 2220 - ] 2221 - 2222 - [[package]] 2223 - name = "walkdir" 2224 - version = "2.3.3" 2225 - source = "registry+https://github.com/rust-lang/crates.io-index" 2226 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 2227 - dependencies = [ 2228 - "same-file", 2229 - "winapi-util", 2230 - ] 2231 - 2232 - [[package]] 2233 - name = "want" 2234 - version = "0.3.0" 2235 - source = "registry+https://github.com/rust-lang/crates.io-index" 2236 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2237 - dependencies = [ 2238 - "log", 2239 - "try-lock", 2240 - ] 2241 - 2242 - [[package]] 2243 - name = "wasi" 2244 - version = "0.10.0+wasi-snapshot-preview1" 2245 - source = "registry+https://github.com/rust-lang/crates.io-index" 2246 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2247 - 2248 - [[package]] 2249 - name = "wasm-bindgen" 2250 - version = "0.2.85" 2251 - source = "registry+https://github.com/rust-lang/crates.io-index" 2252 - checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" 2253 - dependencies = [ 2254 - "cfg-if 1.0.0", 2255 - "serde", 2256 - "serde_json", 2257 - "wasm-bindgen-macro", 2258 - ] 2259 - 2260 - [[package]] 2261 - name = "wasm-bindgen-backend" 2262 - version = "0.2.85" 2263 - source = "registry+https://github.com/rust-lang/crates.io-index" 2264 - checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" 2265 - dependencies = [ 2266 - "bumpalo", 2267 - "log", 2268 - "once_cell", 2269 - "proc-macro2", 2270 - "quote", 2271 - "syn 2.0.15", 2272 - "wasm-bindgen-shared", 2273 - ] 2274 - 2275 - [[package]] 2276 - name = "wasm-bindgen-futures" 2277 - version = "0.4.35" 2278 - source = "registry+https://github.com/rust-lang/crates.io-index" 2279 - checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163" 2280 - dependencies = [ 2281 - "cfg-if 1.0.0", 2282 - "js-sys", 2283 - "wasm-bindgen", 2284 - "web-sys", 2285 - ] 2286 - 2287 - [[package]] 2288 - name = "wasm-bindgen-macro" 2289 - version = "0.2.85" 2290 - source = "registry+https://github.com/rust-lang/crates.io-index" 2291 - checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" 2292 - dependencies = [ 2293 - "quote", 2294 - "wasm-bindgen-macro-support", 2295 - ] 2296 - 2297 - [[package]] 2298 - name = "wasm-bindgen-macro-support" 2299 - version = "0.2.85" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" 2302 - dependencies = [ 2303 - "proc-macro2", 2304 - "quote", 2305 - "syn 2.0.15", 2306 - "wasm-bindgen-backend", 2307 - "wasm-bindgen-shared", 2308 - ] 2309 - 2310 - [[package]] 2311 - name = "wasm-bindgen-shared" 2312 - version = "0.2.85" 2313 - source = "registry+https://github.com/rust-lang/crates.io-index" 2314 - checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" 2315 - 2316 - [[package]] 2317 - name = "web-sys" 2318 - version = "0.3.62" 2319 - source = "registry+https://github.com/rust-lang/crates.io-index" 2320 - checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721" 2321 - dependencies = [ 2322 - "js-sys", 2323 - "wasm-bindgen", 2324 - ] 2325 - 2326 - [[package]] 2327 - name = "winapi" 2328 - version = "0.2.8" 2329 - source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2331 - 2332 - [[package]] 2333 - name = "winapi" 2334 - version = "0.3.9" 2335 - source = "registry+https://github.com/rust-lang/crates.io-index" 2336 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2337 - dependencies = [ 2338 - "winapi-i686-pc-windows-gnu", 2339 - "winapi-x86_64-pc-windows-gnu", 2340 - ] 2341 - 2342 - [[package]] 2343 - name = "winapi-build" 2344 - version = "0.1.1" 2345 - source = "registry+https://github.com/rust-lang/crates.io-index" 2346 - checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 2347 - 2348 - [[package]] 2349 - name = "winapi-i686-pc-windows-gnu" 2350 - version = "0.4.0" 2351 - source = "registry+https://github.com/rust-lang/crates.io-index" 2352 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2353 - 2354 - [[package]] 2355 - name = "winapi-util" 2356 - version = "0.1.5" 2357 - source = "registry+https://github.com/rust-lang/crates.io-index" 2358 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2359 - dependencies = [ 2360 - "winapi 0.3.9", 2361 - ] 2362 - 2363 - [[package]] 2364 - name = "winapi-x86_64-pc-windows-gnu" 2365 - version = "0.4.0" 2366 - source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2368 - 2369 - [[package]] 2370 - name = "windows" 2371 - version = "0.48.0" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 2374 - dependencies = [ 2375 - "windows-targets 0.48.0", 2376 - ] 2377 - 2378 - [[package]] 2379 - name = "windows-sys" 2380 - version = "0.42.0" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2383 - dependencies = [ 2384 - "windows_aarch64_gnullvm 0.42.2", 2385 - "windows_aarch64_msvc 0.42.2", 2386 - "windows_i686_gnu 0.42.2", 2387 - "windows_i686_msvc 0.42.2", 2388 - "windows_x86_64_gnu 0.42.2", 2389 - "windows_x86_64_gnullvm 0.42.2", 2390 - "windows_x86_64_msvc 0.42.2", 2391 - ] 2392 - 2393 - [[package]] 2394 - name = "windows-sys" 2395 - version = "0.45.0" 2396 - source = "registry+https://github.com/rust-lang/crates.io-index" 2397 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2398 - dependencies = [ 2399 - "windows-targets 0.42.2", 2400 - ] 2401 - 2402 - [[package]] 2403 - name = "windows-sys" 2404 - version = "0.48.0" 2405 - source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2407 - dependencies = [ 2408 - "windows-targets 0.48.0", 2409 - ] 2410 - 2411 - [[package]] 2412 - name = "windows-targets" 2413 - version = "0.42.2" 2414 - source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2416 - dependencies = [ 2417 - "windows_aarch64_gnullvm 0.42.2", 2418 - "windows_aarch64_msvc 0.42.2", 2419 - "windows_i686_gnu 0.42.2", 2420 - "windows_i686_msvc 0.42.2", 2421 - "windows_x86_64_gnu 0.42.2", 2422 - "windows_x86_64_gnullvm 0.42.2", 2423 - "windows_x86_64_msvc 0.42.2", 2424 - ] 2425 - 2426 - [[package]] 2427 - name = "windows-targets" 2428 - version = "0.48.0" 2429 - source = "registry+https://github.com/rust-lang/crates.io-index" 2430 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 2431 - dependencies = [ 2432 - "windows_aarch64_gnullvm 0.48.0", 2433 - "windows_aarch64_msvc 0.48.0", 2434 - "windows_i686_gnu 0.48.0", 2435 - "windows_i686_msvc 0.48.0", 2436 - "windows_x86_64_gnu 0.48.0", 2437 - "windows_x86_64_gnullvm 0.48.0", 2438 - "windows_x86_64_msvc 0.48.0", 2439 - ] 2440 - 2441 - [[package]] 2442 - name = "windows_aarch64_gnullvm" 2443 - version = "0.42.2" 2444 - source = "registry+https://github.com/rust-lang/crates.io-index" 2445 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2446 - 2447 - [[package]] 2448 - name = "windows_aarch64_gnullvm" 2449 - version = "0.48.0" 2450 - source = "registry+https://github.com/rust-lang/crates.io-index" 2451 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2452 - 2453 - [[package]] 2454 - name = "windows_aarch64_msvc" 2455 - version = "0.42.2" 2456 - source = "registry+https://github.com/rust-lang/crates.io-index" 2457 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2458 - 2459 - [[package]] 2460 - name = "windows_aarch64_msvc" 2461 - version = "0.48.0" 2462 - source = "registry+https://github.com/rust-lang/crates.io-index" 2463 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2464 - 2465 - [[package]] 2466 - name = "windows_i686_gnu" 2467 - version = "0.42.2" 2468 - source = "registry+https://github.com/rust-lang/crates.io-index" 2469 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2470 - 2471 - [[package]] 2472 - name = "windows_i686_gnu" 2473 - version = "0.48.0" 2474 - source = "registry+https://github.com/rust-lang/crates.io-index" 2475 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2476 - 2477 - [[package]] 2478 - name = "windows_i686_msvc" 2479 - version = "0.42.2" 2480 - source = "registry+https://github.com/rust-lang/crates.io-index" 2481 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2482 - 2483 - [[package]] 2484 - name = "windows_i686_msvc" 2485 - version = "0.48.0" 2486 - source = "registry+https://github.com/rust-lang/crates.io-index" 2487 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2488 - 2489 - [[package]] 2490 - name = "windows_x86_64_gnu" 2491 - version = "0.42.2" 2492 - source = "registry+https://github.com/rust-lang/crates.io-index" 2493 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2494 - 2495 - [[package]] 2496 - name = "windows_x86_64_gnu" 2497 - version = "0.48.0" 2498 - source = "registry+https://github.com/rust-lang/crates.io-index" 2499 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2500 - 2501 - [[package]] 2502 - name = "windows_x86_64_gnullvm" 2503 - version = "0.42.2" 2504 - source = "registry+https://github.com/rust-lang/crates.io-index" 2505 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2506 - 2507 - [[package]] 2508 - name = "windows_x86_64_gnullvm" 2509 - version = "0.48.0" 2510 - source = "registry+https://github.com/rust-lang/crates.io-index" 2511 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2512 - 2513 - [[package]] 2514 - name = "windows_x86_64_msvc" 2515 - version = "0.42.2" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2518 - 2519 - [[package]] 2520 - name = "windows_x86_64_msvc" 2521 - version = "0.48.0" 2522 - source = "registry+https://github.com/rust-lang/crates.io-index" 2523 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2524 - 2525 - [[package]] 2526 - name = "winreg" 2527 - version = "0.7.0" 2528 - source = "registry+https://github.com/rust-lang/crates.io-index" 2529 - checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" 2530 - dependencies = [ 2531 - "winapi 0.3.9", 2532 - ] 2533 - 2534 - [[package]] 2535 - name = "ws2_32-sys" 2536 - version = "0.2.1" 2537 - source = "registry+https://github.com/rust-lang/crates.io-index" 2538 - checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 2539 - dependencies = [ 2540 - "winapi 0.2.8", 2541 - "winapi-build", 2542 - ] 2543 - 2544 - [[package]] 2545 - name = "wyz" 2546 - version = "0.2.0" 2547 - source = "registry+https://github.com/rust-lang/crates.io-index" 2548 - checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
···
+135
pkgs/by-name/ca/cargo-dephell/openssl3-support.patch
···
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index 714986f..60697bc 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -1,6 +1,6 @@ 6 + # This file is automatically @generated by Cargo. 7 + # It is not intended for manual editing. 8 + -version = 3 9 + +version = 4 10 + 11 + [[package]] 12 + name = "adler32" 13 + @@ -113,6 +113,12 @@ version = "1.2.1" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 16 + 17 + +[[package]] 18 + +name = "bitflags" 19 + +version = "2.9.1" 20 + +source = "registry+https://github.com/rust-lang/crates.io-index" 21 + +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 22 + + 23 + [[package]] 24 + name = "bitmaps" 25 + version = "2.1.0" 26 + @@ -273,11 +279,12 @@ dependencies = [ 27 + 28 + [[package]] 29 + name = "cc" 30 + -version = "1.0.52" 31 + +version = "1.0.94" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + -checksum = "c3d87b23d6a92cd03af510a5ade527033f6aa6fa92161e2d5863a907d4c5e31d" 34 + +checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7" 35 + dependencies = [ 36 + "jobserver", 37 + + "libc", 38 + ] 39 + 40 + [[package]] 41 + @@ -320,7 +327,7 @@ checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129" 42 + dependencies = [ 43 + "ansi_term", 44 + "atty", 45 + - "bitflags", 46 + + "bitflags 1.2.1", 47 + "strsim", 48 + "textwrap", 49 + "unicode-width", 50 + @@ -580,7 +587,7 @@ version = "0.3.3" 51 + source = "registry+https://github.com/rust-lang/crates.io-index" 52 + checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 53 + dependencies = [ 54 + - "bitflags", 55 + + "bitflags 1.2.1", 56 + "fuchsia-zircon-sys", 57 + ] 58 + 59 + @@ -670,7 +677,7 @@ version = "0.13.17" 60 + source = "registry+https://github.com/rust-lang/crates.io-index" 61 + checksum = "1d250f5f82326884bd39c2853577e70a121775db76818ffa452ed1e80de12986" 62 + dependencies = [ 63 + - "bitflags", 64 + + "bitflags 1.2.1", 65 + "libc", 66 + "libgit2-sys", 67 + "log", 68 + @@ -1000,7 +1007,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "21f866863575d0e1d654fbeeabdc927292fdf862873dc3c96c6f753357e13374" 70 + dependencies = [ 71 + "arrayvec", 72 + - "bitflags", 73 + + "bitflags 1.2.1", 74 + "cfg-if 1.0.0", 75 + "ryu", 76 + "static_assertions", 77 + @@ -1265,18 +1272,30 @@ dependencies = [ 78 + 79 + [[package]] 80 + name = "openssl" 81 + -version = "0.10.29" 82 + +version = "0.10.68" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + -checksum = "cee6d85f4cb4c4f59a6a85d5b68a233d280c82e29e822913b9c8b129fbf20bdd" 85 + +checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 86 + dependencies = [ 87 + - "bitflags", 88 + - "cfg-if 0.1.10", 89 + + "bitflags 2.9.1", 90 + + "cfg-if 1.0.0", 91 + "foreign-types", 92 + - "lazy_static", 93 + "libc", 94 + + "once_cell", 95 + + "openssl-macros", 96 + "openssl-sys", 97 + ] 98 + 99 + +[[package]] 100 + +name = "openssl-macros" 101 + +version = "0.1.0" 102 + +source = "registry+https://github.com/rust-lang/crates.io-index" 103 + +checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 104 + +dependencies = [ 105 + + "proc-macro2", 106 + + "quote", 107 + + "syn", 108 + +] 109 + + 110 + [[package]] 111 + name = "openssl-probe" 112 + version = "0.1.2" 113 + @@ -1285,11 +1304,10 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 114 + 115 + [[package]] 116 + name = "openssl-sys" 117 + -version = "0.9.55" 118 + +version = "0.9.108" 119 + source = "registry+https://github.com/rust-lang/crates.io-index" 120 + -checksum = "7717097d810a0f2e2323f9e5d11e71608355e24828410b55b9d4f18aa5f9a5d8" 121 + +checksum = "e145e1651e858e820e4860f7b9c5e169bc1d8ce1c86043be79fa7b7634821847" 122 + dependencies = [ 123 + - "autocfg", 124 + "cc", 125 + "libc", 126 + "pkg-config", 127 + @@ -1606,7 +1624,7 @@ version = "0.4.3" 128 + source = "registry+https://github.com/rust-lang/crates.io-index" 129 + checksum = "3f331b9025654145cd425b9ded0caf8f5ae0df80d418b326e2dc1c3dc5eb0620" 130 + dependencies = [ 131 + - "bitflags", 132 + + "bitflags 1.2.1", 133 + "core-foundation 0.7.0", 134 + "core-foundation-sys 0.7.0", 135 + "libc",
+6 -8
pkgs/by-name/ca/cargo-dephell/package.nix
··· 20 hash = "sha256-NOjkKttA+mwPCpl4uiRIYD58DlMomVFpwnM9KGfWd+w="; 21 }; 22 23 - cargoLock = { 24 - lockFile = ./Cargo.lock; 25 - }; 26 27 nativeBuildInputs = [ 28 pkg-config ··· 38 curl 39 libgit2 40 ]; 41 - 42 - # update Cargo.lock to work with openssl 3 43 - postPatch = '' 44 - ln -sf ${./Cargo.lock} Cargo.lock 45 - ''; 46 47 env = { 48 LIBGIT2_NO_VENDOR = 1;
··· 20 hash = "sha256-NOjkKttA+mwPCpl4uiRIYD58DlMomVFpwnM9KGfWd+w="; 21 }; 22 23 + cargoPatches = [ 24 + # update Cargo.lock to work with openssl 3 25 + ./openssl3-support.patch 26 + ]; 27 + 28 + cargoHash = "sha256-+5ElAfYuUfosXzR3O2QIFGy4QJuPrWDMg5LacZKi3c8="; 29 30 nativeBuildInputs = [ 31 pkg-config ··· 41 curl 42 libgit2 43 ]; 44 45 env = { 46 LIBGIT2_NO_VENDOR = 1;
+3 -3
pkgs/by-name/ca/cargo-show-asm/package.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "cargo-show-asm"; 13 - version = "0.2.51"; 14 15 src = fetchCrate { 16 inherit pname version; 17 - hash = "sha256-7ck3VjhU+MPCehxKGkC2N4QU8m6U5lFFxyQkgFzHGrc="; 18 }; 19 20 - cargoHash = "sha256-QhHxyICiluudUMNM66wFq3L/SRxW0FupCz26q+UU1/0="; 21 22 nativeBuildInputs = [ 23 installShellFiles
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "cargo-show-asm"; 13 + version = "0.2.52"; 14 15 src = fetchCrate { 16 inherit pname version; 17 + hash = "sha256-tQX2A09tnQwq3rr/eQUfTHma4JMpGC89Loy2lH4bAEk="; 18 }; 19 20 + cargoHash = "sha256-DsK2eKr2eimkwLURij2n7hdOPej6NSi5hNOaLhKRPbA="; 21 22 nativeBuildInputs = [ 23 installShellFiles
+2 -2
pkgs/by-name/cd/cdncheck/package.nix
··· 6 7 buildGoModule rec { 8 pname = "cdncheck"; 9 - version = "1.1.31"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "cdncheck"; 14 tag = "v${version}"; 15 - hash = "sha256-1rt+vXfsM8hotCmZmel1MiP7VDqahhAMpJYn3Vyo3lY="; 16 }; 17 18 vendorHash = "sha256-/1REkZ5+sz/H4T4lXhloz7fu5cLv1GoaD3dlttN+Qd4=";
··· 6 7 buildGoModule rec { 8 pname = "cdncheck"; 9 + version = "1.1.32"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "cdncheck"; 14 tag = "v${version}"; 15 + hash = "sha256-K2nuReA5rl78qrZ8e7vfR2kuB7CSRJeUILHOE9qIIuE="; 16 }; 17 18 vendorHash = "sha256-/1REkZ5+sz/H4T4lXhloz7fu5cLv1GoaD3dlttN+Qd4=";
+3 -3
pkgs/by-name/ci/cirrus-cli/package.nix
··· 7 8 buildGoModule rec { 9 pname = "cirrus-cli"; 10 - version = "0.149.0"; 11 12 src = fetchFromGitHub { 13 owner = "cirruslabs"; 14 repo = "cirrus-cli"; 15 rev = "v${version}"; 16 - hash = "sha256-NEzdMtTT+8hUWQnm/pUTyo2PA4xNIxNK81jzEDKI4j0="; 17 }; 18 19 - vendorHash = "sha256-+0uWe00fJ7neqRV9SUdBS0w099dJvArd/pRxO4fGdd4="; 20 21 ldflags = [ 22 "-X github.com/cirruslabs/cirrus-cli/internal/version.Version=v${version}"
··· 7 8 buildGoModule rec { 9 pname = "cirrus-cli"; 10 + version = "0.150.0"; 11 12 src = fetchFromGitHub { 13 owner = "cirruslabs"; 14 repo = "cirrus-cli"; 15 rev = "v${version}"; 16 + hash = "sha256-tuZdJX4xA2GmZKe0Z4IqawEaLoZBURsMexp5F9Yz1Ew="; 17 }; 18 19 + vendorHash = "sha256-uzOLi/cRL+NaRX7f7aUu0AeL8qaUexzCpezZ8xCcRb0="; 20 21 ldflags = [ 22 "-X github.com/cirruslabs/cirrus-cli/internal/version.Version=v${version}"
+2 -2
pkgs/by-name/co/contact/package.nix
··· 6 7 python3Packages.buildPythonApplication rec { 8 pname = "contact"; 9 - version = "1.3.16"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "pdxlocations"; 14 repo = "contact"; 15 tag = version; 16 - hash = "sha256-buT3c8mcDgzUF9FP/nkvSijaqnyQgD87vQGU73qn3K4="; 17 }; 18 19 dependencies = [ python3Packages.meshtastic ];
··· 6 7 python3Packages.buildPythonApplication rec { 8 pname = "contact"; 9 + version = "1.3.17"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "pdxlocations"; 14 repo = "contact"; 15 tag = version; 16 + hash = "sha256-BEh+YIXf6K/UNPQkRWUx4bNzdCHKrxiDmHHfUj/CQsQ="; 17 }; 18 19 dependencies = [ python3Packages.meshtastic ];
+3
pkgs/by-name/cp/cpm-cmake/package.nix
··· 2 lib, 3 stdenvNoCC, 4 fetchFromGitHub, 5 }: 6 7 stdenvNoCC.mkDerivation (finalAttrs: { ··· 32 33 runHook postInstall 34 ''; 35 36 meta = { 37 homepage = "https://github.com/cpm-cmake/CPM.cmake";
··· 2 lib, 3 stdenvNoCC, 4 fetchFromGitHub, 5 + nix-update-script, 6 }: 7 8 stdenvNoCC.mkDerivation (finalAttrs: { ··· 33 34 runHook postInstall 35 ''; 36 + 37 + passthru.updateScript = nix-update-script { }; 38 39 meta = { 40 homepage = "https://github.com/cpm-cmake/CPM.cmake";
+5 -5
pkgs/by-name/db/dbeaver-bin/package.nix
··· 18 19 stdenvNoCC.mkDerivation (finalAttrs: { 20 pname = "dbeaver-bin"; 21 - version = "25.1.4"; 22 23 src = 24 let ··· 31 aarch64-darwin = "macos-aarch64.dmg"; 32 }; 33 hash = selectSystem { 34 - x86_64-linux = "sha256-ZJUmuJqTD3cRMMdIIqbJRp6C2GacnRn1fxzL23Vg8og="; 35 - aarch64-linux = "sha256-nHIk3MObHge5ACyype8HgFwvolPqrQ0BTDs/pYlsiW8="; 36 - x86_64-darwin = "sha256-/dl3B2FLz7V27c5/q8L1HtssbT/lLAet0lhDvgGVqZM="; 37 - aarch64-darwin = "sha256-/NClQkx6In9lS4vtk2lBhFHw0BLObmNqTIVJfhJcob4="; 38 }; 39 in 40 fetchurl {
··· 18 19 stdenvNoCC.mkDerivation (finalAttrs: { 20 pname = "dbeaver-bin"; 21 + version = "25.1.5"; 22 23 src = 24 let ··· 31 aarch64-darwin = "macos-aarch64.dmg"; 32 }; 33 hash = selectSystem { 34 + x86_64-linux = "sha256-kyZi24hcHgpW5Hcp3bjU1fTHeo2sXnZV9DFiYyZCqJM="; 35 + aarch64-linux = "sha256-CVMUkpjAvWnphsxTXXu/0N2k8o5gDX4KH+PXneOXlFw="; 36 + x86_64-darwin = "sha256-SxlMSCXC3gCKC0MuKvyHg4iLRVm/c4COjmpJzySD/a0="; 37 + aarch64-darwin = "sha256-0m26hOqmmqAPutMx0rQsenM8vNRjUvP/ZkIPuH6U7/A="; 38 }; 39 in 40 fetchurl {
+5 -5
pkgs/by-name/db/dbgate/package.nix
··· 8 9 let 10 pname = "dbgate"; 11 - version = "6.6.0"; 12 src = 13 fetchurl 14 { 15 aarch64-linux = { 16 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-linux_arm64.AppImage"; 17 - hash = "sha256-GFKsZ/rSMXWn2hAlRRdswDrooqUIGeIhEsMchIPEb5U="; 18 }; 19 x86_64-linux = { 20 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-linux_x86_64.AppImage"; 21 - hash = "sha256-2g8XsljPvn2TITC1/PtBlgdrfwVDPnjmOXeOS/iQh5Q="; 22 }; 23 x86_64-darwin = { 24 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-mac_x64.dmg"; 25 - hash = "sha256-ooLivNWt5IDKB779PLb4FOgk9jSU10IkB0D9OPLVKsE="; 26 }; 27 aarch64-darwin = { 28 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-mac_universal.dmg"; 29 - hash = "sha256-PqgG8dGvr4S8BhxqfvYo2BiR5KoAWon9ZI8KGKT3ujI="; 30 }; 31 } 32 .${stdenv.hostPlatform.system} or (throw "dbgate: ${stdenv.hostPlatform.system} is unsupported.");
··· 8 9 let 10 pname = "dbgate"; 11 + version = "6.6.1"; 12 src = 13 fetchurl 14 { 15 aarch64-linux = { 16 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-linux_arm64.AppImage"; 17 + hash = "sha256-8cQ9hhz+nURXuPfgVLClQr6tKgQ/wu7LWIsxhrJWiAQ="; 18 }; 19 x86_64-linux = { 20 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-linux_x86_64.AppImage"; 21 + hash = "sha256-OldLkZrqvBT6+ECCpRkuys5BOSJNY31ttFa52lWmLLk="; 22 }; 23 x86_64-darwin = { 24 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-mac_x64.dmg"; 25 + hash = "sha256-1wLWK4v5KmkGlFZpROtKALSKDyhF8cJ9pU391FYpXUo="; 26 }; 27 aarch64-darwin = { 28 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-mac_universal.dmg"; 29 + hash = "sha256-bAvqGy7hEQbIhtx4wybxbzATogthcNREkjFDC5kb7WU="; 30 }; 31 } 32 .${stdenv.hostPlatform.system} or (throw "dbgate: ${stdenv.hostPlatform.system} is unsupported.");
+2 -2
pkgs/by-name/db/dbip-asn-lite/package.nix
··· 5 }: 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-asn-lite"; 8 - version = "2025-07"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-asn-lite-${finalAttrs.version}.mmdb.gz"; 12 - hash = "sha256-/KpdRJnlycjOE+4WLtcLfMi7Uy/F9f4XrOfniJLPmmQ="; 13 }; 14 15 dontUnpack = true;
··· 5 }: 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-asn-lite"; 8 + version = "2025-08"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-asn-lite-${finalAttrs.version}.mmdb.gz"; 12 + hash = "sha256-YgKOUsMv1ua/z20FlsXDQoS9qoKSq3UHJG5gTJmuCoI="; 13 }; 14 15 dontUnpack = true;
+2 -2
pkgs/by-name/db/dbip-city-lite/package.nix
··· 5 }: 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-city-lite"; 8 - version = "2025-07"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-city-lite-${finalAttrs.version}.mmdb.gz"; 12 - hash = "sha256-1xKZZ8ZKg6UFbJ+WcjjQudsW7T7MhhxdG1wDWKtrD7w="; 13 }; 14 15 dontUnpack = true;
··· 5 }: 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-city-lite"; 8 + version = "2025-08"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-city-lite-${finalAttrs.version}.mmdb.gz"; 12 + hash = "sha256-iwAosu4Z6PfLnB2f+/zZYm/fwappfGRq1yBF3jCBj6Q="; 13 }; 14 15 dontUnpack = true;
+2 -2
pkgs/by-name/db/dbip-country-lite/package.nix
··· 5 }: 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-country-lite"; 8 - version = "2025-07"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-country-lite-${finalAttrs.version}.mmdb.gz"; 12 - hash = "sha256-h7iZrIY/AJoFpQcsD3g7VhraBDoCL6M5EPouWzJiE+8="; 13 }; 14 15 dontUnpack = true;
··· 5 }: 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-country-lite"; 8 + version = "2025-08"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-country-lite-${finalAttrs.version}.mmdb.gz"; 12 + hash = "sha256-X9AD1UAQhP57XI6XvpwK0ltSH9vkowKvyo0JRqF0aJc="; 13 }; 14 15 dontUnpack = true;
+2 -2
pkgs/by-name/dj/djhtml/package.nix
··· 5 }: 6 python3Packages.buildPythonApplication rec { 7 pname = "djhtml"; 8 - version = "3.0.8"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "rtts"; 13 repo = "djhtml"; 14 tag = version; 15 - hash = "sha256-1bopV6mjwjXdoIN9i3An4NvSpeGcVlQ24nLLjP/UfQU="; 16 }; 17 18 build-system = [ python3Packages.setuptools ];
··· 5 }: 6 python3Packages.buildPythonApplication rec { 7 pname = "djhtml"; 8 + version = "3.0.9"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "rtts"; 13 repo = "djhtml"; 14 tag = version; 15 + hash = "sha256-sQet4Znnp05Y9Cojyqk0cl7KGHDotq5d8IZlFEdDL/I="; 16 }; 17 18 build-system = [ python3Packages.setuptools ];
+36
pkgs/by-name/dm/dmsdos/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "dmsdos"; 10 + version = "unstable-2021-02-06"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "sandsmark"; 14 + repo = "dmsdos"; 15 + rev = "c9044d509969d3d1467b781c08233e15c1da7a13"; 16 + hash = "sha256-oGVkDf1gFaSMRpvHq4GNLN8htBm/sYawZeVwiqQxjL8="; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + cmake 21 + ]; 22 + 23 + meta = { 24 + description = "Linux utilities to handle dos/win95 doublespace/drivespace/stacker"; 25 + homepage = "https://github.com/sandsmark/dmsdos.git"; 26 + changelog = "https://github.com/sandsmark/dmsdos/blob/${finalAttrs.src.rev}/NEWS"; 27 + license = with lib.licenses; [ 28 + lgpl2 29 + gpl2Plus 30 + ]; 31 + maintainers = with lib.maintainers; [ matthewcroughan ]; 32 + mainProgram = "dmsdos"; 33 + platforms = lib.platforms.all; 34 + badPlatforms = lib.platforms.darwin; 35 + }; 36 + })
+2 -2
pkgs/by-name/do/doctl/package.nix
··· 9 10 buildGoModule rec { 11 pname = "doctl"; 12 - version = "1.137.0"; 13 14 vendorHash = null; 15 ··· 42 owner = "digitalocean"; 43 repo = "doctl"; 44 tag = "v${version}"; 45 - hash = "sha256-TBC2rrXQ3xKqMvez9rCat48FWQEqTIs9eZIs3p0u6tw="; 46 }; 47 48 meta = {
··· 9 10 buildGoModule rec { 11 pname = "doctl"; 12 + version = "1.139.0"; 13 14 vendorHash = null; 15 ··· 42 owner = "digitalocean"; 43 repo = "doctl"; 44 tag = "v${version}"; 45 + hash = "sha256-oofG1Fj+1NiDhvSMm0k49K740aUWTrAqH4s/8KsY82o="; 46 }; 47 48 meta = {
-1103
pkgs/by-name/do/dogdns/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "ansi_term" 7 - version = "0.12.1" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 10 - dependencies = [ 11 - "winapi", 12 - ] 13 - 14 - [[package]] 15 - name = "anyhow" 16 - version = "1.0.71" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 19 - 20 - [[package]] 21 - name = "atty" 22 - version = "0.2.14" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 25 - dependencies = [ 26 - "hermit-abi 0.1.19", 27 - "libc", 28 - "winapi", 29 - ] 30 - 31 - [[package]] 32 - name = "base64" 33 - version = "0.13.1" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 36 - 37 - [[package]] 38 - name = "bitflags" 39 - version = "1.3.2" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 42 - 43 - [[package]] 44 - name = "bumpalo" 45 - version = "3.12.2" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 48 - 49 - [[package]] 50 - name = "byteorder" 51 - version = "1.4.3" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 54 - 55 - [[package]] 56 - name = "cc" 57 - version = "1.0.79" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 60 - 61 - [[package]] 62 - name = "cfg-if" 63 - version = "1.0.0" 64 - source = "registry+https://github.com/rust-lang/crates.io-index" 65 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 66 - 67 - [[package]] 68 - name = "core-foundation" 69 - version = "0.9.3" 70 - source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 72 - dependencies = [ 73 - "core-foundation-sys", 74 - "libc", 75 - ] 76 - 77 - [[package]] 78 - name = "core-foundation-sys" 79 - version = "0.8.4" 80 - source = "registry+https://github.com/rust-lang/crates.io-index" 81 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 82 - 83 - [[package]] 84 - name = "ctor" 85 - version = "0.1.26" 86 - source = "registry+https://github.com/rust-lang/crates.io-index" 87 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 88 - dependencies = [ 89 - "quote", 90 - "syn 1.0.109", 91 - ] 92 - 93 - [[package]] 94 - name = "datetime" 95 - version = "0.5.2" 96 - source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "44c3f7a77f3e57fedf80e09136f2d8777ebf621207306f6d96d610af048354bc" 98 - dependencies = [ 99 - "libc", 100 - "redox_syscall 0.1.57", 101 - "winapi", 102 - ] 103 - 104 - [[package]] 105 - name = "diff" 106 - version = "0.1.13" 107 - source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 109 - 110 - [[package]] 111 - name = "dns" 112 - version = "0.2.0-pre" 113 - dependencies = [ 114 - "base64", 115 - "byteorder", 116 - "log", 117 - "mutagen", 118 - "pretty_assertions", 119 - "unic-idna", 120 - ] 121 - 122 - [[package]] 123 - name = "dns-transport" 124 - version = "0.2.0-pre" 125 - dependencies = [ 126 - "cfg-if", 127 - "dns", 128 - "httparse", 129 - "log", 130 - "native-tls", 131 - "rustls", 132 - "webpki", 133 - "webpki-roots", 134 - ] 135 - 136 - [[package]] 137 - name = "dog" 138 - version = "0.2.0-pre" 139 - dependencies = [ 140 - "ansi_term", 141 - "atty", 142 - "datetime", 143 - "dns", 144 - "dns-transport", 145 - "getopts", 146 - "ipconfig", 147 - "json", 148 - "log", 149 - "pretty_assertions", 150 - "rand", 151 - ] 152 - 153 - [[package]] 154 - name = "errno" 155 - version = "0.3.1" 156 - source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 158 - dependencies = [ 159 - "errno-dragonfly", 160 - "libc", 161 - "windows-sys 0.48.0", 162 - ] 163 - 164 - [[package]] 165 - name = "errno-dragonfly" 166 - version = "0.1.2" 167 - source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 169 - dependencies = [ 170 - "cc", 171 - "libc", 172 - ] 173 - 174 - [[package]] 175 - name = "fastrand" 176 - version = "1.9.0" 177 - source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 179 - dependencies = [ 180 - "instant", 181 - ] 182 - 183 - [[package]] 184 - name = "foreign-types" 185 - version = "0.3.2" 186 - source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 188 - dependencies = [ 189 - "foreign-types-shared", 190 - ] 191 - 192 - [[package]] 193 - name = "foreign-types-shared" 194 - version = "0.1.1" 195 - source = "registry+https://github.com/rust-lang/crates.io-index" 196 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 197 - 198 - [[package]] 199 - name = "getopts" 200 - version = "0.2.21" 201 - source = "registry+https://github.com/rust-lang/crates.io-index" 202 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 203 - dependencies = [ 204 - "unicode-width", 205 - ] 206 - 207 - [[package]] 208 - name = "getrandom" 209 - version = "0.2.9" 210 - source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 212 - dependencies = [ 213 - "cfg-if", 214 - "libc", 215 - "wasi", 216 - ] 217 - 218 - [[package]] 219 - name = "hermit-abi" 220 - version = "0.1.19" 221 - source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 223 - dependencies = [ 224 - "libc", 225 - ] 226 - 227 - [[package]] 228 - name = "hermit-abi" 229 - version = "0.3.1" 230 - source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 232 - 233 - [[package]] 234 - name = "httparse" 235 - version = "1.8.0" 236 - source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 238 - 239 - [[package]] 240 - name = "instant" 241 - version = "0.1.12" 242 - source = "registry+https://github.com/rust-lang/crates.io-index" 243 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 244 - dependencies = [ 245 - "cfg-if", 246 - ] 247 - 248 - [[package]] 249 - name = "io-lifetimes" 250 - version = "1.0.10" 251 - source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 253 - dependencies = [ 254 - "hermit-abi 0.3.1", 255 - "libc", 256 - "windows-sys 0.48.0", 257 - ] 258 - 259 - [[package]] 260 - name = "ipconfig" 261 - version = "0.2.2" 262 - source = "registry+https://github.com/rust-lang/crates.io-index" 263 - checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7" 264 - dependencies = [ 265 - "socket2", 266 - "widestring", 267 - "winapi", 268 - "winreg", 269 - ] 270 - 271 - [[package]] 272 - name = "itoa" 273 - version = "1.0.6" 274 - source = "registry+https://github.com/rust-lang/crates.io-index" 275 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 276 - 277 - [[package]] 278 - name = "js-sys" 279 - version = "0.3.62" 280 - source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" 282 - dependencies = [ 283 - "wasm-bindgen", 284 - ] 285 - 286 - [[package]] 287 - name = "json" 288 - version = "0.12.4" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" 291 - 292 - [[package]] 293 - name = "lazy_static" 294 - version = "1.4.0" 295 - source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 297 - 298 - [[package]] 299 - name = "libc" 300 - version = "0.2.144" 301 - source = "registry+https://github.com/rust-lang/crates.io-index" 302 - checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 303 - 304 - [[package]] 305 - name = "linux-raw-sys" 306 - version = "0.3.7" 307 - source = "registry+https://github.com/rust-lang/crates.io-index" 308 - checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 309 - 310 - [[package]] 311 - name = "log" 312 - version = "0.4.17" 313 - source = "registry+https://github.com/rust-lang/crates.io-index" 314 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 315 - dependencies = [ 316 - "cfg-if", 317 - ] 318 - 319 - [[package]] 320 - name = "matches" 321 - version = "0.1.10" 322 - source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 324 - 325 - [[package]] 326 - name = "mutagen" 327 - version = "0.2.0" 328 - source = "git+https://github.com/llogiq/mutagen#a6377c4c3f360afeb7a287c1c17e4b69456d5f53" 329 - dependencies = [ 330 - "mutagen-core", 331 - "mutagen-transform", 332 - ] 333 - 334 - [[package]] 335 - name = "mutagen-core" 336 - version = "0.2.0" 337 - source = "git+https://github.com/llogiq/mutagen#a6377c4c3f360afeb7a287c1c17e4b69456d5f53" 338 - dependencies = [ 339 - "anyhow", 340 - "json", 341 - "lazy_static", 342 - "proc-macro2", 343 - "quote", 344 - "serde", 345 - "serde_json", 346 - "syn 1.0.109", 347 - ] 348 - 349 - [[package]] 350 - name = "mutagen-transform" 351 - version = "0.2.0" 352 - source = "git+https://github.com/llogiq/mutagen#a6377c4c3f360afeb7a287c1c17e4b69456d5f53" 353 - dependencies = [ 354 - "mutagen-core", 355 - "proc-macro2", 356 - ] 357 - 358 - [[package]] 359 - name = "native-tls" 360 - version = "0.2.11" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 363 - dependencies = [ 364 - "lazy_static", 365 - "libc", 366 - "log", 367 - "openssl", 368 - "openssl-probe", 369 - "openssl-sys", 370 - "schannel", 371 - "security-framework", 372 - "security-framework-sys", 373 - "tempfile", 374 - ] 375 - 376 - [[package]] 377 - name = "once_cell" 378 - version = "1.17.1" 379 - source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 381 - 382 - [[package]] 383 - name = "openssl" 384 - version = "0.10.52" 385 - source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 387 - dependencies = [ 388 - "bitflags", 389 - "cfg-if", 390 - "foreign-types", 391 - "libc", 392 - "once_cell", 393 - "openssl-macros", 394 - "openssl-sys", 395 - ] 396 - 397 - [[package]] 398 - name = "openssl-macros" 399 - version = "0.1.1" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 402 - dependencies = [ 403 - "proc-macro2", 404 - "quote", 405 - "syn 2.0.15", 406 - ] 407 - 408 - [[package]] 409 - name = "openssl-probe" 410 - version = "0.1.5" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 413 - 414 - [[package]] 415 - name = "openssl-src" 416 - version = "111.25.3+1.1.1t" 417 - source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "924757a6a226bf60da5f7dd0311a34d2b52283dd82ddeb103208ddc66362f80c" 419 - dependencies = [ 420 - "cc", 421 - ] 422 - 423 - [[package]] 424 - name = "openssl-sys" 425 - version = "0.9.87" 426 - source = "registry+https://github.com/rust-lang/crates.io-index" 427 - checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 428 - dependencies = [ 429 - "cc", 430 - "libc", 431 - "openssl-src", 432 - "pkg-config", 433 - "vcpkg", 434 - ] 435 - 436 - [[package]] 437 - name = "output_vt100" 438 - version = "0.1.3" 439 - source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 441 - dependencies = [ 442 - "winapi", 443 - ] 444 - 445 - [[package]] 446 - name = "pkg-config" 447 - version = "0.3.27" 448 - source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 450 - 451 - [[package]] 452 - name = "ppv-lite86" 453 - version = "0.2.17" 454 - source = "registry+https://github.com/rust-lang/crates.io-index" 455 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 456 - 457 - [[package]] 458 - name = "pretty_assertions" 459 - version = "0.7.2" 460 - source = "registry+https://github.com/rust-lang/crates.io-index" 461 - checksum = "1cab0e7c02cf376875e9335e0ba1da535775beb5450d21e1dffca068818ed98b" 462 - dependencies = [ 463 - "ansi_term", 464 - "ctor", 465 - "diff", 466 - "output_vt100", 467 - ] 468 - 469 - [[package]] 470 - name = "proc-macro2" 471 - version = "1.0.56" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 474 - dependencies = [ 475 - "unicode-ident", 476 - ] 477 - 478 - [[package]] 479 - name = "quote" 480 - version = "1.0.27" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 483 - dependencies = [ 484 - "proc-macro2", 485 - ] 486 - 487 - [[package]] 488 - name = "rand" 489 - version = "0.8.5" 490 - source = "registry+https://github.com/rust-lang/crates.io-index" 491 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 492 - dependencies = [ 493 - "libc", 494 - "rand_chacha", 495 - "rand_core", 496 - ] 497 - 498 - [[package]] 499 - name = "rand_chacha" 500 - version = "0.3.1" 501 - source = "registry+https://github.com/rust-lang/crates.io-index" 502 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 503 - dependencies = [ 504 - "ppv-lite86", 505 - "rand_core", 506 - ] 507 - 508 - [[package]] 509 - name = "rand_core" 510 - version = "0.6.4" 511 - source = "registry+https://github.com/rust-lang/crates.io-index" 512 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 513 - dependencies = [ 514 - "getrandom", 515 - ] 516 - 517 - [[package]] 518 - name = "redox_syscall" 519 - version = "0.1.57" 520 - source = "registry+https://github.com/rust-lang/crates.io-index" 521 - checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 522 - 523 - [[package]] 524 - name = "redox_syscall" 525 - version = "0.3.5" 526 - source = "registry+https://github.com/rust-lang/crates.io-index" 527 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 528 - dependencies = [ 529 - "bitflags", 530 - ] 531 - 532 - [[package]] 533 - name = "ring" 534 - version = "0.16.20" 535 - source = "registry+https://github.com/rust-lang/crates.io-index" 536 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 537 - dependencies = [ 538 - "cc", 539 - "libc", 540 - "once_cell", 541 - "spin", 542 - "untrusted", 543 - "web-sys", 544 - "winapi", 545 - ] 546 - 547 - [[package]] 548 - name = "rustix" 549 - version = "0.37.19" 550 - source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 552 - dependencies = [ 553 - "bitflags", 554 - "errno", 555 - "io-lifetimes", 556 - "libc", 557 - "linux-raw-sys", 558 - "windows-sys 0.48.0", 559 - ] 560 - 561 - [[package]] 562 - name = "rustls" 563 - version = "0.19.1" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" 566 - dependencies = [ 567 - "base64", 568 - "log", 569 - "ring", 570 - "sct", 571 - "webpki", 572 - ] 573 - 574 - [[package]] 575 - name = "ryu" 576 - version = "1.0.13" 577 - source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 579 - 580 - [[package]] 581 - name = "schannel" 582 - version = "0.1.21" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 585 - dependencies = [ 586 - "windows-sys 0.42.0", 587 - ] 588 - 589 - [[package]] 590 - name = "sct" 591 - version = "0.6.1" 592 - source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" 594 - dependencies = [ 595 - "ring", 596 - "untrusted", 597 - ] 598 - 599 - [[package]] 600 - name = "security-framework" 601 - version = "2.8.2" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 604 - dependencies = [ 605 - "bitflags", 606 - "core-foundation", 607 - "core-foundation-sys", 608 - "libc", 609 - "security-framework-sys", 610 - ] 611 - 612 - [[package]] 613 - name = "security-framework-sys" 614 - version = "2.8.0" 615 - source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 617 - dependencies = [ 618 - "core-foundation-sys", 619 - "libc", 620 - ] 621 - 622 - [[package]] 623 - name = "serde" 624 - version = "1.0.163" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 627 - dependencies = [ 628 - "serde_derive", 629 - ] 630 - 631 - [[package]] 632 - name = "serde_derive" 633 - version = "1.0.163" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 636 - dependencies = [ 637 - "proc-macro2", 638 - "quote", 639 - "syn 2.0.15", 640 - ] 641 - 642 - [[package]] 643 - name = "serde_json" 644 - version = "1.0.96" 645 - source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 647 - dependencies = [ 648 - "itoa", 649 - "ryu", 650 - "serde", 651 - ] 652 - 653 - [[package]] 654 - name = "socket2" 655 - version = "0.3.19" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" 658 - dependencies = [ 659 - "cfg-if", 660 - "libc", 661 - "winapi", 662 - ] 663 - 664 - [[package]] 665 - name = "spin" 666 - version = "0.5.2" 667 - source = "registry+https://github.com/rust-lang/crates.io-index" 668 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 669 - 670 - [[package]] 671 - name = "syn" 672 - version = "1.0.109" 673 - source = "registry+https://github.com/rust-lang/crates.io-index" 674 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 675 - dependencies = [ 676 - "proc-macro2", 677 - "quote", 678 - "unicode-ident", 679 - ] 680 - 681 - [[package]] 682 - name = "syn" 683 - version = "2.0.15" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 686 - dependencies = [ 687 - "proc-macro2", 688 - "quote", 689 - "unicode-ident", 690 - ] 691 - 692 - [[package]] 693 - name = "tempfile" 694 - version = "3.5.0" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 697 - dependencies = [ 698 - "cfg-if", 699 - "fastrand", 700 - "redox_syscall 0.3.5", 701 - "rustix", 702 - "windows-sys 0.45.0", 703 - ] 704 - 705 - [[package]] 706 - name = "unic-char-property" 707 - version = "0.9.0" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 710 - dependencies = [ 711 - "unic-char-range", 712 - ] 713 - 714 - [[package]] 715 - name = "unic-char-range" 716 - version = "0.9.0" 717 - source = "registry+https://github.com/rust-lang/crates.io-index" 718 - checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 719 - 720 - [[package]] 721 - name = "unic-common" 722 - version = "0.9.0" 723 - source = "registry+https://github.com/rust-lang/crates.io-index" 724 - checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 725 - 726 - [[package]] 727 - name = "unic-idna" 728 - version = "0.9.0" 729 - source = "registry+https://github.com/rust-lang/crates.io-index" 730 - checksum = "621e9cf526f2094d2c2ced579766458a92f8f422d6bb934c503ba1a95823a62d" 731 - dependencies = [ 732 - "matches", 733 - "unic-idna-mapping", 734 - "unic-idna-punycode", 735 - "unic-normal", 736 - "unic-ucd-bidi", 737 - "unic-ucd-normal", 738 - "unic-ucd-version", 739 - ] 740 - 741 - [[package]] 742 - name = "unic-idna-mapping" 743 - version = "0.9.0" 744 - source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "4de70fd4e5331537347a50a0dbc938efb1f127c9f6e5efec980fc90585aa1343" 746 - dependencies = [ 747 - "unic-char-property", 748 - "unic-char-range", 749 - "unic-ucd-version", 750 - ] 751 - 752 - [[package]] 753 - name = "unic-idna-punycode" 754 - version = "0.9.0" 755 - source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "06feaedcbf9f1fc259144d833c0d630b8b15207b0486ab817d29258bc89f2f8a" 757 - 758 - [[package]] 759 - name = "unic-normal" 760 - version = "0.9.0" 761 - source = "registry+https://github.com/rust-lang/crates.io-index" 762 - checksum = "f09d64d33589a94628bc2aeb037f35c2e25f3f049c7348b5aa5580b48e6bba62" 763 - dependencies = [ 764 - "unic-ucd-normal", 765 - ] 766 - 767 - [[package]] 768 - name = "unic-ucd-bidi" 769 - version = "0.9.0" 770 - source = "registry+https://github.com/rust-lang/crates.io-index" 771 - checksum = "d1d568b51222484e1f8209ce48caa6b430bf352962b877d592c29ab31fb53d8c" 772 - dependencies = [ 773 - "unic-char-property", 774 - "unic-char-range", 775 - "unic-ucd-version", 776 - ] 777 - 778 - [[package]] 779 - name = "unic-ucd-hangul" 780 - version = "0.9.0" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "eb1dc690e19010e1523edb9713224cba5ef55b54894fe33424439ec9a40c0054" 783 - dependencies = [ 784 - "unic-ucd-version", 785 - ] 786 - 787 - [[package]] 788 - name = "unic-ucd-normal" 789 - version = "0.9.0" 790 - source = "registry+https://github.com/rust-lang/crates.io-index" 791 - checksum = "86aed873b8202d22b13859dda5fe7c001d271412c31d411fd9b827e030569410" 792 - dependencies = [ 793 - "unic-char-property", 794 - "unic-char-range", 795 - "unic-ucd-hangul", 796 - "unic-ucd-version", 797 - ] 798 - 799 - [[package]] 800 - name = "unic-ucd-version" 801 - version = "0.9.0" 802 - source = "registry+https://github.com/rust-lang/crates.io-index" 803 - checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 804 - dependencies = [ 805 - "unic-common", 806 - ] 807 - 808 - [[package]] 809 - name = "unicode-ident" 810 - version = "1.0.8" 811 - source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 813 - 814 - [[package]] 815 - name = "unicode-width" 816 - version = "0.1.10" 817 - source = "registry+https://github.com/rust-lang/crates.io-index" 818 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 819 - 820 - [[package]] 821 - name = "untrusted" 822 - version = "0.7.1" 823 - source = "registry+https://github.com/rust-lang/crates.io-index" 824 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 825 - 826 - [[package]] 827 - name = "vcpkg" 828 - version = "0.2.15" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 831 - 832 - [[package]] 833 - name = "wasi" 834 - version = "0.11.0+wasi-snapshot-preview1" 835 - source = "registry+https://github.com/rust-lang/crates.io-index" 836 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 837 - 838 - [[package]] 839 - name = "wasm-bindgen" 840 - version = "0.2.85" 841 - source = "registry+https://github.com/rust-lang/crates.io-index" 842 - checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" 843 - dependencies = [ 844 - "cfg-if", 845 - "wasm-bindgen-macro", 846 - ] 847 - 848 - [[package]] 849 - name = "wasm-bindgen-backend" 850 - version = "0.2.85" 851 - source = "registry+https://github.com/rust-lang/crates.io-index" 852 - checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" 853 - dependencies = [ 854 - "bumpalo", 855 - "log", 856 - "once_cell", 857 - "proc-macro2", 858 - "quote", 859 - "syn 2.0.15", 860 - "wasm-bindgen-shared", 861 - ] 862 - 863 - [[package]] 864 - name = "wasm-bindgen-macro" 865 - version = "0.2.85" 866 - source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" 868 - dependencies = [ 869 - "quote", 870 - "wasm-bindgen-macro-support", 871 - ] 872 - 873 - [[package]] 874 - name = "wasm-bindgen-macro-support" 875 - version = "0.2.85" 876 - source = "registry+https://github.com/rust-lang/crates.io-index" 877 - checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" 878 - dependencies = [ 879 - "proc-macro2", 880 - "quote", 881 - "syn 2.0.15", 882 - "wasm-bindgen-backend", 883 - "wasm-bindgen-shared", 884 - ] 885 - 886 - [[package]] 887 - name = "wasm-bindgen-shared" 888 - version = "0.2.85" 889 - source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" 891 - 892 - [[package]] 893 - name = "web-sys" 894 - version = "0.3.62" 895 - source = "registry+https://github.com/rust-lang/crates.io-index" 896 - checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721" 897 - dependencies = [ 898 - "js-sys", 899 - "wasm-bindgen", 900 - ] 901 - 902 - [[package]] 903 - name = "webpki" 904 - version = "0.21.4" 905 - source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" 907 - dependencies = [ 908 - "ring", 909 - "untrusted", 910 - ] 911 - 912 - [[package]] 913 - name = "webpki-roots" 914 - version = "0.21.1" 915 - source = "registry+https://github.com/rust-lang/crates.io-index" 916 - checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940" 917 - dependencies = [ 918 - "webpki", 919 - ] 920 - 921 - [[package]] 922 - name = "widestring" 923 - version = "0.4.3" 924 - source = "registry+https://github.com/rust-lang/crates.io-index" 925 - checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" 926 - 927 - [[package]] 928 - name = "winapi" 929 - version = "0.3.9" 930 - source = "registry+https://github.com/rust-lang/crates.io-index" 931 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 932 - dependencies = [ 933 - "winapi-i686-pc-windows-gnu", 934 - "winapi-x86_64-pc-windows-gnu", 935 - ] 936 - 937 - [[package]] 938 - name = "winapi-i686-pc-windows-gnu" 939 - version = "0.4.0" 940 - source = "registry+https://github.com/rust-lang/crates.io-index" 941 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 942 - 943 - [[package]] 944 - name = "winapi-x86_64-pc-windows-gnu" 945 - version = "0.4.0" 946 - source = "registry+https://github.com/rust-lang/crates.io-index" 947 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 948 - 949 - [[package]] 950 - name = "windows-sys" 951 - version = "0.42.0" 952 - source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 954 - dependencies = [ 955 - "windows_aarch64_gnullvm 0.42.2", 956 - "windows_aarch64_msvc 0.42.2", 957 - "windows_i686_gnu 0.42.2", 958 - "windows_i686_msvc 0.42.2", 959 - "windows_x86_64_gnu 0.42.2", 960 - "windows_x86_64_gnullvm 0.42.2", 961 - "windows_x86_64_msvc 0.42.2", 962 - ] 963 - 964 - [[package]] 965 - name = "windows-sys" 966 - version = "0.45.0" 967 - source = "registry+https://github.com/rust-lang/crates.io-index" 968 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 969 - dependencies = [ 970 - "windows-targets 0.42.2", 971 - ] 972 - 973 - [[package]] 974 - name = "windows-sys" 975 - version = "0.48.0" 976 - source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 978 - dependencies = [ 979 - "windows-targets 0.48.0", 980 - ] 981 - 982 - [[package]] 983 - name = "windows-targets" 984 - version = "0.42.2" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 987 - dependencies = [ 988 - "windows_aarch64_gnullvm 0.42.2", 989 - "windows_aarch64_msvc 0.42.2", 990 - "windows_i686_gnu 0.42.2", 991 - "windows_i686_msvc 0.42.2", 992 - "windows_x86_64_gnu 0.42.2", 993 - "windows_x86_64_gnullvm 0.42.2", 994 - "windows_x86_64_msvc 0.42.2", 995 - ] 996 - 997 - [[package]] 998 - name = "windows-targets" 999 - version = "0.48.0" 1000 - source = "registry+https://github.com/rust-lang/crates.io-index" 1001 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1002 - dependencies = [ 1003 - "windows_aarch64_gnullvm 0.48.0", 1004 - "windows_aarch64_msvc 0.48.0", 1005 - "windows_i686_gnu 0.48.0", 1006 - "windows_i686_msvc 0.48.0", 1007 - "windows_x86_64_gnu 0.48.0", 1008 - "windows_x86_64_gnullvm 0.48.0", 1009 - "windows_x86_64_msvc 0.48.0", 1010 - ] 1011 - 1012 - [[package]] 1013 - name = "windows_aarch64_gnullvm" 1014 - version = "0.42.2" 1015 - source = "registry+https://github.com/rust-lang/crates.io-index" 1016 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1017 - 1018 - [[package]] 1019 - name = "windows_aarch64_gnullvm" 1020 - version = "0.48.0" 1021 - source = "registry+https://github.com/rust-lang/crates.io-index" 1022 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1023 - 1024 - [[package]] 1025 - name = "windows_aarch64_msvc" 1026 - version = "0.42.2" 1027 - source = "registry+https://github.com/rust-lang/crates.io-index" 1028 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1029 - 1030 - [[package]] 1031 - name = "windows_aarch64_msvc" 1032 - version = "0.48.0" 1033 - source = "registry+https://github.com/rust-lang/crates.io-index" 1034 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1035 - 1036 - [[package]] 1037 - name = "windows_i686_gnu" 1038 - version = "0.42.2" 1039 - source = "registry+https://github.com/rust-lang/crates.io-index" 1040 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1041 - 1042 - [[package]] 1043 - name = "windows_i686_gnu" 1044 - version = "0.48.0" 1045 - source = "registry+https://github.com/rust-lang/crates.io-index" 1046 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1047 - 1048 - [[package]] 1049 - name = "windows_i686_msvc" 1050 - version = "0.42.2" 1051 - source = "registry+https://github.com/rust-lang/crates.io-index" 1052 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1053 - 1054 - [[package]] 1055 - name = "windows_i686_msvc" 1056 - version = "0.48.0" 1057 - source = "registry+https://github.com/rust-lang/crates.io-index" 1058 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1059 - 1060 - [[package]] 1061 - name = "windows_x86_64_gnu" 1062 - version = "0.42.2" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1065 - 1066 - [[package]] 1067 - name = "windows_x86_64_gnu" 1068 - version = "0.48.0" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1071 - 1072 - [[package]] 1073 - name = "windows_x86_64_gnullvm" 1074 - version = "0.42.2" 1075 - source = "registry+https://github.com/rust-lang/crates.io-index" 1076 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1077 - 1078 - [[package]] 1079 - name = "windows_x86_64_gnullvm" 1080 - version = "0.48.0" 1081 - source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1083 - 1084 - [[package]] 1085 - name = "windows_x86_64_msvc" 1086 - version = "0.42.2" 1087 - source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1089 - 1090 - [[package]] 1091 - name = "windows_x86_64_msvc" 1092 - version = "0.48.0" 1093 - source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1095 - 1096 - [[package]] 1097 - name = "winreg" 1098 - version = "0.6.2" 1099 - source = "registry+https://github.com/rust-lang/crates.io-index" 1100 - checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" 1101 - dependencies = [ 1102 - "winapi", 1103 - ]
···
+130
pkgs/by-name/do/dogdns/openssl3-support.patch
···
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index b5fe1bb..5d1d055 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -1,5 +1,7 @@ 6 + # This file is automatically @generated by Cargo. 7 + # It is not intended for manual editing. 8 + +version = 4 9 + + 10 + [[package]] 11 + name = "addr2line" 12 + version = "0.14.1" 13 + @@ -67,6 +69,12 @@ version = "1.2.1" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 16 + 17 + +[[package]] 18 + +name = "bitflags" 19 + +version = "2.9.1" 20 + +source = "registry+https://github.com/rust-lang/crates.io-index" 21 + +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 22 + + 23 + [[package]] 24 + name = "bumpalo" 25 + version = "3.7.0" 26 + @@ -81,9 +89,12 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 27 + 28 + [[package]] 29 + name = "cc" 30 + -version = "1.0.67" 31 + +version = "1.2.23" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + -checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd" 34 + +checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766" 35 + +dependencies = [ 36 + + "shlex", 37 + +] 38 + 39 + [[package]] 40 + name = "cfg-if" 41 + @@ -390,18 +401,30 @@ checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3" 42 + 43 + [[package]] 44 + name = "openssl" 45 + -version = "0.10.33" 46 + +version = "0.10.68" 47 + source = "registry+https://github.com/rust-lang/crates.io-index" 48 + -checksum = "a61075b62a23fef5a29815de7536d940aa35ce96d18ce0cc5076272db678a577" 49 + +checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 50 + dependencies = [ 51 + - "bitflags", 52 + + "bitflags 2.9.1", 53 + "cfg-if", 54 + "foreign-types", 55 + "libc", 56 + "once_cell", 57 + + "openssl-macros", 58 + "openssl-sys", 59 + ] 60 + 61 + +[[package]] 62 + +name = "openssl-macros" 63 + +version = "0.1.0" 64 + +source = "registry+https://github.com/rust-lang/crates.io-index" 65 + +checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 66 + +dependencies = [ 67 + + "proc-macro2", 68 + + "quote", 69 + + "syn", 70 + +] 71 + + 72 + [[package]] 73 + name = "openssl-probe" 74 + version = "0.1.2" 75 + @@ -410,20 +433,19 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 76 + 77 + [[package]] 78 + name = "openssl-src" 79 + -version = "111.15.0+1.1.1k" 80 + +version = "300.5.0+3.5.0" 81 + source = "registry+https://github.com/rust-lang/crates.io-index" 82 + -checksum = "b1a5f6ae2ac04393b217ea9f700cd04fa9bf3d93fae2872069f3d15d908af70a" 83 + +checksum = "e8ce546f549326b0e6052b649198487d91320875da901e7bd11a06d1ee3f9c2f" 84 + dependencies = [ 85 + "cc", 86 + ] 87 + 88 + [[package]] 89 + name = "openssl-sys" 90 + -version = "0.9.61" 91 + +version = "0.9.108" 92 + source = "registry+https://github.com/rust-lang/crates.io-index" 93 + -checksum = "313752393519e876837e09e1fa183ddef0be7735868dced3196f4472d536277f" 94 + +checksum = "e145e1651e858e820e4860f7b9c5e169bc1d8ce1c86043be79fa7b7634821847" 95 + dependencies = [ 96 + - "autocfg", 97 + "cc", 98 + "libc", 99 + "openssl-src", 100 + @@ -534,7 +556,7 @@ version = "0.2.5" 101 + source = "registry+https://github.com/rust-lang/crates.io-index" 102 + checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9" 103 + dependencies = [ 104 + - "bitflags", 105 + + "bitflags 1.2.1", 106 + ] 107 + 108 + [[package]] 109 + @@ -612,7 +634,7 @@ version = "2.2.0" 110 + source = "registry+https://github.com/rust-lang/crates.io-index" 111 + checksum = "3670b1d2fdf6084d192bc71ead7aabe6c06aa2ea3fbd9cc3ac111fa5c2b1bd84" 112 + dependencies = [ 113 + - "bitflags", 114 + + "bitflags 1.2.1", 115 + "core-foundation", 116 + "core-foundation-sys", 117 + "libc", 118 + @@ -660,6 +682,12 @@ dependencies = [ 119 + "serde", 120 + ] 121 + 122 + +[[package]] 123 + +name = "shlex" 124 + +version = "1.3.0" 125 + +source = "registry+https://github.com/rust-lang/crates.io-index" 126 + +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 127 + + 128 + [[package]] 129 + name = "socket2" 130 + version = "0.3.19"
+7 -12
pkgs/by-name/do/dogdns/package.nix
··· 21 sha256 = "sha256-y3T0vXg7631FZ4bzcbQjz3Buui/DFxh9LG8BZWwynp0="; 22 }; 23 24 patches = [ 25 # remove date info to make the build reproducible 26 # remove commit hash to avoid dependency on git and the need to keep `.git` ··· 40 "man" 41 ]; 42 43 - cargoLock = { 44 - lockFile = ./Cargo.lock; 45 - outputHashes = { 46 - "mutagen-0.2.0" = "sha256-FnSeNI9lAcxonRFTu7wnP/M/d5UbMzSZ97w+mUqoEg8="; 47 - }; 48 - }; 49 - 50 dontUseJustBuild = true; 51 dontUseJustCheck = true; 52 dontUseJustInstall = true; 53 - 54 - postPatch = '' 55 - # update Cargo.lock to work with openssl 3 56 - ln -sf ${./Cargo.lock} Cargo.lock 57 - ''; 58 59 postBuild = '' 60 just man
··· 21 sha256 = "sha256-y3T0vXg7631FZ4bzcbQjz3Buui/DFxh9LG8BZWwynp0="; 22 }; 23 24 + cargoPatches = [ 25 + # update Cargo.lock to work with openssl 3 26 + ./openssl3-support.patch 27 + ]; 28 + 29 + cargoHash = "sha256-UY7+AhsVw/p+FDfzJWj9A6VRntceIDCWzJ5Zim8euAE="; 30 + 31 patches = [ 32 # remove date info to make the build reproducible 33 # remove commit hash to avoid dependency on git and the need to keep `.git` ··· 47 "man" 48 ]; 49 50 dontUseJustBuild = true; 51 dontUseJustCheck = true; 52 dontUseJustInstall = true; 53 54 postBuild = '' 55 just man
+3 -3
pkgs/by-name/fi/filebeat8/package.nix
··· 8 9 buildGoModule rec { 10 pname = "filebeat"; 11 - version = "8.18.4"; 12 13 src = fetchFromGitHub { 14 owner = "elastic"; 15 repo = "beats"; 16 tag = "v${version}"; 17 - hash = "sha256-H7UKYp+REz7d9wKrP+AhIJp4ydCVS8NGKfBFvDFZWiA="; 18 }; 19 20 proxyVendor = true; # darwin/linux hash mismatch 21 22 - vendorHash = "sha256-G4+FsmmPDyssD+n1N1BnCElYv/bW7kY2tF60r49ZhN8="; 23 24 subPackages = [ "filebeat" ]; 25
··· 8 9 buildGoModule rec { 10 pname = "filebeat"; 11 + version = "8.19.2"; 12 13 src = fetchFromGitHub { 14 owner = "elastic"; 15 repo = "beats"; 16 tag = "v${version}"; 17 + hash = "sha256-3SW4SHUbEhdsKh3zd9VlVC8ZAxaR52Mfm1K/btjtB/4="; 18 }; 19 20 proxyVendor = true; # darwin/linux hash mismatch 21 22 + vendorHash = "sha256-y8oAeH6RBD45+NEhl9EF4tPL1Ox4qHlLi+jSetjgKRE="; 23 24 subPackages = [ "filebeat" ]; 25
+2 -2
pkgs/by-name/ga/garmindb/package.nix
··· 7 8 python3Packages.buildPythonApplication rec { 9 pname = "garmindb"; 10 - version = "3.6.4"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "tcgoetz"; 15 repo = "garmindb"; 16 tag = "v${version}"; 17 - hash = "sha256-0srcvYBexsrkQw+AVH3LuIB/+VaQ77Kjv6rHVOq2Reo="; 18 }; 19 20 pythonRelaxDeps = [
··· 7 8 python3Packages.buildPythonApplication rec { 9 pname = "garmindb"; 10 + version = "3.6.5"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "tcgoetz"; 15 repo = "garmindb"; 16 tag = "v${version}"; 17 + hash = "sha256-uXRFvItaO4ptvxzvqN8bOzTUWcVeGk0IX82z+yLWFDw="; 18 }; 19 20 pythonRelaxDeps = [
+2 -2
pkgs/by-name/ge/geonkick/package.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "geonkick"; 18 - version = "3.6.1"; 19 20 src = fetchFromGitLab { 21 owner = "Geonkick-Synthesizer"; 22 repo = "geonkick"; 23 rev = "v${version}"; 24 - hash = "sha256-f5RJzkr98CygOT0O5igMnqetl8if81hKzGAJ2IrR5Hg="; 25 }; 26 27 nativeBuildInputs = [
··· 15 16 stdenv.mkDerivation rec { 17 pname = "geonkick"; 18 + version = "3.6.2"; 19 20 src = fetchFromGitLab { 21 owner = "Geonkick-Synthesizer"; 22 repo = "geonkick"; 23 rev = "v${version}"; 24 + hash = "sha256-1khlAY9szKdwX/kMJvuD1CTO5M8GeMBVCSPmt52GJyA="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/by-name/ge/gerrit/package.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "gerrit"; 11 - version = "3.12.1"; 12 13 src = fetchurl { 14 url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war"; 15 - hash = "sha256-7yGvWeymYC9SrZh722Xc9msjaO5W1PTy0AAhOCMPaPo="; 16 }; 17 18 buildCommand = ''
··· 8 9 stdenv.mkDerivation rec { 10 pname = "gerrit"; 11 + version = "3.12.2"; 12 13 src = fetchurl { 14 url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war"; 15 + hash = "sha256-jQydsKixNKY0PYXysPckcxrpFhDBLQmfN+x/tlfGdEk="; 16 }; 17 18 buildCommand = ''
+2 -2
pkgs/by-name/gi/git-repo/package.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "git-repo"; 16 - version = "2.57.3"; 17 18 src = fetchFromGitHub { 19 owner = "android"; 20 repo = "tools_repo"; 21 rev = "v${version}"; 22 - hash = "sha256-QJr1srOHcCnIQZNz56+zBlKs5ZA0/yDfhILek7pBx1Q="; 23 }; 24 25 # Fix 'NameError: name 'ssl' is not defined'
··· 13 14 stdenv.mkDerivation rec { 15 pname = "git-repo"; 16 + version = "2.58"; 17 18 src = fetchFromGitHub { 19 owner = "android"; 20 repo = "tools_repo"; 21 rev = "v${version}"; 22 + hash = "sha256-s82v5+m+wpLEWMQiqfLegleTEs/KDzaqHGM7hn+/7fk="; 23 }; 24 25 # Fix 'NameError: name 'ssl' is not defined'
+3 -3
pkgs/by-name/go/go-mockery/package.nix
··· 10 11 buildGoModule (finalAttrs: { 12 pname = "go-mockery"; 13 - version = "3.5.2"; 14 15 src = fetchFromGitHub { 16 owner = "vektra"; 17 repo = "mockery"; 18 tag = "v${finalAttrs.version}"; 19 - hash = "sha256-/OMUL/C/uUKT5GvEd3ylpS72XfGTnD+J7EuOR1LovB0="; 20 }; 21 22 proxyVendor = true; 23 - vendorHash = "sha256-PAJymNrl83knDXP9ukUbfEdtabE4+k16Ygzwvfu5ZR8="; 24 25 ldflags = [ 26 "-s"
··· 10 11 buildGoModule (finalAttrs: { 12 pname = "go-mockery"; 13 + version = "3.5.3"; 14 15 src = fetchFromGitHub { 16 owner = "vektra"; 17 repo = "mockery"; 18 tag = "v${finalAttrs.version}"; 19 + hash = "sha256-SKENyw4kZ+qZ3GV+BdDhwtb8AUs4Mc2ix1YWIgV6ZIg="; 20 }; 21 22 proxyVendor = true; 23 + vendorHash = "sha256-QHvD+hJLEPGpl4ZRux6JKwP6f5F2sfWFghSAtZGU+XM="; 24 25 ldflags = [ 26 "-s"
+3
pkgs/by-name/gp/gpredict/package.nix
··· 13 gpsd, 14 hamlib_4, 15 wrapGAppsHook3, 16 }: 17 18 stdenv.mkDerivation (finalAttrs: { ··· 58 gpsd 59 hamlib_4 60 ]; 61 62 meta = { 63 description = "Real time satellite tracking and orbit prediction";
··· 13 gpsd, 14 hamlib_4, 15 wrapGAppsHook3, 16 + nix-update-script, 17 }: 18 19 stdenv.mkDerivation (finalAttrs: { ··· 59 gpsd 60 hamlib_4 61 ]; 62 + 63 + passthru.updateScript = nix-update-script { }; 64 65 meta = { 66 description = "Real time satellite tracking and orbit prediction";
+2 -2
pkgs/by-name/ha/has/package.nix
··· 6 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 pname = "has"; 9 - version = "1.5.0"; 10 11 src = fetchFromGitHub { 12 owner = "kdabir"; 13 repo = "has"; 14 rev = "v${finalAttrs.version}"; 15 - hash = "sha256-TL8VwFx2tf+GkBwz0ILQg0pwcLJSTky57Wx9OW5+lS4="; 16 }; 17 18 dontBuild = true;
··· 6 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 pname = "has"; 9 + version = "1.5.2"; 10 11 src = fetchFromGitHub { 12 owner = "kdabir"; 13 repo = "has"; 14 rev = "v${finalAttrs.version}"; 15 + hash = "sha256-sqpKI9RHo0VlGUNU71mIzw4LzExji2FN2FBOAIVo4jI="; 16 }; 17 18 dontBuild = true;
+60
pkgs/by-name/hy/hyprmagnifier/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + pkg-config, 7 + wayland, 8 + wayland-protocols, 9 + wayland-scanner, 10 + hyprwayland-scanner, 11 + libxkbcommon, 12 + pango, 13 + libjpeg, 14 + hyprutils, 15 + nix-update-script, 16 + }: 17 + 18 + stdenv.mkDerivation { 19 + pname = "hyprmagnifier"; 20 + version = "0.0.1-unstable-2025-05-16"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "st0rmbtw"; 24 + repo = "hyprmagnifier"; 25 + rev = "ce05ed35a1a7f9df976be7ee604d291ddad9c91c"; 26 + hash = "sha256-vsQnL3R7lPKsUlDQKXirWMj/3qI377g7PkKlN+eVDTI="; 27 + }; 28 + 29 + strictDeps = true; 30 + 31 + nativeBuildInputs = [ 32 + cmake 33 + pkg-config 34 + hyprwayland-scanner 35 + ]; 36 + 37 + buildInputs = [ 38 + wayland 39 + wayland-protocols 40 + wayland-scanner 41 + hyprwayland-scanner 42 + libxkbcommon 43 + pango 44 + libjpeg 45 + hyprutils 46 + ]; 47 + 48 + passthru.updateScript = nix-update-script { }; 49 + 50 + meta = { 51 + description = "wlroots-compatible Wayland magnifier that does not suck"; 52 + homepage = "https://github.com/st0rmbtw/hyprmagnifier"; 53 + license = lib.licenses.bsd3; 54 + maintainers = with lib.maintainers; [ 55 + matthewcroughan 56 + ]; 57 + mainProgram = "hyprmagnifier"; 58 + platforms = lib.platforms.all; 59 + }; 60 + }
+3
pkgs/by-name/in/intel-undervolt/package.nix
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 }: 6 7 stdenv.mkDerivation (finalAttrs: { ··· 23 24 runHook postInstall 25 ''; 26 27 meta = { 28 description = "Intel CPU undervolting and throttling configuration tool";
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 + nix-update-script, 6 }: 7 8 stdenv.mkDerivation (finalAttrs: { ··· 24 25 runHook postInstall 26 ''; 27 + 28 + passthru.updateScript = nix-update-script { }; 29 30 meta = { 31 description = "Intel CPU undervolting and throttling configuration tool";
+2 -2
pkgs/by-name/is/isolate/package.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "isolate"; 15 - version = "2.1"; 16 17 src = fetchFromGitHub { 18 owner = "ioi"; 19 repo = "isolate"; 20 rev = "v${version}"; 21 - hash = "sha256-mTh2IAh4xtLWlRu7gp3aXsGJdUWXnocvDyi8JZwzz9s="; 22 }; 23 24 nativeBuildInputs = [
··· 12 13 stdenv.mkDerivation rec { 14 pname = "isolate"; 15 + version = "2.1.2"; 16 17 src = fetchFromGitHub { 18 owner = "ioi"; 19 repo = "isolate"; 20 rev = "v${version}"; 21 + hash = "sha256-B2uo9J5RjDF2JtCWrW3WE1osLYebeAxXUQHnTs0rfBk="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/by-name/jf/jftui/package.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "jftui"; 13 - version = "0.7.4"; 14 15 src = fetchFromGitHub { 16 owner = "Aanok"; 17 repo = "jftui"; 18 rev = "v${version}"; 19 - sha256 = "sha256-Tgiwhdo87uqVwpOvNXRdvFTfkbf9dfSNQDlGx29S2II="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "jftui"; 13 + version = "0.7.5"; 14 15 src = fetchFromGitHub { 16 owner = "Aanok"; 17 repo = "jftui"; 18 rev = "v${version}"; 19 + sha256 = "sha256-0gTJ2uXDcK9zCx6yKS3VxFyxSQZ2l4ydKUI2gYbsiao="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/by-name/ke/keep-sorted/package.nix
··· 8 9 buildGoModule (finalAttrs: { 10 pname = "keep-sorted"; 11 - version = "0.6.1"; 12 13 src = fetchFromGitHub { 14 owner = "google"; 15 repo = "keep-sorted"; 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-N/fJ0qj7/kQ9Q7ULpQpyhWAWFlnLkTjyNNKg8VhLvi0="; 18 }; 19 20 vendorHash = "sha256-HTE9vfjRmi5GpMue7lUfd0jmssPgSOljbfPbya4uGsc=";
··· 8 9 buildGoModule (finalAttrs: { 10 pname = "keep-sorted"; 11 + version = "0.7.0"; 12 13 src = fetchFromGitHub { 14 owner = "google"; 15 repo = "keep-sorted"; 16 tag = "v${finalAttrs.version}"; 17 + hash = "sha256-lGAB+Hb5lPcH+QOZpz98FdP0Qjj4O1iUhuC6lA81xpc="; 18 }; 19 20 vendorHash = "sha256-HTE9vfjRmi5GpMue7lUfd0jmssPgSOljbfPbya4uGsc=";
+2 -2
pkgs/by-name/ko/kor/package.nix
··· 6 7 buildGoModule rec { 8 pname = "kor"; 9 - version = "0.6.3"; 10 11 src = fetchFromGitHub { 12 owner = "yonahd"; 13 repo = "kor"; 14 rev = "v${version}"; 15 - hash = "sha256-85Zj1KJdXQZYoO40JZiz7Wo74aRX8Mu4aY9J5UmQB4I="; 16 }; 17 18 vendorHash = "sha256-a7B0cJi71mqGDPbXaWYKZ2AeuuQyNDxwWNgahTN5AW8=";
··· 6 7 buildGoModule rec { 8 pname = "kor"; 9 + version = "0.6.4"; 10 11 src = fetchFromGitHub { 12 owner = "yonahd"; 13 repo = "kor"; 14 rev = "v${version}"; 15 + hash = "sha256-hGiak28gwxwYOogYyZjTgQ+aGSumxzeZiQKlbVvvrIU="; 16 }; 17 18 vendorHash = "sha256-a7B0cJi71mqGDPbXaWYKZ2AeuuQyNDxwWNgahTN5AW8=";
+2 -2
pkgs/by-name/kr/krillinai/package.nix
··· 11 12 buildGoModule (finalAttrs: { 13 pname = "krillinai"; 14 - version = "1.3.1"; 15 16 src = fetchFromGitHub { 17 owner = "krillinai"; 18 repo = "KlicStudio"; 19 tag = "v${finalAttrs.version}"; 20 - hash = "sha256-LLVm5L8usGoMBbeU/eQMNv/+WMQcdyiOQmj3NM/D9TU="; 21 }; 22 23 vendorHash = "sha256-bAKLNpt0K06egScyn7ImHV0csDsMQGUm92kU1PVQK+I=";
··· 11 12 buildGoModule (finalAttrs: { 13 pname = "krillinai"; 14 + version = "1.4.0"; 15 16 src = fetchFromGitHub { 17 owner = "krillinai"; 18 repo = "KlicStudio"; 19 tag = "v${finalAttrs.version}"; 20 + hash = "sha256-CMeF24BCJ+wbiXCl0iJm0acNoggVxeOu3Q/cXJY8aQo="; 21 }; 22 23 vendorHash = "sha256-bAKLNpt0K06egScyn7ImHV0csDsMQGUm92kU1PVQK+I=";
+54
pkgs/by-name/ku/kurve/package.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + kdePackages, 7 + cava, 8 + python3, 9 + qt6, 10 + }: 11 + let 12 + pythonEnv = python3.withPackages (ps: [ ps.websockets ]); 13 + in 14 + stdenv.mkDerivation (finalAttrs: { 15 + pname = "kurve"; 16 + version = "0.4.0"; 17 + dontWrapQtApps = true; 18 + 19 + src = fetchFromGitHub { 20 + owner = "luisbocanegra"; 21 + repo = "kurve"; 22 + tag = "v${finalAttrs.version}"; 23 + hash = "sha256-Ra+ySuvBqmVOTD8TlWDJklXYuwXPb/2a3BSY+gQMiiA="; 24 + }; 25 + 26 + installPhase = '' 27 + runHook preInstall 28 + 29 + # Substitute Qt Websocket paths in QML files to ensure they work with Nix 30 + substituteInPlace package/contents/ui/components/ProcessMonitorFallback.qml --replace-fail "import QtWebSockets 1.9" "import \"file:${qt6.qtwebsockets}/lib/qt-6/qml/QtWebSockets\"" 31 + 32 + # Set cava path so it gets discovered by nix as runtime dependency 33 + substituteInPlace package/contents/ui/Cava.qml --replace-fail "cava" "${cava}/bin/cava" 34 + substituteInPlace package/contents/ui/FullRepresentation.qml --replace-fail "cava -v" "${cava}/bin/cava -v" 35 + 36 + # Set python path so it gets discovered by nix as runtime dependency 37 + substituteInPlace package/contents/ui/tools/commandMonitor --replace-fail "#!/usr/bin/env python3" "#!${pythonEnv}/bin/python3" 38 + 39 + mkdir -p $out/share/plasma/plasmoids/luisbocanegra.audio.visualizer 40 + cp -r package/* $out/share/plasma/plasmoids/luisbocanegra.audio.visualizer 41 + runHook postInstall 42 + ''; 43 + 44 + passthru.updateScript = nix-update-script { }; 45 + 46 + meta = { 47 + description = "KDE Plasma widget displaying CAVA audio visualizations."; 48 + homepage = "https://github.com/luisbocanegra/kurve"; 49 + changelog = "https://github.com/luisbocanegra/kurve/releases/tag/v${finalAttrs.version}"; 50 + license = lib.licenses.gpl3Only; 51 + maintainers = with lib.maintainers; [ chrisheib ]; 52 + inherit (kdePackages.kwindowsystem.meta) platforms; 53 + }; 54 + })
+2 -2
pkgs/by-name/li/libcomps/package.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "libcomps"; 17 - version = "0.1.21"; 18 19 outputs = [ 20 "out" ··· 26 owner = "rpm-software-management"; 27 repo = "libcomps"; 28 rev = version; 29 - hash = "sha256-2ZxU1g5HDWnSxTabnmfyQwz1ZCXK+7kJXLofeFBiwn0="; 30 }; 31 32 patches = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "libcomps"; 17 + version = "0.1.22"; 18 19 outputs = [ 20 "out" ··· 26 owner = "rpm-software-management"; 27 repo = "libcomps"; 28 rev = version; 29 + hash = "sha256-zaUQbMYL9wIzqs3cQwPY1B2UZ7DwkksTxeFugol0FRk="; 30 }; 31 32 patches = [
+2 -2
pkgs/by-name/li/litmusctl/package.nix
··· 8 9 buildGoModule rec { 10 pname = "litmusctl"; 11 - version = "1.16.0"; 12 13 nativeBuildInputs = [ 14 installShellFiles ··· 22 owner = "litmuschaos"; 23 repo = "litmusctl"; 24 rev = "${version}"; 25 - hash = "sha256-JRyUNj6v3o4wSjjOL9HyYCVZS6gZ9r//2QZUyLX7qQI="; 26 }; 27 28 vendorHash = "sha256-7FYOQ89aUFPX+5NCPYKg+YGCXstQ6j9DK4V2mCgklu0=";
··· 8 9 buildGoModule rec { 10 pname = "litmusctl"; 11 + version = "1.17.0"; 12 13 nativeBuildInputs = [ 14 installShellFiles ··· 22 owner = "litmuschaos"; 23 repo = "litmusctl"; 24 rev = "${version}"; 25 + hash = "sha256-mb80r3cY9NJLSvwwfWNgbwnuIY8+w1bIrFZ5h2oSo34="; 26 }; 27 28 vendorHash = "sha256-7FYOQ89aUFPX+5NCPYKg+YGCXstQ6j9DK4V2mCgklu0=";
+2 -2
pkgs/by-name/mb/mbuffer/package.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "mbuffer"; 11 - version = "20250429"; 12 outputs = [ 13 "out" 14 "man" ··· 16 17 src = fetchurl { 18 url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${finalAttrs.version}.tgz"; 19 - sha256 = "sha256-qFPvcg1fw+9HwXiPlldHe3bXCrDJuKfZbpleMeNTa78="; 20 }; 21 22 buildInputs = [
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "mbuffer"; 11 + version = "20250809"; 12 outputs = [ 13 "out" 14 "man" ··· 16 17 src = fetchurl { 18 url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${finalAttrs.version}.tgz"; 19 + sha256 = "sha256-mGXa5CRSQ3oZrkSEZ4EKA6pG1PJeKZlettbU85xnzR4="; 20 }; 21 22 buildInputs = [
+3 -3
pkgs/by-name/me/melange/package.nix
··· 7 8 buildGoModule rec { 9 pname = "melange"; 10 - version = "0.30.5"; 11 12 src = fetchFromGitHub { 13 owner = "chainguard-dev"; 14 repo = "melange"; 15 rev = "v${version}"; 16 - hash = "sha256-df8CHUVHvSK1nFpJIuVHmwbHsigwZLL5UwA0/V6NkxE="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true; ··· 26 ''; 27 }; 28 29 - vendorHash = "sha256-hyE/5P2EabICjueTln2zBmdIK73OqteWwmT5mSf7vXE="; 30 31 subPackages = [ "." ]; 32
··· 7 8 buildGoModule rec { 9 pname = "melange"; 10 + version = "0.30.6"; 11 12 src = fetchFromGitHub { 13 owner = "chainguard-dev"; 14 repo = "melange"; 15 rev = "v${version}"; 16 + hash = "sha256-Ue16XeZGr2eVHkugC9Ytno95Pqz63/AM3bO2eDkeDik="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true; ··· 26 ''; 27 }; 28 29 + vendorHash = "sha256-N38prBssebHmsfeRkPN9A7CLiH631t63HFhZwnSaiko="; 30 31 subPackages = [ "." ]; 32
+9 -9
pkgs/by-name/mi/mirrord/manifest.json
··· 1 { 2 - "version": "3.157.0", 3 "assets": { 4 "x86_64-linux": { 5 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.0/mirrord_linux_x86_64", 6 - "hash": "sha256-DZ3YupNsRUYqqzVUr5P/cCJTjpM89bnoYIHIbSyqQAI=" 7 }, 8 "aarch64-linux": { 9 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.0/mirrord_linux_aarch64", 10 - "hash": "sha256-Tot3Wm7XRr71fPwAbr4CGzqOh8wLX831h5M3APv8Sb4=" 11 }, 12 "aarch64-darwin": { 13 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.0/mirrord_mac_universal", 14 - "hash": "sha256-QYt60hwlF2Cb9nY4fmPXYZiOeQ98MLPIxVi+D2jJHe0=" 15 }, 16 "x86_64-darwin": { 17 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.0/mirrord_mac_universal", 18 - "hash": "sha256-QYt60hwlF2Cb9nY4fmPXYZiOeQ98MLPIxVi+D2jJHe0=" 19 } 20 } 21 }
··· 1 { 2 + "version": "3.157.2", 3 "assets": { 4 "x86_64-linux": { 5 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.2/mirrord_linux_x86_64", 6 + "hash": "sha256-H73Qrj/6BezHo/jF1rvbN2rsisbTvRUB8qyzE2OcleI=" 7 }, 8 "aarch64-linux": { 9 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.2/mirrord_linux_aarch64", 10 + "hash": "sha256-hh4JSuUVDv3Z+J97+ArgJFpsb1i+hW35SQFSps4+/FE=" 11 }, 12 "aarch64-darwin": { 13 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.2/mirrord_mac_universal", 14 + "hash": "sha256-ObypSr4R+a5MrpNwyqZQjnTD1mVv9VG8OZmMMNtJzQ0=" 15 }, 16 "x86_64-darwin": { 17 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.157.2/mirrord_mac_universal", 18 + "hash": "sha256-ObypSr4R+a5MrpNwyqZQjnTD1mVv9VG8OZmMMNtJzQ0=" 19 } 20 } 21 }
+3 -3
pkgs/by-name/mi/mise/package.nix
··· 21 22 rustPlatform.buildRustPackage rec { 23 pname = "mise"; 24 - version = "2025.8.6"; 25 26 src = fetchFromGitHub { 27 owner = "jdx"; 28 repo = "mise"; 29 rev = "v${version}"; 30 - hash = "sha256-MxWWq292tXGqKbBYq4vALc/2HLdY9ERO/RWc8WC4Enk="; 31 }; 32 33 - cargoHash = "sha256-/UODmKVRiRg03kQ7VD8BaXGtWRf44s6AoKUm+vmC6b4="; 34 35 nativeBuildInputs = [ 36 installShellFiles
··· 21 22 rustPlatform.buildRustPackage rec { 23 pname = "mise"; 24 + version = "2025.8.10"; 25 26 src = fetchFromGitHub { 27 owner = "jdx"; 28 repo = "mise"; 29 rev = "v${version}"; 30 + hash = "sha256-ycYB/XuaTwGmXzh59cxt5KC1v0gqoTB67MMmpCsR6o8="; 31 }; 32 33 + cargoHash = "sha256-9YHW8jO+K1YZjmfN+KxctConrvp6yYODnRoSwIFxryU="; 34 35 nativeBuildInputs = [ 36 installShellFiles
+25 -13
pkgs/by-name/mu/muse-sounds-manager/package.nix
··· 3 stdenv, 4 fetchurl, 5 autoPatchelfHook, 6 - dpkg, 7 fontconfig, 8 zlib, 9 icu, ··· 14 libICE, 15 libSM, 16 openssl, 17 }: 18 19 stdenv.mkDerivation rec { 20 pname = "muse-sounds-manager"; 21 - version = "1.1.0.587"; 22 23 # Use web.archive.org since upstream does not provide a stable (versioned) URL. 24 # To see if there are new versions on the Web Archive, visit 25 - # http://web.archive.org/cdx/search/cdx?url=https://muse-cdn.com/Muse_Sounds_Manager_Beta.deb 26 # then replace the date in the URL below with date when the SHA1 27 - # changes (currently A3NX3WHFZWXCHZVME2ABUL2VRENTWOD5) and replace 28 # the version above with the version in the .deb metadata (or in the 29 # settings of muse-sounds-manager). 30 src = fetchurl { 31 - url = "https://web.archive.org/web/20240826143936/https://muse-cdn.com/Muse_Sounds_Manager_Beta.deb"; 32 - hash = "sha256-wzZAIjme1cv8+jMLiKT7kUQvCb+UhsvOnLDV4hCL3hw="; 33 }; 34 35 nativeBuildInputs = [ 36 autoPatchelfHook 37 - dpkg 38 ]; 39 40 buildInputs = [ ··· 55 openssl 56 ]; 57 58 - unpackPhase = "dpkg -x $src ."; 59 - 60 installPhase = '' 61 runHook preInstall 62 63 - mkdir -p $out 64 - mv usr/* opt $out/ 65 - substituteInPlace $out/bin/muse-sounds-manager --replace-fail /opt/ $out/opt/ 66 67 runHook postInstall 68 ''; 69 70 meta = { 71 description = "Manage Muse Sounds (Muse Hub) libraries for MuseScore"; 72 homepage = "https://musescore.org/"; 73 license = lib.licenses.unfree; 74 mainProgram = "muse-sounds-manager"; 75 - maintainers = with lib.maintainers; [ orivej ]; 76 platforms = [ "x86_64-linux" ]; 77 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 78 };
··· 3 stdenv, 4 fetchurl, 5 autoPatchelfHook, 6 fontconfig, 7 zlib, 8 icu, ··· 13 libICE, 14 libSM, 15 openssl, 16 + unzip, 17 + xdg-utils, 18 + makeWrapper, 19 }: 20 21 stdenv.mkDerivation rec { 22 pname = "muse-sounds-manager"; 23 + version = "2.0.4.872"; 24 25 # Use web.archive.org since upstream does not provide a stable (versioned) URL. 26 # To see if there are new versions on the Web Archive, visit 27 + # http://web.archive.org/cdx/search/cdx?url=https://muse-cdn.com/Muse_Sounds_Manager_x64.tar.gz 28 # then replace the date in the URL below with date when the SHA1 29 + # changes (currently QLR46LKDOAPB7VSF45HEAXWVNWFJHITG) and replace 30 # the version above with the version in the .deb metadata (or in the 31 # settings of muse-sounds-manager). 32 src = fetchurl { 33 + url = "https://web.archive.org/web/20250729165100if_/https://muse-cdn.com/Muse_Sounds_Manager_x64.tar.gz"; 34 + hash = "sha256-VcLBXpLDk90yd0j9NIzBOXXAciSLWP9y5X51L2/9W4A="; 35 }; 36 37 nativeBuildInputs = [ 38 autoPatchelfHook 39 + makeWrapper 40 ]; 41 42 buildInputs = [ ··· 57 openssl 58 ]; 59 60 installPhase = '' 61 runHook preInstall 62 63 + mkdir -p $out $out/share/applications $out/share/icons 64 + cp -p -R bin/ $out/ 65 + cp -p res/*.desktop $out/share/applications 66 + cp -p -R res/icons $out/share 67 68 runHook postInstall 69 ''; 70 71 + postInstall = '' 72 + ln -s ${xdg-utils}/bin/xdg-open $out/bin/open 73 + wrapProgram $out/bin/muse-sounds-manager \ 74 + --prefix PATH : ${lib.makeBinPath [ unzip ]} 75 + ''; 76 + 77 + dontStrip = true; 78 + 79 meta = { 80 description = "Manage Muse Sounds (Muse Hub) libraries for MuseScore"; 81 homepage = "https://musescore.org/"; 82 license = lib.licenses.unfree; 83 mainProgram = "muse-sounds-manager"; 84 + maintainers = with lib.maintainers; [ 85 + orivej 86 + sarunint 87 + ]; 88 platforms = [ "x86_64-linux" ]; 89 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 90 };
+3 -3
pkgs/by-name/no/nomino/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "nomino"; 9 - version = "1.6.2"; 10 11 src = fetchFromGitHub { 12 owner = "yaa110"; 13 repo = "nomino"; 14 rev = version; 15 - hash = "sha256-DZTJng5aVYi14nojQ6G9+JkqSd9kn6yEYrwQbR8cd2M="; 16 }; 17 18 - cargoHash = "sha256-jXDbQEUzQ5E7lcutdvQMpyMfuILcJTFvQgq7rNI/XmM="; 19 20 meta = with lib; { 21 description = "Batch rename utility for developers";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "nomino"; 9 + version = "1.6.4"; 10 11 src = fetchFromGitHub { 12 owner = "yaa110"; 13 repo = "nomino"; 14 rev = version; 15 + hash = "sha256-By7zVHtbrQU0+cSbxNNxCcmTCoFABsjOLk8TCX8iFWA="; 16 }; 17 18 + cargoHash = "sha256-daHhCr55RzIHooGXBK831SYD1b8NPEDD6mtDut6nuaQ="; 19 20 meta = with lib; { 21 description = "Batch rename utility for developers";
+38 -11
pkgs/by-name/od/odin2/package.nix
··· 15 libXrandr, 16 libGL, 17 gcc-unwrapped, 18 }: 19 20 - stdenv.mkDerivation rec { 21 pname = "odin2"; 22 - version = "2.3.4"; 23 24 src = fetchFromGitHub { 25 owner = "TheWaveWarden"; 26 repo = "odin2"; 27 - tag = "v${version}"; 28 fetchSubmodules = true; 29 - hash = "sha256-N96Nb7G6hqfh8DyMtHbttl/fRZUkS8f2KfPSqeMAhHY="; 30 }; 31 32 - postPatch = '' 33 - sed '1i#include <utility>' -i \ 34 - libs/JUCELV2/modules/juce_gui_basics/windows/juce_ComponentPeer.h # gcc12 35 - ''; 36 - 37 nativeBuildInputs = [ 38 cmake 39 pkg-config 40 ]; 41 42 buildInputs = [ ··· 63 ] 64 ); 65 66 cmakeFlags = [ 67 "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar" 68 "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ··· 70 ]; 71 72 installPhase = '' 73 - mkdir -p $out/bin $out/lib/vst3 $out/lib/lv2 $out/lib/clap 74 cd Odin2_artefacts/Release 75 cp Standalone/Odin2 $out/bin 76 cp -r VST3/Odin2.vst3 $out/lib/vst3 77 cp -r LV2/Odin2.lv2 $out/lib/lv2 78 cp -r CLAP/Odin2.clap $out/lib/clap 79 ''; 80 81 meta = with lib; { 82 description = "Odin 2 Synthesizer Plugin"; 83 homepage = "https://thewavewarden.com/odin2"; ··· 86 maintainers = with maintainers; [ magnetophon ]; 87 mainProgram = "Odin2"; 88 }; 89 - }
··· 15 libXrandr, 16 libGL, 17 gcc-unwrapped, 18 + copyDesktopItems, 19 + makeDesktopItem, 20 + nix-update-script, 21 }: 22 23 + stdenv.mkDerivation (finalAttrs: { 24 pname = "odin2"; 25 + version = "2.4.1"; 26 27 src = fetchFromGitHub { 28 owner = "TheWaveWarden"; 29 repo = "odin2"; 30 + tag = "v${finalAttrs.version}"; 31 fetchSubmodules = true; 32 + hash = "sha256-j/rZvBNBTDo2vwESXbGIXR89PHOI1HK8hvzV7y6dJHI="; 33 }; 34 35 nativeBuildInputs = [ 36 cmake 37 pkg-config 38 + copyDesktopItems 39 ]; 40 41 buildInputs = [ ··· 62 ] 63 ); 64 65 + # JUCE wants to write to $HOME/.{lv2,vst3} 66 + preConfigure = '' 67 + export HOME="$TMPDIR" 68 + ''; 69 + 70 cmakeFlags = [ 71 "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar" 72 "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ··· 74 ]; 75 76 installPhase = '' 77 + mkdir -p $out/bin $out/lib/vst3 $out/lib/lv2 $out/lib/clap $out/share/icons/hicolor/512x512/apps 78 cd Odin2_artefacts/Release 79 cp Standalone/Odin2 $out/bin 80 cp -r VST3/Odin2.vst3 $out/lib/vst3 81 cp -r LV2/Odin2.lv2 $out/lib/lv2 82 cp -r CLAP/Odin2.clap $out/lib/clap 83 + # There’s no application icon, so the vendor’s logo will have to do. 84 + cp $src/manual/graphics/logo.png $out/share/icons/hicolor/512x512/apps/odin2.png 85 + copyDesktopItems 86 ''; 87 88 + desktopItems = [ 89 + (makeDesktopItem { 90 + name = "Odin2"; 91 + desktopName = "Odin 2"; 92 + comment = "Odin 2 Free Synthesizer"; 93 + icon = "odin2"; 94 + startupNotify = true; 95 + categories = [ 96 + "AudioVideo" 97 + "Audio" 98 + "Midi" 99 + "Music" 100 + ]; 101 + dbusActivatable = false; 102 + exec = "Odin2"; 103 + }) 104 + ]; 105 + 106 + passthru.updateScript = nix-update-script { }; 107 + 108 meta = with lib; { 109 description = "Odin 2 Synthesizer Plugin"; 110 homepage = "https://thewavewarden.com/odin2"; ··· 113 maintainers = with maintainers; [ magnetophon ]; 114 mainProgram = "Odin2"; 115 }; 116 + })
+2 -2
pkgs/by-name/pi/pixelorama/package.nix
··· 20 in 21 stdenv.mkDerivation (finalAttrs: { 22 pname = "pixelorama"; 23 - version = "1.1.3"; 24 25 src = fetchFromGitHub { 26 owner = "Orama-Interactive"; 27 repo = "Pixelorama"; 28 rev = "v${finalAttrs.version}"; 29 - hash = "sha256-5HxOt077h+GLQQlvKefolOXLRnNDdc/VD1pc9INEkqI="; 30 }; 31 32 strictDeps = true;
··· 20 in 21 stdenv.mkDerivation (finalAttrs: { 22 pname = "pixelorama"; 23 + version = "1.1.4"; 24 25 src = fetchFromGitHub { 26 owner = "Orama-Interactive"; 27 repo = "Pixelorama"; 28 rev = "v${finalAttrs.version}"; 29 + hash = "sha256-REJsaGuPVihQj5+ec10UuyobspwNBEbYslDgAZxPfFE="; 30 }; 31 32 strictDeps = true;
+25 -10
pkgs/by-name/po/pocket-id/package.nix
··· 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5 - buildNpmPackage, 6 nixosTests, 7 nix-update-script, 8 }: 9 10 buildGoModule (finalAttrs: { 11 pname = "pocket-id"; 12 - version = "1.6.4"; 13 14 src = fetchFromGitHub { 15 owner = "pocket-id"; 16 repo = "pocket-id"; 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-P6pA0760eo/dL1t5Jics4oSztM4F/C8lIuZ3dZ9x5C8="; 19 }; 20 21 sourceRoot = "${finalAttrs.src.name}/backend"; 22 23 - vendorHash = "sha256-8D7sSmxR+Fq4ouB9SuoEDplu6Znv3U0BIyYISSmF6Bs="; 24 25 env.CGO_ENABLED = 0; 26 ldflags = [ ··· 36 mv $out/bin/cmd $out/bin/pocket-id 37 ''; 38 39 - frontend = buildNpmPackage { 40 pname = "pocket-id-frontend"; 41 inherit (finalAttrs) version src; 42 43 - sourceRoot = "${finalAttrs.src.name}/frontend"; 44 45 - npmDepsHash = "sha256-FiFSnN6DOMr8XghvyGTWB/EMTNfvpqlAgx7FPnbGQxU="; 46 - npmFlags = [ "--legacy-peer-deps" ]; 47 48 - env.BUILD_OUTPUT_PATH = "dist"; 49 50 installPhase = '' 51 runHook preInstall 52 53 mkdir -p $out/lib/pocket-id-frontend 54 - cp -r dist $out/lib/pocket-id-frontend/dist 55 56 runHook postInstall 57 '';
··· 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5 + stdenvNoCC, 6 + nodejs, 7 + pnpm_10, 8 nixosTests, 9 nix-update-script, 10 }: 11 12 buildGoModule (finalAttrs: { 13 pname = "pocket-id"; 14 + version = "1.7.0"; 15 16 src = fetchFromGitHub { 17 owner = "pocket-id"; 18 repo = "pocket-id"; 19 tag = "v${finalAttrs.version}"; 20 + hash = "sha256-u4H1wC5RL3p7GNL7WQkmK8DNgwKQvgxHd8TIug+Be+o="; 21 }; 22 23 sourceRoot = "${finalAttrs.src.name}/backend"; 24 25 + vendorHash = "sha256-guG/JnwUi2WeClSfAX9pRG3kLJMTvTDiJ7L54TGeSd0="; 26 27 env.CGO_ENABLED = 0; 28 ldflags = [ ··· 38 mv $out/bin/cmd $out/bin/pocket-id 39 ''; 40 41 + frontend = stdenvNoCC.mkDerivation { 42 pname = "pocket-id-frontend"; 43 inherit (finalAttrs) version src; 44 45 + nativeBuildInputs = [ 46 + nodejs 47 + pnpm_10.configHook 48 + ]; 49 + pnpmDeps = pnpm_10.fetchDeps { 50 + inherit (finalAttrs) pname version src; 51 + fetcherVersion = 1; 52 + hash = "sha256-UgbclnoOqsWY5fYAGoDJON9MDtN5edw65JRleghdReE="; 53 + }; 54 + 55 + env.BUILD_OUTPUT_PATH = "dist"; 56 + 57 + buildPhase = '' 58 + runHook preBuild 59 60 + pnpm --filter pocket-id-frontend build 61 62 + runHook postBuild 63 + ''; 64 65 installPhase = '' 66 runHook preInstall 67 68 mkdir -p $out/lib/pocket-id-frontend 69 + cp -r frontend/dist $out/lib/pocket-id-frontend/dist 70 71 runHook postInstall 72 '';
+2
pkgs/by-name/po/postman/darwin.nix
··· 4 pname, 5 version, 6 src, 7 meta, 8 }: 9 ··· 12 pname 13 version 14 src 15 meta 16 ; 17
··· 4 pname, 5 version, 6 src, 7 + passthru, 8 meta, 9 }: 10 ··· 13 pname 14 version 15 src 16 + passthru 17 meta 18 ; 19
+2
pkgs/by-name/po/postman/linux.nix
··· 49 pname, 50 version, 51 src, 52 meta, 53 }: 54 ··· 57 pname 58 version 59 src 60 meta 61 ; 62
··· 49 pname, 50 version, 51 src, 52 + passthru, 53 meta, 54 }: 55 ··· 58 pname 59 version 60 src 61 + passthru 62 meta 63 ; 64
+22 -3
pkgs/by-name/po/postman/package.nix
··· 2 lib, 3 stdenvNoCC, 4 fetchurl, 5 callPackage, 6 }: 7 ··· 26 name = "postman-${version}.${if stdenvNoCC.hostPlatform.isLinux then "tar.gz" else "zip"}"; 27 url = "https://dl.pstmn.io/download/version/${version}/${system}"; 28 hash = selectSystem { 29 - aarch64-darwin = "sha256-DNhTzTul3SZSsqc3g1oOSSl1sGQ3t6FD5bbL4dMHzEk="; 30 - aarch64-linux = "sha256-8CaqyMuZEcdgKfE2OxHCEAVsTFBtFDOfdHfTWASJAU4="; 31 - x86_64-darwin = "sha256-cRHyqNBW/1l2VsK89ue2K+X/Uszpzu9wXg4O91Adfy4="; 32 x86_64-linux = "sha256-qoEShs3JJ51UOEdhDcFWd2qiMgd1RPdsMql1HqK7Q3s="; 33 }; 34 }; 35 36 meta = { 37 changelog = "https://www.postman.com/release-notes/postman-app/#${ 38 lib.replaceStrings [ "." ] [ "-" ] version ··· 62 pname 63 version 64 src 65 meta 66 ; 67 } ··· 71 pname 72 version 73 src 74 meta 75 ; 76 }
··· 2 lib, 3 stdenvNoCC, 4 fetchurl, 5 + writeScript, 6 callPackage, 7 }: 8 ··· 27 name = "postman-${version}.${if stdenvNoCC.hostPlatform.isLinux then "tar.gz" else "zip"}"; 28 url = "https://dl.pstmn.io/download/version/${version}/${system}"; 29 hash = selectSystem { 30 + aarch64-darwin = "sha256-J6vJNTfkBdPXUp3H3GmT85fnvNCs1xcgH+xa4StwPio="; 31 + aarch64-linux = "sha256-4AaG5ifi/x0rftT3iKSERMvlGBKYrLZrnZIKvwlnqWg="; 32 + x86_64-darwin = "sha256-YhdmpNl3TKJlVDG2UAAX4lAVSGdHBAQxFtjTqyMuHdw="; 33 x86_64-linux = "sha256-qoEShs3JJ51UOEdhDcFWd2qiMgd1RPdsMql1HqK7Q3s="; 34 }; 35 }; 36 37 + passthru.updateScript = writeScript "update-postman" '' 38 + #!/usr/bin/env nix-shell 39 + #!nix-shell -i bash -p nix curl jq common-updater-scripts 40 + set -eou pipefail 41 + latestVersion=$(curl --fail --silent 'https://dl.pstmn.io/update/status?currentVersion=11.0.0&platform=osx_arm64' | jq --raw-output .version) 42 + if [[ "$latestVersion" == "$UPDATE_NIX_OLD_VERSION" ]]; then 43 + exit 0 44 + fi 45 + update-source-version postman $latestVersion 46 + systems=$(nix eval --json -f . postman.meta.platforms | jq --raw-output '.[]') 47 + for system in $systems; do 48 + hash=$(nix --extra-experimental-features nix-command hash convert --to sri --hash-algo sha256 $(nix-prefetch-url $(nix eval --raw -f . postman.src.url --system "$system"))) 49 + update-source-version postman $latestVersion $hash --system=$system --ignore-same-version --ignore-same-hash 50 + done 51 + ''; 52 + 53 meta = { 54 changelog = "https://www.postman.com/release-notes/postman-app/#${ 55 lib.replaceStrings [ "." ] [ "-" ] version ··· 79 pname 80 version 81 src 82 + passthru 83 meta 84 ; 85 } ··· 89 pname 90 version 91 src 92 + passthru 93 meta 94 ; 95 }
+2 -2
pkgs/by-name/pr/prometheus-frr-exporter/package.nix
··· 5 }: 6 7 let 8 - version = "1.8.0"; 9 src = fetchFromGitHub { 10 owner = "tynany"; 11 repo = "frr_exporter"; 12 rev = "v${version}"; 13 - hash = "sha256-pzNketG3YwKPAfNXObQPmpiAXuuA3wNdTG/dzUWULFo="; 14 }; 15 in 16 buildGoModule {
··· 5 }: 6 7 let 8 + version = "1.8.1"; 9 src = fetchFromGitHub { 10 owner = "tynany"; 11 repo = "frr_exporter"; 12 rev = "v${version}"; 13 + hash = "sha256-RURuJXAX1U1KPX0IJXs3OE1Rr7MV5xrhrew7mKfaeNM="; 14 }; 15 in 16 buildGoModule {
+55
pkgs/by-name/pr/proton-authenticator/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + autoPatchelfHook, 6 + dpkg, 7 + glib-networking, 8 + wrapGAppsHook4, 9 + webkitgtk_4_1, 10 + }: 11 + 12 + stdenvNoCC.mkDerivation (finalAttrs: { 13 + pname = "proton-authenticator"; 14 + version = "1.0.0"; 15 + 16 + src = fetchurl { 17 + url = "https://proton.me/download/authenticator/linux/ProtonAuthenticator_${finalAttrs.version}_amd64.deb"; 18 + hash = "sha256-Ri6U7tuQa5nde4vjagQKffWgGXbZtANNmeph1X6PFuM="; 19 + }; 20 + 21 + dontConfigure = true; 22 + dontBuild = true; 23 + 24 + nativeBuildInputs = [ 25 + dpkg 26 + autoPatchelfHook 27 + wrapGAppsHook4 28 + ]; 29 + 30 + buildInputs = [ 31 + webkitgtk_4_1 32 + ]; 33 + 34 + installPhase = '' 35 + runHook preInstall 36 + 37 + install -Dm755 usr/bin/proton-authenticator $out/bin/${finalAttrs.meta.mainProgram} 38 + cp -r usr/share $out 39 + 40 + wrapProgram "$out/bin/${finalAttrs.meta.mainProgram}" \ 41 + --prefix GIO_EXTRA_MODULES : "${glib-networking}/lib/gio/modules" 42 + 43 + runHook postInstall 44 + ''; 45 + 46 + meta = { 47 + description = "Two-factor authentication manager with optional sync"; 48 + homepage = "https://proton.me/authenticator"; 49 + license = lib.licenses.unfree; # source not yet published 50 + maintainers = with lib.maintainers; [ felschr ]; 51 + platforms = [ "x86_64-linux" ]; 52 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 53 + mainProgram = "proton-authenticator"; 54 + }; 55 + })
+3
pkgs/by-name/qg/qgroundcontrol/package.nix
··· 7 gst_all_1, 8 wayland, 9 pkg-config, 10 }: 11 12 stdenv.mkDerivation rec { ··· 95 patches = [ 96 ./disable-bad-message.patch 97 ]; 98 99 meta = { 100 description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks";
··· 7 gst_all_1, 8 wayland, 9 pkg-config, 10 + nix-update-script, 11 }: 12 13 stdenv.mkDerivation rec { ··· 96 patches = [ 97 ./disable-bad-message.patch 98 ]; 99 + 100 + passthru.updateScript = nix-update-script { }; 101 102 meta = { 103 description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks";
+3 -3
pkgs/by-name/ra/railway/package.nix
··· 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "railway"; 10 - version = "4.6.1"; 11 12 src = fetchFromGitHub { 13 owner = "railwayapp"; 14 repo = "cli"; 15 rev = "v${version}"; 16 - hash = "sha256-+nweRMHwQbt/Nn/i0P3s7kziP7Z8RnEszqcVzjTthes="; 17 }; 18 19 - cargoHash = "sha256-u86v7DeWCdeODP+mHL0mYvas1lpCEWuI15ua1LUzDak="; 20 21 nativeBuildInputs = [ pkg-config ]; 22
··· 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "railway"; 10 + version = "4.6.3"; 11 12 src = fetchFromGitHub { 13 owner = "railwayapp"; 14 repo = "cli"; 15 rev = "v${version}"; 16 + hash = "sha256-rCgl0s05AecF6reyYySVH+oxtWPDCLxZEm3L1WmxA1k="; 17 }; 18 19 + cargoHash = "sha256-sOr/vafZLt25yO0chwbtHxPucevLvny/33Gf/J4Bt6Q="; 20 21 nativeBuildInputs = [ pkg-config ]; 22
+3 -3
pkgs/by-name/rs/rsrpc/package.nix
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "rsrpc"; 11 - version = "0.24.2"; 12 13 src = fetchFromGitHub { 14 owner = "SpikeHD"; 15 repo = "rsRPC"; 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-Epf84YY7wkQjBbM09NbCSLiVreIgc/OA2g8tN8OmwXQ="; 18 }; 19 20 - cargoHash = "sha256-fTDAs88GE+ZoaCSJwCAUolTHpigDbkqNVMlbZOO5v1o="; 21 22 nativeBuildInputs = [ 23 pkg-config
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "rsrpc"; 11 + version = "0.24.3"; 12 13 src = fetchFromGitHub { 14 owner = "SpikeHD"; 15 repo = "rsRPC"; 16 tag = "v${finalAttrs.version}"; 17 + hash = "sha256-qQduMRITva425T+w2sWX/mRmJLq2SsfPkFzgjyq9x9E="; 18 }; 19 20 + cargoHash = "sha256-aUTy+8XCUgsBEBBWr0PmvZ6agkq0sojXPWi9rDWp2Iw="; 21 22 nativeBuildInputs = [ 23 pkg-config
+3 -3
pkgs/by-name/ru/rust-script/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "rust-script"; 9 - version = "0.35.0"; 10 11 src = fetchFromGitHub { 12 owner = "fornwall"; 13 repo = "rust-script"; 14 rev = version; 15 - sha256 = "sha256-uKmQgrbsFIY0XwrO16Urz3L76Gm2SxHW/CpHeCIUinM="; 16 }; 17 18 - cargoHash = "sha256-eSj04d/ktabUm58C7PAtiPqdiVP9NB3uSFxILZxe6jA="; 19 20 # tests require network access 21 doCheck = false;
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "rust-script"; 9 + version = "0.36.0"; 10 11 src = fetchFromGitHub { 12 owner = "fornwall"; 13 repo = "rust-script"; 14 rev = version; 15 + sha256 = "sha256-Bb8ULD2MmZiSW/Tx5vAAHv95OMJ0EdWgR+NFhBkTlDU="; 16 }; 17 18 + cargoHash = "sha256-kxnylNZ8FsaR2S1o/p7qtlaXsBLDNv2PsFye0rcf/+A="; 19 20 # tests require network access 21 doCheck = false;
+3 -3
pkgs/by-name/sd/sd-switch/package.nix
··· 6 }: 7 8 let 9 - version = "0.5.4"; 10 in 11 rustPlatform.buildRustPackage { 12 pname = "sd-switch"; ··· 16 owner = "~rycee"; 17 repo = "sd-switch"; 18 rev = version; 19 - hash = "sha256-lP65PrMFhbNoWyObFsJK06Hgv9w83hyI/YiKcL5rXhY="; 20 }; 21 22 - cargoHash = "sha256-sWYKJz/wfx0XG150cTOguvhdN3UEn8QE0P0+2lSeVkc="; 23 24 passthru = { 25 updateScript = nix-update-script { };
··· 6 }: 7 8 let 9 + version = "0.5.5"; 10 in 11 rustPlatform.buildRustPackage { 12 pname = "sd-switch"; ··· 16 owner = "~rycee"; 17 repo = "sd-switch"; 18 rev = version; 19 + hash = "sha256-hhT7w76bQe5USHGOQ6Rg8XEW+4JIccAXkfGj86id/Ec="; 20 }; 21 22 + cargoHash = "sha256-88jNiOYEikqnY69Bceaz32rQHN9BOy2/r4LiOiqsR4Y="; 23 24 passthru = { 25 updateScript = nix-update-script { };
+2 -2
pkgs/by-name/se/seagoat/package.nix
··· 14 15 python3Packages.buildPythonApplication rec { 16 pname = "seagoat"; 17 - version = "1.0.15"; 18 pyproject = true; 19 20 src = fetchFromGitHub { 21 owner = "kantord"; 22 repo = "SeaGOAT"; 23 tag = "v${version}"; 24 - hash = "sha256-Gc+CcOfwez1dP5VgaP12eIO0ITFxD2Y7BiHD9Z8GgO4="; 25 }; 26 27 build-system = [ python3Packages.poetry-core ];
··· 14 15 python3Packages.buildPythonApplication rec { 16 pname = "seagoat"; 17 + version = "1.0.20"; 18 pyproject = true; 19 20 src = fetchFromGitHub { 21 owner = "kantord"; 22 repo = "SeaGOAT"; 23 tag = "v${version}"; 24 + hash = "sha256-UbvWvPEd4SRVZpnANJD3V/oZAQrqOeEjWwr5TyOZjNI="; 25 }; 26 27 build-system = [ python3Packages.poetry-core ];
+2 -2
pkgs/by-name/si/signalbackup-tools/package.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "signalbackup-tools"; 16 - version = "20250812-1"; 17 18 src = fetchFromGitHub { 19 owner = "bepaald"; 20 repo = "signalbackup-tools"; 21 tag = version; 22 - hash = "sha256-ZaBo4CXmgVZIA/P1n1NMIlq6B2UM0Z/T7VQtpys72KU="; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "signalbackup-tools"; 16 + version = "20250817"; 17 18 src = fetchFromGitHub { 19 owner = "bepaald"; 20 repo = "signalbackup-tools"; 21 tag = version; 22 + hash = "sha256-MClQUM0yr1gUE1gVFczHr5fcSF+TTKrQ6sqw0B0zSL4="; 23 }; 24 25 nativeBuildInputs = [
+3 -3
pkgs/by-name/si/sioyek/package.nix
··· 15 }: 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "sioyek"; 18 - version = "2.0.0-unstable-2025-07-09"; 19 20 src = fetchFromGitHub { 21 owner = "ahrm"; 22 repo = "sioyek"; 23 - rev = "8d173d993738d78559da035cc051f2eb40df41e6"; 24 - hash = "sha256-ZjITJ26zV6QOZ8qLHUyKza6YZAPxzV5k3pOVyqRCoIE="; 25 }; 26 27 buildInputs = [
··· 15 }: 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "sioyek"; 18 + version = "2.0.0-unstable-2025-08-08"; 19 20 src = fetchFromGitHub { 21 owner = "ahrm"; 22 repo = "sioyek"; 23 + rev = "02f47e758e813eaefe713bdbb0eaa22a9467373c"; 24 + hash = "sha256-W/X63gpFd3mMS4B8yGLEd1JGLg+34WHF+aJJylDH1LY="; 25 }; 26 27 buildInputs = [
+3 -3
pkgs/by-name/st/stu/package.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "stu"; 11 - version = "0.7.3"; 12 13 src = fetchFromGitHub { 14 owner = "lusingander"; 15 repo = "stu"; 16 rev = "v${version}"; 17 - hash = "sha256-2vnyRTdRr6Y8YlwBSXqcOir5xdu5msPSU3EbsB0Ya34="; 18 }; 19 20 - cargoHash = "sha256-Us4rQYq+1Akq3i31sPBIC1Df0moicnHF0J5++M8tC2U="; 21 22 passthru.tests.version = testers.testVersion { package = stu; }; 23
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "stu"; 11 + version = "0.7.4"; 12 13 src = fetchFromGitHub { 14 owner = "lusingander"; 15 repo = "stu"; 16 rev = "v${version}"; 17 + hash = "sha256-To1x65UuYSdkjIghy0UOA70LULGZZcC5waxYh99qXbs="; 18 }; 19 20 + cargoHash = "sha256-YmEzjbGIvgpPlMJln42Q9m/v3HhfsjLMHvES/4S1928="; 21 22 passthru.tests.version = testers.testVersion { package = stu; }; 23
+11 -1
pkgs/by-name/su/sudo/package.nix
··· 8 groff, 9 sssd, 10 nixosTests, 11 sendmailPath ? "/run/wrappers/bin/sendmail", 12 withInsults ? false, 13 withSssd ? false, ··· 72 rm $out/share/doc/sudo/ChangeLog 73 ''; 74 75 - passthru.tests = { inherit (nixosTests) sudo; }; 76 77 meta = with lib; { 78 description = "Command to run commands as root";
··· 8 groff, 9 sssd, 10 nixosTests, 11 + genericUpdater, 12 + writeShellScript, 13 + curl, 14 sendmailPath ? "/run/wrappers/bin/sendmail", 15 withInsults ? false, 16 withSssd ? false, ··· 75 rm $out/share/doc/sudo/ChangeLog 76 ''; 77 78 + passthru = { 79 + tests = { inherit (nixosTests) sudo; }; 80 + updateScript = genericUpdater { 81 + versionLister = writeShellScript "sudo-versionLister" '' 82 + ${lib.getExe curl} -sL https://www.sudo.ws/dist | grep -Po 'href="sudo-\K[\w.]*(?=\.tar\.gz")' 83 + ''; 84 + }; 85 + }; 86 87 meta = with lib; { 88 description = "Command to run commands as root";
+3 -3
pkgs/by-name/sv/svd2rust/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "svd2rust"; 9 - version = "0.36.1"; 10 11 src = fetchCrate { 12 inherit pname version; 13 - hash = "sha256-+wVcUpSlJsd6GAZgBor7eAu6IYnlfJwzZDYKqUKpa9M="; 14 }; 15 16 - cargoHash = "sha256-rZusngSIwdDfNe7tIA2WtIzzje6UBxyz/hfeRLqJHUY="; 17 18 # error: linker `aarch64-linux-gnu-gcc` not found 19 postPatch = ''
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "svd2rust"; 9 + version = "0.37.0"; 10 11 src = fetchCrate { 12 inherit pname version; 13 + hash = "sha256-42Yz6BGmT5EcS3N5x6aHyvnfpnYqicje2rtPx3z+Bu0="; 14 }; 15 16 + cargoHash = "sha256-pSZrLhEZwbnbjiIHmU5bcpHOEcodgD1mVgO6oI7zTG4="; 17 18 # error: linker `aarch64-linux-gnu-gcc` not found 19 postPatch = ''
+2 -2
pkgs/by-name/sw/swaylock-plugin/package.nix
··· 23 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "swaylock-plugin"; 26 - version = "1.8.2"; 27 src = fetchFromGitHub { 28 owner = "mstoeckl"; 29 repo = "swaylock-plugin"; 30 rev = "v${finalAttrs.version}"; 31 - hash = "sha256-Wj5//yTZQMq6ummKSVsCJjSRcVHw2VgAhVbihXBm/qQ="; 32 }; 33 34 strictDeps = true;
··· 23 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "swaylock-plugin"; 26 + version = "1.8.3"; 27 src = fetchFromGitHub { 28 owner = "mstoeckl"; 29 repo = "swaylock-plugin"; 30 rev = "v${finalAttrs.version}"; 31 + hash = "sha256-j2MTmk2hS7yUFo/OMQpYxG03HxxTxpbzbnl6na3jjzY="; 32 }; 33 34 strictDeps = true;
+2 -2
pkgs/by-name/sy/syft/package.nix
··· 7 8 buildGoModule rec { 9 pname = "syft"; 10 - version = "1.30.0"; 11 12 src = fetchFromGitHub { 13 owner = "anchore"; 14 repo = "syft"; 15 tag = "v${version}"; 16 - hash = "sha256-7YnjkevF4Nmu8YDhpd/WqXzLM8cdVPDt5ss9bg8udow="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true;
··· 7 8 buildGoModule rec { 9 pname = "syft"; 10 + version = "1.31.0"; 11 12 src = fetchFromGitHub { 13 owner = "anchore"; 14 repo = "syft"; 15 tag = "v${version}"; 16 + hash = "sha256-B4jZfG0OIza/cfcjIO+Vg+Ap2hZQj+DYW5kFvXHY8ZA="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true;
+3 -3
pkgs/by-name/sy/symbolicator/package.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "symbolicator"; 13 - version = "25.7.0"; 14 15 src = fetchFromGitHub { 16 owner = "getsentry"; 17 repo = "symbolicator"; 18 rev = version; 19 - hash = "sha256-pLo28qtNDQig85GQh6Swo3XUqsSM5XNBbZM5lj2mAbQ="; 20 fetchSubmodules = true; 21 }; 22 23 - cargoHash = "sha256-9oRPs3r63JMV0zugdoZLpfe2uToBVIPVMZ78I1+v60o="; 24 25 nativeBuildInputs = [ 26 pkg-config
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "symbolicator"; 13 + version = "25.8.0"; 14 15 src = fetchFromGitHub { 16 owner = "getsentry"; 17 repo = "symbolicator"; 18 rev = version; 19 + hash = "sha256-jvuy9AeZjiinZGjm4uKxG++VFaK2Uq0uzj6KJuTyey8="; 20 fetchSubmodules = true; 21 }; 22 23 + cargoHash = "sha256-fmAVO+AMpq/QuTYQo63QSpOzFjkRAHU+6cC1KeXZzQY="; 24 25 nativeBuildInputs = [ 26 pkg-config
+2 -2
pkgs/by-name/ta/tana/package.nix
··· 62 stdenv.cc.cc 63 stdenv.cc.libc 64 ]; 65 - version = "1.0.38"; 66 in 67 stdenv.mkDerivation { 68 pname = "tana"; ··· 70 71 src = fetchurl { 72 url = "https://github.com/tanainc/tana-desktop-releases/releases/download/v${version}/tana_${version}_amd64.deb"; 73 - hash = "sha256-40yhEOgIfb2PalrNYn10QMW5oHsxJZwHRoal8//GDnk="; 74 }; 75 76 nativeBuildInputs = [
··· 62 stdenv.cc.cc 63 stdenv.cc.libc 64 ]; 65 + version = "1.0.39"; 66 in 67 stdenv.mkDerivation { 68 pname = "tana"; ··· 70 71 src = fetchurl { 72 url = "https://github.com/tanainc/tana-desktop-releases/releases/download/v${version}/tana_${version}_amd64.deb"; 73 + hash = "sha256-iMuDIy1/ZIsFAhQwzEYQa6Slj207qA2CwSeMgJosIDs="; 74 }; 75 76 nativeBuildInputs = [
+3 -3
pkgs/by-name/te/termius/package.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "termius"; 19 - version = "9.26.0"; 20 - revision = "232"; 21 22 src = fetchurl { 23 # find the latest version with ··· 27 # and the sha512 with 28 # curl -H 'X-Ubuntu-Series: 16' https://api.snapcraft.io/api/v1/snaps/details/termius-app | jq '.download_sha512' -r 29 url = "https://api.snapcraft.io/api/v1/snaps/download/WkTBXwoX81rBe3s3OTt3EiiLKBx2QhuS_${revision}.snap"; 30 - hash = "sha512-PBwZS1CcvGFfodM3bqM/YWDJxoF/thZvTWIIPQI1ShjVWbvJUq29J/xeaNyncgQCfowgR8xWIOVpmAjCjjyQ0A=="; 31 }; 32 33 desktopItem = makeDesktopItem {
··· 16 17 stdenv.mkDerivation rec { 18 pname = "termius"; 19 + version = "9.28.0"; 20 + revision = "234"; 21 22 src = fetchurl { 23 # find the latest version with ··· 27 # and the sha512 with 28 # curl -H 'X-Ubuntu-Series: 16' https://api.snapcraft.io/api/v1/snaps/details/termius-app | jq '.download_sha512' -r 29 url = "https://api.snapcraft.io/api/v1/snaps/download/WkTBXwoX81rBe3s3OTt3EiiLKBx2QhuS_${revision}.snap"; 30 + hash = "sha512-2zGt4nL8E99s4J9vmzKoOGgEI3XnEx3m7JwFkWuT5wYv/JWoJWnh9dNWlHzRHPpLU8/lAZUG2F4AVYCmPGa96A=="; 31 }; 32 33 desktopItem = makeDesktopItem {
+2 -2
pkgs/by-name/te/texturepacker/package.nix
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "texturepacker"; 12 - version = "7.8.0"; 13 14 src = fetchurl { 15 url = "https://www.codeandweb.com/download/texturepacker/${finalAttrs.version}/TexturePacker-${finalAttrs.version}.deb"; 16 - hash = "sha256-r1oK5VgUZrdPDOM/8LDSgq5KVmahVVJQ9QXGPK6RkcY="; 17 }; 18 19 nativeBuildInputs = [
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "texturepacker"; 12 + version = "7.9.0"; 13 14 src = fetchurl { 15 url = "https://www.codeandweb.com/download/texturepacker/${finalAttrs.version}/TexturePacker-${finalAttrs.version}.deb"; 16 + hash = "sha256-o613XN8/ypmOEWyDjIQeF6JQsZK5gyDsgmYwd9siU1k="; 17 }; 18 19 nativeBuildInputs = [
+2 -2
pkgs/by-name/ti/timescaledb-tune/package.nix
··· 6 7 buildGoModule rec { 8 pname = "timescaledb-tune"; 9 - version = "0.18.0"; 10 11 src = fetchFromGitHub { 12 owner = "timescale"; 13 repo = "timescaledb-tune"; 14 rev = "v${version}"; 15 - sha256 = "sha256-SW+JCH+oxAHAmgPO7XmSVFFug7NOvslblMViG+oooAo="; 16 }; 17 18 vendorHash = "sha256-7u3eceVDnzjhGguijJXbm40qyCPO/Q101Zr5vEcGEqs=";
··· 6 7 buildGoModule rec { 8 pname = "timescaledb-tune"; 9 + version = "0.18.1"; 10 11 src = fetchFromGitHub { 12 owner = "timescale"; 13 repo = "timescaledb-tune"; 14 rev = "v${version}"; 15 + sha256 = "sha256-SC91yO3P2Q2QachSfAAzz7ldcnZedZfcnVXHcFXNrIk="; 16 }; 17 18 vendorHash = "sha256-7u3eceVDnzjhGguijJXbm40qyCPO/Q101Zr5vEcGEqs=";
+3 -3
pkgs/by-name/ts/ts_query_ls/package.nix
··· 6 }: 7 let 8 pname = "ts_query_ls"; 9 - version = "3.10.0"; 10 in 11 rustPlatform.buildRustPackage { 12 inherit pname version; ··· 15 owner = "ribru17"; 16 repo = "ts_query_ls"; 17 rev = "v${version}"; 18 - hash = "sha256-D8coYFkPOCt7eGeb/Qo4GLqtJNF7kn3gOjF3nUT4+H4="; 19 }; 20 21 nativeBuildInputs = [ cmake ]; 22 23 - cargoHash = "sha256-/HcvW0TIDrzgLUVt7yqy4cZ537rNVWP/qUBphWwyde8="; 24 25 meta = { 26 description = "LSP implementation for Tree-sitter's query files";
··· 6 }: 7 let 8 pname = "ts_query_ls"; 9 + version = "3.11.0"; 10 in 11 rustPlatform.buildRustPackage { 12 inherit pname version; ··· 15 owner = "ribru17"; 16 repo = "ts_query_ls"; 17 rev = "v${version}"; 18 + hash = "sha256-zRUZ+ohZa5pUNJiqNLY1VKEmeRsJyNRyjhzpECsYfZg="; 19 }; 20 21 nativeBuildInputs = [ cmake ]; 22 23 + cargoHash = "sha256-gjgoj5EKDPcyPkOnuG8ThhjxF3GiQ8FzhOrqXneqA+E="; 24 25 meta = { 26 description = "LSP implementation for Tree-sitter's query files";
+2 -2
pkgs/by-name/v2/v2ray-domain-list-community/package.nix
··· 9 let 10 generator = pkgsBuildBuild.buildGoModule rec { 11 pname = "v2ray-domain-list-community"; 12 - version = "20250627153051"; 13 src = fetchFromGitHub { 14 owner = "v2fly"; 15 repo = "domain-list-community"; 16 rev = version; 17 - hash = "sha256-KQiWWBdiD/lECfiaczlzAJ9chtKEdg2kHi8/SHtzdQQ="; 18 }; 19 vendorHash = "sha256-NLh14rXRci4hgDkBJVJDIDvobndB7KYRKAX7UjyqSsg="; 20 meta = with lib; {
··· 9 let 10 generator = pkgsBuildBuild.buildGoModule rec { 11 pname = "v2ray-domain-list-community"; 12 + version = "20250814002625"; 13 src = fetchFromGitHub { 14 owner = "v2fly"; 15 repo = "domain-list-community"; 16 rev = version; 17 + hash = "sha256-HNnwVnZFcvwAzrfEuZCG1SQlnIlUeb7o2Yis8X8MaF0="; 18 }; 19 vendorHash = "sha256-NLh14rXRci4hgDkBJVJDIDvobndB7KYRKAX7UjyqSsg="; 20 meta = with lib; {
+16 -9
pkgs/by-name/vi/victorialogs/package.nix
··· 4 fetchFromGitHub, 5 nix-update-script, 6 nixosTests, 7 }: 8 9 buildGoModule (finalAttrs: { ··· 19 20 vendorHash = null; 21 22 - subPackages = [ 23 - "app/victoria-logs" 24 - "app/vlinsert" 25 - "app/vlselect" 26 - "app/vlstorage" 27 - "app/vlogsgenerator" 28 - "app/vlogscli" 29 - ]; 30 31 ldflags = [ 32 "-s" ··· 49 homepage = "https://docs.victoriametrics.com/victorialogs/"; 50 description = "User friendly log database from VictoriaMetrics"; 51 license = lib.licenses.asl20; 52 - maintainers = with lib.maintainers; [ marie ]; 53 changelog = "https://github.com/VictoriaMetrics/VictoriaLogs/releases/tag/${finalAttrs.src.tag}"; 54 mainProgram = "victoria-logs"; 55 };
··· 4 fetchFromGitHub, 5 nix-update-script, 6 nixosTests, 7 + withServer ? true, 8 + withVlAgent ? false, 9 }: 10 11 buildGoModule (finalAttrs: { ··· 21 22 vendorHash = null; 23 24 + subPackages = 25 + lib.optionals withServer [ 26 + "app/victoria-logs" 27 + "app/vlinsert" 28 + "app/vlselect" 29 + "app/vlstorage" 30 + "app/vlogsgenerator" 31 + "app/vlogscli" 32 + ] 33 + ++ lib.optionals withVlAgent [ "app/vlagent" ]; 34 35 ldflags = [ 36 "-s" ··· 53 homepage = "https://docs.victoriametrics.com/victorialogs/"; 54 description = "User friendly log database from VictoriaMetrics"; 55 license = lib.licenses.asl20; 56 + maintainers = with lib.maintainers; [ 57 + marie 58 + shawn8901 59 + ]; 60 changelog = "https://github.com/VictoriaMetrics/VictoriaLogs/releases/tag/${finalAttrs.src.tag}"; 61 mainProgram = "victoria-logs"; 62 };
+11
pkgs/by-name/vl/vlagent/package.nix
···
··· 1 + { lib, victorialogs }: 2 + 3 + # This package is build out of the victorialogs package. 4 + # so no separate update prs are needed for vlagent 5 + # nixpkgs-update: no auto update 6 + lib.addMetaAttrs { mainProgram = "vlagent"; } ( 7 + victorialogs.override { 8 + withServer = false; 9 + withVlAgent = true; 10 + } 11 + )
+8 -4
pkgs/by-name/wm/wmutils-opt/package.nix
··· 3 stdenv, 4 fetchFromGitHub, 5 libxcb, 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "wmutils-opt"; 10 - version = "1.0"; 11 12 src = fetchFromGitHub { 13 owner = "wmutils"; 14 repo = "opt"; 15 - rev = "v${version}"; 16 - sha256 = "0gd05qsir1lnzfrbnfh08qwsryz7arwj20f886nqh41m87yqaljz"; 17 }; 18 19 - buildInputs = [ libxcb ]; 20 21 installFlags = [ "PREFIX=$(out)" ]; 22
··· 3 stdenv, 4 fetchFromGitHub, 5 libxcb, 6 + xorg, 7 }: 8 9 stdenv.mkDerivation rec { 10 pname = "wmutils-opt"; 11 + version = "1.0-unstable-2024-09-09"; 12 13 src = fetchFromGitHub { 14 owner = "wmutils"; 15 repo = "opt"; 16 + rev = "77124e003246fce8027452d3ceb440893b18d374"; 17 + sha256 = "sha256-hRxuV4xBvgFLO1Mts4rSq3Z+hedr0ldf/JgUltywH+Y="; 18 }; 19 20 + buildInputs = [ 21 + libxcb 22 + xorg.xcbutil 23 + ]; 24 25 installFlags = [ "PREFIX=$(out)" ]; 26
+2 -2
pkgs/development/ocaml-modules/ca-certs-nss/default.nix
··· 14 15 buildDunePackage rec { 16 pname = "ca-certs-nss"; 17 - version = "3.114"; 18 19 minimalOCamlVersion = "4.13"; 20 21 src = fetchurl { 22 url = "https://github.com/mirage/ca-certs-nss/releases/download/v${version}/ca-certs-nss-${version}.tbz"; 23 - hash = "sha256-FvoT5uEZDFlUJcgg+0vjylSYd/HPXbaQ/oXaFRUveSo="; 24 }; 25 26 propagatedBuildInputs = [
··· 14 15 buildDunePackage rec { 16 pname = "ca-certs-nss"; 17 + version = "3.115"; 18 19 minimalOCamlVersion = "4.13"; 20 21 src = fetchurl { 22 url = "https://github.com/mirage/ca-certs-nss/releases/download/v${version}/ca-certs-nss-${version}.tbz"; 23 + hash = "sha256-cjjvrekr6i7aEj0Ne/+Jhgdi7lf89xh07FlHuS5nOA8="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aiounifi/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "aiounifi"; 20 - version = "85"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.11"; ··· 26 owner = "Kane610"; 27 repo = "aiounifi"; 28 tag = "v${version}"; 29 - hash = "sha256-Uc+eetvVBArCwVrKeQQquBN2SOGehlxyfTG5p35vCr0="; 30 }; 31 32 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "aiounifi"; 20 + version = "86"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.11"; ··· 26 owner = "Kane610"; 27 repo = "aiounifi"; 28 tag = "v${version}"; 29 + hash = "sha256-9SnNWJNfG0Z+XkZtth6yDRnPf0OiAHmiyTI0WQN+2SY="; 30 }; 31 32 postPatch = ''
+2 -2
pkgs/development/python-modules/ansible-compat/default.nix
··· 23 24 buildPythonPackage rec { 25 pname = "ansible-compat"; 26 - version = "25.8.0"; 27 pyproject = true; 28 29 src = fetchFromGitHub { 30 owner = "ansible"; 31 repo = "ansible-compat"; 32 tag = "v${version}"; 33 - hash = "sha256-h6zj7X560YMnc4mPoRtpzTGcFWh+u7sQ1bc9iswOGb4="; 34 }; 35 36 build-system = [
··· 23 24 buildPythonPackage rec { 25 pname = "ansible-compat"; 26 + version = "25.8.1"; 27 pyproject = true; 28 29 src = fetchFromGitHub { 30 owner = "ansible"; 31 repo = "ansible-compat"; 32 tag = "v${version}"; 33 + hash = "sha256-u1yBRhE4i30RAyFe5UtRPyVeOYRzec2VE2H5qmH3dGM="; 34 }; 35 36 build-system = [
+2 -2
pkgs/development/python-modules/docling-core/default.nix
··· 29 30 buildPythonPackage rec { 31 pname = "docling-core"; 32 - version = "2.44.1"; 33 pyproject = true; 34 35 src = fetchFromGitHub { 36 owner = "docling-project"; 37 repo = "docling-core"; 38 tag = "v${version}"; 39 - hash = "sha256-vZTQE8UACMdMPPvNM2FVu+Sq9uJByt443N3ScNXsjGc="; 40 }; 41 42 build-system = [
··· 29 30 buildPythonPackage rec { 31 pname = "docling-core"; 32 + version = "2.44.2"; 33 pyproject = true; 34 35 src = fetchFromGitHub { 36 owner = "docling-project"; 37 repo = "docling-core"; 38 tag = "v${version}"; 39 + hash = "sha256-CLPJYt3P6DUt0lQQOQ54vXPJcoi3Kyq7eZ6OwjGkmGk="; 40 }; 41 42 build-system = [
+3 -3
pkgs/development/python-modules/extract-msg/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "extract-msg"; 19 - version = "0.54.1"; 20 pyproject = true; 21 22 - disabled = pythonOlder "3.7"; 23 24 src = fetchFromGitHub { 25 owner = "TeamMsgExtractor"; 26 repo = "msg-extractor"; 27 tag = "v${version}"; 28 - hash = "sha256-ISrMt9dK/WfTp8YD3xSwOCsKAa13g+l6I1SZ5hySOSg="; 29 }; 30 31 pythonRelaxDeps = [
··· 16 17 buildPythonPackage rec { 18 pname = "extract-msg"; 19 + version = "0.55.0"; 20 pyproject = true; 21 22 + disabled = pythonOlder "3.8"; 23 24 src = fetchFromGitHub { 25 owner = "TeamMsgExtractor"; 26 repo = "msg-extractor"; 27 tag = "v${version}"; 28 + hash = "sha256-n/v3ubgzWlWqLXZfy1O7+FvTJoLMtgL7DFPL39SZnfM="; 29 }; 30 31 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/getjump/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "getjump"; 16 - version = "2.7.3"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.9"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-B0d8a5IcU545zzw+7UzDtm3ACv2hDI4MBOHRPCi1MNQ="; 24 }; 25 26 pythonRelaxDeps = [
··· 13 14 buildPythonPackage rec { 15 pname = "getjump"; 16 + version = "2.8.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.9"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-FfAwPCbj+0wL+Lgk17peco/ogrsaa6Js+Ay5fqgPUPw="; 24 }; 25 26 pythonRelaxDeps = [
+3 -3
pkgs/development/python-modules/icalevents/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "icalevents"; 17 - version = "0.2.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.9"; ··· 22 src = fetchFromGitHub { 23 owner = "jazzband"; 24 repo = "icalevents"; 25 - tag = "v${version}"; 26 - hash = "sha256-X3FawNMKr419IJcBQZyDC+7bu4vcHOm8hLhVde1r50o="; 27 }; 28 29 build-system = [
··· 14 15 buildPythonPackage rec { 16 pname = "icalevents"; 17 + version = "0.3.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.9"; ··· 22 src = fetchFromGitHub { 23 owner = "jazzband"; 24 repo = "icalevents"; 25 + tag = version; 26 + hash = "sha256-PHx83oHhKdKxvO+mBc5tLonAxn1zJUQL3+u+1BRhxvA="; 27 }; 28 29 build-system = [
+2 -2
pkgs/development/python-modules/langgraph-runtime-inmem/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "langgraph-runtime-inmem"; 16 - version = "0.6.10"; 17 pyproject = true; 18 19 # Not available in any repository 20 src = fetchPypi { 21 pname = "langgraph_runtime_inmem"; 22 inherit version; 23 - hash = "sha256-wwd6Ru1xMMO95cOyzB7qjMvSWWIjH2mjSQlt92JHyLk="; 24 }; 25 26 build-system = [
··· 13 14 buildPythonPackage rec { 15 pname = "langgraph-runtime-inmem"; 16 + version = "0.6.13"; 17 pyproject = true; 18 19 # Not available in any repository 20 src = fetchPypi { 21 pname = "langgraph_runtime_inmem"; 22 inherit version; 23 + hash = "sha256-F1bFV/g6jNl575fT0KNvqZBmbmMFkhLG4RrylXuZNQs="; 24 }; 25 26 build-system = [
+2 -2
pkgs/development/python-modules/llama-cloud-services/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "llama-cloud-services"; 20 - version = "0.6.54"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "run-llama"; 25 repo = "llama_cloud_services"; 26 tag = "v${version}"; 27 - hash = "sha256-bTJkpMWuQzlsooOXUBNhMvPgYH0h4NvA8uOW6Mg6q8s="; 28 }; 29 30 sourceRoot = "${src.name}/py";
··· 17 18 buildPythonPackage rec { 19 pname = "llama-cloud-services"; 20 + version = "0.6.60"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "run-llama"; 25 repo = "llama_cloud_services"; 26 tag = "v${version}"; 27 + hash = "sha256-ZXuIPxZzB50c25kfLNO67jv4dKwjI8Pbd6Ql6JoXCxc="; 28 }; 29 30 sourceRoot = "${src.name}/py";
+2 -2
pkgs/development/python-modules/model-checker/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "model-checker"; 14 - version = "0.9.36"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 19 src = fetchPypi { 20 pname = "model_checker"; 21 inherit version; 22 - hash = "sha256-FYn8sncKHZqZvI71RUmYOChC/fXzGdaN7GsomZl7AA8="; 23 }; 24 25 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
··· 11 12 buildPythonPackage rec { 13 pname = "model-checker"; 14 + version = "1.0.0"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 19 src = fetchPypi { 20 pname = "model_checker"; 21 inherit version; 22 + hash = "sha256-RnEkYdQP2VGYNpcQuwJoC1QenppJj+lFtHiPIUNfRnY="; 23 }; 24 25 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
+2 -2
pkgs/development/python-modules/mypy-boto3/default.nix
··· 62 "sha256-GZMeU5qLmE7eM6zSuS3e63ytY8C1jlnjUVkJmAiAoCo="; 63 64 mypy-boto3-amp = 65 - buildMypyBoto3Package "amp" "1.40.0" 66 - "sha256-JM/pV41mxJqdIYWzaHdAO1DtXjvQD1pzG2nU10+2IUs="; 67 68 mypy-boto3-amplify = 69 buildMypyBoto3Package "amplify" "1.40.0"
··· 62 "sha256-GZMeU5qLmE7eM6zSuS3e63ytY8C1jlnjUVkJmAiAoCo="; 63 64 mypy-boto3-amp = 65 + buildMypyBoto3Package "amp" "1.40.11" 66 + "sha256-epQRGT9uJ5nBS1LWnEjXDKoMPVmw0zJmmqIptlphtr8="; 67 68 mypy-boto3-amplify = 69 buildMypyBoto3Package "amplify" "1.40.0"
+2 -2
pkgs/development/python-modules/paddlex/default.nix
··· 51 in 52 buildPythonPackage rec { 53 pname = "paddlex"; 54 - version = "3.1.3"; 55 pyproject = true; 56 57 src = fetchFromGitHub { 58 owner = "PaddlePaddle"; 59 repo = "PaddleX"; 60 tag = "v${version}"; 61 - hash = "sha256-sNnaTB7wJFXVXnc7I1XufAWdTXHr1is3JdXdh6Ssc+s="; 62 }; 63 64 build-system = [ setuptools ];
··· 51 in 52 buildPythonPackage rec { 53 pname = "paddlex"; 54 + version = "3.1.4"; 55 pyproject = true; 56 57 src = fetchFromGitHub { 58 owner = "PaddlePaddle"; 59 repo = "PaddleX"; 60 tag = "v${version}"; 61 + hash = "sha256-Oc8fgAv8T/9PjxW8yU31t3m3CUxFuAXdVS71BGhtlJo="; 62 }; 63 64 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/ping3/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "ping3"; 11 - version = "5.1.3"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-UTD12FxxRnTlRMGo5TwIo+fsM3Ka1zEMWYjM4BAH0t8="; 19 }; 20 21 build-system = [ setuptools ];
··· 8 9 buildPythonPackage rec { 10 pname = "ping3"; 11 + version = "5.1.5"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-bJm8hE4Lfbxcl2XotTAUDa8czSESyZ2wGreYMb2Agc0="; 19 }; 20 21 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pontos/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "pontos"; 22 - version = "25.7.2"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.9"; ··· 28 owner = "greenbone"; 29 repo = "pontos"; 30 tag = "v${version}"; 31 - hash = "sha256-WLU/FYiaVCbm/dlsI6aIGOV3EjW+Ijtq90JX2tePyT0="; 32 }; 33 34 build-system = [ poetry-core ];
··· 19 20 buildPythonPackage rec { 21 pname = "pontos"; 22 + version = "25.8.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.9"; ··· 28 owner = "greenbone"; 29 repo = "pontos"; 30 tag = "v${version}"; 31 + hash = "sha256-47YlSTw7dGsNE1OntjdXdn4jAO4IUhLHMdeBVWkpadg="; 32 }; 33 34 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "publicsuffixlist"; 14 - version = "1.0.2.20250812"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-y8C5Lg50epkcGR3wnSHhircKwGeY53fcommtEuLfUUM="; 22 }; 23 24 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "publicsuffixlist"; 14 + version = "1.0.2.20250815"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-N08LlCOmZvkBbIPUh80QY/NM5wxS4FefKnFF4XvlH0k="; 22 }; 23 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyenphase/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "pyenphase"; 25 - version = "2.3.0"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.11"; ··· 31 owner = "pyenphase"; 32 repo = "pyenphase"; 33 tag = "v${version}"; 34 - hash = "sha256-av4W8yIzOxTeOlwUDkeTzJn2hDE11TqRY4dIm4u+DXE="; 35 }; 36 37 pythonRelaxDeps = [ "tenacity" ];
··· 22 23 buildPythonPackage rec { 24 pname = "pyenphase"; 25 + version = "2.3.1"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.11"; ··· 31 owner = "pyenphase"; 32 repo = "pyenphase"; 33 tag = "v${version}"; 34 + hash = "sha256-Z6txaTkIkUTYWVWbsmvoI/huDTZKX5DxePqM5rsmIWY="; 35 }; 36 37 pythonRelaxDeps = [ "tenacity" ];
+1 -1
pkgs/development/python-modules/pyngrok/default.nix
··· 12 version = "7.3.0"; 13 pyproject = true; 14 15 - disabled = pythonOlder "3.8"; 16 17 src = fetchPypi { 18 inherit pname version;
··· 12 version = "7.3.0"; 13 pyproject = true; 14 15 + disabled = pythonOlder "3.9"; 16 17 src = fetchPypi { 18 inherit pname version;
+2 -2
pkgs/development/python-modules/pyvista/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "pyvista"; 18 - version = "0.46.0"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "pyvista"; 23 repo = "pyvista"; 24 tag = "v${version}"; 25 - hash = "sha256-w9e3a05yXpjglOxGR98PUJ0ymX+2TAR7heCe59HjTWs="; 26 }; 27 28 # remove this line once pyvista 0.46 is released
··· 15 16 buildPythonPackage rec { 17 pname = "pyvista"; 18 + version = "0.46.1"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "pyvista"; 23 repo = "pyvista"; 24 tag = "v${version}"; 25 + hash = "sha256-o/g2cvSCLwKigHxMinS1WeVLj6Z6RGM3F/3kWURTJks="; 26 }; 27 28 # remove this line once pyvista 0.46 is released
+2 -2
pkgs/development/python-modules/sagemaker-core/default.nix
··· 28 29 buildPythonPackage rec { 30 pname = "sagemaker-core"; 31 - version = "1.0.49"; 32 pyproject = true; 33 34 src = fetchFromGitHub { 35 owner = "aws"; 36 repo = "sagemaker-core"; 37 tag = "v${version}"; 38 - hash = "sha256-xDtBtsrromqfciVOxGTTWhTZG08qUjk9EJ9yMvYS7+Y="; 39 }; 40 41 build-system = [
··· 28 29 buildPythonPackage rec { 30 pname = "sagemaker-core"; 31 + version = "1.0.52"; 32 pyproject = true; 33 34 src = fetchFromGitHub { 35 owner = "aws"; 36 repo = "sagemaker-core"; 37 tag = "v${version}"; 38 + hash = "sha256-f+Xy9/14cJhbjqrSqR+Bh98uNUCb0XlDdaTPkPAomlA="; 39 }; 40 41 build-system = [
+9
pkgs/development/python-modules/shtab/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pytest-timeout, 6 pytestCheckHook, 7 pytest-cov-stub, ··· 24 tag = "v${version}"; 25 hash = "sha256-ngTAST+6lBek0PHvULmlJZAHVU49YN5+XAu5KEk6cIM="; 26 }; 27 28 nativeBuildInputs = [ 29 setuptools
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + fetchpatch2, 6 pytest-timeout, 7 pytestCheckHook, 8 pytest-cov-stub, ··· 25 tag = "v${version}"; 26 hash = "sha256-ngTAST+6lBek0PHvULmlJZAHVU49YN5+XAu5KEk6cIM="; 27 }; 28 + 29 + patches = [ 30 + # Fix bash error on optional nargs="?" (iterative/shtab#184) 31 + (fetchpatch2 { 32 + url = "https://github.com/iterative/shtab/commit/a04ddf92896f7e206c9b19d48dcc532765364c59.patch?full_index=1"; 33 + hash = "sha256-H4v81xQLI9Y9R5OyDPJevCLh4gIUaiJKHVEU/eWdNbA="; 34 + }) 35 + ]; 36 37 nativeBuildInputs = [ 38 setuptools
+2 -2
pkgs/development/python-modules/sklearn-compat/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "sklearn-compat"; 16 - version = "0.1.3"; 17 pyproject = true; 18 19 src = fetchFromGitHub { 20 owner = "sklearn-compat"; 21 repo = "sklearn-compat"; 22 tag = version; 23 - hash = "sha256-9Py5VKDej7xDMdWVujkS/ooxOkEcjPJNlBHkbe/rycE="; 24 }; 25 26 build-system = [
··· 13 14 buildPythonPackage rec { 15 pname = "sklearn-compat"; 16 + version = "0.1.4"; 17 pyproject = true; 18 19 src = fetchFromGitHub { 20 owner = "sklearn-compat"; 21 repo = "sklearn-compat"; 22 tag = version; 23 + hash = "sha256-HTVEmvoXzhcmrJUs5nOXuENORmpc522bCW1rOlMAgxA="; 24 }; 25 26 build-system = [
+2 -2
pkgs/development/python-modules/types-aiobotocore/default.nix
··· 364 365 buildPythonPackage rec { 366 pname = "types-aiobotocore"; 367 - version = "2.23.2"; 368 pyproject = true; 369 370 src = fetchPypi { 371 pname = "types_aiobotocore"; 372 inherit version; 373 - hash = "sha256-/XZpp1JlOhPGYWgw/nCv6cJoT2a9FKXqC4DB3gpbQAU="; 374 }; 375 376 build-system = [ setuptools ];
··· 364 365 buildPythonPackage rec { 366 pname = "types-aiobotocore"; 367 + version = "2.24.1"; 368 pyproject = true; 369 370 src = fetchPypi { 371 pname = "types_aiobotocore"; 372 inherit version; 373 + hash = "sha256-gq1YqgW819qazbzB9Y+xtCC4F6Xq26bljzCkGqFMXeg="; 374 }; 375 376 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/types-mock/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "types-mock"; 10 - version = "5.2.0.20250516"; 11 pyproject = true; 12 13 src = fetchPypi { 14 pname = "types_mock"; 15 inherit version; 16 - hash = "sha256-qrfT2a04FPL42hLMjkLZvn04IAxfIU48AnjDj6ASmdc="; 17 }; 18 19 build-system = [ setuptools ];
··· 7 8 buildPythonPackage rec { 9 pname = "types-mock"; 10 + version = "5.2.0.20250809"; 11 pyproject = true; 12 13 src = fetchPypi { 14 pname = "types_mock"; 15 inherit version; 16 + hash = "sha256-lUjrwvuzhZ8HZcghXwsGOJeliliTD5VGeoFKnJ3naxY="; 17 }; 18 19 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/types-psycopg2/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "types-psycopg2"; 10 - version = "2.9.21.20250718"; 11 pyproject = true; 12 13 src = fetchPypi { 14 pname = "types_psycopg2"; 15 inherit version; 16 - hash = "sha256-3AmpcnLvZ+c55XufR0C3YSCPRRQlfjEcCwXIx6N9BLQ="; 17 }; 18 19 build-system = [ setuptools ];
··· 7 8 buildPythonPackage rec { 9 pname = "types-psycopg2"; 10 + version = "2.9.21.20250809"; 11 pyproject = true; 12 13 src = fetchPypi { 14 pname = "types_psycopg2"; 15 inherit version; 16 + hash = "sha256-t8LL3PfAvRYkD1m6aUNHMpsEY+QzmN5peE6k3uRfPG0="; 17 }; 18 19 build-system = [ setuptools ];
+26
pkgs/servers/home-assistant/tests.nix
··· 60 # outdated snapshot 61 "tests/components/backup/test_sensors.py::test_sensors" 62 ]; 63 bmw_connected_drive = [ 64 # outdated snapshot 65 "tests/components/bmw_connected_drive/test_binary_sensor.py::test_entity_state_attrs" ··· 77 matter = [ 78 # outdated snapshot in eve_weather_sensor variant 79 "tests/components/matter/test_number.py::test_numbers" 80 ]; 81 modem_callerid = [ 82 # aioserial mock produces wrong state 83 "tests/components/modem_callerid/test_init.py::test_setup_entry" 84 ]; 85 openai_conversation = [ 86 # outdated snapshot 87 "tests/components/openai_conversation/test_conversation.py::test_function_call" 88 ]; 89 overseerr = [ 90 # imports broken future module
··· 60 # outdated snapshot 61 "tests/components/backup/test_sensors.py::test_sensors" 62 ]; 63 + bosch_alarm = [ 64 + # outdated snapshots 65 + "tests/components/bosch_alarm/test_binary_sensor.py::test_binary_sensor[None-solution_3000]" 66 + "tests/components/bosch_alarm/test_binary_sensor.py::test_binary_sensor[None-amax_3000]" 67 + "tests/components/bosch_alarm/test_binary_sensor.py::test_binary_sensor[None-b5512]" 68 + ]; 69 bmw_connected_drive = [ 70 # outdated snapshot 71 "tests/components/bmw_connected_drive/test_binary_sensor.py::test_entity_state_attrs" ··· 83 matter = [ 84 # outdated snapshot in eve_weather_sensor variant 85 "tests/components/matter/test_number.py::test_numbers" 86 + ]; 87 + minecraft_server = [ 88 + # FileNotFoundError: [Errno 2] No such file or directory: '/etc/resolv.conf' 89 + "tests/components/minecraft_server/test_binary_sensor.py" 90 + "tests/components/minecraft_server/test_diagnostics.py" 91 + "tests/components/minecraft_server/test_init.py" 92 + "tests/components/minecraft_server/test_sensor.py" 93 ]; 94 modem_callerid = [ 95 # aioserial mock produces wrong state 96 "tests/components/modem_callerid/test_init.py::test_setup_entry" 97 ]; 98 + nzbget = [ 99 + # type assertion fails due to introduction of parameterized type 100 + "tests/components/nzbget/test_config_flow.py::test_user_form" 101 + "tests/components/nzbget/test_config_flow.py::test_user_form_show_advanced_options" 102 + "tests/components/nzbget/test_config_flow.py::test_user_form_cannot_connect" 103 + "tests/components/nzbget/test_init.py::test_async_setup_raises_entry_not_ready" 104 + ]; 105 openai_conversation = [ 106 # outdated snapshot 107 "tests/components/openai_conversation/test_conversation.py::test_function_call" 108 + # Pydantic validation error 109 + "tests/components/openai_conversation/test_conversation.py" 110 + "tests/components/openai_conversation/test_ai_task.py" 111 + # TypeError: object ImagesResponse can't be used in 'await' expression 112 + "tests/components/openai_conversation/test_init.py::test_generate_image_service" 113 + "tests/components/openai_conversation/test_init.py::test_generate_image_service_error" 114 ]; 115 overseerr = [ 116 # imports broken future module
+57 -57
pkgs/tools/admin/pulumi-bin/data.nix
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 - version = "3.189.0"; 5 pulumiPkgs = { 6 x86_64-linux = [ 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-linux-x64.tar.gz"; 9 - sha256 = "0pr5f3c4hzlvv3ypzkby61ry57r8iagmsiw69s3vsrg7nf3mmpnh"; 10 } 11 { 12 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-amd64.tar.gz"; 13 - sha256 = "1327h0js161icvw86977nw4xksgvw0bazzpm99zhja6ynzv4jr4w"; 14 } 15 { 16 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-linux-amd64.tar.gz"; ··· 33 sha256 = "19y7n0lj610wzwylic9d89qpfachyf1qyqwnzjykchiqkq222yrw"; 34 } 35 { 36 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-amd64.tar.gz"; 37 sha256 = "0ivwl6j8ws22lhw4w94450pbri6lvxg3san1hy3bs2gdhp4p7xcz"; 38 } ··· 41 sha256 = "1wn62hc40zvzr6lh81ha0668y89kfdy67nmc6vpb4jwbr5s8zdvi"; 42 } 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-linux-amd64.tar.gz"; 45 - sha256 = "1nh5w1ay2bf3prnp4bld5d2gidqd6b9iv9dqhlmw23flx5qjlf2y"; 46 - } 47 - { 48 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-linux-amd64.tar.gz"; 49 - sha256 = "18dci5nnsx8daih6w4hcaqw7ixdcx92c298y74z3vlsq0fsbigxn"; 50 } 51 { 52 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-linux-amd64.tar.gz"; 53 sha256 = "17gpdyk3lb6js6b5x7dhzppzk1xab7rp7kcapmxjpjvmfbcgqbbj"; 54 } 55 { 56 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.52.0-linux-amd64.tar.gz"; 57 - sha256 = "1vngpv6m5yg6hrb7ygwwk2vhhw9582clvf6ck5aa4m27sa99vcap"; 58 } 59 { 60 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.49.0-linux-amd64.tar.gz"; 61 - sha256 = "0k7d3shizdkwih0sh0c7ng8rvrgq3rngl5qd0bq2wacwsx35dl2a"; 62 } 63 { 64 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-linux-amd64.tar.gz"; ··· 163 ]; 164 x86_64-darwin = [ 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-darwin-x64.tar.gz"; 167 - sha256 = "10jiai24vcpqnaa7lm1sc21rsix4rgwqzpl2a9lyf4j18m1qlxcr"; 168 } 169 { 170 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-amd64.tar.gz"; 171 - sha256 = "1s7drrpw0yyj10ii9bpy74v7xdm93rdcrfm0h793wv8yvx562yaa"; 172 } 173 { 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-darwin-amd64.tar.gz"; ··· 191 sha256 = "0gn8nmh56viy9f9hii2kckj8j6x3900ydfqkyapwg5w0fgkph2ni"; 192 } 193 { 194 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-amd64.tar.gz"; 195 sha256 = "09rn3w7fxkzf2g9rapk52c92039dfrrgx914pkcafg74cs3920ik"; 196 } ··· 199 sha256 = "1dwn0xjr0p6rd2r5x59flscfg911xaahp3bvhbkrz8pgkkg6ygcz"; 200 } 201 { 202 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-darwin-amd64.tar.gz"; 203 - sha256 = "10vggqap983dl2l8xps2qm9d4l32slc014y1g6cqc5qiq3zlwhr4"; 204 - } 205 - { 206 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-darwin-amd64.tar.gz"; 207 - sha256 = "0xv7wbg7nl91ms6kldkw348kgsszv32bc0l3ch346lx48whr0jph"; 208 } 209 { 210 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-darwin-amd64.tar.gz"; 211 sha256 = "0yxaq32jr8y8da3b252fkwh9lhb4jah96zryzqprlgh0jxa4nbcl"; 212 } 213 { 214 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.52.0-darwin-amd64.tar.gz"; 215 - sha256 = "1rvrfdsy5vsq9sphmszzvkcilfzf9h85np3r8d5daibmk47h16gb"; 216 } 217 { 218 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.49.0-darwin-amd64.tar.gz"; 219 - sha256 = "1vlzcg728gwi6x1w26ibljkfr7lwdjr5qzij1kqsgnd87avkklv7"; 220 } 221 { 222 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-darwin-amd64.tar.gz"; ··· 321 ]; 322 aarch64-linux = [ 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-linux-arm64.tar.gz"; 325 - sha256 = "18f94fykgfrlxiq7xa2ai601a51xifdydnamnki4ziix4h1vpicl"; 326 } 327 { 328 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-arm64.tar.gz"; 329 - sha256 = "0rwp550hfpvvnwnfpb14db4h7vdg41pvzizjj0dyygq08rrm0h2m"; 330 } 331 { 332 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-linux-arm64.tar.gz"; ··· 349 sha256 = "0xbh82z6f9vnn3ym9mf9nmpm2ldcybz8i66x6s3ji6964sggvrnj"; 350 } 351 { 352 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-arm64.tar.gz"; 353 sha256 = "0gvqc91xd2sk2w5zmvy11m5a92kgry43sajvnlwd8hx04byhlw2s"; 354 } ··· 357 sha256 = "0bqqng9mpv7k6npdq01w058ram5zmfvand39s075hh73xc6hp5c5"; 358 } 359 { 360 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-linux-arm64.tar.gz"; 361 - sha256 = "1715fxw8y7sknyfwwnpbgjfrjkin70iknpqpafimkzg2n9n3xjbc"; 362 - } 363 - { 364 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-linux-arm64.tar.gz"; 365 - sha256 = "16n4xbwdr6ibn1qz3220n1w26rd5z0zkqbmpggcxhz0vpmpr6npx"; 366 } 367 { 368 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-linux-arm64.tar.gz"; 369 sha256 = "1hybm4d3hcp977j0wb4bwl5ndl72cix7b2arw755xd7qw6xxvyrk"; 370 } 371 { 372 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.52.0-linux-arm64.tar.gz"; 373 - sha256 = "03x6lrbgkz03961k6f195cqwfd6fkkdf7l9r1a4lcbiifamvbgmm"; 374 } 375 { 376 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.49.0-linux-arm64.tar.gz"; 377 - sha256 = "0bdmgbw4xlzc34wm9xy9zqlaksgiw2ddc64crggjxshc8d6p9ys1"; 378 } 379 { 380 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-linux-arm64.tar.gz"; ··· 479 ]; 480 aarch64-darwin = [ 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-darwin-arm64.tar.gz"; 483 - sha256 = "10iql2iva0qzn4k3z5x0inhsrs3sxdcfxlylwsz9sjycxb3pzs35"; 484 } 485 { 486 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-arm64.tar.gz"; 487 - sha256 = "10yvzq9swqsyfky8h6nl5pqdsbfs2vq72jfnch15b2n9k1h6x42h"; 488 } 489 { 490 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-darwin-arm64.tar.gz"; ··· 507 sha256 = "0sdbcbx3nh3vm5gzhxdqiddjxdyl0x071n1a06qcjg7yvv4a47ah"; 508 } 509 { 510 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-arm64.tar.gz"; 511 sha256 = "0vp65ccimrzhbg3h7rq1p18rjwhb2b4s0y90wvan22nsvwnv5b0p"; 512 } ··· 515 sha256 = "1j3anypzdv3qicg5nagn6zckxr877f39kzazdi0slki9cpwnzkhi"; 516 } 517 { 518 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-darwin-arm64.tar.gz"; 519 - sha256 = "1ladpq9i6iyafsrm7wfgl35hfxfx0d769hh2894j0a7msfkj4cxj"; 520 - } 521 - { 522 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-darwin-arm64.tar.gz"; 523 - sha256 = "0cp9hzxzm161gf9kvza962wkf0x7vj7xlxfb6dap566lbvlzd2zy"; 524 } 525 { 526 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-darwin-arm64.tar.gz"; 527 sha256 = "1w1xhhrhw0l7442s88h5hs9qzm8k0ihm41mgzz2s3843gqpq9ay7"; 528 } 529 { 530 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.52.0-darwin-arm64.tar.gz"; 531 - sha256 = "1xwyi7aar8p6waa2xm45fkz9hnhyhn6mzlxqdj41nck9bsgly515"; 532 } 533 { 534 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.49.0-darwin-arm64.tar.gz"; 535 - sha256 = "1a38lxd2dxwk9a1cmg0wnn24dcckd3ak0fg0dm4zgvczn5w7hbmf"; 536 } 537 { 538 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-darwin-arm64.tar.gz";
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 + version = "3.190.0"; 5 pulumiPkgs = { 6 x86_64-linux = [ 7 { 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.190.0-linux-x64.tar.gz"; 9 + sha256 = "0l3vhn847dm9lvd21pcl254ad030ybann4fkrvl37x10znhabkd8"; 10 } 11 { 12 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.42.0-linux-amd64.tar.gz"; 13 + sha256 = "1ppijk93zazfhdfwxdg47xwfvc4s70mir8dpcll5a08xrjccjv9f"; 14 } 15 { 16 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-linux-amd64.tar.gz"; ··· 33 sha256 = "19y7n0lj610wzwylic9d89qpfachyf1qyqwnzjykchiqkq222yrw"; 34 } 35 { 36 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-linux-amd64.tar.gz"; 37 + sha256 = "1nh5w1ay2bf3prnp4bld5d2gidqd6b9iv9dqhlmw23flx5qjlf2y"; 38 + } 39 + { 40 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-amd64.tar.gz"; 41 sha256 = "0ivwl6j8ws22lhw4w94450pbri6lvxg3san1hy3bs2gdhp4p7xcz"; 42 } ··· 45 sha256 = "1wn62hc40zvzr6lh81ha0668y89kfdy67nmc6vpb4jwbr5s8zdvi"; 46 } 47 { 48 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.5.0-linux-amd64.tar.gz"; 49 + sha256 = "13a1sak2chv56plds2pkb0nr5sw63b1kksmia191zcx0j5s6gnc5"; 50 } 51 { 52 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-linux-amd64.tar.gz"; 53 sha256 = "17gpdyk3lb6js6b5x7dhzppzk1xab7rp7kcapmxjpjvmfbcgqbbj"; 54 } 55 { 56 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.53.0-linux-amd64.tar.gz"; 57 + sha256 = "11ipmh8rllcylf564cydpx7s92mgygwd6jwqx0ap1dpsi8i78piy"; 58 } 59 { 60 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.51.0-linux-amd64.tar.gz"; 61 + sha256 = "0ff8kdjy18mqrlihi2rdaf959d2sckc8a4pkcrz98z1xnskm8888"; 62 } 63 { 64 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-linux-amd64.tar.gz"; ··· 163 ]; 164 x86_64-darwin = [ 165 { 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.190.0-darwin-x64.tar.gz"; 167 + sha256 = "0n6lzfal21zh6wx4hr18s32kmp4cr6dqcdg5cq3yll34r54sj4c0"; 168 } 169 { 170 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.42.0-darwin-amd64.tar.gz"; 171 + sha256 = "114g6kzkqyi4ghh9s2bs2fb4x688f7a821yrnw85fhcb4q590ia2"; 172 } 173 { 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-darwin-amd64.tar.gz"; ··· 191 sha256 = "0gn8nmh56viy9f9hii2kckj8j6x3900ydfqkyapwg5w0fgkph2ni"; 192 } 193 { 194 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-darwin-amd64.tar.gz"; 195 + sha256 = "10vggqap983dl2l8xps2qm9d4l32slc014y1g6cqc5qiq3zlwhr4"; 196 + } 197 + { 198 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-amd64.tar.gz"; 199 sha256 = "09rn3w7fxkzf2g9rapk52c92039dfrrgx914pkcafg74cs3920ik"; 200 } ··· 203 sha256 = "1dwn0xjr0p6rd2r5x59flscfg911xaahp3bvhbkrz8pgkkg6ygcz"; 204 } 205 { 206 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.5.0-darwin-amd64.tar.gz"; 207 + sha256 = "1q24ihrjlx4ikcc42sc3zg3g0p9w4afrsd1r33hckp3makk6cz5c"; 208 } 209 { 210 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-darwin-amd64.tar.gz"; 211 sha256 = "0yxaq32jr8y8da3b252fkwh9lhb4jah96zryzqprlgh0jxa4nbcl"; 212 } 213 { 214 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.53.0-darwin-amd64.tar.gz"; 215 + sha256 = "1qc9b3gigzk44x011cckdls33ww5qkd2p0zxnnd7r6ip8nqcl745"; 216 } 217 { 218 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.51.0-darwin-amd64.tar.gz"; 219 + sha256 = "1fsn7iddjwb0kpr2f9yhaza43ixbn2mg2j0qc1m23yd0p0c0w56c"; 220 } 221 { 222 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-darwin-amd64.tar.gz"; ··· 321 ]; 322 aarch64-linux = [ 323 { 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.190.0-linux-arm64.tar.gz"; 325 + sha256 = "0sb1vz0aykz05wsiv57xgzj7nxvrz04axxwxnlfv3anvma1rdp1i"; 326 } 327 { 328 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.42.0-linux-arm64.tar.gz"; 329 + sha256 = "04ld832v18f3qsjd1zy11j4ai2gjdb5qmc1w70x1lk5zqi6mmndc"; 330 } 331 { 332 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-linux-arm64.tar.gz"; ··· 349 sha256 = "0xbh82z6f9vnn3ym9mf9nmpm2ldcybz8i66x6s3ji6964sggvrnj"; 350 } 351 { 352 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-linux-arm64.tar.gz"; 353 + sha256 = "1715fxw8y7sknyfwwnpbgjfrjkin70iknpqpafimkzg2n9n3xjbc"; 354 + } 355 + { 356 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-arm64.tar.gz"; 357 sha256 = "0gvqc91xd2sk2w5zmvy11m5a92kgry43sajvnlwd8hx04byhlw2s"; 358 } ··· 361 sha256 = "0bqqng9mpv7k6npdq01w058ram5zmfvand39s075hh73xc6hp5c5"; 362 } 363 { 364 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.5.0-linux-arm64.tar.gz"; 365 + sha256 = "1jzkx8blrngx5lh1zylswvdmn9147f40b364qwndy5yh222n4fjx"; 366 } 367 { 368 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-linux-arm64.tar.gz"; 369 sha256 = "1hybm4d3hcp977j0wb4bwl5ndl72cix7b2arw755xd7qw6xxvyrk"; 370 } 371 { 372 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.53.0-linux-arm64.tar.gz"; 373 + sha256 = "10bgk3bgh1dnzclj04jcjzddzm718lkzcwmv69vhdgc5ybws4lsv"; 374 } 375 { 376 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.51.0-linux-arm64.tar.gz"; 377 + sha256 = "1l82mm39x4sfnkd97fbygkr3rzj7yiah7a6bscs1zbg5nggfhlhg"; 378 } 379 { 380 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-linux-arm64.tar.gz"; ··· 479 ]; 480 aarch64-darwin = [ 481 { 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.190.0-darwin-arm64.tar.gz"; 483 + sha256 = "1vh5w2p8c6jv9a2l4hgk0b5hg9ad6rsk6jjjzr1b1cry0sz2csgl"; 484 } 485 { 486 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.42.0-darwin-arm64.tar.gz"; 487 + sha256 = "1afm9ng48h5zf07jas6bgyq0jsn0r9gs3bm7dmwrf41vfin75kw0"; 488 } 489 { 490 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v9.0.0-darwin-arm64.tar.gz"; ··· 507 sha256 = "0sdbcbx3nh3vm5gzhxdqiddjxdyl0x071n1a06qcjg7yvv4a47ah"; 508 } 509 { 510 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-darwin-arm64.tar.gz"; 511 + sha256 = "1ladpq9i6iyafsrm7wfgl35hfxfx0d769hh2894j0a7msfkj4cxj"; 512 + } 513 + { 514 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-arm64.tar.gz"; 515 sha256 = "0vp65ccimrzhbg3h7rq1p18rjwhb2b4s0y90wvan22nsvwnv5b0p"; 516 } ··· 519 sha256 = "1j3anypzdv3qicg5nagn6zckxr877f39kzazdi0slki9cpwnzkhi"; 520 } 521 { 522 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.5.0-darwin-arm64.tar.gz"; 523 + sha256 = "1w2fy9hvzr3z3cmkm7krxr9hsrmdzylr5d8dsssr3fmw5sqr9zr8"; 524 } 525 { 526 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.13.0-darwin-arm64.tar.gz"; 527 sha256 = "1w1xhhrhw0l7442s88h5hs9qzm8k0ihm41mgzz2s3843gqpq9ay7"; 528 } 529 { 530 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.53.0-darwin-arm64.tar.gz"; 531 + sha256 = "0ns4nijkgvavy5bxsvq7qgc9pnsy25isdm8gwym2r0q63pgqlkqd"; 532 } 533 { 534 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.51.0-darwin-arm64.tar.gz"; 535 + sha256 = "1z3md6bk08pzr559yds1rw4brgrvwdz472r97yhhknw9w6aw4lyw"; 536 } 537 { 538 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.8.0-darwin-arm64.tar.gz";
+2 -2
pkgs/tools/inputmethods/ibus-engines/ibus-chewing/default.nix
··· 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "ibus-chewing"; 17 - version = "2.1.4"; 18 19 src = fetchFromGitHub { 20 owner = "chewing"; 21 repo = "ibus-chewing"; 22 tag = "v${finalAttrs.version}"; 23 - hash = "sha256-l2sXjXpiParDslVDG1mXmtGNj6qcLJMPxeaBYNQkqZA="; 24 }; 25 26 nativeBuildInputs = [
··· 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "ibus-chewing"; 17 + version = "2.1.5"; 18 19 src = fetchFromGitHub { 20 owner = "chewing"; 21 repo = "ibus-chewing"; 22 tag = "v${finalAttrs.version}"; 23 + hash = "sha256-jg7o5vrXKH+QxemJRvZ8IUJ4HRK9axYqnwUMmr4ebGY="; 24 }; 25 26 nativeBuildInputs = [
+3 -1
pkgs/top-level/all-packages.nix
··· 9972 9973 clickhouse-cli = with python3Packages; toPythonApplication clickhouse-cli; 9974 9975 - couchdb3 = callPackage ../servers/http/couchdb/3.nix { }; 9976 9977 dcnnt = python3Packages.callPackage ../servers/dcnnt { }; 9978
··· 9972 9973 clickhouse-cli = with python3Packages; toPythonApplication clickhouse-cli; 9974 9975 + couchdb3 = callPackage ../servers/http/couchdb/3.nix { 9976 + erlang = beamMinimalPackages.erlang; 9977 + }; 9978 9979 dcnnt = python3Packages.callPackage ../servers/dcnnt { }; 9980