Merge master into staging-next

authored by github-actions[bot] and committed by GitHub fced6fe6 137b9085

+12437 -914
+4
nixos/doc/manual/release-notes/rl-2305.section.md
··· 96 97 - [atuin](https://github.com/ellie/atuin), a sync server for shell history. Available as [services.atuin](#opt-services.atuin.enable). 98 99 - [esphome](https://esphome.io), a dashboard to configure ESP8266/ESP32 devices for use with Home Automation systems. Available as [services.esphome](#opt-services.esphome.enable). 100 101 - [networkd-dispatcher](https://gitlab.com/craftyguy/networkd-dispatcher), a dispatcher service for systemd-networkd connection status changes. Available as [services.networkd-dispatcher](#opt-services.networkd-dispatcher.enable). ··· 566 - `gitea` module options have been changed to be RFC042 conforming (i.e. some options were moved to be located under `services.gitea.settings`) 567 568 - `boot.initrd.luks.device.<name>` has a new `tryEmptyPassphrase` option, this is useful for OEM's who need to install an encrypted disk with a future settable passphrase 569 570 - Lisp gained a [manual section](https://nixos.org/manual/nixpkgs/stable/#lisp), documenting a new and backwards incompatible interface. The previous interface will be removed in a future release. 571
··· 96 97 - [atuin](https://github.com/ellie/atuin), a sync server for shell history. Available as [services.atuin](#opt-services.atuin.enable). 98 99 + - [SFTPGo](https://github.com/drakkan/sftpgo), a fully featured and highly configurable SFTP server with optional HTTP/S, FTP/S and WebDAV support. Available as [services.sftpgo](options.html#opt-services.sftpgo.enable). 100 + 101 - [esphome](https://esphome.io), a dashboard to configure ESP8266/ESP32 devices for use with Home Automation systems. Available as [services.esphome](#opt-services.esphome.enable). 102 103 - [networkd-dispatcher](https://gitlab.com/craftyguy/networkd-dispatcher), a dispatcher service for systemd-networkd connection status changes. Available as [services.networkd-dispatcher](#opt-services.networkd-dispatcher.enable). ··· 568 - `gitea` module options have been changed to be RFC042 conforming (i.e. some options were moved to be located under `services.gitea.settings`) 569 570 - `boot.initrd.luks.device.<name>` has a new `tryEmptyPassphrase` option, this is useful for OEM's who need to install an encrypted disk with a future settable passphrase 571 + 572 + - there is a new `boot/stratisroot.nix` module that enables booting from a volume managed by the Stratis storage management daemon. Use `fileSystems.<name>.stratis.poolUuid` to configure the pool containing the fs. 573 574 - Lisp gained a [manual section](https://nixos.org/manual/nixpkgs/stable/#lisp), documenting a new and backwards incompatible interface. The previous interface will be removed in a future release. 575
+19 -2
nixos/modules/installer/tools/nixos-generate-config.pl
··· 335 336 my $st = stat($dev) or return $dev; 337 338 - foreach my $dev2 (glob("/dev/disk/by-uuid/*"), glob("/dev/mapper/*"), glob("/dev/disk/by-label/*")) { 339 my $st2 = stat($dev2) or next; 340 return $dev2 if $st->rdev == $st2->rdev; 341 } ··· 467 } 468 } 469 470 # Don't emit tmpfs entry for /tmp, because it most likely comes from the 471 # boot.tmp.useTmpfs option in configuration.nix (managed declaratively). 472 next if ($mountPoint eq "/tmp" && $fsType eq "tmpfs"); ··· 474 # Emit the filesystem. 475 $fileSystems .= <<EOF; 476 fileSystems.\"$mountPoint\" = 477 - { device = \"${\(findStableDevPath $device)}\"; 478 fsType = \"$fsType\"; 479 EOF 480 481 if (scalar @extraOptions > 0) { 482 $fileSystems .= <<EOF; 483 options = \[ ${\join " ", map { "\"" . $_ . "\"" } uniq(@extraOptions)} \]; 484 EOF 485 } 486
··· 335 336 my $st = stat($dev) or return $dev; 337 338 + foreach my $dev2 (glob("/dev/stratis/*/*"), glob("/dev/disk/by-uuid/*"), glob("/dev/mapper/*"), glob("/dev/disk/by-label/*")) { 339 my $st2 = stat($dev2) or next; 340 return $dev2 if $st->rdev == $st2->rdev; 341 } ··· 467 } 468 } 469 470 + # is this a stratis fs? 471 + my $stableDevPath = findStableDevPath $device; 472 + my $stratisPool; 473 + if ($stableDevPath =~ qr#/dev/stratis/(.*)/.*#) { 474 + my $poolName = $1; 475 + my ($header, @lines) = split "\n", qx/stratis pool list/; 476 + my $uuidIndex = index $header, 'UUID'; 477 + my ($line) = grep /^$poolName /, @lines; 478 + $stratisPool = substr $line, $uuidIndex - 32, 36; 479 + } 480 + 481 # Don't emit tmpfs entry for /tmp, because it most likely comes from the 482 # boot.tmp.useTmpfs option in configuration.nix (managed declaratively). 483 next if ($mountPoint eq "/tmp" && $fsType eq "tmpfs"); ··· 485 # Emit the filesystem. 486 $fileSystems .= <<EOF; 487 fileSystems.\"$mountPoint\" = 488 + { device = \"$stableDevPath\"; 489 fsType = \"$fsType\"; 490 EOF 491 492 if (scalar @extraOptions > 0) { 493 $fileSystems .= <<EOF; 494 options = \[ ${\join " ", map { "\"" . $_ . "\"" } uniq(@extraOptions)} \]; 495 + EOF 496 + } 497 + 498 + if ($stratisPool) { 499 + $fileSystems .= <<EOF; 500 + stratis.poolUuid = "$stratisPool"; 501 EOF 502 } 503
+2
nixos/modules/module-list.nix
··· 1230 ./services/web-apps/powerdns-admin.nix 1231 ./services/web-apps/prosody-filer.nix 1232 ./services/web-apps/restya-board.nix 1233 ./services/web-apps/rss-bridge.nix 1234 ./services/web-apps/selfoss.nix 1235 ./services/web-apps/shiori.nix ··· 1345 ./system/boot/loader/raspberrypi/raspberrypi.nix 1346 ./system/boot/loader/systemd-boot/systemd-boot.nix 1347 ./system/boot/luksroot.nix 1348 ./system/boot/modprobe.nix 1349 ./system/boot/networkd.nix 1350 ./system/boot/plymouth.nix
··· 1230 ./services/web-apps/powerdns-admin.nix 1231 ./services/web-apps/prosody-filer.nix 1232 ./services/web-apps/restya-board.nix 1233 + ./services/web-apps/sftpgo.nix 1234 ./services/web-apps/rss-bridge.nix 1235 ./services/web-apps/selfoss.nix 1236 ./services/web-apps/shiori.nix ··· 1346 ./system/boot/loader/raspberrypi/raspberrypi.nix 1347 ./system/boot/loader/systemd-boot/systemd-boot.nix 1348 ./system/boot/luksroot.nix 1349 + ./system/boot/stratisroot.nix 1350 ./system/boot/modprobe.nix 1351 ./system/boot/networkd.nix 1352 ./system/boot/plymouth.nix
+4 -2
nixos/modules/security/pam_mount.nix
··· 167 <!-- create mount point if not present --> 168 <mkmountpoint enable="${if cfg.createMountPoints then "1" else "0"}" remove="${if cfg.removeCreatedMountPoints then "true" else "false"}" /> 169 <!-- specify the binaries to be called --> 170 - <fusemount>${pkgs.fuse}/bin/mount.fuse %(VOLUME) %(MNTPT) -o ${concatStringsSep "," (cfg.fuseMountOptions ++ [ "%(OPTIONS)" ])}</fusemount> 171 <fuseumount>${pkgs.fuse}/bin/fusermount -u %(MNTPT)</fuseumount> 172 - <cryptmount>${pkgs.pam_mount}/bin/mount.crypt -o ${concatStringsSep "," (cfg.cryptMountOptions ++ [ "%(OPTIONS)" ])} %(VOLUME) %(MNTPT)</cryptmount> 173 <cryptumount>${pkgs.pam_mount}/bin/umount.crypt %(MNTPT)</cryptumount> 174 <pmvarrun>${pkgs.pam_mount}/bin/pmvarrun -u %(USER) -o %(OPERATION)</pmvarrun> 175 ${optionalString oflRequired "<ofl>${fake_ofl}/bin/fake_ofl %(SIGNAL) %(MNTPT)</ofl>"}
··· 167 <!-- create mount point if not present --> 168 <mkmountpoint enable="${if cfg.createMountPoints then "1" else "0"}" remove="${if cfg.removeCreatedMountPoints then "true" else "false"}" /> 169 <!-- specify the binaries to be called --> 170 + <!-- the comma in front of the options is necessary for empty options --> 171 + <fusemount>${pkgs.fuse}/bin/mount.fuse %(VOLUME) %(MNTPT) -o ,${concatStringsSep "," (cfg.fuseMountOptions ++ [ "%(OPTIONS)" ])}'</fusemount> 172 <fuseumount>${pkgs.fuse}/bin/fusermount -u %(MNTPT)</fuseumount> 173 + <!-- the comma in front of the options is necessary for empty options --> 174 + <cryptmount>${pkgs.pam_mount}/bin/mount.crypt -o ,${concatStringsSep "," (cfg.cryptMountOptions ++ [ "%(OPTIONS)" ])} %(VOLUME) %(MNTPT)</cryptmount> 175 <cryptumount>${pkgs.pam_mount}/bin/umount.crypt %(MNTPT)</cryptumount> 176 <pmvarrun>${pkgs.pam_mount}/bin/pmvarrun -u %(USER) -o %(OPERATION)</pmvarrun> 177 ${optionalString oflRequired "<ofl>${fake_ofl}/bin/fake_ofl %(SIGNAL) %(MNTPT)</ofl>"}
+4 -2
nixos/modules/services/networking/thelounge.nix
··· 25 options.services.thelounge = { 26 enable = mkEnableOption (lib.mdDoc "The Lounge web IRC client"); 27 28 public = mkOption { 29 type = types.bool; 30 default = false; ··· 93 serviceConfig = { 94 User = "thelounge"; 95 StateDirectory = baseNameOf dataDir; 96 - ExecStart = "${pkgs.thelounge}/bin/thelounge start"; 97 }; 98 }; 99 100 - environment.systemPackages = [ pkgs.thelounge ]; 101 }; 102 103 meta = {
··· 25 options.services.thelounge = { 26 enable = mkEnableOption (lib.mdDoc "The Lounge web IRC client"); 27 28 + package = mkPackageOptionMD pkgs "thelounge" { }; 29 + 30 public = mkOption { 31 type = types.bool; 32 default = false; ··· 95 serviceConfig = { 96 User = "thelounge"; 97 StateDirectory = baseNameOf dataDir; 98 + ExecStart = "${getExe cfg.package} start"; 99 }; 100 }; 101 102 + environment.systemPackages = [ cfg.package ]; 103 }; 104 105 meta = {
+375
nixos/modules/services/web-apps/sftpgo.nix
···
··· 1 + { options, config, lib, pkgs, utils, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.sftpgo; 7 + defaultUser = "sftpgo"; 8 + settingsFormat = pkgs.formats.json {}; 9 + configFile = settingsFormat.generate "sftpgo.json" cfg.settings; 10 + hasPrivilegedPorts = any (port: port > 0 && port < 1024) ( 11 + catAttrs "port" (cfg.settings.httpd.bindings 12 + ++ cfg.settings.ftpd.bindings 13 + ++ cfg.settings.sftpd.bindings 14 + ++ cfg.settings.webdavd.bindings 15 + ) 16 + ); 17 + in 18 + { 19 + options.services.sftpgo = { 20 + enable = mkOption { 21 + type = types.bool; 22 + default = false; 23 + description = mdDoc "sftpgo"; 24 + }; 25 + 26 + package = mkOption { 27 + type = types.package; 28 + default = pkgs.sftpgo; 29 + defaultText = literalExpression "pkgs.sftpgo"; 30 + description = mdDoc '' 31 + Which SFTPGo package to use. 32 + ''; 33 + }; 34 + 35 + extraArgs = mkOption { 36 + type = with types; listOf str; 37 + default = []; 38 + description = mdDoc '' 39 + Additional command line arguments to pass to the sftpgo daemon. 40 + ''; 41 + example = [ "--log-level" "info" ]; 42 + }; 43 + 44 + dataDir = mkOption { 45 + type = types.str; 46 + default = "/var/lib/sftpgo"; 47 + description = mdDoc '' 48 + The directory where SFTPGo stores its data files. 49 + ''; 50 + }; 51 + 52 + user = mkOption { 53 + type = types.str; 54 + default = defaultUser; 55 + description = mdDoc '' 56 + User account name under which SFTPGo runs. 57 + ''; 58 + }; 59 + 60 + group = mkOption { 61 + type = types.str; 62 + default = defaultUser; 63 + description = mdDoc '' 64 + Group name under which SFTPGo runs. 65 + ''; 66 + }; 67 + 68 + loadDataFile = mkOption { 69 + default = null; 70 + type = with types; nullOr path; 71 + description = mdDoc '' 72 + Path to a json file containing users and folders to load (or update) on startup. 73 + Check the [documentation](https://github.com/drakkan/sftpgo/blob/main/docs/full-configuration.md) 74 + for the `--loaddata-from` command line argument for more info. 75 + ''; 76 + }; 77 + 78 + settings = mkOption { 79 + default = {}; 80 + description = mdDoc '' 81 + The primary sftpgo configuration. See the 82 + [configuration reference](https://github.com/drakkan/sftpgo/blob/main/docs/full-configuration.md) 83 + for possible values. 84 + ''; 85 + type = with types; submodule { 86 + freeformType = settingsFormat.type; 87 + options = { 88 + httpd.bindings = mkOption { 89 + default = []; 90 + description = mdDoc '' 91 + Configure listen addresses and ports for httpd. 92 + ''; 93 + type = types.listOf (types.submodule { 94 + freeformType = settingsFormat.type; 95 + options = { 96 + address = mkOption { 97 + type = types.str; 98 + default = "127.0.0.1"; 99 + description = mdDoc '' 100 + Network listen address. Leave blank to listen on all available network interfaces. 101 + On *NIX you can specify an absolute path to listen on a Unix-domain socket. 102 + ''; 103 + }; 104 + 105 + port = mkOption { 106 + type = types.port; 107 + default = 8080; 108 + description = mdDoc '' 109 + The port for serving HTTP(S) requests. 110 + 111 + Setting the port to `0` disables listening on this interface binding. 112 + ''; 113 + }; 114 + 115 + enable_web_admin = mkOption { 116 + type = types.bool; 117 + default = true; 118 + description = mdDoc '' 119 + Enable the built-in web admin for this interface binding. 120 + ''; 121 + }; 122 + 123 + enable_web_client = mkOption { 124 + type = types.bool; 125 + default = true; 126 + description = mdDoc '' 127 + Enable the built-in web client for this interface binding. 128 + ''; 129 + }; 130 + }; 131 + }); 132 + }; 133 + 134 + ftpd.bindings = mkOption { 135 + default = []; 136 + description = mdDoc '' 137 + Configure listen addresses and ports for ftpd. 138 + ''; 139 + type = types.listOf (types.submodule { 140 + freeformType = settingsFormat.type; 141 + options = { 142 + address = mkOption { 143 + type = types.str; 144 + default = "127.0.0.1"; 145 + description = mdDoc '' 146 + Network listen address. Leave blank to listen on all available network interfaces. 147 + On *NIX you can specify an absolute path to listen on a Unix-domain socket. 148 + ''; 149 + }; 150 + 151 + port = mkOption { 152 + type = types.port; 153 + default = 0; 154 + description = mdDoc '' 155 + The port for serving FTP requests. 156 + 157 + Setting the port to `0` disables listening on this interface binding. 158 + ''; 159 + }; 160 + }; 161 + }); 162 + }; 163 + 164 + sftpd.bindings = mkOption { 165 + default = []; 166 + description = mdDoc '' 167 + Configure listen addresses and ports for sftpd. 168 + ''; 169 + type = types.listOf (types.submodule { 170 + freeformType = settingsFormat.type; 171 + options = { 172 + address = mkOption { 173 + type = types.str; 174 + default = "127.0.0.1"; 175 + description = mdDoc '' 176 + Network listen address. Leave blank to listen on all available network interfaces. 177 + On *NIX you can specify an absolute path to listen on a Unix-domain socket. 178 + ''; 179 + }; 180 + 181 + port = mkOption { 182 + type = types.port; 183 + default = 0; 184 + description = mdDoc '' 185 + The port for serving SFTP requests. 186 + 187 + Setting the port to `0` disables listening on this interface binding. 188 + ''; 189 + }; 190 + }; 191 + }); 192 + }; 193 + 194 + webdavd.bindings = mkOption { 195 + default = []; 196 + description = mdDoc '' 197 + Configure listen addresses and ports for webdavd. 198 + ''; 199 + type = types.listOf (types.submodule { 200 + freeformType = settingsFormat.type; 201 + options = { 202 + address = mkOption { 203 + type = types.str; 204 + default = "127.0.0.1"; 205 + description = mdDoc '' 206 + Network listen address. Leave blank to listen on all available network interfaces. 207 + On *NIX you can specify an absolute path to listen on a Unix-domain socket. 208 + ''; 209 + }; 210 + 211 + port = mkOption { 212 + type = types.port; 213 + default = 0; 214 + description = mdDoc '' 215 + The port for serving WebDAV requests. 216 + 217 + Setting the port to `0` disables listening on this interface binding. 218 + ''; 219 + }; 220 + }; 221 + }); 222 + }; 223 + 224 + smtp = mkOption { 225 + default = {}; 226 + description = mdDoc '' 227 + SMTP configuration section. 228 + ''; 229 + type = types.submodule { 230 + freeformType = settingsFormat.type; 231 + options = { 232 + host = mkOption { 233 + type = types.str; 234 + default = ""; 235 + description = mdDoc '' 236 + Location of SMTP email server. Leave empty to disable email sending capabilities. 237 + ''; 238 + }; 239 + 240 + port = mkOption { 241 + type = types.port; 242 + default = 465; 243 + description = mdDoc "Port of the SMTP Server."; 244 + }; 245 + 246 + encryption = mkOption { 247 + type = types.enum [ 0 1 2 ]; 248 + default = 1; 249 + description = mdDoc '' 250 + Encryption scheme: 251 + - `0`: No encryption 252 + - `1`: TLS 253 + - `2`: STARTTLS 254 + ''; 255 + }; 256 + 257 + auth_type = mkOption { 258 + type = types.enum [ 0 1 2 ]; 259 + default = 0; 260 + description = mdDoc '' 261 + - `0`: Plain 262 + - `1`: Login 263 + - `2`: CRAM-MD5 264 + ''; 265 + }; 266 + 267 + user = mkOption { 268 + type = types.str; 269 + default = "sftpgo"; 270 + description = mdDoc "SMTP username."; 271 + }; 272 + 273 + from = mkOption { 274 + type = types.str; 275 + default = "SFTPGo <sftpgo@example.com>"; 276 + description = mdDoc '' 277 + From address. 278 + ''; 279 + }; 280 + }; 281 + }; 282 + }; 283 + }; 284 + }; 285 + }; 286 + }; 287 + 288 + config = mkIf cfg.enable { 289 + services.sftpgo.settings = (mapAttrs (name: mkDefault) { 290 + ftpd.bindings = [{ port = 0; }]; 291 + httpd.bindings = [{ port = 0; }]; 292 + sftpd.bindings = [{ port = 0; }]; 293 + webdavd.bindings = [{ port = 0; }]; 294 + httpd.openapi_path = "${cfg.package}/share/sftpgo/openapi"; 295 + httpd.templates_path = "${cfg.package}/share/sftpgo/templates"; 296 + httpd.static_files_path = "${cfg.package}/share/sftpgo/static"; 297 + smtp.templates_path = "${cfg.package}/share/sftpgo/templates"; 298 + }); 299 + 300 + users = optionalAttrs (cfg.user == defaultUser) { 301 + users = { 302 + ${defaultUser} = { 303 + description = "SFTPGo system user"; 304 + isSystemUser = true; 305 + group = defaultUser; 306 + home = cfg.dataDir; 307 + }; 308 + }; 309 + 310 + groups = { 311 + ${defaultUser} = { 312 + members = [ defaultUser ]; 313 + }; 314 + }; 315 + }; 316 + 317 + systemd.services.sftpgo = { 318 + description = "SFTPGo daemon"; 319 + after = [ "network.target" ]; 320 + wantedBy = [ "multi-user.target" ]; 321 + 322 + environment = { 323 + SFTPGO_CONFIG_FILE = mkDefault configFile; 324 + SFTPGO_LOG_FILE_PATH = mkDefault ""; # log to journal 325 + SFTPGO_LOADDATA_FROM = mkIf (cfg.loadDataFile != null) cfg.loadDataFile; 326 + }; 327 + 328 + serviceConfig = mkMerge [ 329 + ({ 330 + Type = "simple"; 331 + User = cfg.user; 332 + Group = cfg.group; 333 + WorkingDirectory = cfg.dataDir; 334 + ReadWritePaths = [ cfg.dataDir ]; 335 + LimitNOFILE = 8192; # taken from upstream 336 + KillMode = "mixed"; 337 + ExecStart = "${cfg.package}/bin/sftpgo serve ${utils.escapeSystemdExecArgs cfg.extraArgs}"; 338 + ExecReload = "${pkgs.util-linux}/bin/kill -s HUP $MAINPID"; 339 + 340 + # Service hardening 341 + CapabilityBoundingSet = [ (optionalString hasPrivilegedPorts "CAP_NET_BIND_SERVICE") ]; 342 + DevicePolicy = "closed"; 343 + LockPersonality = true; 344 + NoNewPrivileges = true; 345 + PrivateDevices = true; 346 + PrivateTmp = true; 347 + ProcSubset = "pid"; 348 + ProtectClock = true; 349 + ProtectControlGroups = true; 350 + ProtectHome = true; 351 + ProtectHostname = true; 352 + ProtectKernelLogs = true; 353 + ProtectKernelModules = true; 354 + ProtectKernelTunables = true; 355 + ProtectProc = "invisible"; 356 + ProtectSystem = "strict"; 357 + RemoveIPC = true; 358 + RestrictAddressFamilies = "AF_INET AF_INET6 AF_UNIX"; 359 + RestrictNamespaces = true; 360 + RestrictRealtime = true; 361 + RestrictSUIDSGID = true; 362 + SystemCallArchitectures = "native"; 363 + SystemCallFilter = [ "@system-service" "~@privileged" ]; 364 + UMask = "0077"; 365 + }) 366 + (mkIf hasPrivilegedPorts { 367 + AmbientCapabilities = "CAP_NET_BIND_SERVICE"; 368 + }) 369 + (mkIf (cfg.dataDir == options.services.sftpgo.dataDir.default) { 370 + StateDirectory = baseNameOf cfg.dataDir; 371 + }) 372 + ]; 373 + }; 374 + }; 375 + }
+64
nixos/modules/system/boot/stratisroot.nix
···
··· 1 + { config, lib, pkgs, utils, ... }: 2 + let 3 + requiredStratisFilesystems = lib.attrsets.filterAttrs (_: x: utils.fsNeededForBoot x && x.stratis.poolUuid != null) config.fileSystems; 4 + in 5 + { 6 + options = {}; 7 + config = lib.mkIf (requiredStratisFilesystems != {}) { 8 + assertions = [ 9 + { 10 + assertion = config.boot.initrd.systemd.enable; 11 + message = "stratis root fs requires systemd stage 1"; 12 + } 13 + ]; 14 + boot.initrd = { 15 + systemd = { 16 + storePaths = [ 17 + "${pkgs.stratisd}/lib/udev/stratis-base32-decode" 18 + "${pkgs.stratisd}/lib/udev/stratis-str-cmp" 19 + "${pkgs.lvm2.bin}/bin/dmsetup" 20 + "${pkgs.stratisd}/libexec/stratisd-min" 21 + "${pkgs.stratisd.initrd}/bin/stratis-rootfs-setup" 22 + ]; 23 + packages = [pkgs.stratisd.initrd]; 24 + extraBin = { 25 + thin_check = "${pkgs."thin-provisioning-tools"}/bin/thin_check"; 26 + thin_repair = "${pkgs."thin-provisioning-tools"}/bin/thin_repair"; 27 + thin_metadata_size = "${pkgs."thin-provisioning-tools"}/bin/thin_metadata_size"; 28 + stratis-min = "${pkgs.stratisd}/bin/stratis-min"; 29 + }; 30 + services = 31 + lib.attrsets.mapAttrs' ( 32 + mountPoint: fileSystem: { 33 + name = "stratis-setup-${fileSystem.stratis.poolUuid}"; 34 + value = { 35 + description = "setup for Stratis root filesystem"; 36 + unitConfig.DefaultDependencies = "no"; 37 + conflicts = [ "shutdown.target" "initrd-switch-root.target" ]; 38 + onFailure = [ "emergency.target" ]; 39 + unitConfig.OnFailureJobMode = "isolate"; 40 + wants = [ "stratisd-min.service" "plymouth-start.service" ]; 41 + wantedBy = [ "initrd.target" ]; 42 + after = [ "paths.target" "plymouth-start.service" "stratisd-min.service" ]; 43 + before = [ "initrd.target" "shutdown.target" "initrd-switch-root.target" ]; 44 + environment.STRATIS_ROOTFS_UUID = fileSystem.stratis.poolUuid; 45 + serviceConfig = { 46 + Type = "oneshot"; 47 + ExecStart = "${pkgs.stratisd.initrd}/bin/stratis-rootfs-setup"; 48 + RemainAfterExit = "yes"; 49 + }; 50 + }; 51 + } 52 + ) requiredStratisFilesystems; 53 + }; 54 + availableKernelModules = [ "dm-thin-pool" "dm-crypt" ] ++ [ "aes" "aes_generic" "blowfish" "twofish" 55 + "serpent" "cbc" "xts" "lrw" "sha1" "sha256" "sha512" 56 + "af_alg" "algif_skcipher" 57 + ]; 58 + services.udev.packages = [ 59 + pkgs.stratisd.initrd 60 + pkgs.lvm2 61 + ]; 62 + }; 63 + }; 64 + }
+9
nixos/modules/tasks/filesystems.nix
··· 36 description = lib.mdDoc "Location of the mounted file system."; 37 }; 38 39 device = mkOption { 40 default = null; 41 example = "/dev/sda";
··· 36 description = lib.mdDoc "Location of the mounted file system."; 37 }; 38 39 + stratis.poolUuid = lib.mkOption { 40 + type = types.uniq (types.nullOr types.str); 41 + description = lib.mdDoc '' 42 + UUID of the stratis pool that the fs is located in 43 + ''; 44 + example = "04c68063-90a5-4235-b9dd-6180098a20d9"; 45 + default = null; 46 + }; 47 + 48 device = mkOption { 49 default = null; 50 example = "/dev/sda";
+6 -5
nixos/modules/virtualisation/proxmox-image.nix
··· 187 guestAgentSupport = false; 188 }).overrideAttrs ( super: rec { 189 190 - version = "7.0.0"; 191 src = pkgs.fetchurl { 192 url= "https://download.qemu.org/qemu-${version}.tar.xz"; 193 - sha256 = "sha256-9rN1x5UfcoQCeYsLqrsthkeMpT1Eztvvq74cRr9G+Dk="; 194 }; 195 patches = [ 196 # Proxmox' VMA tool is published as a particular patch upon QEMU 197 (pkgs.fetchpatch { 198 url = 199 let 200 - rev = "1976ca460796f28447b41e3618e5c1e234035dd5"; 201 - path = "debian/patches/pve/0026-PVE-Backup-add-vma-backup-format-code.patch"; 202 in "https://git.proxmox.com/?p=pve-qemu.git;a=blob_plain;hb=${rev};f=${path}"; 203 - hash = "sha256-2Dz+ceTwrcyYYxi76RtyY3v15/2pwGcDhFuoZWlgbjc="; 204 }) 205 206 # Proxmox' VMA tool uses O_DIRECT which fails on tmpfs ··· 220 ]; 221 222 buildInputs = super.buildInputs ++ [ pkgs.libuuid ]; 223 224 }); 225 in
··· 187 guestAgentSupport = false; 188 }).overrideAttrs ( super: rec { 189 190 + version = "7.2.1"; 191 src = pkgs.fetchurl { 192 url= "https://download.qemu.org/qemu-${version}.tar.xz"; 193 + sha256 = "sha256-jIVpms+dekOl/immTN1WNwsMLRrQdLr3CYqCTReq1zs="; 194 }; 195 patches = [ 196 # Proxmox' VMA tool is published as a particular patch upon QEMU 197 (pkgs.fetchpatch { 198 url = 199 let 200 + rev = "abb04bb6272c1202ca9face0827917552b9d06f6"; 201 + path = "debian/patches/pve/0027-PVE-Backup-add-vma-backup-format-code.patch"; 202 in "https://git.proxmox.com/?p=pve-qemu.git;a=blob_plain;hb=${rev};f=${path}"; 203 + hash = "sha256-3d0HHdvaExCry6zcULnziYnWIAnn24vECkI4sjj2BMg="; 204 }) 205 206 # Proxmox' VMA tool uses O_DIRECT which fails on tmpfs ··· 220 ]; 221 222 buildInputs = super.buildInputs ++ [ pkgs.libuuid ]; 223 + nativeBuildInputs = super.nativeBuildInputs ++ [ pkgs.perl ]; 224 225 }); 226 in
+1
nixos/tests/all-tests.nix
··· 665 seafile = handleTest ./seafile.nix {}; 666 searx = handleTest ./searx.nix {}; 667 service-runner = handleTest ./service-runner.nix {}; 668 sfxr-qt = handleTest ./sfxr-qt.nix {}; 669 sgtpuzzles = handleTest ./sgtpuzzles.nix {}; 670 shadow = handleTest ./shadow.nix {};
··· 665 seafile = handleTest ./seafile.nix {}; 666 searx = handleTest ./searx.nix {}; 667 service-runner = handleTest ./service-runner.nix {}; 668 + sftpgo = runTest ./sftpgo.nix; 669 sfxr-qt = handleTest ./sfxr-qt.nix {}; 670 sgtpuzzles = handleTest ./sgtpuzzles.nix {}; 671 shadow = handleTest ./shadow.nix {};
+1
nixos/tests/installer-systemd-stage-1.nix
··· 27 simpleUefiGrub 28 simpleUefiGrubSpecialisation 29 simpleUefiSystemdBoot 30 # swraid 31 zfsroot 32 ;
··· 27 simpleUefiGrub 28 simpleUefiGrubSpecialisation 29 simpleUefiSystemdBoot 30 + stratisRoot 31 # swraid 32 zfsroot 33 ;
+35
nixos/tests/installer.nix
··· 989 ) 990 ''; 991 }; 992 }
··· 989 ) 990 ''; 991 }; 992 + } // optionalAttrs systemdStage1 { 993 + stratisRoot = makeInstallerTest "stratisRoot" { 994 + createPartitions = '' 995 + machine.succeed( 996 + "sgdisk --zap-all /dev/vda", 997 + "sgdisk --new=1:0:+100M --typecode=0:ef00 /dev/vda", # /boot 998 + "sgdisk --new=2:0:+1G --typecode=0:8200 /dev/vda", # swap 999 + "sgdisk --new=3:0:+5G --typecode=0:8300 /dev/vda", # / 1000 + "udevadm settle", 1001 + 1002 + "mkfs.vfat /dev/vda1", 1003 + "mkswap /dev/vda2 -L swap", 1004 + "swapon -L swap", 1005 + "stratis pool create my-pool /dev/vda3", 1006 + "stratis filesystem create my-pool nixos", 1007 + "udevadm settle", 1008 + 1009 + "mount /dev/stratis/my-pool/nixos /mnt", 1010 + "mkdir -p /mnt/boot", 1011 + "mount /dev/vda1 /mnt/boot" 1012 + ) 1013 + ''; 1014 + bootLoader = "systemd-boot"; 1015 + extraInstallerConfig = { modulesPath, ...}: { 1016 + config = { 1017 + services.stratis.enable = true; 1018 + environment.systemPackages = [ 1019 + pkgs.stratis-cli 1020 + pkgs.thin-provisioning-tools 1021 + pkgs.lvm2.bin 1022 + pkgs.stratisd.initrd 1023 + ]; 1024 + }; 1025 + }; 1026 + }; 1027 }
-5
nixos/tests/miriway.nix
··· 3 4 meta = { 5 maintainers = with lib.maintainers; [ OPNA2608 ]; 6 - # Natively running Mir has problems with capturing the first registered libinput device. 7 - # In our VM runners on ARM and on some hardware configs (my RPi4, distro-independent), this misses the keyboard. 8 - # It can be worked around by dis- and reconnecting the affected hardware, but we can't do this in these tests. 9 - # https://github.com/MirServer/mir/issues/2837 10 - broken = pkgs.stdenv.hostPlatform.isAarch; 11 }; 12 13 nodes.machine = { config, ... }: {
··· 3 4 meta = { 5 maintainers = with lib.maintainers; [ OPNA2608 ]; 6 }; 7 8 nodes.machine = { config, ... }: {
+384
nixos/tests/sftpgo.nix
···
··· 1 + # SFTPGo NixOS test 2 + # 3 + # This NixOS test sets up a basic test scenario for the SFTPGo module 4 + # and covers the following scenarios: 5 + # - uploading a file via sftp 6 + # - downloading the file over sftp 7 + # - assert that the ACLs are respected 8 + # - share a file between alice and bob (using sftp) 9 + # - assert that eve cannot acceess the shared folder between alice and bob. 10 + # 11 + # Additional test coverage for the remaining protocols (i.e. ftp, http and webdav) 12 + # would be a nice to have for the future. 13 + { pkgs, lib, ... }: 14 + 15 + with lib; 16 + 17 + let 18 + inherit (import ./ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey; 19 + 20 + # Returns an attributeset of users who are not system users. 21 + normalUsers = config: 22 + filterAttrs (name: user: user.isNormalUser) config.users.users; 23 + 24 + # Returns true if a user is a member of the given group 25 + isMemberOf = 26 + config: 27 + # str 28 + groupName: 29 + # users.users attrset 30 + user: 31 + any (x: x == user.name) config.users.groups.${groupName}.members; 32 + 33 + # Generates a valid SFTPGo user configuration for a given user 34 + # Will be converted to JSON and loaded on application startup. 35 + generateUserAttrSet = 36 + config: 37 + # attrset returned by config.users.users.<username> 38 + user: { 39 + # 0: user is disabled, login is not allowed 40 + # 1: user is enabled 41 + status = 1; 42 + 43 + username = user.name; 44 + password = ""; # disables password authentication 45 + public_keys = user.openssh.authorizedKeys.keys; 46 + email = "${user.name}@example.com"; 47 + 48 + # User home directory on the local filesystem 49 + home_dir = "${config.services.sftpgo.dataDir}/users/${user.name}"; 50 + 51 + # Defines a mapping between virtual SFTPGo paths and filesystem paths outside the user home directory. 52 + # 53 + # Supported for local filesystem only. If one or more of the specified folders are not 54 + # inside the dataprovider they will be automatically created. 55 + # You have to create the folder on the filesystem yourself 56 + virtual_folders = 57 + optional (isMemberOf config sharedFolderName user) { 58 + name = sharedFolderName; 59 + mapped_path = "${config.services.sftpgo.dataDir}/${sharedFolderName}"; 60 + virtual_path = "/${sharedFolderName}"; 61 + }; 62 + 63 + # Defines the ACL on the virtual filesystem 64 + permissions = 65 + recursiveUpdate { 66 + "/" = [ "list" ]; # read-only top level directory 67 + "/private" = [ "*" ]; # private subdirectory, not shared with others 68 + } (optionalAttrs (isMemberOf config "shared" user) { 69 + "/shared" = [ "*" ]; 70 + }); 71 + 72 + filters = { 73 + allowed_ip = []; 74 + denied_ip = []; 75 + web_client = [ 76 + "password-change-disabled" 77 + "password-reset-disabled" 78 + "api-key-auth-change-disabled" 79 + ]; 80 + }; 81 + 82 + upload_bandwidth = 0; # unlimited 83 + download_bandwidth = 0; # unlimited 84 + expiration_date = 0; # means no expiration 85 + max_sessions = 0; 86 + quota_size = 0; 87 + quota_files = 0; 88 + }; 89 + 90 + # Generates a json file containing a static configuration 91 + # of users and folders to import to SFTPGo. 92 + loadDataJson = config: pkgs.writeText "users-and-folders.json" (builtins.toJSON { 93 + users = 94 + mapAttrsToList (name: user: generateUserAttrSet config user) (normalUsers config); 95 + 96 + folders = [ 97 + { 98 + name = sharedFolderName; 99 + description = "shared folder"; 100 + 101 + # 0: local filesystem 102 + # 1: AWS S3 compatible 103 + # 2: Google Cloud Storage 104 + filesystem.provider = 0; 105 + 106 + # Mapped path on the local filesystem 107 + mapped_path = "${config.services.sftpgo.dataDir}/${sharedFolderName}"; 108 + 109 + # All users in the matching group gain access 110 + users = config.users.groups.${sharedFolderName}.members; 111 + } 112 + ]; 113 + }); 114 + 115 + # Generated Host Key for connecting to SFTPGo's sftp subsystem. 116 + snakeOilHostKey = pkgs.writeText "sftpgo_ed25519_host_key" '' 117 + -----BEGIN OPENSSH PRIVATE KEY----- 118 + b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW 119 + QyNTUxOQAAACBOtQu6U135yxtrvUqPoozUymkjoNNPVK6rqjS936RLtQAAAJAXOMoSFzjK 120 + EgAAAAtzc2gtZWQyNTUxOQAAACBOtQu6U135yxtrvUqPoozUymkjoNNPVK6rqjS936RLtQ 121 + AAAEAoRLEV1VD80mg314ObySpfrCcUqtWoOSS3EtMPPhx08U61C7pTXfnLG2u9So+ijNTK 122 + aSOg009UrquqNL3fpEu1AAAADHNmdHBnb0BuaXhvcwE= 123 + -----END OPENSSH PRIVATE KEY----- 124 + ''; 125 + 126 + adminUsername = "admin"; 127 + adminPassword = "secretadminpassword"; 128 + aliceUsername = "alice"; 129 + alicePassword = "secretalicepassword"; 130 + bobUsername = "bob"; 131 + bobPassword = "secretbobpassword"; 132 + eveUsername = "eve"; 133 + evePassword = "secretevepassword"; 134 + sharedFolderName = "shared"; 135 + 136 + # A file for testing uploading via SFTP 137 + testFile = pkgs.writeText "test.txt" "hello world"; 138 + sharedFile = pkgs.writeText "shared.txt" "shared content"; 139 + 140 + # Define the for exposing SFTP 141 + sftpPort = 2022; 142 + 143 + # Define the for exposing HTTP 144 + httpPort = 8080; 145 + in 146 + { 147 + name = "sftpgo"; 148 + 149 + meta.maintainers = with maintainers; [ yayayayaka ]; 150 + 151 + nodes = { 152 + server = { nodes, ... }: { 153 + networking.firewall.allowedTCPPorts = [ sftpPort httpPort ]; 154 + 155 + # nodes.server.configure postgresql database 156 + services.postgresql = { 157 + enable = true; 158 + ensureDatabases = [ "sftpgo" ]; 159 + ensureUsers = [{ 160 + name = "sftpgo"; 161 + ensurePermissions."DATABASE sftpgo" = "ALL PRIVILEGES"; 162 + }]; 163 + }; 164 + 165 + services.sftpgo = { 166 + enable = true; 167 + 168 + loadDataFile = (loadDataJson nodes.server); 169 + 170 + settings = { 171 + data_provider = { 172 + driver = "postgresql"; 173 + name = "sftpgo"; 174 + username = "sftpgo"; 175 + host = "/run/postgresql"; 176 + port = 5432; 177 + 178 + # Enables the possibility to create an initial admin user on first startup. 179 + create_default_admin = true; 180 + }; 181 + 182 + httpd.bindings = [ 183 + { 184 + address = ""; # listen on all interfaces 185 + port = httpPort; 186 + enable_https = false; 187 + 188 + enable_web_client = true; 189 + enable_web_admin = true; 190 + } 191 + ]; 192 + 193 + # Enable sftpd 194 + sftpd = { 195 + bindings = [{ 196 + address = ""; # listen on all interfaces 197 + port = sftpPort; 198 + }]; 199 + host_keys = [ snakeOilHostKey ]; 200 + password_authentication = false; 201 + keyboard_interactive_authentication = false; 202 + }; 203 + }; 204 + }; 205 + 206 + systemd.services.sftpgo = { 207 + after = [ "postgresql.service"]; 208 + environment = { 209 + # Update existing users 210 + SFTPGO_LOADDATA_MODE = "0"; 211 + SFTPGO_DEFAULT_ADMIN_USERNAME = adminUsername; 212 + 213 + # This will end up in cleartext in the systemd service. 214 + # Don't use this approach in production! 215 + SFTPGO_DEFAULT_ADMIN_PASSWORD = adminPassword; 216 + }; 217 + }; 218 + 219 + # Sets up the folder hierarchy on the local filesystem 220 + systemd.tmpfiles.rules = 221 + let 222 + sftpgoUser = nodes.server.services.sftpgo.user; 223 + sftpgoGroup = nodes.server.services.sftpgo.group; 224 + statePath = nodes.server.services.sftpgo.dataDir; 225 + in [ 226 + # Create state directory 227 + "d ${statePath} 0750 ${sftpgoUser} ${sftpgoGroup} -" 228 + "d ${statePath}/users 0750 ${sftpgoUser} ${sftpgoGroup} -" 229 + 230 + # Created shared folder directories 231 + "d ${statePath}/${sharedFolderName} 2770 ${sftpgoUser} ${sharedFolderName} -" 232 + ] 233 + ++ mapAttrsToList (name: user: 234 + # Create private user directories 235 + '' 236 + d ${statePath}/users/${user.name} 0700 ${sftpgoUser} ${sftpgoGroup} - 237 + d ${statePath}/users/${user.name}/private 0700 ${sftpgoUser} ${sftpgoGroup} - 238 + '' 239 + ) (normalUsers nodes.server); 240 + 241 + users.users = 242 + let 243 + commonAttrs = { 244 + isNormalUser = true; 245 + openssh.authorizedKeys.keys = [ snakeOilPublicKey ]; 246 + }; 247 + in { 248 + # SFTPGo admin user 249 + admin = commonAttrs // { 250 + password = adminPassword; 251 + }; 252 + 253 + # Alice and bob share folders with each other 254 + alice = commonAttrs // { 255 + password = alicePassword; 256 + extraGroups = [ sharedFolderName ]; 257 + }; 258 + 259 + bob = commonAttrs // { 260 + password = bobPassword; 261 + extraGroups = [ sharedFolderName ]; 262 + }; 263 + 264 + # Eve has no shared folders 265 + eve = commonAttrs // { 266 + password = evePassword; 267 + }; 268 + }; 269 + 270 + users.groups.${sharedFolderName} = {}; 271 + 272 + specialisation = { 273 + # A specialisation for asserting that SFTPGo can bind to privileged ports. 274 + privilegedPorts.configuration = { ... }: { 275 + networking.firewall.allowedTCPPorts = [ 22 80 ]; 276 + services.sftpgo = { 277 + settings = { 278 + sftpd.bindings = mkForce [{ 279 + address = ""; 280 + port = 22; 281 + }]; 282 + 283 + httpd.bindings = mkForce [{ 284 + address = ""; 285 + port = 80; 286 + }]; 287 + }; 288 + }; 289 + }; 290 + }; 291 + }; 292 + 293 + client = { nodes, ... }: { 294 + # Add the SFTPGo host key to the global known_hosts file 295 + programs.ssh.knownHosts = 296 + let 297 + commonAttrs = { 298 + publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE61C7pTXfnLG2u9So+ijNTKaSOg009UrquqNL3fpEu1"; 299 + }; 300 + in { 301 + "server" = commonAttrs; 302 + "[server]:2022" = commonAttrs; 303 + }; 304 + }; 305 + }; 306 + 307 + testScript = { nodes, ... }: let 308 + # A function to generate test cases for wheter 309 + # a specified username is expected to access the shared folder. 310 + accessSharedFoldersSubtest = 311 + { # The username to run as 312 + username 313 + # Whether the tests are expected to succeed or not 314 + , shouldSucceed ? true 315 + }: '' 316 + with subtest("Test whether ${username} can access shared folders"): 317 + client.${if shouldSucceed then "succeed" else "fail"}("sftp -P ${toString sftpPort} -b ${ 318 + pkgs.writeText "${username}-ls-${sharedFolderName}" '' 319 + ls ${sharedFolderName} 320 + '' 321 + } ${username}@server") 322 + ''; 323 + statePath = nodes.server.services.sftpgo.dataDir; 324 + in '' 325 + start_all() 326 + 327 + client.wait_for_unit("default.target") 328 + server.wait_for_unit("sftpgo.service") 329 + 330 + with subtest("web client"): 331 + client.wait_until_succeeds("curl -sSf http://server:${toString httpPort}/web/client/login") 332 + 333 + # Ensure sftpgo found the static folder 334 + client.wait_until_succeeds("curl -o /dev/null -sSf http://server:${toString httpPort}/static/favicon.ico") 335 + 336 + with subtest("Setup SSH keys"): 337 + client.succeed("mkdir -m 700 /root/.ssh") 338 + client.succeed("cat ${snakeOilPrivateKey} > /root/.ssh/id_ecdsa") 339 + client.succeed("chmod 600 /root/.ssh/id_ecdsa") 340 + 341 + with subtest("Copy a file over sftp"): 342 + client.wait_until_succeeds("scp -P ${toString sftpPort} ${toString testFile} alice@server:/private/${testFile.name}") 343 + server.succeed("test -s ${statePath}/users/alice/private/${testFile.name}") 344 + 345 + # The configured ACL should prevent uploading files to the root directory 346 + client.fail("scp -P ${toString sftpPort} ${toString testFile} alice@server:/") 347 + 348 + with subtest("Attempting an interactive SSH sessions must fail"): 349 + client.fail("ssh -p ${toString sftpPort} alice@server") 350 + 351 + ${accessSharedFoldersSubtest { 352 + username = "alice"; 353 + shouldSucceed = true; 354 + }} 355 + 356 + ${accessSharedFoldersSubtest { 357 + username = "bob"; 358 + shouldSucceed = true; 359 + }} 360 + 361 + ${accessSharedFoldersSubtest { 362 + username = "eve"; 363 + shouldSucceed = false; 364 + }} 365 + 366 + with subtest("Test sharing files"): 367 + # Alice uploads a file to shared folder 368 + client.succeed("scp -P ${toString sftpPort} ${toString sharedFile} alice@server:/${sharedFolderName}/${sharedFile.name}") 369 + server.succeed("test -s ${statePath}/${sharedFolderName}/${sharedFile.name}") 370 + 371 + # Bob downloads the file from shared folder 372 + client.succeed("scp -P ${toString sftpPort} bob@server:/shared/${sharedFile.name} ${sharedFile.name}") 373 + client.succeed("test -s ${sharedFile.name}") 374 + 375 + # Eve should not get the file from shared folder 376 + client.fail("scp -P ${toString sftpPort} eve@server:/shared/${sharedFile.name}") 377 + 378 + server.succeed("/run/current-system/specialisation/privilegedPorts/bin/switch-to-configuration test") 379 + 380 + client.wait_until_succeeds("sftp -P 22 -b ${pkgs.writeText "get-hello-world.txt" '' 381 + get /private/${testFile.name} 382 + ''} alice@server") 383 + ''; 384 + }
+1
pkgs/applications/audio/miniplayer/default.nix
··· 1 { lib 2 , python3Packages 3 }: 4 5 with python3Packages;
··· 1 { lib 2 , python3Packages 3 + , fetchPypi 4 }: 5 6 with python3Packages;
+1 -1
pkgs/applications/editors/jupyter-kernels/octave/kernel.nix
··· 1 - { lib, python3Packages }: 2 3 with python3Packages; 4
··· 1 + { lib, python3Packages, fetchPypi }: 2 3 with python3Packages; 4
+4 -4
pkgs/applications/editors/pulsar/default.nix
··· 23 24 let 25 pname = "pulsar"; 26 - version = "1.104.0"; 27 28 sourcesPath = { 29 x86_64-linux.tarname = "Linux.${pname}-${version}.tar.gz"; 30 - x86_64-linux.hash = "sha256-HEMUQVNPb6qWIXX25N79HwHo7j11MyFiBRsq9otdAL8="; 31 aarch64-linux.tarname = "ARM.Linux.${pname}-${version}-arm64.tar.gz"; 32 - aarch64-linux.hash = "sha256-f+s54XtLLdhTFY9caKTKngJF6zLai0F7ur9v37bwuNE="; 33 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 34 35 additionalLibs = lib.makeLibraryPath [ ··· 119 # But asar complains because the node_gyp unpacked dependency uses a prebuilt Python3 itself 120 121 rm $opt/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins/python3 122 - ln -s ${python3}/bin/python3 $opt/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins/python3 123 '' + '' 124 # Patch the bundled node executables 125 find $opt -name "*.node" -exec patchelf --set-rpath "${newLibpath}:$opt" {} \;
··· 23 24 let 25 pname = "pulsar"; 26 + version = "1.105.0"; 27 28 sourcesPath = { 29 x86_64-linux.tarname = "Linux.${pname}-${version}.tar.gz"; 30 + x86_64-linux.hash = "sha256-j2d83m8B6lt1eRAwOOTEq4o+CNe8I+6rkz9qyux55Qw="; 31 aarch64-linux.tarname = "ARM.Linux.${pname}-${version}-arm64.tar.gz"; 32 + aarch64-linux.hash = "sha256-iZVE1R30Tynyn/cAwNIiGrsCMTkWKFUforOkGXSzMsw="; 33 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 34 35 additionalLibs = lib.makeLibraryPath [ ··· 119 # But asar complains because the node_gyp unpacked dependency uses a prebuilt Python3 itself 120 121 rm $opt/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins/python3 122 + ln -s ${python3.interpreter} $opt/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins/python3 123 '' + '' 124 # Patch the bundled node executables 125 find $opt -name "*.node" -exec patchelf --set-rpath "${newLibpath}:$opt" {} \;
+22 -3
pkgs/applications/editors/pulsar/update.mjs
··· 13 targetFile: new URL("default.nix", import.meta.url).pathname, 14 }; 15 16 async function getLatestVersion() { 17 const requestResult = await fetch(constants.githubUrl); 18 if (!requestResult.ok) { ··· 37 38 let sha256 = hashFileContent. 39 split('\n'). 40 filter((line) => line.endsWith(targetFile))[0]. 41 split(' ')[0]; 42 ··· 47 // Upstream provides a file with the hashes of the files, but it's not in the SRI format, and it refers to the compressed tarball 48 // So let's just use nix-prefetch-url to get the hashes of the decompressed tarball, and `nix hash to-sri` to convert them to SRI format 49 const hashFileUrl = constants.sha256FileURL(newVersion); 50 - const hashFileContent = await fetch(hashFileUrl).then((response) => response.text()); 51 52 let x86_64; 53 let aarch64; 54 console.log("Getting new hashes"); 55 let promises = [ 56 - getSha256Sum(hashFileContent, constants.x86_64FileName(newVersion)).then((hash) => { x86_64 = hash; }), 57 - getSha256Sum(hashFileContent, constants.aarch64FileName(newVersion)).then((hash) => { aarch64 = hash; }), 58 ]; 59 await Promise.all(promises); 60 return { x86_64, aarch64 };
··· 13 targetFile: new URL("default.nix", import.meta.url).pathname, 14 }; 15 16 + async function utf16ToUtf8(blob) { 17 + // Sometime, upstream saves the SHA256SUMS.txt file in UTF-16, which absolutely breaks node's string handling 18 + // So we need to convert this blob to UTF-8 19 + 20 + // We need to skip the first 2 bytes, which are the BOM 21 + const arrayBuffer = await blob.slice(2).arrayBuffer(); 22 + const buffer = Buffer.from(arrayBuffer); 23 + const utf8String = buffer.toString('utf16le'); 24 + return utf8String; 25 + } 26 + 27 async function getLatestVersion() { 28 const requestResult = await fetch(constants.githubUrl); 29 if (!requestResult.ok) { ··· 48 49 let sha256 = hashFileContent. 50 split('\n'). 51 + map(line => line.replace("\r", "")). // Side-effect of the UTF-16 conversion, if the file was created from Windows 52 filter((line) => line.endsWith(targetFile))[0]. 53 split(' ')[0]; 54 ··· 59 // Upstream provides a file with the hashes of the files, but it's not in the SRI format, and it refers to the compressed tarball 60 // So let's just use nix-prefetch-url to get the hashes of the decompressed tarball, and `nix hash to-sri` to convert them to SRI format 61 const hashFileUrl = constants.sha256FileURL(newVersion); 62 + const hashFileContent = await fetch(hashFileUrl).then((response) => response.blob()); 63 + const headerbuffer = await hashFileContent.slice(0, 2).arrayBuffer() 64 + const header = Buffer.from(headerbuffer).toString('hex'); 65 + 66 + // We must detect if it's UTF-16 or UTF-8. If it's UTF-16, we must convert it to UTF-8, otherwise just use it as-is 67 + const hashFileContentString = header == 'fffe' ? 68 + await utf16ToUtf8(hashFileContent) : 69 + await hashFileContent.text(); 70 71 let x86_64; 72 let aarch64; 73 console.log("Getting new hashes"); 74 let promises = [ 75 + getSha256Sum(hashFileContentString, constants.x86_64FileName(newVersion)).then((hash) => { x86_64 = hash; }), 76 + getSha256Sum(hashFileContentString, constants.aarch64FileName(newVersion)).then((hash) => { aarch64 = hash; }), 77 ]; 78 await Promise.all(promises); 79 return { x86_64, aarch64 };
+2 -2
pkgs/applications/emulators/ppsspp/default.nix
··· 34 + lib.optionalString enableQt "-qt" 35 + lib.optionalString (!enableQt) "-sdl" 36 + lib.optionalString forceWayland "-wayland"; 37 - version = "1.15.3"; 38 39 src = fetchFromGitHub { 40 owner = "hrydgard"; 41 repo = "ppsspp"; 42 rev = "v${finalAttrs.version}"; 43 fetchSubmodules = true; 44 - sha256 = "sha256-5IICMP7KEniAnuxdDPECN+8jXA0ZKgPsdIL6Og2xyX4="; 45 }; 46 47 postPatch = ''
··· 34 + lib.optionalString enableQt "-qt" 35 + lib.optionalString (!enableQt) "-sdl" 36 + lib.optionalString forceWayland "-wayland"; 37 + version = "1.15.4"; 38 39 src = fetchFromGitHub { 40 owner = "hrydgard"; 41 repo = "ppsspp"; 42 rev = "v${finalAttrs.version}"; 43 fetchSubmodules = true; 44 + sha256 = "sha256-D94PLJfWalLk2kbS0PEHTMDdWxZW4YXwp3VQDHNZlRU="; 45 }; 46 47 postPatch = ''
+4 -4
pkgs/applications/emulators/ryujinx/default.nix
··· 29 30 buildDotnetModule rec { 31 pname = "ryujinx"; 32 - version = "1.1.733"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 33 34 src = fetchFromGitHub { 35 owner = "Ryujinx"; 36 repo = "Ryujinx"; 37 - rev = "9f12e50a546b15533778ed0d8290202af91c10a2"; 38 - sha256 = "1d1hg2sv0h56a56xnarcfp73df3rbw3iax85g258l6w2kxhkc42a"; 39 }; 40 41 dotnet-sdk = dotnetCorePackages.sdk_7_0; ··· 80 ]; 81 82 projectFile = "Ryujinx.sln"; 83 - testProjectFile = "Ryujinx.Tests/Ryujinx.Tests.csproj"; 84 doCheck = true; 85 86 dotnetFlags = [
··· 29 30 buildDotnetModule rec { 31 pname = "ryujinx"; 32 + version = "1.1.819"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 33 34 src = fetchFromGitHub { 35 owner = "Ryujinx"; 36 repo = "Ryujinx"; 37 + rev = "4ca78eded52f21089400cc28351b9353279b8171"; 38 + sha256 = "13g5sgql14rr7qmsiavm6kkjkv9sqqq7cmwpy9iiahbfzc9w1wc1"; 39 }; 40 41 dotnet-sdk = dotnetCorePackages.sdk_7_0; ··· 80 ]; 81 82 projectFile = "Ryujinx.sln"; 83 + testProjectFile = "src/Ryujinx.Tests/Ryujinx.Tests.csproj"; 84 doCheck = true; 85 86 dotnetFlags = [
+6 -6
pkgs/applications/emulators/ryujinx/deps.nix
··· 20 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 21 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 22 (fetchNuGet { pname = "DiscordRichPresence"; version = "1.1.3.18"; sha256 = "0p4bhaggjjfd4gl06yiphqgncxgcq2bws4sjkrw0n2ldf3hgrps3"; }) 23 - (fetchNuGet { pname = "DynamicData"; version = "7.13.5"; sha256 = "088ry176ba314m4hc1vbcxisflqzs7p7vvn8vqzxy3kj1rimgfmf"; }) 24 (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 25 (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) 26 (fetchNuGet { pname = "FluentAvaloniaUI"; version = "1.4.5"; sha256 = "1j5ivy83f13dgn09qrfkq44ijvh0m9rbdx8760g47di70c4lda7j"; }) ··· 50 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; }) 51 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; sha256 = "0b9myd7gqbpaw9pkd2bx45jhik9mwj0f1ss57sk2cxmag2lkdws5"; }) 52 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "6.0.0"; sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; }) 53 - (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "6.29.0"; sha256 = "06sdjg78764ycaq3bd32daacd9pjsvkihdzrw8d1cnmk3c42kvq3"; }) 54 - (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "6.29.0"; sha256 = "0iydfzz4vzzpx24q8mgvc3n289s00inc19x6a0w2v378mx4jkfl0"; }) 55 - (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "6.29.0"; sha256 = "04vj5h638ljz2fylr2idgjbfq5lzbw79m5ixcj1ikl4ydl9jhp9p"; }) 56 - (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "6.29.0"; sha256 = "05crx7w79m3jxlbnfc2c8i63m5z6h28y04qv6sc84312rzi2yw8c"; }) 57 (fetchNuGet { pname = "Microsoft.IO.RecyclableMemoryStream"; version = "2.3.2"; sha256 = "115bm7dljchr7c02hiv1r3l21r22wpml1j26fyn2amaflaihpq4l"; }) 58 (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.5.0"; sha256 = "00gz2i8kx4mlq1ywj3imvf7wc6qzh0bsnynhw06z0mgyha1a21jy"; }) 59 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) ··· 177 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 178 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.0.1"; sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; }) 179 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; }) 180 - (fetchNuGet { pname = "System.IdentityModel.Tokens.Jwt"; version = "6.29.0"; sha256 = "09bpj7gginq25fiyq3za5i8wm482qbnx6qhm4dxb95jrl3mmb126"; }) 181 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 182 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 183 (fetchNuGet { pname = "System.IO.Compression"; version = "4.1.0"; sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; })
··· 20 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 21 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 22 (fetchNuGet { pname = "DiscordRichPresence"; version = "1.1.3.18"; sha256 = "0p4bhaggjjfd4gl06yiphqgncxgcq2bws4sjkrw0n2ldf3hgrps3"; }) 23 + (fetchNuGet { pname = "DynamicData"; version = "7.13.8"; sha256 = "10ywbzk58046kgsbd9rybpa9m1v11as45jvf1qvxnl42hyc7q654"; }) 24 (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 25 (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) 26 (fetchNuGet { pname = "FluentAvaloniaUI"; version = "1.4.5"; sha256 = "1j5ivy83f13dgn09qrfkq44ijvh0m9rbdx8760g47di70c4lda7j"; }) ··· 50 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; }) 51 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; sha256 = "0b9myd7gqbpaw9pkd2bx45jhik9mwj0f1ss57sk2cxmag2lkdws5"; }) 52 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "6.0.0"; sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; }) 53 + (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "6.30.1"; sha256 = "1jb7za7kc41zx4vafpmyj42vzqb407b34npb9g6f42sk7127hip1"; }) 54 + (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "6.30.1"; sha256 = "1c1hs0nrzlrpvdrpj01yr7cdknh19gdxrahndb5fmn8p4k1vljlv"; }) 55 + (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "6.30.1"; sha256 = "02dkmh0qc2sfayvhzp8fgvn58b84yn8z4x3aijvjqahcwv14wfzs"; }) 56 + (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "6.30.1"; sha256 = "1283v1ynl7wp5llyswj2nd8l3pkj7yhcksy2slanid52iyqzzan1"; }) 57 (fetchNuGet { pname = "Microsoft.IO.RecyclableMemoryStream"; version = "2.3.2"; sha256 = "115bm7dljchr7c02hiv1r3l21r22wpml1j26fyn2amaflaihpq4l"; }) 58 (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.5.0"; sha256 = "00gz2i8kx4mlq1ywj3imvf7wc6qzh0bsnynhw06z0mgyha1a21jy"; }) 59 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) ··· 177 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 178 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.0.1"; sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; }) 179 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; }) 180 + (fetchNuGet { pname = "System.IdentityModel.Tokens.Jwt"; version = "6.30.1"; sha256 = "1f4x5sw9wpkk485lchl0nzdzkcy83s9b119c7g187x0qvkcvdpc2"; }) 181 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 182 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 183 (fetchNuGet { pname = "System.IO.Compression"; version = "4.1.0"; sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; })
+8 -1
pkgs/applications/kde/plasmatube/default.nix
··· 1 { lib 2 , mkDerivation 3 - , cmake 4 , extra-cmake-modules 5 , wrapGAppsHook 6 , gst_all_1 ··· 11 , mpv 12 , qtmultimedia 13 , qtquickcontrols2 14 }: 15 16 mkDerivation { ··· 35 gst-plugins-good 36 gstreamer 37 ]); 38 39 preFixup = '' 40 qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
··· 1 { lib 2 , mkDerivation 3 , extra-cmake-modules 4 , wrapGAppsHook 5 , gst_all_1 ··· 10 , mpv 11 , qtmultimedia 12 , qtquickcontrols2 13 + , yt-dlp 14 }: 15 16 mkDerivation { ··· 35 gst-plugins-good 36 gstreamer 37 ]); 38 + 39 + qtWrapperArgs = [ 40 + "--prefix" 41 + "PATH" 42 + ":" 43 + (lib.makeBinPath [ yt-dlp ]) 44 + ]; 45 46 preFixup = '' 47 qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
+1
pkgs/applications/misc/ablog/default.nix
··· 1 { lib 2 , python3 3 }: 4 5 with python3.pkgs;
··· 1 { lib 2 , python3 3 + , fetchPypi 4 }: 5 6 with python3.pkgs;
+1 -1
pkgs/applications/misc/archivy/default.nix
··· 1 { lib 2 - , stdenv 3 , python3 4 }: 5 6 let
··· 1 { lib 2 , python3 3 + , fetchPypi 4 }: 5 6 let
+2 -9
pkgs/applications/misc/bottles/default.nix
··· 1 { lib 2 , fetchFromGitHub 3 - , fetchpatch 4 , gitUpdater 5 , python3Packages 6 , blueprint-compiler ··· 29 30 python3Packages.buildPythonApplication rec { 31 pname = "bottles-unwrapped"; 32 - version = "51.5"; 33 34 src = fetchFromGitHub { 35 owner = "bottlesdevs"; 36 repo = "bottles"; 37 rev = version; 38 - sha256 = "sha256-8VF/CD0Wu2eV6wOpj/M6peKDthFWlcg+1NzzTSIH4S8="; 39 }; 40 41 patches = [ 42 ./vulkan_icd.patch 43 - 44 - # Remove next version 45 - (fetchpatch { 46 - url = "https://github.com/bottlesdevs/Bottles/commit/7cb284f9bac0b71bf632bfc70d94f7a53bc51267.patch"; 47 - hash = "sha256-mRF+BtQ0qM7Yvx7SONeH2wc04F87fEyNRlBuyQrzN8Y="; 48 - }) 49 ]; 50 51 # https://github.com/bottlesdevs/Bottles/wiki/Packaging
··· 1 { lib 2 , fetchFromGitHub 3 , gitUpdater 4 , python3Packages 5 , blueprint-compiler ··· 28 29 python3Packages.buildPythonApplication rec { 30 pname = "bottles-unwrapped"; 31 + version = "51.6"; 32 33 src = fetchFromGitHub { 34 owner = "bottlesdevs"; 35 repo = "bottles"; 36 rev = version; 37 + sha256 = "sha256-9oEC+ksgHz2HP4jVwTbLzjqc8WG1+S8hmVgl2dcuPB0="; 38 }; 39 40 patches = [ 41 ./vulkan_icd.patch 42 ]; 43 44 # https://github.com/bottlesdevs/Bottles/wiki/Packaging
+1 -2
pkgs/applications/misc/bottles/fhsenv.nix
··· 1 - { lib 2 - , buildFHSEnv 3 , symlinkJoin 4 , bottles-unwrapped 5 , gst_all_1
··· 1 + { buildFHSEnv 2 , symlinkJoin 3 , bottles-unwrapped 4 , gst_all_1
+1 -1
pkgs/applications/misc/cum/default.nix
··· 1 - { lib, python3Packages }: 2 3 with python3Packages; 4
··· 1 + { lib, python3Packages, fetchPypi }: 2 3 with python3Packages; 4
+3 -14
pkgs/applications/misc/huggle/00-remove-third-party.patch
··· 1 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 - index a37976e..5669366 100644 3 --- a/src/CMakeLists.txt 4 +++ b/src/CMakeLists.txt 5 - @@ -59,16 +59,12 @@ if(NOT MINGW AND WIN32) 6 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}/Debug) 7 endif() 8 ··· 11 +include_directories(@libirc_includes@) 12 13 # YAML 14 - -option(YAML_CPP_BUILD_TOOLS "Disable tests" OFF) 15 - -option(YAML_CPP_BUILD_TESTS "Enable testing" OFF) 16 - -option(YAML_CPP_BUILD_TOOLS "Enable parse tools" OFF) 17 - -option(BUILD_SHARED_LIBS "Build as shared" ON) 18 - -include_directories("3rd/yaml-cpp/include/") 19 - -add_subdirectory(3rd/yaml-cpp) 20 - +find_package(YAML-CPP 0.6.3 QUIET) 21 - +include_directories(YAML_CPP_INCLUDE_DIR) 22 - + 23 - if (HUGGLE_EXT) 24 - if(NOT MINGW AND WIN32) 25 - set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_CURRENT_BINARY_DIR}/Release/extensions)
··· 1 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 + index b7530e8f..af94a62d 100644 3 --- a/src/CMakeLists.txt 4 +++ b/src/CMakeLists.txt 5 + @@ -59,8 +59,7 @@ if(NOT MINGW AND WIN32) 6 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}/Debug) 7 endif() 8 ··· 11 +include_directories(@libirc_includes@) 12 13 # YAML 14 + find_package(YAML-CPP 0.6.3 QUIET)
+2 -2
pkgs/applications/misc/huggle/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "huggle"; 17 - version = "3.4.10"; 18 19 src = fetchFromGitHub { 20 owner = "huggle"; 21 repo = "huggle3-qt-lx"; 22 rev = version; 23 - sha256 = "UzoX4kdzYU50W0MUhfpo0HaSfvG3eINNC8u5t/gKuqI="; 24 fetchSubmodules = true; 25 }; 26
··· 14 15 stdenv.mkDerivation rec { 16 pname = "huggle"; 17 + version = "3.4.12"; 18 19 src = fetchFromGitHub { 20 owner = "huggle"; 21 repo = "huggle3-qt-lx"; 22 rev = version; 23 + sha256 = "scNGmMVZ6z9FTQuZCdwRYk0WP5qKfdb/M9Co8TbiMDE="; 24 fetchSubmodules = true; 25 }; 26
+3 -5
pkgs/applications/misc/inkcut/default.nix
··· 1 { lib 2 , fetchpatch 3 - , python3Packages 4 , fetchFromGitHub 5 , wrapQtAppsHook 6 , cups 7 }: 8 9 - with python3Packages; 10 - 11 - buildPythonApplication rec { 12 pname = "inkcut"; 13 version = "2.1.5"; 14 ··· 48 49 nativeBuildInputs = [ wrapQtAppsHook ]; 50 51 - propagatedBuildInputs = [ 52 enamlx 53 twisted 54 lxml
··· 1 { lib 2 , fetchpatch 3 + , python3 4 , fetchFromGitHub 5 , wrapQtAppsHook 6 , cups 7 }: 8 9 + python3.pkgs.buildPythonApplication rec { 10 pname = "inkcut"; 11 version = "2.1.5"; 12 ··· 46 47 nativeBuildInputs = [ wrapQtAppsHook ]; 48 49 + propagatedBuildInputs = with python3.pkgs; [ 50 enamlx 51 twisted 52 lxml
+3574
pkgs/applications/misc/kord/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 = "aes" 13 + version = "0.7.5" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 16 + dependencies = [ 17 + "cfg-if 1.0.0", 18 + "cipher", 19 + "cpufeatures", 20 + "opaque-debug", 21 + ] 22 + 23 + [[package]] 24 + name = "ahash" 25 + version = "0.8.3" 26 + source = "registry+https://github.com/rust-lang/crates.io-index" 27 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 28 + dependencies = [ 29 + "cfg-if 1.0.0", 30 + "once_cell", 31 + "version_check", 32 + ] 33 + 34 + [[package]] 35 + name = "aho-corasick" 36 + version = "0.7.20" 37 + source = "registry+https://github.com/rust-lang/crates.io-index" 38 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 39 + dependencies = [ 40 + "memchr", 41 + ] 42 + 43 + [[package]] 44 + name = "alsa" 45 + version = "0.7.0" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "8512c9117059663fb5606788fbca3619e2a91dac0e3fe516242eab1fa6be5e44" 48 + dependencies = [ 49 + "alsa-sys", 50 + "bitflags", 51 + "libc", 52 + "nix", 53 + ] 54 + 55 + [[package]] 56 + name = "alsa-sys" 57 + version = "0.3.1" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" 60 + dependencies = [ 61 + "libc", 62 + "pkg-config", 63 + ] 64 + 65 + [[package]] 66 + name = "android_system_properties" 67 + version = "0.1.5" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 70 + dependencies = [ 71 + "libc", 72 + ] 73 + 74 + [[package]] 75 + name = "ansi_term" 76 + version = "0.12.1" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 79 + dependencies = [ 80 + "winapi", 81 + ] 82 + 83 + [[package]] 84 + name = "anyhow" 85 + version = "1.0.69" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" 88 + 89 + [[package]] 90 + name = "arc-swap" 91 + version = "1.6.0" 92 + source = "registry+https://github.com/rust-lang/crates.io-index" 93 + checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 94 + 95 + [[package]] 96 + name = "arrayvec" 97 + version = "0.7.2" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 100 + 101 + [[package]] 102 + name = "async-trait" 103 + version = "0.1.66" 104 + source = "registry+https://github.com/rust-lang/crates.io-index" 105 + checksum = "b84f9ebcc6c1f5b8cb160f6990096a5c127f423fcb6e1ccc46c370cbdfb75dfc" 106 + dependencies = [ 107 + "proc-macro2", 108 + "quote", 109 + "syn", 110 + ] 111 + 112 + [[package]] 113 + name = "atty" 114 + version = "0.2.14" 115 + source = "registry+https://github.com/rust-lang/crates.io-index" 116 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 117 + dependencies = [ 118 + "hermit-abi 0.1.19", 119 + "libc", 120 + "winapi", 121 + ] 122 + 123 + [[package]] 124 + name = "autocfg" 125 + version = "1.1.0" 126 + source = "registry+https://github.com/rust-lang/crates.io-index" 127 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 128 + 129 + [[package]] 130 + name = "base64" 131 + version = "0.13.1" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 134 + 135 + [[package]] 136 + name = "base64ct" 137 + version = "1.6.0" 138 + source = "registry+https://github.com/rust-lang/crates.io-index" 139 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 140 + 141 + [[package]] 142 + name = "bincode" 143 + version = "2.0.0-rc.2" 144 + source = "git+https://github.com/bincode-org/bincode.git#6791311a98b059a540da2ef70fdafb41a7f54760" 145 + dependencies = [ 146 + "serde", 147 + ] 148 + 149 + [[package]] 150 + name = "bindgen" 151 + version = "0.61.0" 152 + source = "registry+https://github.com/rust-lang/crates.io-index" 153 + checksum = "8a022e58a142a46fea340d68012b9201c094e93ec3d033a944a24f8fd4a4f09a" 154 + dependencies = [ 155 + "bitflags", 156 + "cexpr", 157 + "clang-sys", 158 + "lazy_static", 159 + "lazycell", 160 + "peeking_take_while", 161 + "proc-macro2", 162 + "quote", 163 + "regex", 164 + "rustc-hash", 165 + "shlex", 166 + "syn", 167 + ] 168 + 169 + [[package]] 170 + name = "bitflags" 171 + version = "1.3.2" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 174 + 175 + [[package]] 176 + name = "block-buffer" 177 + version = "0.10.4" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 180 + dependencies = [ 181 + "generic-array", 182 + ] 183 + 184 + [[package]] 185 + name = "bumpalo" 186 + version = "3.12.0" 187 + source = "registry+https://github.com/rust-lang/crates.io-index" 188 + checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 189 + 190 + [[package]] 191 + name = "burn" 192 + version = "0.6.0" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "9f762ffa48b53a7d69c3bc7e6e1792d30e1d73de10da0beb025029a6d2f6578f" 195 + dependencies = [ 196 + "burn-core", 197 + "burn-train", 198 + ] 199 + 200 + [[package]] 201 + name = "burn-autodiff" 202 + version = "0.6.0" 203 + source = "registry+https://github.com/rust-lang/crates.io-index" 204 + checksum = "25759a31cfa871e13b4f17e0319248a5b124b7f5bc4962d98add09f8920cbff9" 205 + dependencies = [ 206 + "burn-common", 207 + "burn-tensor", 208 + "burn-tensor-testgen", 209 + "derive-new", 210 + "spin 0.9.6", 211 + ] 212 + 213 + [[package]] 214 + name = "burn-common" 215 + version = "0.6.0" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "830988a0a0c407a272561f28001ab0794efe4ee75c00f3fc2c6f5f2711474a95" 218 + dependencies = [ 219 + "const-random", 220 + "rand", 221 + "spin 0.9.6", 222 + "uuid", 223 + ] 224 + 225 + [[package]] 226 + name = "burn-core" 227 + version = "0.6.0" 228 + source = "registry+https://github.com/rust-lang/crates.io-index" 229 + checksum = "e2ab774b18a51fcf1f7d0ac6c8b6288bff6406ebae9094e2e524f8aa904164b1" 230 + dependencies = [ 231 + "burn-autodiff", 232 + "burn-common", 233 + "burn-dataset", 234 + "burn-derive", 235 + "burn-tensor", 236 + "derive-new", 237 + "flate2", 238 + "hashbrown 0.13.2", 239 + "libm", 240 + "log", 241 + "rand", 242 + "serde", 243 + "serde_json", 244 + "spin 0.9.6", 245 + ] 246 + 247 + [[package]] 248 + name = "burn-dataset" 249 + version = "0.6.0" 250 + source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "7234387b1641027a33c8ceaef413724080844f479b1adc44ed7c7990ee52d763" 252 + dependencies = [ 253 + "dirs", 254 + "rand", 255 + "serde", 256 + "serde_json", 257 + "thiserror", 258 + ] 259 + 260 + [[package]] 261 + name = "burn-derive" 262 + version = "0.6.0" 263 + source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "a79a50ec2c580c4734ca55a60142d15025e5244fb5cf3d19c70c23ce258d6599" 265 + dependencies = [ 266 + "proc-macro2", 267 + "quote", 268 + "syn", 269 + ] 270 + 271 + [[package]] 272 + name = "burn-ndarray" 273 + version = "0.6.0" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "a9bdd1946c0206f140bcb6ec598c572a518b7a8ed6406ed7131f3245d3f3c93b" 276 + dependencies = [ 277 + "burn-autodiff", 278 + "burn-common", 279 + "burn-tensor", 280 + "derive-new", 281 + "libm", 282 + "matrixmultiply", 283 + "ndarray", 284 + "num-traits", 285 + "rand", 286 + "rayon", 287 + "spin 0.9.6", 288 + ] 289 + 290 + [[package]] 291 + name = "burn-tch" 292 + version = "0.6.0" 293 + source = "registry+https://github.com/rust-lang/crates.io-index" 294 + checksum = "bc55e3db566a818c4c111d0b28d7e09e9673d9790efa731392d44d1e8f24158d" 295 + dependencies = [ 296 + "burn-tensor", 297 + "half", 298 + "libc", 299 + "rand", 300 + "tch", 301 + ] 302 + 303 + [[package]] 304 + name = "burn-tensor" 305 + version = "0.6.0" 306 + source = "registry+https://github.com/rust-lang/crates.io-index" 307 + checksum = "714397a86811e1aaf534f420c3af1fd908026fd8be99870b28b7e78037ddaf7e" 308 + dependencies = [ 309 + "burn-tensor-testgen", 310 + "derive-new", 311 + "half", 312 + "hashbrown 0.13.2", 313 + "libm", 314 + "num-traits", 315 + "rand", 316 + "rand_distr", 317 + "serde", 318 + ] 319 + 320 + [[package]] 321 + name = "burn-tensor-testgen" 322 + version = "0.6.0" 323 + source = "registry+https://github.com/rust-lang/crates.io-index" 324 + checksum = "349751c86a0f936db064f5a5d567174a880927bd41846899501d96ece319ba25" 325 + dependencies = [ 326 + "proc-macro2", 327 + "quote", 328 + "syn", 329 + ] 330 + 331 + [[package]] 332 + name = "burn-train" 333 + version = "0.6.0" 334 + source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "4b72ff7a3b4af6ea75db2bcb1b184a7a21e6df1d3e7d1dc0ba1dd39b21612778" 336 + dependencies = [ 337 + "burn-core", 338 + "derive-new", 339 + "indicatif", 340 + "log", 341 + "log4rs", 342 + "nvml-wrapper", 343 + "rgb", 344 + "serde", 345 + "terminal_size", 346 + "textplots", 347 + ] 348 + 349 + [[package]] 350 + name = "bytemuck" 351 + version = "1.13.1" 352 + source = "registry+https://github.com/rust-lang/crates.io-index" 353 + checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 354 + 355 + [[package]] 356 + name = "byteorder" 357 + version = "1.4.3" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 360 + 361 + [[package]] 362 + name = "bytes" 363 + version = "1.4.0" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 366 + 367 + [[package]] 368 + name = "bzip2" 369 + version = "0.4.4" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 372 + dependencies = [ 373 + "bzip2-sys", 374 + "libc", 375 + ] 376 + 377 + [[package]] 378 + name = "bzip2-sys" 379 + version = "0.1.11+1.0.8" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 382 + dependencies = [ 383 + "cc", 384 + "libc", 385 + "pkg-config", 386 + ] 387 + 388 + [[package]] 389 + name = "cc" 390 + version = "1.0.79" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 393 + dependencies = [ 394 + "jobserver", 395 + ] 396 + 397 + [[package]] 398 + name = "cesu8" 399 + version = "1.1.0" 400 + source = "registry+https://github.com/rust-lang/crates.io-index" 401 + checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 402 + 403 + [[package]] 404 + name = "cexpr" 405 + version = "0.6.0" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 408 + dependencies = [ 409 + "nom 7.1.3", 410 + ] 411 + 412 + [[package]] 413 + name = "cfg-if" 414 + version = "0.1.10" 415 + source = "registry+https://github.com/rust-lang/crates.io-index" 416 + checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 417 + 418 + [[package]] 419 + name = "cfg-if" 420 + version = "1.0.0" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 423 + 424 + [[package]] 425 + name = "chrono" 426 + version = "0.4.24" 427 + source = "registry+https://github.com/rust-lang/crates.io-index" 428 + checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 429 + dependencies = [ 430 + "iana-time-zone", 431 + "js-sys", 432 + "num-integer", 433 + "num-traits", 434 + "time 0.1.45", 435 + "wasm-bindgen", 436 + "winapi", 437 + ] 438 + 439 + [[package]] 440 + name = "cipher" 441 + version = "0.3.0" 442 + source = "registry+https://github.com/rust-lang/crates.io-index" 443 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 444 + dependencies = [ 445 + "generic-array", 446 + ] 447 + 448 + [[package]] 449 + name = "clang-sys" 450 + version = "1.6.0" 451 + source = "registry+https://github.com/rust-lang/crates.io-index" 452 + checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a" 453 + dependencies = [ 454 + "glob", 455 + "libc", 456 + "libloading", 457 + ] 458 + 459 + [[package]] 460 + name = "clap" 461 + version = "2.34.0" 462 + source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 464 + dependencies = [ 465 + "ansi_term", 466 + "atty", 467 + "bitflags", 468 + "strsim 0.8.0", 469 + "textwrap", 470 + "unicode-width", 471 + "vec_map", 472 + ] 473 + 474 + [[package]] 475 + name = "clap" 476 + version = "4.1.8" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5" 479 + dependencies = [ 480 + "bitflags", 481 + "clap_derive", 482 + "clap_lex", 483 + "is-terminal", 484 + "once_cell", 485 + "strsim 0.10.0", 486 + "termcolor", 487 + ] 488 + 489 + [[package]] 490 + name = "clap_derive" 491 + version = "4.1.8" 492 + source = "registry+https://github.com/rust-lang/crates.io-index" 493 + checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0" 494 + dependencies = [ 495 + "heck 0.4.1", 496 + "proc-macro-error", 497 + "proc-macro2", 498 + "quote", 499 + "syn", 500 + ] 501 + 502 + [[package]] 503 + name = "clap_lex" 504 + version = "0.3.2" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09" 507 + dependencies = [ 508 + "os_str_bytes", 509 + ] 510 + 511 + [[package]] 512 + name = "cmake" 513 + version = "0.1.49" 514 + source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c" 516 + dependencies = [ 517 + "cc", 518 + ] 519 + 520 + [[package]] 521 + name = "codespan-reporting" 522 + version = "0.11.1" 523 + source = "registry+https://github.com/rust-lang/crates.io-index" 524 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 525 + dependencies = [ 526 + "termcolor", 527 + "unicode-width", 528 + ] 529 + 530 + [[package]] 531 + name = "color_quant" 532 + version = "1.1.0" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 535 + 536 + [[package]] 537 + name = "colored" 538 + version = "2.0.0" 539 + source = "registry+https://github.com/rust-lang/crates.io-index" 540 + checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" 541 + dependencies = [ 542 + "atty", 543 + "lazy_static", 544 + "winapi", 545 + ] 546 + 547 + [[package]] 548 + name = "combine" 549 + version = "4.6.6" 550 + source = "registry+https://github.com/rust-lang/crates.io-index" 551 + checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 552 + dependencies = [ 553 + "bytes", 554 + "memchr", 555 + ] 556 + 557 + [[package]] 558 + name = "console" 559 + version = "0.15.5" 560 + source = "registry+https://github.com/rust-lang/crates.io-index" 561 + checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 562 + dependencies = [ 563 + "encode_unicode", 564 + "lazy_static", 565 + "libc", 566 + "unicode-width", 567 + "windows-sys 0.42.0", 568 + ] 569 + 570 + [[package]] 571 + name = "console_error_panic_hook" 572 + version = "0.1.7" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 575 + dependencies = [ 576 + "cfg-if 1.0.0", 577 + "wasm-bindgen", 578 + ] 579 + 580 + [[package]] 581 + name = "const-cstr" 582 + version = "0.3.0" 583 + source = "registry+https://github.com/rust-lang/crates.io-index" 584 + checksum = "ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6" 585 + 586 + [[package]] 587 + name = "const-random" 588 + version = "0.1.15" 589 + source = "registry+https://github.com/rust-lang/crates.io-index" 590 + checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 591 + dependencies = [ 592 + "const-random-macro", 593 + "proc-macro-hack", 594 + ] 595 + 596 + [[package]] 597 + name = "const-random-macro" 598 + version = "0.1.15" 599 + source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 601 + dependencies = [ 602 + "getrandom", 603 + "once_cell", 604 + "proc-macro-hack", 605 + "tiny-keccak", 606 + ] 607 + 608 + [[package]] 609 + name = "constant_time_eq" 610 + version = "0.1.5" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 613 + 614 + [[package]] 615 + name = "core-foundation" 616 + version = "0.9.3" 617 + source = "registry+https://github.com/rust-lang/crates.io-index" 618 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 619 + dependencies = [ 620 + "core-foundation-sys 0.8.3", 621 + "libc", 622 + ] 623 + 624 + [[package]] 625 + name = "core-foundation-sys" 626 + version = "0.6.2" 627 + source = "registry+https://github.com/rust-lang/crates.io-index" 628 + checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" 629 + 630 + [[package]] 631 + name = "core-foundation-sys" 632 + version = "0.8.3" 633 + source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 635 + 636 + [[package]] 637 + name = "core-graphics" 638 + version = "0.22.3" 639 + source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 641 + dependencies = [ 642 + "bitflags", 643 + "core-foundation", 644 + "core-graphics-types", 645 + "foreign-types", 646 + "libc", 647 + ] 648 + 649 + [[package]] 650 + name = "core-graphics-types" 651 + version = "0.1.1" 652 + source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 654 + dependencies = [ 655 + "bitflags", 656 + "core-foundation", 657 + "foreign-types", 658 + "libc", 659 + ] 660 + 661 + [[package]] 662 + name = "core-text" 663 + version = "19.2.0" 664 + source = "registry+https://github.com/rust-lang/crates.io-index" 665 + checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25" 666 + dependencies = [ 667 + "core-foundation", 668 + "core-graphics", 669 + "foreign-types", 670 + "libc", 671 + ] 672 + 673 + [[package]] 674 + name = "coreaudio-rs" 675 + version = "0.11.2" 676 + source = "registry+https://github.com/rust-lang/crates.io-index" 677 + checksum = "cb17e2d1795b1996419648915df94bc7103c28f7b48062d7acf4652fc371b2ff" 678 + dependencies = [ 679 + "bitflags", 680 + "core-foundation-sys 0.6.2", 681 + "coreaudio-sys", 682 + ] 683 + 684 + [[package]] 685 + name = "coreaudio-sys" 686 + version = "0.2.11" 687 + source = "registry+https://github.com/rust-lang/crates.io-index" 688 + checksum = "1a9444b94b8024feecc29e01a9706c69c1e26bfee480221c90764200cfd778fb" 689 + dependencies = [ 690 + "bindgen", 691 + ] 692 + 693 + [[package]] 694 + name = "cpal" 695 + version = "0.15.0" 696 + source = "registry+https://github.com/rust-lang/crates.io-index" 697 + checksum = "d34fa7b20adf588f73f094cd9b1d944977c686e37a2759ea217ab174f017e10a" 698 + dependencies = [ 699 + "alsa", 700 + "core-foundation-sys 0.8.3", 701 + "coreaudio-rs", 702 + "dasp_sample", 703 + "jni 0.19.0", 704 + "js-sys", 705 + "libc", 706 + "mach", 707 + "ndk", 708 + "ndk-context", 709 + "oboe", 710 + "once_cell", 711 + "parking_lot", 712 + "thiserror", 713 + "wasm-bindgen", 714 + "wasm-bindgen-futures", 715 + "web-sys", 716 + "windows", 717 + ] 718 + 719 + [[package]] 720 + name = "cpufeatures" 721 + version = "0.2.5" 722 + source = "registry+https://github.com/rust-lang/crates.io-index" 723 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 724 + dependencies = [ 725 + "libc", 726 + ] 727 + 728 + [[package]] 729 + name = "crc32fast" 730 + version = "1.3.2" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 733 + dependencies = [ 734 + "cfg-if 1.0.0", 735 + ] 736 + 737 + [[package]] 738 + name = "crossbeam-channel" 739 + version = "0.5.7" 740 + source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" 742 + dependencies = [ 743 + "cfg-if 1.0.0", 744 + "crossbeam-utils", 745 + ] 746 + 747 + [[package]] 748 + name = "crossbeam-deque" 749 + version = "0.8.3" 750 + source = "registry+https://github.com/rust-lang/crates.io-index" 751 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 752 + dependencies = [ 753 + "cfg-if 1.0.0", 754 + "crossbeam-epoch", 755 + "crossbeam-utils", 756 + ] 757 + 758 + [[package]] 759 + name = "crossbeam-epoch" 760 + version = "0.9.14" 761 + source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 763 + dependencies = [ 764 + "autocfg", 765 + "cfg-if 1.0.0", 766 + "crossbeam-utils", 767 + "memoffset", 768 + "scopeguard", 769 + ] 770 + 771 + [[package]] 772 + name = "crossbeam-utils" 773 + version = "0.8.15" 774 + source = "registry+https://github.com/rust-lang/crates.io-index" 775 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 776 + dependencies = [ 777 + "cfg-if 1.0.0", 778 + ] 779 + 780 + [[package]] 781 + name = "crunchy" 782 + version = "0.2.2" 783 + source = "registry+https://github.com/rust-lang/crates.io-index" 784 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 785 + 786 + [[package]] 787 + name = "crypto-common" 788 + version = "0.1.6" 789 + source = "registry+https://github.com/rust-lang/crates.io-index" 790 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 791 + dependencies = [ 792 + "generic-array", 793 + "typenum", 794 + ] 795 + 796 + [[package]] 797 + name = "ctor" 798 + version = "0.1.26" 799 + source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 801 + dependencies = [ 802 + "quote", 803 + "syn", 804 + ] 805 + 806 + [[package]] 807 + name = "cxx" 808 + version = "1.0.92" 809 + source = "registry+https://github.com/rust-lang/crates.io-index" 810 + checksum = "9a140f260e6f3f79013b8bfc65e7ce630c9ab4388c6a89c71e07226f49487b72" 811 + dependencies = [ 812 + "cc", 813 + "cxxbridge-flags", 814 + "cxxbridge-macro", 815 + "link-cplusplus", 816 + ] 817 + 818 + [[package]] 819 + name = "cxx-build" 820 + version = "1.0.92" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "da6383f459341ea689374bf0a42979739dc421874f112ff26f829b8040b8e613" 823 + dependencies = [ 824 + "cc", 825 + "codespan-reporting", 826 + "once_cell", 827 + "proc-macro2", 828 + "quote", 829 + "scratch", 830 + "syn", 831 + ] 832 + 833 + [[package]] 834 + name = "cxxbridge-flags" 835 + version = "1.0.92" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "90201c1a650e95ccff1c8c0bb5a343213bdd317c6e600a93075bca2eff54ec97" 838 + 839 + [[package]] 840 + name = "cxxbridge-macro" 841 + version = "1.0.92" 842 + source = "registry+https://github.com/rust-lang/crates.io-index" 843 + checksum = "0b75aed41bb2e6367cae39e6326ef817a851db13c13e4f3263714ca3cfb8de56" 844 + dependencies = [ 845 + "proc-macro2", 846 + "quote", 847 + "syn", 848 + ] 849 + 850 + [[package]] 851 + name = "darling" 852 + version = "0.10.2" 853 + source = "registry+https://github.com/rust-lang/crates.io-index" 854 + checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858" 855 + dependencies = [ 856 + "darling_core", 857 + "darling_macro", 858 + ] 859 + 860 + [[package]] 861 + name = "darling_core" 862 + version = "0.10.2" 863 + source = "registry+https://github.com/rust-lang/crates.io-index" 864 + checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b" 865 + dependencies = [ 866 + "fnv", 867 + "ident_case", 868 + "proc-macro2", 869 + "quote", 870 + "strsim 0.9.3", 871 + "syn", 872 + ] 873 + 874 + [[package]] 875 + name = "darling_macro" 876 + version = "0.10.2" 877 + source = "registry+https://github.com/rust-lang/crates.io-index" 878 + checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72" 879 + dependencies = [ 880 + "darling_core", 881 + "quote", 882 + "syn", 883 + ] 884 + 885 + [[package]] 886 + name = "dasp_sample" 887 + version = "0.11.0" 888 + source = "registry+https://github.com/rust-lang/crates.io-index" 889 + checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" 890 + 891 + [[package]] 892 + name = "derivative" 893 + version = "2.2.0" 894 + source = "registry+https://github.com/rust-lang/crates.io-index" 895 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 896 + dependencies = [ 897 + "proc-macro2", 898 + "quote", 899 + "syn", 900 + ] 901 + 902 + [[package]] 903 + name = "derive-new" 904 + version = "0.5.9" 905 + source = "registry+https://github.com/rust-lang/crates.io-index" 906 + checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535" 907 + dependencies = [ 908 + "proc-macro2", 909 + "quote", 910 + "syn", 911 + ] 912 + 913 + [[package]] 914 + name = "destructure_traitobject" 915 + version = "0.2.0" 916 + source = "registry+https://github.com/rust-lang/crates.io-index" 917 + checksum = "3c877555693c14d2f84191cfd3ad8582790fc52b5e2274b40b59cf5f5cea25c7" 918 + 919 + [[package]] 920 + name = "diff" 921 + version = "0.1.13" 922 + source = "registry+https://github.com/rust-lang/crates.io-index" 923 + checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 924 + 925 + [[package]] 926 + name = "digest" 927 + version = "0.10.6" 928 + source = "registry+https://github.com/rust-lang/crates.io-index" 929 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 930 + dependencies = [ 931 + "block-buffer", 932 + "crypto-common", 933 + "subtle", 934 + ] 935 + 936 + [[package]] 937 + name = "dirs" 938 + version = "4.0.0" 939 + source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 941 + dependencies = [ 942 + "dirs-sys", 943 + ] 944 + 945 + [[package]] 946 + name = "dirs-next" 947 + version = "2.0.0" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 950 + dependencies = [ 951 + "cfg-if 1.0.0", 952 + "dirs-sys-next", 953 + ] 954 + 955 + [[package]] 956 + name = "dirs-sys" 957 + version = "0.3.7" 958 + source = "registry+https://github.com/rust-lang/crates.io-index" 959 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 960 + dependencies = [ 961 + "libc", 962 + "redox_users", 963 + "winapi", 964 + ] 965 + 966 + [[package]] 967 + name = "dirs-sys-next" 968 + version = "0.1.2" 969 + source = "registry+https://github.com/rust-lang/crates.io-index" 970 + checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 971 + dependencies = [ 972 + "libc", 973 + "redox_users", 974 + "winapi", 975 + ] 976 + 977 + [[package]] 978 + name = "dlib" 979 + version = "0.5.0" 980 + source = "registry+https://github.com/rust-lang/crates.io-index" 981 + checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794" 982 + dependencies = [ 983 + "libloading", 984 + ] 985 + 986 + [[package]] 987 + name = "drawille" 988 + version = "0.3.0" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "e64e461c3f1e69d99372620640b3fd5f0309eeda2e26e4af69f6760c0e1df845" 991 + dependencies = [ 992 + "colored", 993 + "fnv", 994 + ] 995 + 996 + [[package]] 997 + name = "dwrote" 998 + version = "0.11.0" 999 + source = "registry+https://github.com/rust-lang/crates.io-index" 1000 + checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b" 1001 + dependencies = [ 1002 + "lazy_static", 1003 + "libc", 1004 + "winapi", 1005 + "wio", 1006 + ] 1007 + 1008 + [[package]] 1009 + name = "either" 1010 + version = "1.8.1" 1011 + source = "registry+https://github.com/rust-lang/crates.io-index" 1012 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1013 + 1014 + [[package]] 1015 + name = "encode_unicode" 1016 + version = "0.3.6" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1019 + 1020 + [[package]] 1021 + name = "encoding_rs" 1022 + version = "0.8.32" 1023 + source = "registry+https://github.com/rust-lang/crates.io-index" 1024 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1025 + dependencies = [ 1026 + "cfg-if 1.0.0", 1027 + ] 1028 + 1029 + [[package]] 1030 + name = "errno" 1031 + version = "0.2.8" 1032 + source = "registry+https://github.com/rust-lang/crates.io-index" 1033 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 1034 + dependencies = [ 1035 + "errno-dragonfly", 1036 + "libc", 1037 + "winapi", 1038 + ] 1039 + 1040 + [[package]] 1041 + name = "errno-dragonfly" 1042 + version = "0.1.2" 1043 + source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1045 + dependencies = [ 1046 + "cc", 1047 + "libc", 1048 + ] 1049 + 1050 + [[package]] 1051 + name = "flate2" 1052 + version = "1.0.25" 1053 + source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1055 + dependencies = [ 1056 + "crc32fast", 1057 + "miniz_oxide", 1058 + ] 1059 + 1060 + [[package]] 1061 + name = "float-ord" 1062 + version = "0.2.0" 1063 + source = "registry+https://github.com/rust-lang/crates.io-index" 1064 + checksum = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e" 1065 + 1066 + [[package]] 1067 + name = "fnv" 1068 + version = "1.0.7" 1069 + source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1071 + 1072 + [[package]] 1073 + name = "font-kit" 1074 + version = "0.11.0" 1075 + source = "registry+https://github.com/rust-lang/crates.io-index" 1076 + checksum = "21fe28504d371085fae9ac7a3450f0b289ab71e07c8e57baa3fb68b9e57d6ce5" 1077 + dependencies = [ 1078 + "bitflags", 1079 + "byteorder", 1080 + "core-foundation", 1081 + "core-graphics", 1082 + "core-text", 1083 + "dirs-next", 1084 + "dwrote", 1085 + "float-ord", 1086 + "freetype", 1087 + "lazy_static", 1088 + "libc", 1089 + "log", 1090 + "pathfinder_geometry", 1091 + "pathfinder_simd", 1092 + "walkdir", 1093 + "winapi", 1094 + "yeslogic-fontconfig-sys", 1095 + ] 1096 + 1097 + [[package]] 1098 + name = "foreign-types" 1099 + version = "0.3.2" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1102 + dependencies = [ 1103 + "foreign-types-shared", 1104 + ] 1105 + 1106 + [[package]] 1107 + name = "foreign-types-shared" 1108 + version = "0.1.1" 1109 + source = "registry+https://github.com/rust-lang/crates.io-index" 1110 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1111 + 1112 + [[package]] 1113 + name = "form_urlencoded" 1114 + version = "1.1.0" 1115 + source = "registry+https://github.com/rust-lang/crates.io-index" 1116 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1117 + dependencies = [ 1118 + "percent-encoding", 1119 + ] 1120 + 1121 + [[package]] 1122 + name = "freetype" 1123 + version = "0.7.0" 1124 + source = "registry+https://github.com/rust-lang/crates.io-index" 1125 + checksum = "bee38378a9e3db1cc693b4f88d166ae375338a0ff75cb8263e1c601d51f35dc6" 1126 + dependencies = [ 1127 + "freetype-sys", 1128 + "libc", 1129 + ] 1130 + 1131 + [[package]] 1132 + name = "freetype-sys" 1133 + version = "0.13.1" 1134 + source = "registry+https://github.com/rust-lang/crates.io-index" 1135 + checksum = "a37d4011c0cc628dfa766fcc195454f4b068d7afdc2adfd28861191d866e731a" 1136 + dependencies = [ 1137 + "cmake", 1138 + "libc", 1139 + "pkg-config", 1140 + ] 1141 + 1142 + [[package]] 1143 + name = "futures" 1144 + version = "0.3.27" 1145 + source = "registry+https://github.com/rust-lang/crates.io-index" 1146 + checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549" 1147 + dependencies = [ 1148 + "futures-channel", 1149 + "futures-core", 1150 + "futures-executor", 1151 + "futures-io", 1152 + "futures-sink", 1153 + "futures-task", 1154 + "futures-util", 1155 + ] 1156 + 1157 + [[package]] 1158 + name = "futures-channel" 1159 + version = "0.3.27" 1160 + source = "registry+https://github.com/rust-lang/crates.io-index" 1161 + checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac" 1162 + dependencies = [ 1163 + "futures-core", 1164 + "futures-sink", 1165 + ] 1166 + 1167 + [[package]] 1168 + name = "futures-core" 1169 + version = "0.3.27" 1170 + source = "registry+https://github.com/rust-lang/crates.io-index" 1171 + checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd" 1172 + 1173 + [[package]] 1174 + name = "futures-executor" 1175 + version = "0.3.27" 1176 + source = "registry+https://github.com/rust-lang/crates.io-index" 1177 + checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83" 1178 + dependencies = [ 1179 + "futures-core", 1180 + "futures-task", 1181 + "futures-util", 1182 + ] 1183 + 1184 + [[package]] 1185 + name = "futures-io" 1186 + version = "0.3.27" 1187 + source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91" 1189 + 1190 + [[package]] 1191 + name = "futures-macro" 1192 + version = "0.3.27" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6" 1195 + dependencies = [ 1196 + "proc-macro2", 1197 + "quote", 1198 + "syn", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "futures-sink" 1203 + version = "0.3.27" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2" 1206 + 1207 + [[package]] 1208 + name = "futures-task" 1209 + version = "0.3.27" 1210 + source = "registry+https://github.com/rust-lang/crates.io-index" 1211 + checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879" 1212 + 1213 + [[package]] 1214 + name = "futures-timer" 1215 + version = "3.0.2" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 1218 + 1219 + [[package]] 1220 + name = "futures-util" 1221 + version = "0.3.27" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab" 1224 + dependencies = [ 1225 + "futures-channel", 1226 + "futures-core", 1227 + "futures-io", 1228 + "futures-macro", 1229 + "futures-sink", 1230 + "futures-task", 1231 + "memchr", 1232 + "pin-project-lite", 1233 + "pin-utils", 1234 + "slab", 1235 + ] 1236 + 1237 + [[package]] 1238 + name = "generic-array" 1239 + version = "0.14.6" 1240 + source = "registry+https://github.com/rust-lang/crates.io-index" 1241 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1242 + dependencies = [ 1243 + "typenum", 1244 + "version_check", 1245 + ] 1246 + 1247 + [[package]] 1248 + name = "getrandom" 1249 + version = "0.2.8" 1250 + source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1252 + dependencies = [ 1253 + "cfg-if 1.0.0", 1254 + "libc", 1255 + "wasi 0.11.0+wasi-snapshot-preview1", 1256 + ] 1257 + 1258 + [[package]] 1259 + name = "gif" 1260 + version = "0.11.4" 1261 + source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06" 1263 + dependencies = [ 1264 + "color_quant", 1265 + "weezl", 1266 + ] 1267 + 1268 + [[package]] 1269 + name = "glob" 1270 + version = "0.3.1" 1271 + source = "registry+https://github.com/rust-lang/crates.io-index" 1272 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1273 + 1274 + [[package]] 1275 + name = "gloo-timers" 1276 + version = "0.2.6" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1279 + dependencies = [ 1280 + "futures-channel", 1281 + "futures-core", 1282 + "js-sys", 1283 + "wasm-bindgen", 1284 + ] 1285 + 1286 + [[package]] 1287 + name = "half" 1288 + version = "2.2.1" 1289 + source = "registry+https://github.com/rust-lang/crates.io-index" 1290 + checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" 1291 + dependencies = [ 1292 + "crunchy", 1293 + "num-traits", 1294 + ] 1295 + 1296 + [[package]] 1297 + name = "hashbrown" 1298 + version = "0.12.3" 1299 + source = "registry+https://github.com/rust-lang/crates.io-index" 1300 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1301 + 1302 + [[package]] 1303 + name = "hashbrown" 1304 + version = "0.13.2" 1305 + source = "registry+https://github.com/rust-lang/crates.io-index" 1306 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 1307 + dependencies = [ 1308 + "ahash", 1309 + "serde", 1310 + ] 1311 + 1312 + [[package]] 1313 + name = "heck" 1314 + version = "0.3.3" 1315 + source = "registry+https://github.com/rust-lang/crates.io-index" 1316 + checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1317 + dependencies = [ 1318 + "unicode-segmentation", 1319 + ] 1320 + 1321 + [[package]] 1322 + name = "heck" 1323 + version = "0.4.1" 1324 + source = "registry+https://github.com/rust-lang/crates.io-index" 1325 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1326 + 1327 + [[package]] 1328 + name = "hermit-abi" 1329 + version = "0.1.19" 1330 + source = "registry+https://github.com/rust-lang/crates.io-index" 1331 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1332 + dependencies = [ 1333 + "libc", 1334 + ] 1335 + 1336 + [[package]] 1337 + name = "hermit-abi" 1338 + version = "0.2.6" 1339 + source = "registry+https://github.com/rust-lang/crates.io-index" 1340 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1341 + dependencies = [ 1342 + "libc", 1343 + ] 1344 + 1345 + [[package]] 1346 + name = "hermit-abi" 1347 + version = "0.3.1" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1350 + 1351 + [[package]] 1352 + name = "hmac" 1353 + version = "0.12.1" 1354 + source = "registry+https://github.com/rust-lang/crates.io-index" 1355 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1356 + dependencies = [ 1357 + "digest", 1358 + ] 1359 + 1360 + [[package]] 1361 + name = "humantime" 1362 + version = "2.1.0" 1363 + source = "registry+https://github.com/rust-lang/crates.io-index" 1364 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1365 + 1366 + [[package]] 1367 + name = "iana-time-zone" 1368 + version = "0.1.53" 1369 + source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 1371 + dependencies = [ 1372 + "android_system_properties", 1373 + "core-foundation-sys 0.8.3", 1374 + "iana-time-zone-haiku", 1375 + "js-sys", 1376 + "wasm-bindgen", 1377 + "winapi", 1378 + ] 1379 + 1380 + [[package]] 1381 + name = "iana-time-zone-haiku" 1382 + version = "0.1.1" 1383 + source = "registry+https://github.com/rust-lang/crates.io-index" 1384 + checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 1385 + dependencies = [ 1386 + "cxx", 1387 + "cxx-build", 1388 + ] 1389 + 1390 + [[package]] 1391 + name = "ident_case" 1392 + version = "1.0.1" 1393 + source = "registry+https://github.com/rust-lang/crates.io-index" 1394 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1395 + 1396 + [[package]] 1397 + name = "idna" 1398 + version = "0.3.0" 1399 + source = "registry+https://github.com/rust-lang/crates.io-index" 1400 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1401 + dependencies = [ 1402 + "unicode-bidi", 1403 + "unicode-normalization", 1404 + ] 1405 + 1406 + [[package]] 1407 + name = "image" 1408 + version = "0.24.5" 1409 + source = "registry+https://github.com/rust-lang/crates.io-index" 1410 + checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945" 1411 + dependencies = [ 1412 + "bytemuck", 1413 + "byteorder", 1414 + "color_quant", 1415 + "jpeg-decoder", 1416 + "num-rational", 1417 + "num-traits", 1418 + "png", 1419 + ] 1420 + 1421 + [[package]] 1422 + name = "indexmap" 1423 + version = "1.9.2" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 1426 + dependencies = [ 1427 + "autocfg", 1428 + "hashbrown 0.12.3", 1429 + ] 1430 + 1431 + [[package]] 1432 + name = "indicatif" 1433 + version = "0.17.3" 1434 + source = "registry+https://github.com/rust-lang/crates.io-index" 1435 + checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729" 1436 + dependencies = [ 1437 + "console", 1438 + "number_prefix", 1439 + "portable-atomic", 1440 + "unicode-width", 1441 + ] 1442 + 1443 + [[package]] 1444 + name = "io-lifetimes" 1445 + version = "1.0.6" 1446 + source = "registry+https://github.com/rust-lang/crates.io-index" 1447 + checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3" 1448 + dependencies = [ 1449 + "libc", 1450 + "windows-sys 0.45.0", 1451 + ] 1452 + 1453 + [[package]] 1454 + name = "is-terminal" 1455 + version = "0.4.4" 1456 + source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" 1458 + dependencies = [ 1459 + "hermit-abi 0.3.1", 1460 + "io-lifetimes", 1461 + "rustix", 1462 + "windows-sys 0.45.0", 1463 + ] 1464 + 1465 + [[package]] 1466 + name = "itoa" 1467 + version = "1.0.6" 1468 + source = "registry+https://github.com/rust-lang/crates.io-index" 1469 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1470 + 1471 + [[package]] 1472 + name = "jni" 1473 + version = "0.19.0" 1474 + source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1476 + dependencies = [ 1477 + "cesu8", 1478 + "combine", 1479 + "jni-sys", 1480 + "log", 1481 + "thiserror", 1482 + "walkdir", 1483 + ] 1484 + 1485 + [[package]] 1486 + name = "jni" 1487 + version = "0.20.0" 1488 + source = "registry+https://github.com/rust-lang/crates.io-index" 1489 + checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 1490 + dependencies = [ 1491 + "cesu8", 1492 + "combine", 1493 + "jni-sys", 1494 + "log", 1495 + "thiserror", 1496 + "walkdir", 1497 + ] 1498 + 1499 + [[package]] 1500 + name = "jni-sys" 1501 + version = "0.3.0" 1502 + source = "registry+https://github.com/rust-lang/crates.io-index" 1503 + checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1504 + 1505 + [[package]] 1506 + name = "jobserver" 1507 + version = "0.1.26" 1508 + source = "registry+https://github.com/rust-lang/crates.io-index" 1509 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1510 + dependencies = [ 1511 + "libc", 1512 + ] 1513 + 1514 + [[package]] 1515 + name = "jpeg-decoder" 1516 + version = "0.3.0" 1517 + source = "registry+https://github.com/rust-lang/crates.io-index" 1518 + checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 1519 + 1520 + [[package]] 1521 + name = "js-sys" 1522 + version = "0.3.61" 1523 + source = "registry+https://github.com/rust-lang/crates.io-index" 1524 + checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1525 + dependencies = [ 1526 + "wasm-bindgen", 1527 + ] 1528 + 1529 + [[package]] 1530 + name = "kord" 1531 + version = "0.5.16" 1532 + dependencies = [ 1533 + "anyhow", 1534 + "async-trait", 1535 + "bincode", 1536 + "burn", 1537 + "burn-autodiff", 1538 + "burn-ndarray", 1539 + "burn-tch", 1540 + "byteorder", 1541 + "clap 4.1.8", 1542 + "console_error_panic_hook", 1543 + "cpal", 1544 + "futures", 1545 + "futures-timer", 1546 + "gloo-timers", 1547 + "js-sys", 1548 + "once_cell", 1549 + "parse_duration0", 1550 + "paste", 1551 + "pest", 1552 + "pest_derive", 1553 + "plotters", 1554 + "pretty_assertions", 1555 + "rand", 1556 + "rayon", 1557 + "rodio", 1558 + "rustfft", 1559 + "serde", 1560 + "symphonia", 1561 + "wasm-bindgen", 1562 + "wasm-bindgen-futures", 1563 + "wee_alloc", 1564 + ] 1565 + 1566 + [[package]] 1567 + name = "lazy_static" 1568 + version = "1.4.0" 1569 + source = "registry+https://github.com/rust-lang/crates.io-index" 1570 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1571 + 1572 + [[package]] 1573 + name = "lazycell" 1574 + version = "1.3.0" 1575 + source = "registry+https://github.com/rust-lang/crates.io-index" 1576 + checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1577 + 1578 + [[package]] 1579 + name = "libc" 1580 + version = "0.2.140" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 1583 + 1584 + [[package]] 1585 + name = "libloading" 1586 + version = "0.7.4" 1587 + source = "registry+https://github.com/rust-lang/crates.io-index" 1588 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1589 + dependencies = [ 1590 + "cfg-if 1.0.0", 1591 + "winapi", 1592 + ] 1593 + 1594 + [[package]] 1595 + name = "libm" 1596 + version = "0.2.6" 1597 + source = "registry+https://github.com/rust-lang/crates.io-index" 1598 + checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 1599 + 1600 + [[package]] 1601 + name = "link-cplusplus" 1602 + version = "1.0.8" 1603 + source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 1605 + dependencies = [ 1606 + "cc", 1607 + ] 1608 + 1609 + [[package]] 1610 + name = "linked-hash-map" 1611 + version = "0.5.6" 1612 + source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1614 + 1615 + [[package]] 1616 + name = "linux-raw-sys" 1617 + version = "0.1.4" 1618 + source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1620 + 1621 + [[package]] 1622 + name = "lock_api" 1623 + version = "0.4.9" 1624 + source = "registry+https://github.com/rust-lang/crates.io-index" 1625 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1626 + dependencies = [ 1627 + "autocfg", 1628 + "scopeguard", 1629 + ] 1630 + 1631 + [[package]] 1632 + name = "log" 1633 + version = "0.4.17" 1634 + source = "registry+https://github.com/rust-lang/crates.io-index" 1635 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1636 + dependencies = [ 1637 + "cfg-if 1.0.0", 1638 + "serde", 1639 + ] 1640 + 1641 + [[package]] 1642 + name = "log-mdc" 1643 + version = "0.1.0" 1644 + source = "registry+https://github.com/rust-lang/crates.io-index" 1645 + checksum = "a94d21414c1f4a51209ad204c1776a3d0765002c76c6abcb602a6f09f1e881c7" 1646 + 1647 + [[package]] 1648 + name = "log4rs" 1649 + version = "1.2.0" 1650 + source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "d36ca1786d9e79b8193a68d480a0907b612f109537115c6ff655a3a1967533fd" 1652 + dependencies = [ 1653 + "anyhow", 1654 + "arc-swap", 1655 + "chrono", 1656 + "derivative", 1657 + "fnv", 1658 + "humantime", 1659 + "libc", 1660 + "log", 1661 + "log-mdc", 1662 + "parking_lot", 1663 + "serde", 1664 + "serde-value", 1665 + "serde_json", 1666 + "serde_yaml", 1667 + "thiserror", 1668 + "thread-id", 1669 + "typemap-ors", 1670 + "winapi", 1671 + ] 1672 + 1673 + [[package]] 1674 + name = "mach" 1675 + version = "0.3.2" 1676 + source = "registry+https://github.com/rust-lang/crates.io-index" 1677 + checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 1678 + dependencies = [ 1679 + "libc", 1680 + ] 1681 + 1682 + [[package]] 1683 + name = "matrixmultiply" 1684 + version = "0.3.2" 1685 + source = "registry+https://github.com/rust-lang/crates.io-index" 1686 + checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84" 1687 + dependencies = [ 1688 + "num_cpus", 1689 + "once_cell", 1690 + "rawpointer", 1691 + "thread-tree", 1692 + ] 1693 + 1694 + [[package]] 1695 + name = "memchr" 1696 + version = "2.5.0" 1697 + source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1699 + 1700 + [[package]] 1701 + name = "memoffset" 1702 + version = "0.8.0" 1703 + source = "registry+https://github.com/rust-lang/crates.io-index" 1704 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1705 + dependencies = [ 1706 + "autocfg", 1707 + ] 1708 + 1709 + [[package]] 1710 + name = "memory_units" 1711 + version = "0.4.0" 1712 + source = "registry+https://github.com/rust-lang/crates.io-index" 1713 + checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" 1714 + 1715 + [[package]] 1716 + name = "meval" 1717 + version = "0.2.0" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "f79496a5651c8d57cd033c5add8ca7ee4e3d5f7587a4777484640d9cb60392d9" 1720 + dependencies = [ 1721 + "fnv", 1722 + "nom 1.2.4", 1723 + ] 1724 + 1725 + [[package]] 1726 + name = "minimal-lexical" 1727 + version = "0.2.1" 1728 + source = "registry+https://github.com/rust-lang/crates.io-index" 1729 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1730 + 1731 + [[package]] 1732 + name = "miniz_oxide" 1733 + version = "0.6.2" 1734 + source = "registry+https://github.com/rust-lang/crates.io-index" 1735 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1736 + dependencies = [ 1737 + "adler", 1738 + ] 1739 + 1740 + [[package]] 1741 + name = "ndarray" 1742 + version = "0.15.6" 1743 + source = "registry+https://github.com/rust-lang/crates.io-index" 1744 + checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32" 1745 + dependencies = [ 1746 + "matrixmultiply", 1747 + "num-complex", 1748 + "num-integer", 1749 + "num-traits", 1750 + "rawpointer", 1751 + "rayon", 1752 + ] 1753 + 1754 + [[package]] 1755 + name = "ndk" 1756 + version = "0.7.0" 1757 + source = "registry+https://github.com/rust-lang/crates.io-index" 1758 + checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 1759 + dependencies = [ 1760 + "bitflags", 1761 + "jni-sys", 1762 + "ndk-sys", 1763 + "num_enum", 1764 + "raw-window-handle", 1765 + "thiserror", 1766 + ] 1767 + 1768 + [[package]] 1769 + name = "ndk-context" 1770 + version = "0.1.1" 1771 + source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1773 + 1774 + [[package]] 1775 + name = "ndk-sys" 1776 + version = "0.4.1+23.1.7779620" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 1779 + dependencies = [ 1780 + "jni-sys", 1781 + ] 1782 + 1783 + [[package]] 1784 + name = "nix" 1785 + version = "0.24.3" 1786 + source = "registry+https://github.com/rust-lang/crates.io-index" 1787 + checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 1788 + dependencies = [ 1789 + "bitflags", 1790 + "cfg-if 1.0.0", 1791 + "libc", 1792 + ] 1793 + 1794 + [[package]] 1795 + name = "nom" 1796 + version = "1.2.4" 1797 + source = "registry+https://github.com/rust-lang/crates.io-index" 1798 + checksum = "a5b8c256fd9471521bcb84c3cdba98921497f1a331cbc15b8030fc63b82050ce" 1799 + 1800 + [[package]] 1801 + name = "nom" 1802 + version = "7.1.3" 1803 + source = "registry+https://github.com/rust-lang/crates.io-index" 1804 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1805 + dependencies = [ 1806 + "memchr", 1807 + "minimal-lexical", 1808 + ] 1809 + 1810 + [[package]] 1811 + name = "num-complex" 1812 + version = "0.4.3" 1813 + source = "registry+https://github.com/rust-lang/crates.io-index" 1814 + checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" 1815 + dependencies = [ 1816 + "num-traits", 1817 + ] 1818 + 1819 + [[package]] 1820 + name = "num-derive" 1821 + version = "0.3.3" 1822 + source = "registry+https://github.com/rust-lang/crates.io-index" 1823 + checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 1824 + dependencies = [ 1825 + "proc-macro2", 1826 + "quote", 1827 + "syn", 1828 + ] 1829 + 1830 + [[package]] 1831 + name = "num-integer" 1832 + version = "0.1.45" 1833 + source = "registry+https://github.com/rust-lang/crates.io-index" 1834 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1835 + dependencies = [ 1836 + "autocfg", 1837 + "num-traits", 1838 + ] 1839 + 1840 + [[package]] 1841 + name = "num-rational" 1842 + version = "0.4.1" 1843 + source = "registry+https://github.com/rust-lang/crates.io-index" 1844 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1845 + dependencies = [ 1846 + "autocfg", 1847 + "num-integer", 1848 + "num-traits", 1849 + ] 1850 + 1851 + [[package]] 1852 + name = "num-traits" 1853 + version = "0.2.15" 1854 + source = "registry+https://github.com/rust-lang/crates.io-index" 1855 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1856 + dependencies = [ 1857 + "autocfg", 1858 + "libm", 1859 + ] 1860 + 1861 + [[package]] 1862 + name = "num_cpus" 1863 + version = "1.15.0" 1864 + source = "registry+https://github.com/rust-lang/crates.io-index" 1865 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1866 + dependencies = [ 1867 + "hermit-abi 0.2.6", 1868 + "libc", 1869 + ] 1870 + 1871 + [[package]] 1872 + name = "num_enum" 1873 + version = "0.5.11" 1874 + source = "registry+https://github.com/rust-lang/crates.io-index" 1875 + checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 1876 + dependencies = [ 1877 + "num_enum_derive", 1878 + ] 1879 + 1880 + [[package]] 1881 + name = "num_enum_derive" 1882 + version = "0.5.11" 1883 + source = "registry+https://github.com/rust-lang/crates.io-index" 1884 + checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 1885 + dependencies = [ 1886 + "proc-macro-crate", 1887 + "proc-macro2", 1888 + "quote", 1889 + "syn", 1890 + ] 1891 + 1892 + [[package]] 1893 + name = "number_prefix" 1894 + version = "0.4.0" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1897 + 1898 + [[package]] 1899 + name = "nvml-wrapper" 1900 + version = "0.8.0" 1901 + source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "288bd66a5a56d8c97b178412b328419b3fdec261c0cbc4628ddc49cc16db8fc6" 1903 + dependencies = [ 1904 + "bitflags", 1905 + "libloading", 1906 + "nvml-wrapper-sys", 1907 + "static_assertions", 1908 + "thiserror", 1909 + "wrapcenum-derive", 1910 + ] 1911 + 1912 + [[package]] 1913 + name = "nvml-wrapper-sys" 1914 + version = "0.6.0" 1915 + source = "registry+https://github.com/rust-lang/crates.io-index" 1916 + checksum = "d3d606d4edf766969f16828ec047ca9aa96652a17bd353dc0613bfaca49b61d6" 1917 + dependencies = [ 1918 + "libloading", 1919 + ] 1920 + 1921 + [[package]] 1922 + name = "oboe" 1923 + version = "0.5.0" 1924 + source = "registry+https://github.com/rust-lang/crates.io-index" 1925 + checksum = "8868cc237ee02e2d9618539a23a8d228b9bb3fc2e7a5b11eed3831de77c395d0" 1926 + dependencies = [ 1927 + "jni 0.20.0", 1928 + "ndk", 1929 + "ndk-context", 1930 + "num-derive", 1931 + "num-traits", 1932 + "oboe-sys", 1933 + ] 1934 + 1935 + [[package]] 1936 + name = "oboe-sys" 1937 + version = "0.5.0" 1938 + source = "registry+https://github.com/rust-lang/crates.io-index" 1939 + checksum = "7f44155e7fb718d3cfddcf70690b2b51ac4412f347cd9e4fbe511abe9cd7b5f2" 1940 + dependencies = [ 1941 + "cc", 1942 + ] 1943 + 1944 + [[package]] 1945 + name = "once_cell" 1946 + version = "1.17.1" 1947 + source = "registry+https://github.com/rust-lang/crates.io-index" 1948 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1949 + 1950 + [[package]] 1951 + name = "opaque-debug" 1952 + version = "0.3.0" 1953 + source = "registry+https://github.com/rust-lang/crates.io-index" 1954 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1955 + 1956 + [[package]] 1957 + name = "ordered-float" 1958 + version = "2.10.0" 1959 + source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" 1961 + dependencies = [ 1962 + "num-traits", 1963 + ] 1964 + 1965 + [[package]] 1966 + name = "os_str_bytes" 1967 + version = "6.4.1" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 1970 + 1971 + [[package]] 1972 + name = "output_vt100" 1973 + version = "0.1.3" 1974 + source = "registry+https://github.com/rust-lang/crates.io-index" 1975 + checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 1976 + dependencies = [ 1977 + "winapi", 1978 + ] 1979 + 1980 + [[package]] 1981 + name = "parking_lot" 1982 + version = "0.12.1" 1983 + source = "registry+https://github.com/rust-lang/crates.io-index" 1984 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1985 + dependencies = [ 1986 + "lock_api", 1987 + "parking_lot_core", 1988 + ] 1989 + 1990 + [[package]] 1991 + name = "parking_lot_core" 1992 + version = "0.9.7" 1993 + source = "registry+https://github.com/rust-lang/crates.io-index" 1994 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1995 + dependencies = [ 1996 + "cfg-if 1.0.0", 1997 + "libc", 1998 + "redox_syscall", 1999 + "smallvec", 2000 + "windows-sys 0.45.0", 2001 + ] 2002 + 2003 + [[package]] 2004 + name = "parse_duration0" 2005 + version = "3.0.0" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "341129a5f9fb040851e7c025e201184070b85627989d63707c93b65952001882" 2008 + dependencies = [ 2009 + "lazy_static", 2010 + "regex", 2011 + ] 2012 + 2013 + [[package]] 2014 + name = "password-hash" 2015 + version = "0.4.2" 2016 + source = "registry+https://github.com/rust-lang/crates.io-index" 2017 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2018 + dependencies = [ 2019 + "base64ct", 2020 + "rand_core", 2021 + "subtle", 2022 + ] 2023 + 2024 + [[package]] 2025 + name = "paste" 2026 + version = "1.0.12" 2027 + source = "registry+https://github.com/rust-lang/crates.io-index" 2028 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 2029 + 2030 + [[package]] 2031 + name = "pathfinder_geometry" 2032 + version = "0.5.1" 2033 + source = "registry+https://github.com/rust-lang/crates.io-index" 2034 + checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3" 2035 + dependencies = [ 2036 + "log", 2037 + "pathfinder_simd", 2038 + ] 2039 + 2040 + [[package]] 2041 + name = "pathfinder_simd" 2042 + version = "0.5.1" 2043 + source = "registry+https://github.com/rust-lang/crates.io-index" 2044 + checksum = "39fe46acc5503595e5949c17b818714d26fdf9b4920eacf3b2947f0199f4a6ff" 2045 + dependencies = [ 2046 + "rustc_version", 2047 + ] 2048 + 2049 + [[package]] 2050 + name = "pbkdf2" 2051 + version = "0.11.0" 2052 + source = "registry+https://github.com/rust-lang/crates.io-index" 2053 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2054 + dependencies = [ 2055 + "digest", 2056 + "hmac", 2057 + "password-hash", 2058 + "sha2", 2059 + ] 2060 + 2061 + [[package]] 2062 + name = "peeking_take_while" 2063 + version = "0.1.2" 2064 + source = "registry+https://github.com/rust-lang/crates.io-index" 2065 + checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 2066 + 2067 + [[package]] 2068 + name = "percent-encoding" 2069 + version = "2.2.0" 2070 + source = "registry+https://github.com/rust-lang/crates.io-index" 2071 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2072 + 2073 + [[package]] 2074 + name = "pest" 2075 + version = "2.5.6" 2076 + source = "registry+https://github.com/rust-lang/crates.io-index" 2077 + checksum = "8cbd939b234e95d72bc393d51788aec68aeeb5d51e748ca08ff3aad58cb722f7" 2078 + dependencies = [ 2079 + "thiserror", 2080 + "ucd-trie", 2081 + ] 2082 + 2083 + [[package]] 2084 + name = "pest_derive" 2085 + version = "2.5.6" 2086 + source = "registry+https://github.com/rust-lang/crates.io-index" 2087 + checksum = "a81186863f3d0a27340815be8f2078dd8050b14cd71913db9fbda795e5f707d7" 2088 + dependencies = [ 2089 + "pest", 2090 + "pest_generator", 2091 + ] 2092 + 2093 + [[package]] 2094 + name = "pest_generator" 2095 + version = "2.5.6" 2096 + source = "registry+https://github.com/rust-lang/crates.io-index" 2097 + checksum = "75a1ef20bf3193c15ac345acb32e26b3dc3223aff4d77ae4fc5359567683796b" 2098 + dependencies = [ 2099 + "pest", 2100 + "pest_meta", 2101 + "proc-macro2", 2102 + "quote", 2103 + "syn", 2104 + ] 2105 + 2106 + [[package]] 2107 + name = "pest_meta" 2108 + version = "2.5.6" 2109 + source = "registry+https://github.com/rust-lang/crates.io-index" 2110 + checksum = "5e3b284b1f13a20dc5ebc90aff59a51b8d7137c221131b52a7260c08cbc1cc80" 2111 + dependencies = [ 2112 + "once_cell", 2113 + "pest", 2114 + "sha2", 2115 + ] 2116 + 2117 + [[package]] 2118 + name = "pin-project-lite" 2119 + version = "0.2.9" 2120 + source = "registry+https://github.com/rust-lang/crates.io-index" 2121 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 2122 + 2123 + [[package]] 2124 + name = "pin-utils" 2125 + version = "0.1.0" 2126 + source = "registry+https://github.com/rust-lang/crates.io-index" 2127 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2128 + 2129 + [[package]] 2130 + name = "pkg-config" 2131 + version = "0.3.26" 2132 + source = "registry+https://github.com/rust-lang/crates.io-index" 2133 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2134 + 2135 + [[package]] 2136 + name = "plotters" 2137 + version = "0.3.4" 2138 + source = "registry+https://github.com/rust-lang/crates.io-index" 2139 + checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 2140 + dependencies = [ 2141 + "chrono", 2142 + "font-kit", 2143 + "image", 2144 + "lazy_static", 2145 + "num-traits", 2146 + "pathfinder_geometry", 2147 + "plotters-backend", 2148 + "plotters-bitmap", 2149 + "plotters-svg", 2150 + "ttf-parser", 2151 + "wasm-bindgen", 2152 + "web-sys", 2153 + ] 2154 + 2155 + [[package]] 2156 + name = "plotters-backend" 2157 + version = "0.3.4" 2158 + source = "registry+https://github.com/rust-lang/crates.io-index" 2159 + checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 2160 + 2161 + [[package]] 2162 + name = "plotters-bitmap" 2163 + version = "0.3.2" 2164 + source = "registry+https://github.com/rust-lang/crates.io-index" 2165 + checksum = "0c4a1f21490a6cf4a84c272ad20bd7844ed99a3178187a4c5ab7f2051295beef" 2166 + dependencies = [ 2167 + "gif", 2168 + "image", 2169 + "plotters-backend", 2170 + ] 2171 + 2172 + [[package]] 2173 + name = "plotters-svg" 2174 + version = "0.3.3" 2175 + source = "registry+https://github.com/rust-lang/crates.io-index" 2176 + checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 2177 + dependencies = [ 2178 + "plotters-backend", 2179 + ] 2180 + 2181 + [[package]] 2182 + name = "png" 2183 + version = "0.17.7" 2184 + source = "registry+https://github.com/rust-lang/crates.io-index" 2185 + checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" 2186 + dependencies = [ 2187 + "bitflags", 2188 + "crc32fast", 2189 + "flate2", 2190 + "miniz_oxide", 2191 + ] 2192 + 2193 + [[package]] 2194 + name = "portable-atomic" 2195 + version = "0.3.19" 2196 + source = "registry+https://github.com/rust-lang/crates.io-index" 2197 + checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b" 2198 + 2199 + [[package]] 2200 + name = "ppv-lite86" 2201 + version = "0.2.17" 2202 + source = "registry+https://github.com/rust-lang/crates.io-index" 2203 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2204 + 2205 + [[package]] 2206 + name = "pretty_assertions" 2207 + version = "1.3.0" 2208 + source = "registry+https://github.com/rust-lang/crates.io-index" 2209 + checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 2210 + dependencies = [ 2211 + "ctor", 2212 + "diff", 2213 + "output_vt100", 2214 + "yansi", 2215 + ] 2216 + 2217 + [[package]] 2218 + name = "primal-check" 2219 + version = "0.3.3" 2220 + source = "registry+https://github.com/rust-lang/crates.io-index" 2221 + checksum = "9df7f93fd637f083201473dab4fee2db4c429d32e55e3299980ab3957ab916a0" 2222 + dependencies = [ 2223 + "num-integer", 2224 + ] 2225 + 2226 + [[package]] 2227 + name = "proc-macro-crate" 2228 + version = "1.3.1" 2229 + source = "registry+https://github.com/rust-lang/crates.io-index" 2230 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2231 + dependencies = [ 2232 + "once_cell", 2233 + "toml_edit", 2234 + ] 2235 + 2236 + [[package]] 2237 + name = "proc-macro-error" 2238 + version = "1.0.4" 2239 + source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2241 + dependencies = [ 2242 + "proc-macro-error-attr", 2243 + "proc-macro2", 2244 + "quote", 2245 + "syn", 2246 + "version_check", 2247 + ] 2248 + 2249 + [[package]] 2250 + name = "proc-macro-error-attr" 2251 + version = "1.0.4" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2254 + dependencies = [ 2255 + "proc-macro2", 2256 + "quote", 2257 + "version_check", 2258 + ] 2259 + 2260 + [[package]] 2261 + name = "proc-macro-hack" 2262 + version = "0.5.20+deprecated" 2263 + source = "registry+https://github.com/rust-lang/crates.io-index" 2264 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2265 + 2266 + [[package]] 2267 + name = "proc-macro2" 2268 + version = "1.0.52" 2269 + source = "registry+https://github.com/rust-lang/crates.io-index" 2270 + checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224" 2271 + dependencies = [ 2272 + "unicode-ident", 2273 + ] 2274 + 2275 + [[package]] 2276 + name = "quote" 2277 + version = "1.0.26" 2278 + source = "registry+https://github.com/rust-lang/crates.io-index" 2279 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 2280 + dependencies = [ 2281 + "proc-macro2", 2282 + ] 2283 + 2284 + [[package]] 2285 + name = "rand" 2286 + version = "0.8.5" 2287 + source = "registry+https://github.com/rust-lang/crates.io-index" 2288 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2289 + dependencies = [ 2290 + "libc", 2291 + "rand_chacha", 2292 + "rand_core", 2293 + ] 2294 + 2295 + [[package]] 2296 + name = "rand_chacha" 2297 + version = "0.3.1" 2298 + source = "registry+https://github.com/rust-lang/crates.io-index" 2299 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2300 + dependencies = [ 2301 + "ppv-lite86", 2302 + "rand_core", 2303 + ] 2304 + 2305 + [[package]] 2306 + name = "rand_core" 2307 + version = "0.6.4" 2308 + source = "registry+https://github.com/rust-lang/crates.io-index" 2309 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2310 + dependencies = [ 2311 + "getrandom", 2312 + ] 2313 + 2314 + [[package]] 2315 + name = "rand_distr" 2316 + version = "0.4.3" 2317 + source = "registry+https://github.com/rust-lang/crates.io-index" 2318 + checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" 2319 + dependencies = [ 2320 + "num-traits", 2321 + "rand", 2322 + ] 2323 + 2324 + [[package]] 2325 + name = "raw-window-handle" 2326 + version = "0.5.1" 2327 + source = "registry+https://github.com/rust-lang/crates.io-index" 2328 + checksum = "4f851a03551ceefd30132e447f07f96cb7011d6b658374f3aed847333adb5559" 2329 + 2330 + [[package]] 2331 + name = "rawpointer" 2332 + version = "0.2.1" 2333 + source = "registry+https://github.com/rust-lang/crates.io-index" 2334 + checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" 2335 + 2336 + [[package]] 2337 + name = "rayon" 2338 + version = "1.7.0" 2339 + source = "registry+https://github.com/rust-lang/crates.io-index" 2340 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 2341 + dependencies = [ 2342 + "either", 2343 + "rayon-core", 2344 + ] 2345 + 2346 + [[package]] 2347 + name = "rayon-core" 2348 + version = "1.11.0" 2349 + source = "registry+https://github.com/rust-lang/crates.io-index" 2350 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 2351 + dependencies = [ 2352 + "crossbeam-channel", 2353 + "crossbeam-deque", 2354 + "crossbeam-utils", 2355 + "num_cpus", 2356 + ] 2357 + 2358 + [[package]] 2359 + name = "redox_syscall" 2360 + version = "0.2.16" 2361 + source = "registry+https://github.com/rust-lang/crates.io-index" 2362 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2363 + dependencies = [ 2364 + "bitflags", 2365 + ] 2366 + 2367 + [[package]] 2368 + name = "redox_users" 2369 + version = "0.4.3" 2370 + source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2372 + dependencies = [ 2373 + "getrandom", 2374 + "redox_syscall", 2375 + "thiserror", 2376 + ] 2377 + 2378 + [[package]] 2379 + name = "regex" 2380 + version = "1.7.1" 2381 + source = "registry+https://github.com/rust-lang/crates.io-index" 2382 + checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 2383 + dependencies = [ 2384 + "aho-corasick", 2385 + "memchr", 2386 + "regex-syntax", 2387 + ] 2388 + 2389 + [[package]] 2390 + name = "regex-syntax" 2391 + version = "0.6.28" 2392 + source = "registry+https://github.com/rust-lang/crates.io-index" 2393 + checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 2394 + 2395 + [[package]] 2396 + name = "rgb" 2397 + version = "0.8.36" 2398 + source = "registry+https://github.com/rust-lang/crates.io-index" 2399 + checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 2400 + dependencies = [ 2401 + "bytemuck", 2402 + ] 2403 + 2404 + [[package]] 2405 + name = "ring" 2406 + version = "0.16.20" 2407 + source = "registry+https://github.com/rust-lang/crates.io-index" 2408 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2409 + dependencies = [ 2410 + "cc", 2411 + "libc", 2412 + "once_cell", 2413 + "spin 0.5.2", 2414 + "untrusted", 2415 + "web-sys", 2416 + "winapi", 2417 + ] 2418 + 2419 + [[package]] 2420 + name = "rodio" 2421 + version = "0.17.1" 2422 + source = "registry+https://github.com/rust-lang/crates.io-index" 2423 + checksum = "bdf1d4dea18dff2e9eb6dca123724f8b60ef44ad74a9ad283cdfe025df7e73fa" 2424 + dependencies = [ 2425 + "cpal", 2426 + "symphonia", 2427 + ] 2428 + 2429 + [[package]] 2430 + name = "rustc-hash" 2431 + version = "1.1.0" 2432 + source = "registry+https://github.com/rust-lang/crates.io-index" 2433 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2434 + 2435 + [[package]] 2436 + name = "rustc_version" 2437 + version = "0.3.3" 2438 + source = "registry+https://github.com/rust-lang/crates.io-index" 2439 + checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2440 + dependencies = [ 2441 + "semver", 2442 + ] 2443 + 2444 + [[package]] 2445 + name = "rustfft" 2446 + version = "6.1.0" 2447 + source = "registry+https://github.com/rust-lang/crates.io-index" 2448 + checksum = "e17d4f6cbdb180c9f4b2a26bbf01c4e647f1e1dea22fe8eb9db54198b32f9434" 2449 + dependencies = [ 2450 + "num-complex", 2451 + "num-integer", 2452 + "num-traits", 2453 + "primal-check", 2454 + "strength_reduce", 2455 + "transpose", 2456 + "version_check", 2457 + ] 2458 + 2459 + [[package]] 2460 + name = "rustix" 2461 + version = "0.36.9" 2462 + source = "registry+https://github.com/rust-lang/crates.io-index" 2463 + checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc" 2464 + dependencies = [ 2465 + "bitflags", 2466 + "errno", 2467 + "io-lifetimes", 2468 + "libc", 2469 + "linux-raw-sys", 2470 + "windows-sys 0.45.0", 2471 + ] 2472 + 2473 + [[package]] 2474 + name = "rustls" 2475 + version = "0.20.8" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 2478 + dependencies = [ 2479 + "log", 2480 + "ring", 2481 + "sct", 2482 + "webpki", 2483 + ] 2484 + 2485 + [[package]] 2486 + name = "ryu" 2487 + version = "1.0.13" 2488 + source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2490 + 2491 + [[package]] 2492 + name = "same-file" 2493 + version = "1.0.6" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2496 + dependencies = [ 2497 + "winapi-util", 2498 + ] 2499 + 2500 + [[package]] 2501 + name = "scopeguard" 2502 + version = "1.1.0" 2503 + source = "registry+https://github.com/rust-lang/crates.io-index" 2504 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2505 + 2506 + [[package]] 2507 + name = "scratch" 2508 + version = "1.0.5" 2509 + source = "registry+https://github.com/rust-lang/crates.io-index" 2510 + checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" 2511 + 2512 + [[package]] 2513 + name = "sct" 2514 + version = "0.7.0" 2515 + source = "registry+https://github.com/rust-lang/crates.io-index" 2516 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 2517 + dependencies = [ 2518 + "ring", 2519 + "untrusted", 2520 + ] 2521 + 2522 + [[package]] 2523 + name = "semver" 2524 + version = "0.11.0" 2525 + source = "registry+https://github.com/rust-lang/crates.io-index" 2526 + checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2527 + dependencies = [ 2528 + "semver-parser", 2529 + ] 2530 + 2531 + [[package]] 2532 + name = "semver-parser" 2533 + version = "0.10.2" 2534 + source = "registry+https://github.com/rust-lang/crates.io-index" 2535 + checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2536 + dependencies = [ 2537 + "pest", 2538 + ] 2539 + 2540 + [[package]] 2541 + name = "serde" 2542 + version = "1.0.155" 2543 + source = "registry+https://github.com/rust-lang/crates.io-index" 2544 + checksum = "71f2b4817415c6d4210bfe1c7bfcf4801b2d904cb4d0e1a8fdb651013c9e86b8" 2545 + dependencies = [ 2546 + "serde_derive", 2547 + ] 2548 + 2549 + [[package]] 2550 + name = "serde-value" 2551 + version = "0.7.0" 2552 + source = "registry+https://github.com/rust-lang/crates.io-index" 2553 + checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 2554 + dependencies = [ 2555 + "ordered-float", 2556 + "serde", 2557 + ] 2558 + 2559 + [[package]] 2560 + name = "serde_derive" 2561 + version = "1.0.155" 2562 + source = "registry+https://github.com/rust-lang/crates.io-index" 2563 + checksum = "d071a94a3fac4aff69d023a7f411e33f40f3483f8c5190b1953822b6b76d7630" 2564 + dependencies = [ 2565 + "proc-macro2", 2566 + "quote", 2567 + "syn", 2568 + ] 2569 + 2570 + [[package]] 2571 + name = "serde_json" 2572 + version = "1.0.94" 2573 + source = "registry+https://github.com/rust-lang/crates.io-index" 2574 + checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" 2575 + dependencies = [ 2576 + "itoa", 2577 + "ryu", 2578 + "serde", 2579 + ] 2580 + 2581 + [[package]] 2582 + name = "serde_yaml" 2583 + version = "0.8.26" 2584 + source = "registry+https://github.com/rust-lang/crates.io-index" 2585 + checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" 2586 + dependencies = [ 2587 + "indexmap", 2588 + "ryu", 2589 + "serde", 2590 + "yaml-rust", 2591 + ] 2592 + 2593 + [[package]] 2594 + name = "sha1" 2595 + version = "0.10.5" 2596 + source = "registry+https://github.com/rust-lang/crates.io-index" 2597 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2598 + dependencies = [ 2599 + "cfg-if 1.0.0", 2600 + "cpufeatures", 2601 + "digest", 2602 + ] 2603 + 2604 + [[package]] 2605 + name = "sha2" 2606 + version = "0.10.6" 2607 + source = "registry+https://github.com/rust-lang/crates.io-index" 2608 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2609 + dependencies = [ 2610 + "cfg-if 1.0.0", 2611 + "cpufeatures", 2612 + "digest", 2613 + ] 2614 + 2615 + [[package]] 2616 + name = "shlex" 2617 + version = "1.1.0" 2618 + source = "registry+https://github.com/rust-lang/crates.io-index" 2619 + checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" 2620 + 2621 + [[package]] 2622 + name = "slab" 2623 + version = "0.4.8" 2624 + source = "registry+https://github.com/rust-lang/crates.io-index" 2625 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2626 + dependencies = [ 2627 + "autocfg", 2628 + ] 2629 + 2630 + [[package]] 2631 + name = "smallvec" 2632 + version = "1.10.0" 2633 + source = "registry+https://github.com/rust-lang/crates.io-index" 2634 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2635 + 2636 + [[package]] 2637 + name = "spin" 2638 + version = "0.5.2" 2639 + source = "registry+https://github.com/rust-lang/crates.io-index" 2640 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2641 + 2642 + [[package]] 2643 + name = "spin" 2644 + version = "0.9.6" 2645 + source = "registry+https://github.com/rust-lang/crates.io-index" 2646 + checksum = "b5d6e0250b93c8427a177b849d144a96d5acc57006149479403d7861ab721e34" 2647 + dependencies = [ 2648 + "lock_api", 2649 + ] 2650 + 2651 + [[package]] 2652 + name = "static_assertions" 2653 + version = "1.1.0" 2654 + source = "registry+https://github.com/rust-lang/crates.io-index" 2655 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2656 + 2657 + [[package]] 2658 + name = "strength_reduce" 2659 + version = "0.2.4" 2660 + source = "registry+https://github.com/rust-lang/crates.io-index" 2661 + checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" 2662 + 2663 + [[package]] 2664 + name = "strsim" 2665 + version = "0.8.0" 2666 + source = "registry+https://github.com/rust-lang/crates.io-index" 2667 + checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 2668 + 2669 + [[package]] 2670 + name = "strsim" 2671 + version = "0.9.3" 2672 + source = "registry+https://github.com/rust-lang/crates.io-index" 2673 + checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" 2674 + 2675 + [[package]] 2676 + name = "strsim" 2677 + version = "0.10.0" 2678 + source = "registry+https://github.com/rust-lang/crates.io-index" 2679 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2680 + 2681 + [[package]] 2682 + name = "structopt" 2683 + version = "0.3.26" 2684 + source = "registry+https://github.com/rust-lang/crates.io-index" 2685 + checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" 2686 + dependencies = [ 2687 + "clap 2.34.0", 2688 + "lazy_static", 2689 + "structopt-derive", 2690 + ] 2691 + 2692 + [[package]] 2693 + name = "structopt-derive" 2694 + version = "0.4.18" 2695 + source = "registry+https://github.com/rust-lang/crates.io-index" 2696 + checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 2697 + dependencies = [ 2698 + "heck 0.3.3", 2699 + "proc-macro-error", 2700 + "proc-macro2", 2701 + "quote", 2702 + "syn", 2703 + ] 2704 + 2705 + [[package]] 2706 + name = "subtle" 2707 + version = "2.4.1" 2708 + source = "registry+https://github.com/rust-lang/crates.io-index" 2709 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2710 + 2711 + [[package]] 2712 + name = "symphonia" 2713 + version = "0.5.2" 2714 + source = "registry+https://github.com/rust-lang/crates.io-index" 2715 + checksum = "3671dd6f64f4f9d5c87179525054cfc1f60de23ba1f193bd6ceab812737403f1" 2716 + dependencies = [ 2717 + "lazy_static", 2718 + "symphonia-bundle-flac", 2719 + "symphonia-bundle-mp3", 2720 + "symphonia-codec-aac", 2721 + "symphonia-codec-adpcm", 2722 + "symphonia-codec-alac", 2723 + "symphonia-codec-pcm", 2724 + "symphonia-codec-vorbis", 2725 + "symphonia-core", 2726 + "symphonia-format-isomp4", 2727 + "symphonia-format-mkv", 2728 + "symphonia-format-ogg", 2729 + "symphonia-format-wav", 2730 + "symphonia-metadata", 2731 + ] 2732 + 2733 + [[package]] 2734 + name = "symphonia-bundle-flac" 2735 + version = "0.5.2" 2736 + source = "registry+https://github.com/rust-lang/crates.io-index" 2737 + checksum = "3dc2deed3204967871ba60f913378f95820cb47a2fe9b2eef5a9eedb417dfdc8" 2738 + dependencies = [ 2739 + "log", 2740 + "symphonia-core", 2741 + "symphonia-metadata", 2742 + "symphonia-utils-xiph", 2743 + ] 2744 + 2745 + [[package]] 2746 + name = "symphonia-bundle-mp3" 2747 + version = "0.5.2" 2748 + source = "registry+https://github.com/rust-lang/crates.io-index" 2749 + checksum = "55a0846e7a2c9a8081ff799fc83a975170417ad2a143f644a77ec2e3e82a2b73" 2750 + dependencies = [ 2751 + "bitflags", 2752 + "lazy_static", 2753 + "log", 2754 + "symphonia-core", 2755 + "symphonia-metadata", 2756 + ] 2757 + 2758 + [[package]] 2759 + name = "symphonia-codec-aac" 2760 + version = "0.5.2" 2761 + source = "registry+https://github.com/rust-lang/crates.io-index" 2762 + checksum = "6fcdd4a10695ca0528572360ec020586320357350eb62791693667e7de8c871a" 2763 + dependencies = [ 2764 + "lazy_static", 2765 + "log", 2766 + "symphonia-core", 2767 + ] 2768 + 2769 + [[package]] 2770 + name = "symphonia-codec-adpcm" 2771 + version = "0.5.2" 2772 + source = "registry+https://github.com/rust-lang/crates.io-index" 2773 + checksum = "2a5cfb8d4405e26eb9593157dc45b05e102b8d774b38ed2a95946d6bb9e26e3e" 2774 + dependencies = [ 2775 + "log", 2776 + "symphonia-core", 2777 + ] 2778 + 2779 + [[package]] 2780 + name = "symphonia-codec-alac" 2781 + version = "0.5.2" 2782 + source = "registry+https://github.com/rust-lang/crates.io-index" 2783 + checksum = "c49e1b209318bcefa7ff452bd85f1f593210943a7d9786b7d4250e8991a7449c" 2784 + dependencies = [ 2785 + "log", 2786 + "symphonia-core", 2787 + ] 2788 + 2789 + [[package]] 2790 + name = "symphonia-codec-pcm" 2791 + version = "0.5.2" 2792 + source = "registry+https://github.com/rust-lang/crates.io-index" 2793 + checksum = "8cb9a9f0b9991cccf3217b74644af412d5d082a4815e5e2943f26e0ecabdf3c9" 2794 + dependencies = [ 2795 + "log", 2796 + "symphonia-core", 2797 + ] 2798 + 2799 + [[package]] 2800 + name = "symphonia-codec-vorbis" 2801 + version = "0.5.2" 2802 + source = "registry+https://github.com/rust-lang/crates.io-index" 2803 + checksum = "7dfed6f7b6bfa21d7cef1acefc8eae5db80df1608a1aca91871b07cbd28d7b74" 2804 + dependencies = [ 2805 + "log", 2806 + "symphonia-core", 2807 + "symphonia-utils-xiph", 2808 + ] 2809 + 2810 + [[package]] 2811 + name = "symphonia-core" 2812 + version = "0.5.2" 2813 + source = "registry+https://github.com/rust-lang/crates.io-index" 2814 + checksum = "6b9567e2d8a5f866b2f94f5d366d811e0c6826babcff6d37de9e1a6690d38869" 2815 + dependencies = [ 2816 + "arrayvec", 2817 + "bitflags", 2818 + "bytemuck", 2819 + "lazy_static", 2820 + "log", 2821 + ] 2822 + 2823 + [[package]] 2824 + name = "symphonia-format-isomp4" 2825 + version = "0.5.2" 2826 + source = "registry+https://github.com/rust-lang/crates.io-index" 2827 + checksum = "c1818f6f54b4eaba5ec004a8dbcca637c57e617eb1ff4c9addbd3fc065eba437" 2828 + dependencies = [ 2829 + "encoding_rs", 2830 + "log", 2831 + "symphonia-core", 2832 + "symphonia-metadata", 2833 + "symphonia-utils-xiph", 2834 + ] 2835 + 2836 + [[package]] 2837 + name = "symphonia-format-mkv" 2838 + version = "0.5.2" 2839 + source = "registry+https://github.com/rust-lang/crates.io-index" 2840 + checksum = "1bd22f2def8c8f078495ad66111648bfc7d5222ee33774f2077cb665588f3119" 2841 + dependencies = [ 2842 + "lazy_static", 2843 + "log", 2844 + "symphonia-core", 2845 + "symphonia-metadata", 2846 + "symphonia-utils-xiph", 2847 + ] 2848 + 2849 + [[package]] 2850 + name = "symphonia-format-ogg" 2851 + version = "0.5.2" 2852 + source = "registry+https://github.com/rust-lang/crates.io-index" 2853 + checksum = "474df6e86b871dcb56913130bada1440245f483057c4a2d8a2981455494c4439" 2854 + dependencies = [ 2855 + "log", 2856 + "symphonia-core", 2857 + "symphonia-metadata", 2858 + "symphonia-utils-xiph", 2859 + ] 2860 + 2861 + [[package]] 2862 + name = "symphonia-format-wav" 2863 + version = "0.5.2" 2864 + source = "registry+https://github.com/rust-lang/crates.io-index" 2865 + checksum = "06679bd5646b3037300f88891dfc8a6e1cc4e1133206cc17a98e5d7c22f88296" 2866 + dependencies = [ 2867 + "log", 2868 + "symphonia-core", 2869 + "symphonia-metadata", 2870 + ] 2871 + 2872 + [[package]] 2873 + name = "symphonia-metadata" 2874 + version = "0.5.2" 2875 + source = "registry+https://github.com/rust-lang/crates.io-index" 2876 + checksum = "acd35c263223ef6161000be79b124a75de3e065eea563bf3ef169b3e94c7bb2e" 2877 + dependencies = [ 2878 + "encoding_rs", 2879 + "lazy_static", 2880 + "log", 2881 + "symphonia-core", 2882 + ] 2883 + 2884 + [[package]] 2885 + name = "symphonia-utils-xiph" 2886 + version = "0.5.2" 2887 + source = "registry+https://github.com/rust-lang/crates.io-index" 2888 + checksum = "ce340a6c33ac06cb42de01220308ec056e8a2a3d5cc664aaf34567392557136b" 2889 + dependencies = [ 2890 + "symphonia-core", 2891 + "symphonia-metadata", 2892 + ] 2893 + 2894 + [[package]] 2895 + name = "syn" 2896 + version = "1.0.109" 2897 + source = "registry+https://github.com/rust-lang/crates.io-index" 2898 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2899 + dependencies = [ 2900 + "proc-macro2", 2901 + "quote", 2902 + "unicode-ident", 2903 + ] 2904 + 2905 + [[package]] 2906 + name = "tch" 2907 + version = "0.11.0" 2908 + source = "registry+https://github.com/rust-lang/crates.io-index" 2909 + checksum = "d3394fea57e43ef3708196025beb3445dc13998b162f972233f11b9fdf091401" 2910 + dependencies = [ 2911 + "half", 2912 + "lazy_static", 2913 + "libc", 2914 + "ndarray", 2915 + "rand", 2916 + "thiserror", 2917 + "torch-sys", 2918 + "zip", 2919 + ] 2920 + 2921 + [[package]] 2922 + name = "termcolor" 2923 + version = "1.2.0" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2926 + dependencies = [ 2927 + "winapi-util", 2928 + ] 2929 + 2930 + [[package]] 2931 + name = "terminal_size" 2932 + version = "0.2.5" 2933 + source = "registry+https://github.com/rust-lang/crates.io-index" 2934 + checksum = "4c9afddd2cec1c0909f06b00ef33f94ab2cc0578c4a610aa208ddfec8aa2b43a" 2935 + dependencies = [ 2936 + "rustix", 2937 + "windows-sys 0.45.0", 2938 + ] 2939 + 2940 + [[package]] 2941 + name = "textplots" 2942 + version = "0.8.0" 2943 + source = "registry+https://github.com/rust-lang/crates.io-index" 2944 + checksum = "c771910e9d7e37d50f6d39f5ce4c4351fd797dcaed9a348e911877401af1b799" 2945 + dependencies = [ 2946 + "drawille", 2947 + "meval", 2948 + "rgb", 2949 + "structopt", 2950 + ] 2951 + 2952 + [[package]] 2953 + name = "textwrap" 2954 + version = "0.11.0" 2955 + source = "registry+https://github.com/rust-lang/crates.io-index" 2956 + checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 2957 + dependencies = [ 2958 + "unicode-width", 2959 + ] 2960 + 2961 + [[package]] 2962 + name = "thiserror" 2963 + version = "1.0.39" 2964 + source = "registry+https://github.com/rust-lang/crates.io-index" 2965 + checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" 2966 + dependencies = [ 2967 + "thiserror-impl", 2968 + ] 2969 + 2970 + [[package]] 2971 + name = "thiserror-impl" 2972 + version = "1.0.39" 2973 + source = "registry+https://github.com/rust-lang/crates.io-index" 2974 + checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" 2975 + dependencies = [ 2976 + "proc-macro2", 2977 + "quote", 2978 + "syn", 2979 + ] 2980 + 2981 + [[package]] 2982 + name = "thread-id" 2983 + version = "4.0.0" 2984 + source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "5fdfe0627923f7411a43ec9ec9c39c3a9b4151be313e0922042581fb6c9b717f" 2986 + dependencies = [ 2987 + "libc", 2988 + "redox_syscall", 2989 + "winapi", 2990 + ] 2991 + 2992 + [[package]] 2993 + name = "thread-tree" 2994 + version = "0.3.3" 2995 + source = "registry+https://github.com/rust-lang/crates.io-index" 2996 + checksum = "ffbd370cb847953a25954d9f63e14824a36113f8c72eecf6eccef5dc4b45d630" 2997 + dependencies = [ 2998 + "crossbeam-channel", 2999 + ] 3000 + 3001 + [[package]] 3002 + name = "time" 3003 + version = "0.1.45" 3004 + source = "registry+https://github.com/rust-lang/crates.io-index" 3005 + checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 3006 + dependencies = [ 3007 + "libc", 3008 + "wasi 0.10.0+wasi-snapshot-preview1", 3009 + "winapi", 3010 + ] 3011 + 3012 + [[package]] 3013 + name = "time" 3014 + version = "0.3.20" 3015 + source = "registry+https://github.com/rust-lang/crates.io-index" 3016 + checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 3017 + dependencies = [ 3018 + "serde", 3019 + "time-core", 3020 + ] 3021 + 3022 + [[package]] 3023 + name = "time-core" 3024 + version = "0.1.0" 3025 + source = "registry+https://github.com/rust-lang/crates.io-index" 3026 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3027 + 3028 + [[package]] 3029 + name = "tiny-keccak" 3030 + version = "2.0.2" 3031 + source = "registry+https://github.com/rust-lang/crates.io-index" 3032 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 3033 + dependencies = [ 3034 + "crunchy", 3035 + ] 3036 + 3037 + [[package]] 3038 + name = "tinyvec" 3039 + version = "1.6.0" 3040 + source = "registry+https://github.com/rust-lang/crates.io-index" 3041 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3042 + dependencies = [ 3043 + "tinyvec_macros", 3044 + ] 3045 + 3046 + [[package]] 3047 + name = "tinyvec_macros" 3048 + version = "0.1.1" 3049 + source = "registry+https://github.com/rust-lang/crates.io-index" 3050 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3051 + 3052 + [[package]] 3053 + name = "toml_datetime" 3054 + version = "0.6.1" 3055 + source = "registry+https://github.com/rust-lang/crates.io-index" 3056 + checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 3057 + 3058 + [[package]] 3059 + name = "toml_edit" 3060 + version = "0.19.6" 3061 + source = "registry+https://github.com/rust-lang/crates.io-index" 3062 + checksum = "08de71aa0d6e348f070457f85af8bd566e2bc452156a423ddf22861b3a953fae" 3063 + dependencies = [ 3064 + "indexmap", 3065 + "toml_datetime", 3066 + "winnow", 3067 + ] 3068 + 3069 + [[package]] 3070 + name = "torch-sys" 3071 + version = "0.11.0" 3072 + source = "registry+https://github.com/rust-lang/crates.io-index" 3073 + checksum = "6ff928d3e632acda675e388d8e0efe526136350620800cc770e3727c9abc6ea1" 3074 + dependencies = [ 3075 + "anyhow", 3076 + "cc", 3077 + "libc", 3078 + "ureq", 3079 + "zip", 3080 + ] 3081 + 3082 + [[package]] 3083 + name = "transpose" 3084 + version = "0.2.2" 3085 + source = "registry+https://github.com/rust-lang/crates.io-index" 3086 + checksum = "e6522d49d03727ffb138ae4cbc1283d3774f0d10aa7f9bf52e6784c45daf9b23" 3087 + dependencies = [ 3088 + "num-integer", 3089 + "strength_reduce", 3090 + ] 3091 + 3092 + [[package]] 3093 + name = "ttf-parser" 3094 + version = "0.15.2" 3095 + source = "registry+https://github.com/rust-lang/crates.io-index" 3096 + checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd" 3097 + 3098 + [[package]] 3099 + name = "typemap-ors" 3100 + version = "1.0.0" 3101 + source = "registry+https://github.com/rust-lang/crates.io-index" 3102 + checksum = "a68c24b707f02dd18f1e4ccceb9d49f2058c2fb86384ef9972592904d7a28867" 3103 + dependencies = [ 3104 + "unsafe-any-ors", 3105 + ] 3106 + 3107 + [[package]] 3108 + name = "typenum" 3109 + version = "1.16.0" 3110 + source = "registry+https://github.com/rust-lang/crates.io-index" 3111 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3112 + 3113 + [[package]] 3114 + name = "ucd-trie" 3115 + version = "0.1.5" 3116 + source = "registry+https://github.com/rust-lang/crates.io-index" 3117 + checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 3118 + 3119 + [[package]] 3120 + name = "unicode-bidi" 3121 + version = "0.3.11" 3122 + source = "registry+https://github.com/rust-lang/crates.io-index" 3123 + checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c" 3124 + 3125 + [[package]] 3126 + name = "unicode-ident" 3127 + version = "1.0.8" 3128 + source = "registry+https://github.com/rust-lang/crates.io-index" 3129 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 3130 + 3131 + [[package]] 3132 + name = "unicode-normalization" 3133 + version = "0.1.22" 3134 + source = "registry+https://github.com/rust-lang/crates.io-index" 3135 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3136 + dependencies = [ 3137 + "tinyvec", 3138 + ] 3139 + 3140 + [[package]] 3141 + name = "unicode-segmentation" 3142 + version = "1.10.1" 3143 + source = "registry+https://github.com/rust-lang/crates.io-index" 3144 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3145 + 3146 + [[package]] 3147 + name = "unicode-width" 3148 + version = "0.1.10" 3149 + source = "registry+https://github.com/rust-lang/crates.io-index" 3150 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3151 + 3152 + [[package]] 3153 + name = "unsafe-any-ors" 3154 + version = "1.0.0" 3155 + source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "e0a303d30665362d9680d7d91d78b23f5f899504d4f08b3c4cf08d055d87c0ad" 3157 + dependencies = [ 3158 + "destructure_traitobject", 3159 + ] 3160 + 3161 + [[package]] 3162 + name = "untrusted" 3163 + version = "0.7.1" 3164 + source = "registry+https://github.com/rust-lang/crates.io-index" 3165 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 3166 + 3167 + [[package]] 3168 + name = "ureq" 3169 + version = "2.6.2" 3170 + source = "registry+https://github.com/rust-lang/crates.io-index" 3171 + checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d" 3172 + dependencies = [ 3173 + "base64", 3174 + "flate2", 3175 + "log", 3176 + "once_cell", 3177 + "rustls", 3178 + "url", 3179 + "webpki", 3180 + "webpki-roots", 3181 + ] 3182 + 3183 + [[package]] 3184 + name = "url" 3185 + version = "2.3.1" 3186 + source = "registry+https://github.com/rust-lang/crates.io-index" 3187 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3188 + dependencies = [ 3189 + "form_urlencoded", 3190 + "idna", 3191 + "percent-encoding", 3192 + ] 3193 + 3194 + [[package]] 3195 + name = "uuid" 3196 + version = "1.3.0" 3197 + source = "registry+https://github.com/rust-lang/crates.io-index" 3198 + checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" 3199 + 3200 + [[package]] 3201 + name = "vec_map" 3202 + version = "0.8.2" 3203 + source = "registry+https://github.com/rust-lang/crates.io-index" 3204 + checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 3205 + 3206 + [[package]] 3207 + name = "version_check" 3208 + version = "0.9.4" 3209 + source = "registry+https://github.com/rust-lang/crates.io-index" 3210 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3211 + 3212 + [[package]] 3213 + name = "walkdir" 3214 + version = "2.3.2" 3215 + source = "registry+https://github.com/rust-lang/crates.io-index" 3216 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3217 + dependencies = [ 3218 + "same-file", 3219 + "winapi", 3220 + "winapi-util", 3221 + ] 3222 + 3223 + [[package]] 3224 + name = "wasi" 3225 + version = "0.10.0+wasi-snapshot-preview1" 3226 + source = "registry+https://github.com/rust-lang/crates.io-index" 3227 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 3228 + 3229 + [[package]] 3230 + name = "wasi" 3231 + version = "0.11.0+wasi-snapshot-preview1" 3232 + source = "registry+https://github.com/rust-lang/crates.io-index" 3233 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3234 + 3235 + [[package]] 3236 + name = "wasm-bindgen" 3237 + version = "0.2.84" 3238 + source = "registry+https://github.com/rust-lang/crates.io-index" 3239 + checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 3240 + dependencies = [ 3241 + "cfg-if 1.0.0", 3242 + "wasm-bindgen-macro", 3243 + ] 3244 + 3245 + [[package]] 3246 + name = "wasm-bindgen-backend" 3247 + version = "0.2.84" 3248 + source = "registry+https://github.com/rust-lang/crates.io-index" 3249 + checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 3250 + dependencies = [ 3251 + "bumpalo", 3252 + "log", 3253 + "once_cell", 3254 + "proc-macro2", 3255 + "quote", 3256 + "syn", 3257 + "wasm-bindgen-shared", 3258 + ] 3259 + 3260 + [[package]] 3261 + name = "wasm-bindgen-futures" 3262 + version = "0.4.34" 3263 + source = "registry+https://github.com/rust-lang/crates.io-index" 3264 + checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 3265 + dependencies = [ 3266 + "cfg-if 1.0.0", 3267 + "js-sys", 3268 + "wasm-bindgen", 3269 + "web-sys", 3270 + ] 3271 + 3272 + [[package]] 3273 + name = "wasm-bindgen-macro" 3274 + version = "0.2.84" 3275 + source = "registry+https://github.com/rust-lang/crates.io-index" 3276 + checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 3277 + dependencies = [ 3278 + "quote", 3279 + "wasm-bindgen-macro-support", 3280 + ] 3281 + 3282 + [[package]] 3283 + name = "wasm-bindgen-macro-support" 3284 + version = "0.2.84" 3285 + source = "registry+https://github.com/rust-lang/crates.io-index" 3286 + checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 3287 + dependencies = [ 3288 + "proc-macro2", 3289 + "quote", 3290 + "syn", 3291 + "wasm-bindgen-backend", 3292 + "wasm-bindgen-shared", 3293 + ] 3294 + 3295 + [[package]] 3296 + name = "wasm-bindgen-shared" 3297 + version = "0.2.84" 3298 + source = "registry+https://github.com/rust-lang/crates.io-index" 3299 + checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 3300 + 3301 + [[package]] 3302 + name = "web-sys" 3303 + version = "0.3.61" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 3306 + dependencies = [ 3307 + "js-sys", 3308 + "wasm-bindgen", 3309 + ] 3310 + 3311 + [[package]] 3312 + name = "webpki" 3313 + version = "0.22.0" 3314 + source = "registry+https://github.com/rust-lang/crates.io-index" 3315 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 3316 + dependencies = [ 3317 + "ring", 3318 + "untrusted", 3319 + ] 3320 + 3321 + [[package]] 3322 + name = "webpki-roots" 3323 + version = "0.22.6" 3324 + source = "registry+https://github.com/rust-lang/crates.io-index" 3325 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 3326 + dependencies = [ 3327 + "webpki", 3328 + ] 3329 + 3330 + [[package]] 3331 + name = "wee_alloc" 3332 + version = "0.4.5" 3333 + source = "registry+https://github.com/rust-lang/crates.io-index" 3334 + checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e" 3335 + dependencies = [ 3336 + "cfg-if 0.1.10", 3337 + "libc", 3338 + "memory_units", 3339 + "winapi", 3340 + ] 3341 + 3342 + [[package]] 3343 + name = "weezl" 3344 + version = "0.1.7" 3345 + source = "registry+https://github.com/rust-lang/crates.io-index" 3346 + checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 3347 + 3348 + [[package]] 3349 + name = "winapi" 3350 + version = "0.3.9" 3351 + source = "registry+https://github.com/rust-lang/crates.io-index" 3352 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3353 + dependencies = [ 3354 + "winapi-i686-pc-windows-gnu", 3355 + "winapi-x86_64-pc-windows-gnu", 3356 + ] 3357 + 3358 + [[package]] 3359 + name = "winapi-i686-pc-windows-gnu" 3360 + version = "0.4.0" 3361 + source = "registry+https://github.com/rust-lang/crates.io-index" 3362 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3363 + 3364 + [[package]] 3365 + name = "winapi-util" 3366 + version = "0.1.5" 3367 + source = "registry+https://github.com/rust-lang/crates.io-index" 3368 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3369 + dependencies = [ 3370 + "winapi", 3371 + ] 3372 + 3373 + [[package]] 3374 + name = "winapi-x86_64-pc-windows-gnu" 3375 + version = "0.4.0" 3376 + source = "registry+https://github.com/rust-lang/crates.io-index" 3377 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3378 + 3379 + [[package]] 3380 + name = "windows" 3381 + version = "0.44.0" 3382 + source = "registry+https://github.com/rust-lang/crates.io-index" 3383 + checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 3384 + dependencies = [ 3385 + "windows-targets", 3386 + ] 3387 + 3388 + [[package]] 3389 + name = "windows-sys" 3390 + version = "0.42.0" 3391 + source = "registry+https://github.com/rust-lang/crates.io-index" 3392 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3393 + dependencies = [ 3394 + "windows_aarch64_gnullvm", 3395 + "windows_aarch64_msvc", 3396 + "windows_i686_gnu", 3397 + "windows_i686_msvc", 3398 + "windows_x86_64_gnu", 3399 + "windows_x86_64_gnullvm", 3400 + "windows_x86_64_msvc", 3401 + ] 3402 + 3403 + [[package]] 3404 + name = "windows-sys" 3405 + version = "0.45.0" 3406 + source = "registry+https://github.com/rust-lang/crates.io-index" 3407 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3408 + dependencies = [ 3409 + "windows-targets", 3410 + ] 3411 + 3412 + [[package]] 3413 + name = "windows-targets" 3414 + version = "0.42.2" 3415 + source = "registry+https://github.com/rust-lang/crates.io-index" 3416 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3417 + dependencies = [ 3418 + "windows_aarch64_gnullvm", 3419 + "windows_aarch64_msvc", 3420 + "windows_i686_gnu", 3421 + "windows_i686_msvc", 3422 + "windows_x86_64_gnu", 3423 + "windows_x86_64_gnullvm", 3424 + "windows_x86_64_msvc", 3425 + ] 3426 + 3427 + [[package]] 3428 + name = "windows_aarch64_gnullvm" 3429 + version = "0.42.2" 3430 + source = "registry+https://github.com/rust-lang/crates.io-index" 3431 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3432 + 3433 + [[package]] 3434 + name = "windows_aarch64_msvc" 3435 + version = "0.42.2" 3436 + source = "registry+https://github.com/rust-lang/crates.io-index" 3437 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3438 + 3439 + [[package]] 3440 + name = "windows_i686_gnu" 3441 + version = "0.42.2" 3442 + source = "registry+https://github.com/rust-lang/crates.io-index" 3443 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3444 + 3445 + [[package]] 3446 + name = "windows_i686_msvc" 3447 + version = "0.42.2" 3448 + source = "registry+https://github.com/rust-lang/crates.io-index" 3449 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3450 + 3451 + [[package]] 3452 + name = "windows_x86_64_gnu" 3453 + version = "0.42.2" 3454 + source = "registry+https://github.com/rust-lang/crates.io-index" 3455 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3456 + 3457 + [[package]] 3458 + name = "windows_x86_64_gnullvm" 3459 + version = "0.42.2" 3460 + source = "registry+https://github.com/rust-lang/crates.io-index" 3461 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3462 + 3463 + [[package]] 3464 + name = "windows_x86_64_msvc" 3465 + version = "0.42.2" 3466 + source = "registry+https://github.com/rust-lang/crates.io-index" 3467 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3468 + 3469 + [[package]] 3470 + name = "winnow" 3471 + version = "0.3.5" 3472 + source = "registry+https://github.com/rust-lang/crates.io-index" 3473 + checksum = "ee7b2c67f962bf5042bfd8b6a916178df33a26eec343ae064cb8e069f638fa6f" 3474 + dependencies = [ 3475 + "memchr", 3476 + ] 3477 + 3478 + [[package]] 3479 + name = "wio" 3480 + version = "0.2.2" 3481 + source = "registry+https://github.com/rust-lang/crates.io-index" 3482 + checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5" 3483 + dependencies = [ 3484 + "winapi", 3485 + ] 3486 + 3487 + [[package]] 3488 + name = "wrapcenum-derive" 3489 + version = "0.4.0" 3490 + source = "registry+https://github.com/rust-lang/crates.io-index" 3491 + checksum = "6bcc065c85ad2c3bd12aa4118bf164835712e25080c392557801a13292c60aec" 3492 + dependencies = [ 3493 + "darling", 3494 + "proc-macro2", 3495 + "quote", 3496 + "syn", 3497 + ] 3498 + 3499 + [[package]] 3500 + name = "yaml-rust" 3501 + version = "0.4.5" 3502 + source = "registry+https://github.com/rust-lang/crates.io-index" 3503 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 3504 + dependencies = [ 3505 + "linked-hash-map", 3506 + ] 3507 + 3508 + [[package]] 3509 + name = "yansi" 3510 + version = "0.5.1" 3511 + source = "registry+https://github.com/rust-lang/crates.io-index" 3512 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 3513 + 3514 + [[package]] 3515 + name = "yeslogic-fontconfig-sys" 3516 + version = "3.2.0" 3517 + source = "registry+https://github.com/rust-lang/crates.io-index" 3518 + checksum = "f2bbd69036d397ebbff671b1b8e4d918610c181c5a16073b96f984a38d08c386" 3519 + dependencies = [ 3520 + "const-cstr", 3521 + "dlib", 3522 + "once_cell", 3523 + "pkg-config", 3524 + ] 3525 + 3526 + [[package]] 3527 + name = "zip" 3528 + version = "0.6.4" 3529 + source = "registry+https://github.com/rust-lang/crates.io-index" 3530 + checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef" 3531 + dependencies = [ 3532 + "aes", 3533 + "byteorder", 3534 + "bzip2", 3535 + "constant_time_eq", 3536 + "crc32fast", 3537 + "crossbeam-utils", 3538 + "flate2", 3539 + "hmac", 3540 + "pbkdf2", 3541 + "sha1", 3542 + "time 0.3.20", 3543 + "zstd", 3544 + ] 3545 + 3546 + [[package]] 3547 + name = "zstd" 3548 + version = "0.11.2+zstd.1.5.2" 3549 + source = "registry+https://github.com/rust-lang/crates.io-index" 3550 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 3551 + dependencies = [ 3552 + "zstd-safe", 3553 + ] 3554 + 3555 + [[package]] 3556 + name = "zstd-safe" 3557 + version = "5.0.2+zstd.1.5.2" 3558 + source = "registry+https://github.com/rust-lang/crates.io-index" 3559 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 3560 + dependencies = [ 3561 + "libc", 3562 + "zstd-sys", 3563 + ] 3564 + 3565 + [[package]] 3566 + name = "zstd-sys" 3567 + version = "2.0.7+zstd.1.5.4" 3568 + source = "registry+https://github.com/rust-lang/crates.io-index" 3569 + checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5" 3570 + dependencies = [ 3571 + "cc", 3572 + "libc", 3573 + "pkg-config", 3574 + ]
+8 -3
pkgs/applications/misc/kord/default.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "kord"; 10 - version = "0.4.2"; 11 12 # kord depends on nightly features 13 RUSTC_BOOTSTRAP = 1; ··· 16 owner = "twitchax"; 17 repo = "kord"; 18 rev = "v${version}"; 19 - sha256 = "sha256-B/UwnbzXI3ER8IMOVtn0ErVqFrkZXKoL+l7ll1AlzDg="; 20 }; 21 22 - cargoHash = "sha256-xhWSycTe72HW3E9meTo4wjOCHDcNq6fUPT6nqHoW9vE="; 23 24 nativeBuildInputs = [ pkg-config ]; 25 buildInputs = [ alsa-lib ];
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "kord"; 10 + version = "0.5.16"; 11 12 # kord depends on nightly features 13 RUSTC_BOOTSTRAP = 1; ··· 16 owner = "twitchax"; 17 repo = "kord"; 18 rev = "v${version}"; 19 + sha256 = "sha256-gI88fweOT2t+4cj58/mLygtTnue2Ai1QSC5oZf7Xv/g="; 20 }; 21 22 + cargoLock = { 23 + lockFile = ./Cargo.lock; 24 + outputHashes = { 25 + "bincode-2.0.0-rc.2" = "sha256-0BfKKGOi5EVIoF0HvIk0QS2fHUMG3tpsMLe2SkXeZlo="; 26 + }; 27 + }; 28 29 nativeBuildInputs = [ pkg-config ]; 30 buildInputs = [ alsa-lib ];
+1 -1
pkgs/applications/misc/pyditz/default.nix
··· 1 - { lib, pythonPackages }: 2 3 with pythonPackages; 4
··· 1 + { lib, pythonPackages, fetchPypi }: 2 3 with pythonPackages; 4
+1
pkgs/applications/misc/safeeyes/default.nix
··· 1 { lib 2 , python3 3 , alsa-utils 4 , gobject-introspection 5 , libappindicator-gtk3
··· 1 { lib 2 , python3 3 + , fetchPypi 4 , alsa-utils 5 , gobject-introspection 6 , libappindicator-gtk3
+1 -1
pkgs/applications/misc/shell-genie/default.nix
··· 1 { lib 2 , python3 3 - , fetchFromGitHub 4 }: 5 6 with python3.pkgs;
··· 1 { lib 2 , python3 3 + , fetchPypi 4 }: 5 6 with python3.pkgs;
+1
pkgs/applications/misc/vit/default.nix
··· 1 { lib 2 , python3Packages 3 , taskwarrior 4 , glibcLocales 5 }:
··· 1 { lib 2 , python3Packages 3 + , fetchPypi 4 , taskwarrior 5 , glibcLocales 6 }:
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 90 91 stdenv.mkDerivation rec { 92 pname = "brave"; 93 - version = "1.51.114"; 94 95 src = fetchurl { 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 - sha256 = "sha256-lykwmfGqH5VuWazEQuvTpD4ett4m+LCFmmxzjkULfmk="; 98 }; 99 100 dontConfigure = true;
··· 90 91 stdenv.mkDerivation rec { 92 pname = "brave"; 93 + version = "1.51.118"; 94 95 src = fetchurl { 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 + sha256 = "sha256-/OrnB4M6oefZ2aG2rQst8H4UZ/7vAFzyqWsn9kerb9c="; 98 }; 99 100 dontConfigure = true;
+4 -5
pkgs/applications/networking/cluster/hadoop/default.nix
··· 92 pname = "hadoop"; 93 platformAttrs = rec { 94 x86_64-linux = { 95 - version = "3.3.4"; 96 - hash = "sha256-akg9GgsSNJDr2N8/cbZOs58zP3i5XwkK61jkM8vCQW0="; 97 }; 98 x86_64-darwin = x86_64-linux; 99 aarch64-linux = { 100 - version = "3.3.1"; 101 - hash = "sha256-v1Om2pk0wsgKBghRD2wgTSHJoKd3jkm1wPKAeDcKlgI="; 102 - meta.knownVulnerabilities = [ "CVE-2021-37404" "CVE-2021-33036" ]; 103 }; 104 aarch64-darwin = aarch64-linux; 105 };
··· 92 pname = "hadoop"; 93 platformAttrs = rec { 94 x86_64-linux = { 95 + version = "3.3.5"; 96 + hash = "sha256-RG4FypL6I6YGF6ixeUbe3kcoGvFQQEFhfLfV9i50JSo="; 97 }; 98 x86_64-darwin = x86_64-linux; 99 aarch64-linux = { 100 + version = "3.3.5"; 101 + hash = "sha256-qcKjbE881isauWBxIv+NY0UFbYit704/Re8Kdl6x1LA="; 102 }; 103 aarch64-darwin = aarch64-linux; 104 };
+1
pkgs/applications/networking/instant-messengers/turses/default.nix
··· 1 { lib 2 , fetchpatch 3 , fetchFromGitHub 4 , python3 5 }: 6
··· 1 { lib 2 , fetchpatch 3 , fetchFromGitHub 4 + , fetchPypi 5 , python3 6 }: 7
+3 -3
pkgs/applications/networking/instant-messengers/webex/default.nix
··· 56 57 stdenv.mkDerivation rec { 58 pname = "webex"; 59 - version = "43.2.0.25211"; 60 61 src = fetchurl { 62 - url = "https://binaries.webex.com/WebexDesktop-Ubuntu-Gold/20230214022524/Webex_ubuntu.7z"; 63 - sha256 = "c58a0da26c8f64302cc612c60980dbd68c074d6d8a567b3d870d7d6d06b420ad"; 64 }; 65 66 nativeBuildInputs = [
··· 56 57 stdenv.mkDerivation rec { 58 pname = "webex"; 59 + version = "43.5.0.26155"; 60 61 src = fetchurl { 62 + url = "https://binaries.webex.com/WebexDesktop-Ubuntu-Gold/20230508235734/Webex_ubuntu.7z"; 63 + sha256 = "94ddd66be3a44eeb6f854d0e02feec2e010d494ff9fcc81663f30fca37da4774"; 64 }; 65 66 nativeBuildInputs = [
+11 -8
pkgs/applications/networking/mailreaders/aerc/default.nix
··· 12 13 buildGoModule rec { 14 pname = "aerc"; 15 - version = "0.14.0"; 16 17 src = fetchFromSourcehut { 18 owner = "~rjarry"; 19 repo = "aerc"; 20 rev = version; 21 - hash = "sha256-qC7lNqjgljUqRUp+S7vBVLPyRB3+Ie5UOxuio+Q88hg="; 22 }; 23 24 proxyVendor = true; 25 - vendorHash = "sha256-MVek3TQpE3AChGyQ4z01fLfkcGKJcckmFV21ww9zT7M="; 26 27 doCheck = false; 28 ··· 32 ]; 33 34 patches = [ 35 - ./runtime-sharedir.patch 36 ]; 37 38 postPatch = '' 39 substituteAllInPlace config/aerc.conf 40 substituteAllInPlace config/config.go 41 substituteAllInPlace doc/aerc-config.5.scd 42 ''; 43 44 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 45 46 pythonPath = [ 47 - python3.pkgs.colorama 48 ]; 49 50 buildInputs = [ python3 notmuch gawk ]; ··· 60 postFixup = '' 61 wrapProgram $out/bin/aerc \ 62 --prefix PATH ":" "${lib.makeBinPath [ ncurses ]}" 63 - wrapProgram $out/share/aerc/filters/html \ 64 --prefix PATH ":" ${lib.makeBinPath [ w3m dante ]} 65 - wrapProgram $out/share/aerc/filters/html-unsafe \ 66 --prefix PATH ":" ${lib.makeBinPath [ w3m dante ]} 67 - patchShebangs $out/share/aerc/filters 68 ''; 69 70 meta = with lib; {
··· 12 13 buildGoModule rec { 14 pname = "aerc"; 15 + version = "0.15.2"; 16 17 src = fetchFromSourcehut { 18 owner = "~rjarry"; 19 repo = "aerc"; 20 rev = version; 21 + hash = "sha256-OQDA4AHDcAdDzpwNSi8rW1FKjfYaFktOwiM0FEHPd70="; 22 }; 23 24 proxyVendor = true; 25 + vendorHash = "sha256-NWOySC0czNgNOakpxFguZLtmEI7AvjJQKXDE2vFWeZg="; 26 27 doCheck = false; 28 ··· 32 ]; 33 34 patches = [ 35 + ./runtime-libexec.patch 36 ]; 37 38 postPatch = '' 39 substituteAllInPlace config/aerc.conf 40 substituteAllInPlace config/config.go 41 substituteAllInPlace doc/aerc-config.5.scd 42 + 43 + # Prevent buildGoModule from trying to build this 44 + rm contrib/linters.go 45 ''; 46 47 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 48 49 pythonPath = [ 50 + python3.pkgs.vobject 51 ]; 52 53 buildInputs = [ python3 notmuch gawk ]; ··· 63 postFixup = '' 64 wrapProgram $out/bin/aerc \ 65 --prefix PATH ":" "${lib.makeBinPath [ ncurses ]}" 66 + wrapProgram $out/libexec/aerc/filters/html \ 67 --prefix PATH ":" ${lib.makeBinPath [ w3m dante ]} 68 + wrapProgram $out/libexec/aerc/filters/html-unsafe \ 69 --prefix PATH ":" ${lib.makeBinPath [ w3m dante ]} 70 + patchShebangs $out/libexec/aerc/filters 71 ''; 72 73 meta = with lib; {
+87
pkgs/applications/networking/mailreaders/aerc/runtime-libexec.patch
···
··· 1 + diff --git a/config/aerc.conf b/config/aerc.conf 2 + index 7d33b43..4315f0e 100644 3 + --- a/config/aerc.conf 4 + +++ b/config/aerc.conf 5 + @@ -202,8 +202,7 @@ 6 + # 7 + # ${XDG_CONFIG_HOME:-~/.config}/aerc/stylesets 8 + # ${XDG_DATA_HOME:-~/.local/share}/aerc/stylesets 9 + -# /usr/local/share/aerc/stylesets 10 + -# /usr/share/aerc/stylesets 11 + +# @out@/share/aerc/stylesets 12 + # 13 + #stylesets-dirs= 14 + 15 + @@ -547,8 +546,7 @@ message/rfc822=colorize 16 + # 17 + # ${XDG_CONFIG_HOME:-~/.config}/aerc/templates 18 + # ${XDG_DATA_HOME:-~/.local/share}/aerc/templates 19 + -# /usr/local/share/aerc/templates 20 + -# /usr/share/aerc/templates 21 + +# @out@/share/aerc/templates 22 + # 23 + #template-dirs= 24 + 25 + diff --git a/config/config.go b/config/config.go 26 + index d70bcfe..c19e59a 100644 27 + --- a/config/config.go 28 + +++ b/config/config.go 29 + @@ -54,10 +54,8 @@ func buildDefaultDirs() []string { 30 + } 31 + 32 + // Add fixed fallback locations 33 + - defaultDirs = append(defaultDirs, "/usr/local/libexec/aerc") 34 + - defaultDirs = append(defaultDirs, "/usr/local/share/aerc") 35 + - defaultDirs = append(defaultDirs, "/usr/libexec/aerc") 36 + - defaultDirs = append(defaultDirs, "/usr/share/aerc") 37 + + defaultDirs = append(defaultDirs, "@out@/libexec/aerc") 38 + + defaultDirs = append(defaultDirs, "@out@/share/aerc") 39 + 40 + return defaultDirs 41 + } 42 + diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd 43 + index 9e1f8a3..694abbc 100644 44 + --- a/doc/aerc-config.5.scd 45 + +++ b/doc/aerc-config.5.scd 46 + @@ -300,8 +300,7 @@ These options are configured in the *[ui]* section of _aerc.conf_. 47 + ``` 48 + ${XDG_CONFIG_HOME:-~/.config}/aerc/stylesets 49 + ${XDG_DATA_HOME:-~/.local/share}/aerc/stylesets 50 + - /usr/local/share/aerc/stylesets 51 + - /usr/share/aerc/stylesets 52 + + @out@/share/aerc/stylesets 53 + ``` 54 + 55 + *styleset-name* = _<string>_ 56 + @@ -900,8 +899,7 @@ These options are configured in the *[templates]* section of _aerc.conf_. 57 + ``` 58 + ${XDG_CONFIG_HOME:-~/.config}/aerc/templates 59 + ${XDG_DATA_HOME:-~/.local/share}/aerc/templates 60 + - /usr/local/share/aerc/templates 61 + - /usr/share/aerc/templates 62 + + @out@/share/aerc/templates 63 + ``` 64 + 65 + *new-message* = _<template_name>_ 66 + diff --git a/doc/aerc-templates.7.scd b/doc/aerc-templates.7.scd 67 + index ae9bc6d..5f42b14 100644 68 + --- a/doc/aerc-templates.7.scd 69 + +++ b/doc/aerc-templates.7.scd 70 + @@ -319,7 +319,7 @@ aerc provides the following additional functions: 71 + Execute external command, provide the second argument to its stdin. 72 + 73 + ``` 74 + - {{exec `/usr/libexec/aerc/filters/html` .OriginalText}} 75 + + {{exec `@out@/libexec/aerc/filters/html` .OriginalText}} 76 + ``` 77 + 78 + *.Local* 79 + @@ -425,7 +425,7 @@ aerc provides the following additional functions: 80 + 81 + ``` 82 + {{if eq .OriginalMIMEType "text/html"}} 83 + - {{exec `/usr/libexec/aerc/filters/html` .OriginalText | wrap 72 | quote}} 84 + + {{exec `@out@/libexec/aerc/filters/html` .OriginalText | wrap 72 | quote}} 85 + {{else}} 86 + {{wrap 72 .OriginalText | trimSignature | quote}} 87 + {{end}}
-84
pkgs/applications/networking/mailreaders/aerc/runtime-sharedir.patch
··· 1 - diff --git i/config/aerc.conf w/config/aerc.conf 2 - index 05ebbf4..db6877b 100644 3 - --- i/config/aerc.conf 4 - +++ w/config/aerc.conf 5 - @@ -152,8 +152,7 @@ 6 - # 7 - # ${XDG_CONFIG_HOME:-~/.config}/aerc/stylesets 8 - # ${XDG_DATA_HOME:-~/.local/share}/aerc/stylesets 9 - -# /usr/local/share/aerc/stylesets 10 - -# /usr/share/aerc/stylesets 11 - +# @out@/share/aerc/stylesets 12 - # 13 - #stylesets-dirs= 14 - 15 - @@ -445,8 +444,7 @@ message/rfc822=colorize 16 - # 17 - # ${XDG_CONFIG_HOME:-~/.config}/aerc/templates 18 - # ${XDG_DATA_HOME:-~/.local/share}/aerc/templates 19 - -# /usr/local/share/aerc/templates 20 - -# /usr/share/aerc/templates 21 - +# @out@/share/aerc/templates 22 - # 23 - #template-dirs= 24 - 25 - diff --git i/config/config.go w/config/config.go 26 - index 09fb5ef..c73a7ee 100644 27 - --- i/config/config.go 28 - +++ w/config/config.go 29 - @@ -60,8 +60,7 @@ func buildDefaultDirs() []string { 30 - } 31 - 32 - // Add fixed fallback locations 33 - - defaultDirs = append(defaultDirs, "/usr/local/share/aerc") 34 - - defaultDirs = append(defaultDirs, "/usr/share/aerc") 35 - + defaultDirs = append(defaultDirs, "@out@/share/aerc") 36 - 37 - return defaultDirs 38 - } 39 - diff --git i/doc/aerc-config.5.scd w/doc/aerc-config.5.scd 40 - index d48e38a..39784c4 100644 41 - --- i/doc/aerc-config.5.scd 42 - +++ w/doc/aerc-config.5.scd 43 - @@ -279,8 +279,7 @@ These options are configured in the *[ui]* section of _aerc.conf_. 44 - ``` 45 - ${XDG_CONFIG_HOME:-~/.config}/aerc/stylesets 46 - ${XDG_DATA_HOME:-~/.local/share}/aerc/stylesets 47 - - /usr/local/share/aerc/stylesets 48 - - /usr/share/aerc/stylesets 49 - + @out@/share/aerc/stylesets 50 - ``` 51 - 52 - *styleset-name* = _<string>_ 53 - @@ -822,8 +821,7 @@ These options are configured in the *[templates]* section of _aerc.conf_. 54 - ``` 55 - ${XDG_CONFIG_HOME:-~/.config}/aerc/templates 56 - ${XDG_DATA_HOME:-~/.local/share}/aerc/templates 57 - - /usr/local/share/aerc/templates 58 - - /usr/share/aerc/templates 59 - + @out@/share/aerc/templates 60 - ``` 61 - 62 - *new-message* = _<template_name>_ 63 - diff --git i/doc/aerc-templates.7.scd w/doc/aerc-templates.7.scd 64 - index 6c9e319..0ef97ce 100644 65 - --- i/doc/aerc-templates.7.scd 66 - +++ w/doc/aerc-templates.7.scd 67 - @@ -111,7 +111,7 @@ aerc provides the following additional functions: 68 - Execute external command, provide the second argument to its stdin. 69 - 70 - ``` 71 - - {{exec `/usr/local/share/aerc/filters/html` .OriginalText}} 72 - + {{exec `@out@/share/aerc/filters/html` .OriginalText}} 73 - ``` 74 - 75 - *toLocal* 76 - @@ -142,7 +142,7 @@ aerc provides the following additional functions: 77 - Example: Automatic HTML parsing for text/html mime type messages 78 - ``` 79 - {{if eq .OriginalMIMEType "text/html"}} 80 - - {{exec `/usr/local/share/aerc/filters/html` .OriginalText | wrap 72 | quote}} 81 - + {{exec `@out@/share/aerc/filters/html` .OriginalText | wrap 72 | quote}} 82 - {{else}} 83 - {{wrap 72 .OriginalText | quote}} 84 - {{end}}
···
+1
pkgs/applications/video/catt/default.nix
··· 1 { lib 2 , fetchFromGitHub 3 , python3 4 }: 5
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchPypi 4 , python3 5 }: 6
+10
pkgs/applications/video/frigate/default.nix
··· 94 --replace "/media/frigate" "/var/lib/frigate" \ 95 --replace "/tmp/cache" "/var/cache/frigate" 96 97 substituteInPlace frigate/detectors/detector_config.py \ 98 --replace "/labelmap.txt" "${placeholder "out"}/share/frigate/labelmap.txt" 99
··· 94 --replace "/media/frigate" "/var/lib/frigate" \ 95 --replace "/tmp/cache" "/var/cache/frigate" 96 97 + substituteInPlace frigate/http.py \ 98 + --replace "/opt/frigate" "${placeholder "out"}/${python.sitePackages}" \ 99 + --replace "/tmp/cache/" "/var/cache/frigate" 100 + 101 + substituteInPlace frigate/output.py \ 102 + --replace "/opt/frigate" "${placeholder "out"}/${python.sitePackages}" 103 + 104 + substituteInPlace frigate/record.py \ 105 + --replace "/tmp/cache" "/var/cache/frigate" 106 + 107 substituteInPlace frigate/detectors/detector_config.py \ 108 --replace "/labelmap.txt" "${placeholder "out"}/share/frigate/labelmap.txt" 109
+63
pkgs/applications/video/memento/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , qtbase 6 + , qtx11extras ? null # qt5 only 7 + , wrapQtAppsHook 8 + 9 + # before that => zeal 10 + , sqlite 11 + , json_c 12 + , mecab 13 + , libzip 14 + , mpv 15 + , yt-dlp 16 + # optional 17 + , makeWrapper}: 18 + 19 + let 20 + isQt5 = lib.versions.major qtbase.version == "5"; 21 + 22 + in 23 + stdenv.mkDerivation (finalAttrs: { 24 + pname = "memento"; 25 + version = "v1.1.0"; 26 + 27 + src = fetchFromGitHub { 28 + owner = "ripose-jp"; 29 + repo = "Memento"; 30 + rev = finalAttrs.version; 31 + hash = "sha256-29AzQ+Z2PNs65Tvmt2Z5Ra2G3Yhm4LVBpAqvnSsnE0Y="; 32 + }; 33 + 34 + nativeBuildInputs = [ 35 + cmake 36 + makeWrapper 37 + wrapQtAppsHook 38 + ]; 39 + 40 + buildInputs = [ 41 + qtbase 42 + sqlite 43 + json_c 44 + libzip 45 + mecab 46 + ] ++ lib.optionals isQt5 [ qtx11extras ]; 47 + 48 + propagatedBuildInputs = [ mpv ]; 49 + 50 + preFixup = '' 51 + wrapProgram "$out/bin/memento" \ 52 + --prefix PATH : "${yt-dlp}/bin" \ 53 + ''; 54 + 55 + meta = with lib; { 56 + description = "An mpv-based video player for studying Japanese"; 57 + homepage = "https://ripose-jp.github.io/Memento/"; 58 + license = licenses.gpl2; 59 + maintainers = with maintainers; [ teto ]; 60 + platforms = platforms.linux; 61 + }; 62 + }) 63 +
+29
pkgs/applications/video/mpv-shim-default-shaders/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "mpv-shim-default-shaders"; 5 + version = "2.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "iwalton3"; 9 + repo = "default-shader-pack"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-BM2GvmUoWQUUMH464YIIqu5A1t1B+otbJxAGFbySuq8="; 12 + }; 13 + 14 + installPhase = '' 15 + mkdir -p $out/share/${pname} 16 + cp -r shaders *.json $out/share/${pname} 17 + ''; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/iwalton3/default-shader-pack"; 21 + description = "Preconfigured set of MPV shaders and configurations for MPV Shim media clients."; 22 + license = with licenses; [ 23 + gpl3Plus 24 + mit 25 + unlicense 26 + ]; 27 + maintainers = with maintainers; [ devusb ]; 28 + }; 29 + }
+9 -2
pkgs/applications/video/plex-mpv-shim/default.nix
··· 1 - { lib, buildPythonApplication, fetchFromGitHub, mpv, requests, python-mpv-jsonipc, pystray, tkinter 2 - , wrapGAppsHook, gobject-introspection }: 3 4 buildPythonApplication rec { 5 pname = "plex-mpv-shim"; ··· 25 ''; 26 dontWrapGApps = true; 27 28 # does not contain tests 29 doCheck = false; 30 31 meta = with lib; { 32 homepage = "https://github.com/iwalton3/plex-mpv-shim"; 33 description = "Allows casting of videos to MPV via the Plex mobile and web app"; 34 license = licenses.mit; 35 }; 36 }
··· 1 + { lib, buildPythonApplication, fetchFromGitHub, python, mpv, requests, python-mpv-jsonipc, pystray, tkinter 2 + , wrapGAppsHook, gobject-introspection, mpv-shim-default-shaders }: 3 4 buildPythonApplication rec { 5 pname = "plex-mpv-shim"; ··· 25 ''; 26 dontWrapGApps = true; 27 28 + postInstall = '' 29 + # put link to shaders where upstream package expects them 30 + ln -s ${mpv-shim-default-shaders}/share/mpv-shim-default-shaders $out/${python.sitePackages}/plex_mpv_shim/default_shader_pack 31 + ''; 32 + 33 # does not contain tests 34 doCheck = false; 35 36 meta = with lib; { 37 homepage = "https://github.com/iwalton3/plex-mpv-shim"; 38 description = "Allows casting of videos to MPV via the Plex mobile and web app"; 39 + maintainers = with maintainers; [ devusb ]; 40 license = licenses.mit; 41 + platforms = platforms.linux; 42 }; 43 }
+3 -3
pkgs/applications/virtualization/colima/default.nix
··· 17 18 buildGoModule rec { 19 pname = "colima"; 20 - version = "0.5.4"; 21 22 src = fetchFromGitHub { 23 owner = "abiosoft"; 24 repo = pname; 25 rev = "v${version}"; 26 - sha256 = "sha256-oCYHQFajtZXVAVeJ8zvJABlmwmOUgisvVg9eLT7wd0M="; 27 # We need the git revision 28 leaveDotGit = true; 29 postFetch = '' ··· 35 nativeBuildInputs = [ installShellFiles makeWrapper ] 36 ++ lib.optionals stdenv.isDarwin [ darwin.DarwinTools ]; 37 38 - vendorHash = "sha256-bEgC7j8WvCgrJ2Ahye4mfWVEmo6Y/OO64mDIJXvtaiE="; 39 40 # disable flaky Test_extractZones 41 # https://hydra.nixos.org/build/212378003/log
··· 17 18 buildGoModule rec { 19 pname = "colima"; 20 + version = "0.5.5"; 21 22 src = fetchFromGitHub { 23 owner = "abiosoft"; 24 repo = pname; 25 rev = "v${version}"; 26 + sha256 = "sha256-i+JveX9cXF+2Po5NFM8HTmwcSJJ/iSPrlwbA/7aNhc0="; 27 # We need the git revision 28 leaveDotGit = true; 29 postFetch = '' ··· 35 nativeBuildInputs = [ installShellFiles makeWrapper ] 36 ++ lib.optionals stdenv.isDarwin [ darwin.DarwinTools ]; 37 38 + vendorHash = "sha256-lsTvzGFoC3Brnr1Q0Hl0ZqEDfcTeQ8vWGe+xylTyvts="; 39 40 # disable flaky Test_extractZones 41 # https://hydra.nixos.org/build/212378003/log
+23
pkgs/build-support/kernel/make-initrd-ng/Cargo.lock
··· 9 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 10 11 [[package]] 12 name = "goblin" 13 version = "0.5.3" 14 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 20 ] 21 22 [[package]] 23 name = "log" 24 version = "0.4.17" 25 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 32 name = "make-initrd-ng" 33 version = "0.1.0" 34 dependencies = [ 35 "goblin", 36 ] 37 38 [[package]] 39 name = "plain"
··· 9 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 10 11 [[package]] 12 + name = "eyre" 13 + version = "0.6.8" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" 16 + dependencies = [ 17 + "indenter", 18 + "once_cell", 19 + ] 20 + 21 + [[package]] 22 name = "goblin" 23 version = "0.5.3" 24 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 30 ] 31 32 [[package]] 33 + name = "indenter" 34 + version = "0.3.3" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 37 + 38 + [[package]] 39 name = "log" 40 version = "0.4.17" 41 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 48 name = "make-initrd-ng" 49 version = "0.1.0" 50 dependencies = [ 51 + "eyre", 52 "goblin", 53 ] 54 + 55 + [[package]] 56 + name = "once_cell" 57 + version = "1.17.1" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 60 61 [[package]] 62 name = "plain"
+1
pkgs/build-support/kernel/make-initrd-ng/Cargo.toml
··· 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9 [dependencies] 10 goblin = "0.5.0"
··· 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9 [dependencies] 10 + eyre = "0.6.8" 11 goblin = "0.5.0"
+44 -23
pkgs/build-support/kernel/make-initrd-ng/src/main.rs
··· 3 use std::ffi::{OsStr, OsString}; 4 use std::fs; 5 use std::hash::Hash; 6 use std::iter::FromIterator; 7 - use std::io::{BufRead, BufReader, Error}; 8 use std::os::unix; 9 use std::path::{Component, Path, PathBuf}; 10 use std::process::Command; 11 12 use goblin::{elf::Elf, Object}; 13 14 struct NonRepeatingQueue<T> { ··· 87 } 88 } 89 90 - fn copy_file<P: AsRef<Path> + AsRef<OsStr>, S: AsRef<Path> + AsRef<OsStr>>( 91 source: P, 92 target: S, 93 queue: &mut NonRepeatingQueue<Box<Path>>, 94 - ) -> Result<(), Error> { 95 - fs::copy(&source, &target)?; 96 97 - let contents = fs::read(&source)?; 98 99 if let Ok(Object::Elf(e)) = Object::parse(&contents) { 100 add_dependencies(source, e, queue); 101 102 // Make file writable to strip it 103 - let mut permissions = fs::metadata(&target)?.permissions(); 104 permissions.set_readonly(false); 105 - fs::set_permissions(&target, permissions)?; 106 107 // Strip further than normal 108 if let Ok(strip) = env::var("STRIP") { ··· 121 Ok(()) 122 } 123 124 - fn queue_dir<P: AsRef<Path>>( 125 source: P, 126 queue: &mut NonRepeatingQueue<Box<Path>>, 127 - ) -> Result<(), Error> { 128 - for entry in fs::read_dir(source)? { 129 let entry = entry?; 130 // No need to recurse. The queue will bring us back round here on its own. 131 queue.push_back(Box::from(entry.path().as_path())); ··· 138 root: &Path, 139 p: &Path, 140 queue: &mut NonRepeatingQueue<Box<Path>>, 141 - ) -> Result<(), Error> { 142 let mut source = PathBuf::new(); 143 let mut target = Path::new(root).to_path_buf(); 144 let mut iter = p.components().peekable(); ··· 161 Component::Normal(name) => { 162 target.push(name); 163 source.push(name); 164 - let typ = fs::symlink_metadata(&source)?.file_type(); 165 if typ.is_file() && !target.exists() { 166 copy_file(&source, &target, queue)?; 167 168 if let Some(filename) = source.file_name() { 169 source.set_file_name(OsString::from_iter([ 170 - OsStr::new("."), 171 - filename, 172 - OsStr::new("-wrapped"), 173 ])); 174 175 let wrapped_path = source.as_path(); ··· 178 } 179 } 180 } else if typ.is_symlink() { 181 - let link_target = fs::read_link(&source)?; 182 183 // Create the link, then push its target to the queue 184 if !target.exists() { 185 - unix::fs::symlink(&link_target, &target)?; 186 } 187 source.pop(); 188 source.push(link_target); ··· 196 break; 197 } else if typ.is_dir() { 198 if !target.exists() { 199 - fs::create_dir(&target)?; 200 } 201 202 // Only recursively copy if the directory is the target object 203 if iter.peek().is_none() { 204 - queue_dir(&source, queue)?; 205 } 206 } 207 } ··· 211 Ok(()) 212 } 213 214 - fn main() -> Result<(), Error> { 215 let args: Vec<String> = env::args().collect(); 216 - let input = fs::File::open(&args[1])?; 217 let output = &args[2]; 218 let out_path = Path::new(output); 219 ··· 235 let link_path = Path::new(&link_string); 236 let mut link_parent = link_path.to_path_buf(); 237 link_parent.pop(); 238 - fs::create_dir_all(link_parent)?; 239 - unix::fs::symlink(obj_path, link_path)?; 240 } 241 } 242 while let Some(obj) = queue.pop_front() {
··· 3 use std::ffi::{OsStr, OsString}; 4 use std::fs; 5 use std::hash::Hash; 6 + use std::io::{BufRead, BufReader}; 7 use std::iter::FromIterator; 8 use std::os::unix; 9 use std::path::{Component, Path, PathBuf}; 10 use std::process::Command; 11 12 + use eyre::Context; 13 use goblin::{elf::Elf, Object}; 14 15 struct NonRepeatingQueue<T> { ··· 88 } 89 } 90 91 + fn copy_file< 92 + P: AsRef<Path> + AsRef<OsStr> + std::fmt::Debug, 93 + S: AsRef<Path> + AsRef<OsStr> + std::fmt::Debug, 94 + >( 95 source: P, 96 target: S, 97 queue: &mut NonRepeatingQueue<Box<Path>>, 98 + ) -> eyre::Result<()> { 99 + fs::copy(&source, &target) 100 + .wrap_err_with(|| format!("failed to copy {:?} to {:?}", source, target))?; 101 102 + let contents = 103 + fs::read(&source).wrap_err_with(|| format!("failed to read from {:?}", source))?; 104 105 if let Ok(Object::Elf(e)) = Object::parse(&contents) { 106 add_dependencies(source, e, queue); 107 108 // Make file writable to strip it 109 + let mut permissions = fs::metadata(&target) 110 + .wrap_err_with(|| format!("failed to get metadata for {:?}", target))? 111 + .permissions(); 112 permissions.set_readonly(false); 113 + fs::set_permissions(&target, permissions) 114 + .wrap_err_with(|| format!("failed to set readonly flag to false for {:?}", target))?; 115 116 // Strip further than normal 117 if let Ok(strip) = env::var("STRIP") { ··· 130 Ok(()) 131 } 132 133 + fn queue_dir<P: AsRef<Path> + std::fmt::Debug>( 134 source: P, 135 queue: &mut NonRepeatingQueue<Box<Path>>, 136 + ) -> eyre::Result<()> { 137 + for entry in 138 + fs::read_dir(&source).wrap_err_with(|| format!("failed to read dir {:?}", source))? 139 + { 140 let entry = entry?; 141 // No need to recurse. The queue will bring us back round here on its own. 142 queue.push_back(Box::from(entry.path().as_path())); ··· 149 root: &Path, 150 p: &Path, 151 queue: &mut NonRepeatingQueue<Box<Path>>, 152 + ) -> eyre::Result<()> { 153 let mut source = PathBuf::new(); 154 let mut target = Path::new(root).to_path_buf(); 155 let mut iter = p.components().peekable(); ··· 172 Component::Normal(name) => { 173 target.push(name); 174 source.push(name); 175 + let typ = fs::symlink_metadata(&source) 176 + .wrap_err_with(|| format!("failed to get symlink metadata for {:?}", source))? 177 + .file_type(); 178 if typ.is_file() && !target.exists() { 179 copy_file(&source, &target, queue)?; 180 181 if let Some(filename) = source.file_name() { 182 source.set_file_name(OsString::from_iter([ 183 + OsStr::new("."), 184 + filename, 185 + OsStr::new("-wrapped"), 186 ])); 187 188 let wrapped_path = source.as_path(); ··· 191 } 192 } 193 } else if typ.is_symlink() { 194 + let link_target = fs::read_link(&source) 195 + .wrap_err_with(|| format!("failed to resolve symlink of {:?}", source))?; 196 197 // Create the link, then push its target to the queue 198 if !target.exists() { 199 + unix::fs::symlink(&link_target, &target).wrap_err_with(|| { 200 + format!("failed to symlink {:?} to {:?}", link_target, target) 201 + })?; 202 } 203 source.pop(); 204 source.push(link_target); ··· 212 break; 213 } else if typ.is_dir() { 214 if !target.exists() { 215 + fs::create_dir(&target) 216 + .wrap_err_with(|| format!("failed to create dir {:?}", target))?; 217 } 218 219 // Only recursively copy if the directory is the target object 220 if iter.peek().is_none() { 221 + queue_dir(&source, queue) 222 + .wrap_err_with(|| format!("failed to queue dir {:?}", source))?; 223 } 224 } 225 } ··· 229 Ok(()) 230 } 231 232 + fn main() -> eyre::Result<()> { 233 let args: Vec<String> = env::args().collect(); 234 + let input = 235 + fs::File::open(&args[1]).wrap_err_with(|| format!("failed to open file {:?}", &args[1]))?; 236 let output = &args[2]; 237 let out_path = Path::new(output); 238 ··· 254 let link_path = Path::new(&link_string); 255 let mut link_parent = link_path.to_path_buf(); 256 link_parent.pop(); 257 + fs::create_dir_all(&link_parent) 258 + .wrap_err_with(|| format!("failed to create directories to {:?}", link_parent))?; 259 + unix::fs::symlink(obj_path, link_path) 260 + .wrap_err_with(|| format!("failed to symlink {:?} to {:?}", obj_path, link_path))?; 261 } 262 } 263 while let Some(obj) = queue.pop_front() {
+75
pkgs/data/icons/papirus-nord/default.nix
···
··· 1 + { stdenvNoCC 2 + , lib 3 + , fetchFromGitHub 4 + , gtk3 5 + , getent 6 + , papirus-icon-theme 7 + , accent ? "frostblue1" 8 + }: 9 + let 10 + validAccents = [ 11 + "auroragreen" 12 + "auroragreenb" 13 + "auroramagenta" 14 + "auroramagentab" 15 + "auroraorange" 16 + "auroraorangeb" 17 + "aurorared" 18 + "auroraredb" 19 + "aurorayellow" 20 + "aurorayellowb" 21 + "frostblue1" 22 + "frostblue2" 23 + "frostblue3" 24 + "frostblue4" 25 + "polarnight1" 26 + "polarnight2" 27 + "polarnight3" 28 + "polarnight3" 29 + "snowstorm1" 30 + "snowstorm1b" 31 + ]; 32 + pname = "papirus-nord"; 33 + version = "3.2.0"; 34 + in 35 + lib.checkListOfEnum "${pname}: accent colors" validAccents [ accent ] 36 + 37 + stdenvNoCC.mkDerivation { 38 + inherit pname version; 39 + 40 + src = fetchFromGitHub { 41 + owner = "adapta-projects"; 42 + repo = "papirus-nord"; 43 + rev = version; 44 + sha256 = "sha256-KwwTDGJQ4zN9XH/pKFQDQ+EgyuSCFhN2PQAI35G+3YM="; 45 + }; 46 + 47 + nativeBuildInputs = [ gtk3 getent ]; 48 + 49 + postPatch = '' 50 + patchShebangs ./papirus-folders 51 + ''; 52 + 53 + installPhase = '' 54 + runHook preInstall 55 + mkdir -p $out/share/icons 56 + cp -r --no-preserve=mode ${papirus-icon-theme}/share/icons/Papirus* $out/share/icons 57 + for size in 64x64 48x48 32x32 24x24 22x22; do 58 + cp -f Icons/$size/* $out/share/icons/Papirus/$size/places 59 + done 60 + for theme in $out/share/icons/*; do 61 + USER_HOME=$HOME DISABLE_UPDATE_ICON_CACHE=1 \ 62 + ./papirus-folders -t $theme -o -C ${accent} 63 + gtk-update-icon-cache --force $theme 64 + done 65 + runHook postInstall 66 + ''; 67 + 68 + meta = with lib; { 69 + description = "Nord version of Papirus Icon Theme"; 70 + homepage = "https://github.com/Adapta-Projects/Papirus-Nord"; 71 + license = licenses.gpl2Plus; 72 + platforms = platforms.linux; 73 + maintainers = with maintainers; [ aacebedo ]; 74 + }; 75 + }
+2 -2
pkgs/desktops/deepin/apps/deepin-compressor/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "deepin-compressor"; 22 - version = "5.12.14"; 23 24 src = fetchFromGitHub { 25 owner = "linuxdeepin"; 26 repo = pname; 27 rev = version; 28 - sha256 = "sha256-0F1LdoeGtIKOVepifwdNMohbEb9fakpQLiNHg5H9Nlw="; 29 }; 30 31 postPatch = ''
··· 19 20 stdenv.mkDerivation rec { 21 pname = "deepin-compressor"; 22 + version = "5.12.15"; 23 24 src = fetchFromGitHub { 25 owner = "linuxdeepin"; 26 repo = pname; 27 rev = version; 28 + sha256 = "sha256-6grnbv9hMKntOmpVcmU5IpAbHM7r0dQWb+SoQYtc5YY="; 29 }; 30 31 postPatch = ''
+5 -6
pkgs/desktops/deepin/apps/deepin-music/default.nix
··· 16 , kcodecs 17 , ffmpeg 18 , libvlc 19 , libcue 20 , taglib 21 , gsettings-qt ··· 27 28 stdenv.mkDerivation rec { 29 pname = "deepin-music"; 30 - version = "6.2.21"; 31 32 src = fetchFromGitHub { 33 owner = "linuxdeepin"; 34 repo = pname; 35 rev = version; 36 - sha256 = "sha256-sN611COCWy1gF/BZZqZ154uYuRo9HsbJw2wXe9OJ+iQ="; 37 }; 38 39 postPatch = '' 40 substituteInPlace src/music-player/CMakeLists.txt \ 41 - --replace "/usr/include/vlc" "${libvlc}/include/vlc" \ 42 - --replace "/usr/share" "$out/share" 43 - substituteInPlace src/libmusic-plugin/CMakeLists.txt \ 44 - --replace "/usr/lib/deepin-aiassistant" "$out/lib/deepin-aiassistant" 45 substituteInPlace src/music-player/data/deepin-music.desktop \ 46 --replace "/usr/bin/deepin-music" "$out/bin/deepin-music" 47 ''; ··· 65 kcodecs 66 ffmpeg 67 libvlc 68 libcue 69 taglib 70 gsettings-qt
··· 16 , kcodecs 17 , ffmpeg 18 , libvlc 19 + , libpulseaudio 20 , libcue 21 , taglib 22 , gsettings-qt ··· 28 29 stdenv.mkDerivation rec { 30 pname = "deepin-music"; 31 + version = "6.2.27"; 32 33 src = fetchFromGitHub { 34 owner = "linuxdeepin"; 35 repo = pname; 36 rev = version; 37 + sha256 = "sha256-0adAAQe9WG1G+JcxD4ypYyYE4MrRijfuj/VBno2WsLk="; 38 }; 39 40 postPatch = '' 41 substituteInPlace src/music-player/CMakeLists.txt \ 42 + --replace "/usr/include/vlc" "${libvlc}/include/vlc" 43 substituteInPlace src/music-player/data/deepin-music.desktop \ 44 --replace "/usr/bin/deepin-music" "$out/bin/deepin-music" 45 ''; ··· 63 kcodecs 64 ffmpeg 65 libvlc 66 + libpulseaudio 67 libcue 68 taglib 69 gsettings-qt
+14
pkgs/desktops/gnome/extensions/extensionOverrides.nix
··· 19 , smartmontools 20 , substituteAll 21 , touchegg 22 , vte 23 , wrapGAppsHook 24 , xprop 25 }: 26 let ··· 92 substituteInPlace $file --replace "gjs" "${gjs}/bin/gjs" 93 done 94 ''; 95 })) 96 97 (patchExtension "pano@elhan.io" (old: {
··· 19 , smartmontools 20 , substituteAll 21 , touchegg 22 + , util-linux 23 , vte 24 , wrapGAppsHook 25 + , xdg-utils 26 , xprop 27 }: 28 let ··· 94 substituteInPlace $file --replace "gjs" "${gjs}/bin/gjs" 95 done 96 ''; 97 + })) 98 + 99 + (patchExtension "gtk4-ding@smedius.gitlab.com" (old: { 100 + patches = [ 101 + (substituteAll { 102 + inherit gjs util-linux xdg-utils; 103 + util_linux = util-linux; 104 + xdg_utils = xdg-utils; 105 + src = ./extensionOverridesPatches/gtk4-ding_at_smedius.gitlab.com.patch; 106 + nautilus_gsettings_path = "${glib.getSchemaPath gnome.nautilus}"; 107 + }) 108 + ]; 109 })) 110 111 (patchExtension "pano@elhan.io" (old: {
+109
pkgs/desktops/gnome/extensions/extensionOverridesPatches/gtk4-ding_at_smedius.gitlab.com.patch
···
··· 1 + diff --git a/app/createThumbnail.js b/app/createThumbnail.js 2 + index ebe5213..9f67873 100755 3 + --- a/app/createThumbnail.js 4 + +++ b/app/createThumbnail.js 5 + @@ -1,4 +1,4 @@ 6 + -#!/usr/bin/gjs 7 + +#!@gjs@/bin/gjs 8 + 9 + /* DING: Desktop Icons New Generation for GNOME Shell 10 + * 11 + diff --git a/app/ding.js b/app/ding.js 12 + index b200be4..3ce05ef 100755 13 + --- a/app/ding.js 14 + +++ b/app/ding.js 15 + @@ -1,4 +1,4 @@ 16 + -#!/usr/bin/env gjs 17 + +#!@gjs@/bin/gjs 18 + 19 + /* DING: Desktop Icons New Generation for GNOME Shell 20 + * 21 + diff --git a/app/fileItemMenu.js b/app/fileItemMenu.js 22 + index cadca48..9632ecc 100644 23 + --- a/app/fileItemMenu.js 24 + +++ b/app/fileItemMenu.js 25 + @@ -683,7 +683,7 @@ var FileItemMenu = class { 26 + return; 27 + } 28 + let xdgEmailCommand = []; 29 + - xdgEmailCommand.push('xdg-email'); 30 + + xdgEmailCommand.push('@xdg_utils@/bin/xdg-email'); 31 + for (let fileItem of this._desktopManager.getCurrentSelection(false)) { 32 + fileItem.unsetSelected(); 33 + xdgEmailCommand.push('--attach'); 34 + diff --git a/app/preferences.js b/app/preferences.js 35 + index c89271c..29f0db8 100644 36 + --- a/app/preferences.js 37 + +++ b/app/preferences.js 38 + @@ -31,6 +31,7 @@ var Preferences = class { 39 + this._extensionPath = Data.codePath; 40 + this._Enums = Data.Enums; 41 + let schemaSource = GioSSS.get_default(); 42 + + const schemaSourceNautilus = Gio.SettingsSchemaSource.new_from_directory('@nautilus_gsettings_path@', Gio.SettingsSchemaSource.get_default(), true); 43 + this._desktopManager = null; 44 + 45 + // Gtk 46 + @@ -38,7 +39,7 @@ var Preferences = class { 47 + this.gtkSettings = new Gio.Settings({ settings_schema: schemaGtk }); 48 + 49 + // Gnome Files 50 + - let schemaObj = schemaSource.lookup(this._Enums.SCHEMA_NAUTILUS, true); 51 + + let schemaObj = schemaSourceNautilus.lookup(this._Enums.SCHEMA_NAUTILUS, true); 52 + if (!schemaObj) { 53 + this.nautilusSettings = null; 54 + this.CLICK_POLICY_SINGLE = false; 55 + @@ -47,7 +48,7 @@ var Preferences = class { 56 + } 57 + 58 + // Compression 59 + - const compressionSchema = schemaSource.lookup(this._Enums.SCHEMA_NAUTILUS_COMPRESSION, true); 60 + + const compressionSchema = schemaSourceNautilus.lookup(this._Enums.SCHEMA_NAUTILUS_COMPRESSION, true); 61 + if (!compressionSchema) 62 + this.nautilusCompression = null; 63 + else 64 + diff --git a/app/thumbnailapp.js b/app/thumbnailapp.js 65 + index b22bbe0..c5c7711 100755 66 + --- a/app/thumbnailapp.js 67 + +++ b/app/thumbnailapp.js 68 + @@ -1,4 +1,4 @@ 69 + -#!/usr/bin/env gjs 70 + +#!@gjs@/bin/gjs 71 + 72 + /* DING: Desktop Icons New Generation for GNOME Shell 73 + * 74 + diff --git a/extension.js b/extension.js 75 + index 2e5bcaa..4eaa108 100644 76 + --- a/extension.js 77 + +++ b/extension.js 78 + @@ -373,7 +373,7 @@ function getDesktopGeometry() { 79 + async function doKillAllOldDesktopProcesses() { 80 + const procFolder = Gio.File.new_for_path('/proc'); 81 + const processes = await FileUtils.enumerateDir(procFolder); 82 + - const thisPath = `gjs ${GLib.build_filenamev([ 83 + + const thisPath = `@gjs@/bin/gjs ${GLib.build_filenamev([ 84 + ExtensionUtils.getCurrentExtension().path, 85 + 'app', 86 + 'ding.js', 87 + @@ -397,7 +397,7 @@ async function doKillAllOldDesktopProcesses() { 88 + } 89 + 90 + if (contents.startsWith(thisPath)) { 91 + - let proc = new Gio.Subprocess({ argv: ['/bin/kill', filename] }); 92 + + let proc = new Gio.Subprocess({ argv: ['@util_linux@/bin/kill', filename] }); 93 + proc.init(null); 94 + print(`Killing old DING process ${filename}`); 95 + await proc.wait_async_promise(null); 96 + diff --git a/prefs.js b/prefs.js 97 + index 1ad0cad..d830f11 100644 98 + --- a/prefs.js 99 + +++ b/prefs.js 100 + @@ -46,7 +46,8 @@ function fillPreferencesWindow(window) { 101 + let schemaSource = GioSSS.get_default(); 102 + let schemaGtk = schemaSource.lookup(Enums.SCHEMA_GTK, true); 103 + let gtkSettings = new Gio.Settings({ settings_schema: schemaGtk }); 104 + - let schemaNautilus = schemaSource.lookup(Enums.SCHEMA_NAUTILUS, true); 105 + + const schemaSourceNautilus = Gio.SettingsSchemaSource.new_from_directory('@nautilus_gsettings_path@', Gio.SettingsSchemaSource.get_default(), true); 106 + + let schemaNautilus = schemaSourceNautilus.lookup(Enums.SCHEMA_NAUTILUS, true); 107 + let nautilusSettings; 108 + if (!schemaNautilus) 109 + nautilusSettings = null;
+133 -133
pkgs/development/compilers/dotnet/versions/8.0.nix
··· 3 # v8.0 (preview) 4 { 5 aspnetcore_8_0 = buildAspNetCore { 6 - version = "8.0.0-preview.3.23177.8"; 7 srcs = { 8 x86_64-linux = { 9 - url = "https://download.visualstudio.microsoft.com/download/pr/e47f5b95-4eb2-451d-8ec5-2e37b928d91f/e386c9fb8185cd35674fe2a44dedb318/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-x64.tar.gz"; 10 - sha512 = "f990c63e651d71ef615aa494dc555fdcf66411431d07b7ae9bef50f276e863198212471b90bdd86686426d5907d2426924d1a279262035bbf3ce64d8914e590f"; 11 }; 12 aarch64-linux = { 13 - url = "https://download.visualstudio.microsoft.com/download/pr/0d98023b-349e-4893-b717-176eab3ca4fe/ab919484bd5a5a981057f60828c8d8d8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-arm64.tar.gz"; 14 - sha512 = "c5826d36daa4fab2779bb3b6bb94886bd98ee018109cf82b994a189cd6675b8f14eab9b11fc2a265a7bb3b8dacbe79b75887b1a81ee65c4ca690cef8a27a400c"; 15 }; 16 x86_64-darwin = { 17 - url = "https://download.visualstudio.microsoft.com/download/pr/18fcf656-e2e0-4fb0-8141-ffeaf76b2785/cd4ff90bbf9b25d10cdc9fb8aacf94be/aspnetcore-runtime-8.0.0-preview.3.23177.8-osx-x64.tar.gz"; 18 - sha512 = "b8354eccec9c8b77f6afe7b4ff08f300359dbdc6106731b3e5b9966e1060a6def949174de8edfadd4e90a65e3337f2c03dbf55a4a67e2d8dd51446600605a914"; 19 }; 20 aarch64-darwin = { 21 - url = "https://download.visualstudio.microsoft.com/download/pr/0e9f855d-b7eb-4641-b859-218d7d61e169/c7ecfeb28526a57668f53d7da4fa0c90/aspnetcore-runtime-8.0.0-preview.3.23177.8-osx-arm64.tar.gz"; 22 - sha512 = "9167ae736f29f49522f6263e6b2698b94fb0c4f21653a81a2ee1c8101d3c176a9b69dceed0c832ce04f2b84aa8fe0b14e7dac54dd965026e472429db739ddebe"; 23 }; 24 }; 25 }; 26 27 runtime_8_0 = buildNetRuntime { 28 - version = "8.0.0-preview.3.23174.8"; 29 srcs = { 30 x86_64-linux = { 31 - url = "https://download.visualstudio.microsoft.com/download/pr/6c4d4118-bc92-4601-b42b-2b6e91fc28f6/7b3a642aab860b394982d48bf5681243/dotnet-runtime-8.0.0-preview.3.23174.8-linux-x64.tar.gz"; 32 - sha512 = "d0da20d48448c654ee548668a585b2272c661eb84ec6f845b3a49c0143ba1bfa83865f69da6bb607353a571e8c84b8e63650edf816641b1c5a55fa77a59e09be"; 33 }; 34 aarch64-linux = { 35 - url = "https://download.visualstudio.microsoft.com/download/pr/7b272393-da0b-4386-ac78-416ee38195fe/4f0d5a3d43cd7b32ae6051b191edd5e8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-arm64.tar.gz"; 36 - sha512 = "6ec1368fde8d4ffe5eef21e227c93ebe94d44f6bae311c5686d2c710240a025b5bc3716f3ceea18a8b65ef588a811828a0ad8b76db3086512786966fd111c15b"; 37 }; 38 x86_64-darwin = { 39 - url = "https://download.visualstudio.microsoft.com/download/pr/962423a9-e286-4a7e-b3a8-4fdcde16d9e2/0b11e7166df8ed292c44d4a7594e482a/dotnet-runtime-8.0.0-preview.3.23174.8-osx-x64.tar.gz"; 40 - sha512 = "53c52fec2fdf5e5cba92f006d2680fa63ae8946ab0a6ec03b4a050e6d52f2e2e94ea01e0b8be63136f0c800907fca6c49dbb180711e8948982205f6c447f9256"; 41 }; 42 aarch64-darwin = { 43 - url = "https://download.visualstudio.microsoft.com/download/pr/e29d7a01-41b9-4cdb-9c87-640871cd7b31/cfc38e882c713763339265cdfd1e4fac/dotnet-runtime-8.0.0-preview.3.23174.8-osx-arm64.tar.gz"; 44 - sha512 = "73619816e7570bde00105aeba9bd60ddbe868df4d25f4b53679dea01a80d81403215ee7caad7adf7c0128011b687539786e7bb817d652e993064ca5716d1fc1a"; 45 }; 46 }; 47 }; 48 49 sdk_8_0 = buildNetSdk { 50 - version = "8.0.100-preview.3.23178.7"; 51 srcs = { 52 x86_64-linux = { 53 - url = "https://download.visualstudio.microsoft.com/download/pr/103d5e2c-d5c4-4101-bb6e-b82bc73a7d93/284a5cdccbc995f39806a3ba2dc17b93/dotnet-sdk-8.0.100-preview.3.23178.7-linux-x64.tar.gz"; 54 - sha512 = "3b5d72979831256b9340a01db23d3b2dca801672546eeed04385949ed5f4363d3c731f31477ec82c7200ce88502dc45e03986c8acc8f2fc611b0343af5f1c488"; 55 }; 56 aarch64-linux = { 57 - url = "https://download.visualstudio.microsoft.com/download/pr/3b23cbd9-f068-408f-8c3c-551a5432ff08/876e15ab4041bde421e96d21e259b3b9/dotnet-sdk-8.0.100-preview.3.23178.7-linux-arm64.tar.gz"; 58 - sha512 = "c48840b3924196a12cc66b07249af37afb2b0f3b139eb304492a2320e7ae06cfc2391abd1da31e6e58287b8b8e564386f82c55eb9a1b16108f53a4d1d59812f7"; 59 }; 60 x86_64-darwin = { 61 - url = "https://download.visualstudio.microsoft.com/download/pr/1d4d98db-3a0a-4b77-bd3f-5ead1fc106a9/1a3410ec0ce6b08a02947a5541a3b5a7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-x64.tar.gz"; 62 - sha512 = "53ab3f6449438ab6ee0ecdd0ae3759e5fe873b964d0b4e3ee5c8a48197a7c87ec83b956eb1b10aa90297403762eb2ddab0e99e29442db484b7ed3f9d00c8037d"; 63 }; 64 aarch64-darwin = { 65 - url = "https://download.visualstudio.microsoft.com/download/pr/7fc953e8-4e3f-422b-ae45-719b38eb798e/6559f9ed96b446bbaf2e2fd2af694dd0/dotnet-sdk-8.0.100-preview.3.23178.7-osx-arm64.tar.gz"; 66 - sha512 = "f67ad34c23dca602e08987c12f07a39b6941682e35eae3f50efb95637b252e1e885a259f4df9be5bc0f5d43a14f16ec206a39c899683e22bf7b6a94fb2db1386"; 67 }; 68 }; 69 packages = { fetchNuGet }: [ 70 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "8.0.0-preview.3.23177.8"; sha256 = "1nfzm2wl5qmjz5ym7aainpj71gxfl7f8kr1p9c1xl5bkc7437h3s"; }) 71 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "8.0.0-preview.3.23177.8"; sha256 = "0a7zd729dcc7fy72z4416nxd8n9srsjfb9mlzkhr7dm1kxn25smj"; }) 72 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "8.0.0-preview.3.23177.8"; sha256 = "1gvh8c0aylqgw6lys7yl5d6ajywmqaz173ak1icjh9x9073bcnq1"; }) 73 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "8.0.0-preview.3.23177.8"; sha256 = "0a28avjcqgkr7wdq0g83wf31dshn8jq05aas5y1rwka8hbplyagq"; }) 74 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "8.0.0-preview.3.23177.8"; sha256 = "0ywsi5qaqhfl9987fgb7kdjmzk8fyvql9ay3c2xqhxw3l0sgk9gr"; }) 75 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "8.0.0-preview.3.23177.8"; sha256 = "1gfms15zadmmpl39m81hmnwr537b4jlhivhp290b4zs00bv7lwq1"; }) 76 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "8.0.0-preview.3.23177.8"; sha256 = "1fxzpy9sjjfzkg78c0pzyky0ahm2sy95772acnggy23h554qvfm0"; }) 77 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "8.0.0-preview.3.23177.8"; sha256 = "1ali5x4k3yvmi5nwc4yq85xj0ywf0jg1b3fsfkjw18ayh9h61ksp"; }) 78 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "8.0.0-preview.3.23177.8"; sha256 = "0ry5405vj93fm5985z89qk3h38dd6q6iij9ada1063b275gkl36j"; }) 79 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "8.0.0-preview.3.23177.8"; sha256 = "04678w1fg1l6jr65vb4x0y4r76rwjz98qriazv9l6f07iskswbpb"; }) 80 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "8.0.0-preview.3.23177.8"; sha256 = "0awgrd1gm4bisf9qxv122iivzzsvr958lyqghip4cq0v6lrwgp8j"; }) 81 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "8.0.0-preview.3.23177.8"; sha256 = "0xacfmnw3sxnwrfx1vikqc5q6hbd4mn2z5kf2gmc38zg26gnd1dm"; }) 82 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "8.0.0-preview.3.23177.8"; sha256 = "0khvlvily96rm88y14by5svpcy0x8jxbkdnlks965lz6685yz5yf"; }) 83 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "0w297nsnh4w3pi3w5iwnww8nlk00qys82vwzmrhxbw2mpar5mf06"; }) 84 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "0ik3lzj1b41vgs878gci8ck1dz5g1fxkb76d6il7zf95dxkivdiq"; }) 85 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "062x0vzb75m95knk1wql1bk5vk7s1d3sd13sm0jbh1i4mm7a0amh"; }) 86 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "19sb0j0j43xl05wazn24x7hk96nljr9qjwahp4flyfdqrhjan72i"; }) 87 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1zlxqh82wxpb2xq808nmfywgziraa3ndb8v6wmh3315asw0l4j0c"; }) 88 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "11wr7i7sz5xd9xc7xsy7gynv1jxzyvja2q7c5pnvp9745w02lizd"; }) 89 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "04m5y009vj943lc0265frz16q5w8zx45zpj8a4q5bpy63fbzkyfc"; }) 90 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "13f3smijj3d3ifkwik8vlj01pv2bmcsqmqkzrjw3gj7w5ln3xrf1"; }) 91 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1gy1ri66blly0k5wf8mgnfjkc8wnmrj2qf3bhwzlkfgyab85k1ap"; }) 92 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "8.0.0-preview.3.23174.8"; sha256 = "1p280lr4dqajsqz91rhl0jgpii14wnbwl3878kb6l694q9vh9ly1"; }) 93 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "1ac0jbv9qc5f2br9bgw198gq7lmpy7rj6xs2n2343v9p9wsff9sm"; }) 94 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "0l3hb17adqqczv24r6jisk70rqlagmmjbsgqp9ndyz0wgq04sb07"; }) 95 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1iwdap9dldpjzvd1gg1mk84z2p24dq7s96w3i3g31rz41xh0yxdi"; }) 96 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "0hxk2p4cavnmc3azfpzjx0pmzapzh3ggfmgsapbpk0wc3zrf0ial"; }) 97 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1p74gc1h353can3f6104qxwfpzy89cmx43dzjh923pknyp673yhr"; }) 98 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "0fv23nd0iq18ggyxpainkrwjnclk9lqvx221j3lhq44pa8fv2xvn"; }) 99 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "1kj0ss21s7h00mhavm83zgjm3vbx27k8n6567liz3c8zk3xyyxvi"; }) 100 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1r3ibli433k48q43nbhd94r3cgr4rdnkqj833n89j0xqvicrbk8p"; }) 101 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1lv5xx2jigpg50ywp105ghq3c3lp6x9q99k609gwhmznq0b2piaf"; }) 102 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "8.0.0-preview.3.23174.8"; sha256 = "1q5sbwlkw3hk1gazvzhsjw21c578a4mvvm6xcrjf81zwwqhbqdzx"; }) 103 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "14g4qrlvgzjixlbika0qc4zyh7rb4jx3xqm3hgjf5zdccfg3wlr1"; }) 104 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1gsm2clshavsws0zdr1qsay6fylchrgjpxmsxhvs2afgw1p5xb43"; }) 105 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "0x3ipigsad980is2c07f6q792am9lzmkahxkbr3f3k3nf9xxihbk"; }) 106 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "135anfn6rz3ysdmrvkig64fb37p9gc154ns97n6snwffc6c7xad4"; }) 107 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1qlyr3aax6pr21kcrfkfp3a4f5yw55dgam09lr8nzxqzqjc9qry3"; }) 108 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0sq6i4jpaxp8q98fxxf1y72qmrshigpk6kp19ivzk6vs655yzik0"; }) 109 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "0z8wy3ib6abp129dwbzajrn3yvlm3gsa40n3fg01gbckhkgg1fd8"; }) 110 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "0qzj903aw4lrij85hr18l4cxz0qvvvfgspdzx57g81l1l0dd7qaa"; }) 111 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1zq0zjnd3yq8a8nbj1dm3bblm1qn5gbfv26wglrb0rzsk8vc4rlh"; }) 112 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1fhb0s8zgq8basmyzsm7h0rkzlkvz8lajkhqfnzmcwamv6i17m0s"; }) 113 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "05p07vmxjv6s619gcb14h1wfazb8zn47bng5m1nijalysp3sr7vb"; }) 114 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "0kxgkx6p1aacz414j5ia2qffzsk3lkbvssaacna4573ymisxa85c"; }) 115 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0fpwss7dw6hg4ks5rcbx50rqazankcb8cvsnqrk23361p28myqkl"; }) 116 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0yl27d46mx7iwg47v6di3r5v8sfagc3yksvxcfy93mvm8gpaii2z"; }) 117 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "1v485fdlrchc7f8lxxsxwapzqv8v9q1q0msm54frxa17iivkgc9k"; }) 118 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1pq7dx4wnl4wlywf6fhfyvxjajygfhr29hzi2z9bwac8i1nrb54f"; }) 119 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1y0nx36vms6024r8y5ckzscyqrqpbj0hz5dwzfz6am7iaq90iyjd"; }) 120 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1hnhxp5wjq9xvm721f5amwk6qyncrvfn3scgmd911zn54ms3z2mq"; }) 121 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "0m64ggyqkdbfzpkyz88xssf1qg62z7i349dij8n0sd0i74fj69fi"; }) 122 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1pnrq3lrnc5kjhfp17mmjviy4jsrvcizszncfkc28y4hq689q27b"; }) 123 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "19aq4fvyg1hd4bi9l1vnfsrki4ppqkk06wx4m7v8158ss2804a1b"; }) 124 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0pw78b6agg0smc8k6sfhjj5m4w46dg9nvnzy59lhp1lgz6wfn3vj"; }) 125 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "0ix3arsgyxyffwk9b6vbyx58h3mv2hjwvgsc48b986zh4crjk7fq"; }) 126 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1k7wp6s8fny06rrif74xzyd2fmflv3ckp5bs6zkcmm2ccmdrrm9z"; }) 127 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "198l3h1y2830g84k7j8p9h20c9j3w9yldn9rrpbfkg462y1l4dqs"; }) 128 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0jmgijsimrg7lnnsb5ja826h8bj1j8ww1z4zhnsgjddp3shb4v61"; }) 129 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "1wfliwrzq2k8cinv81fn45hq6s6b5977z2h5l0b716qcsk5kkdm8"; }) 130 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1fqs4kspgvpf564qh5cly2x2l7wqnsrzysdl98j7a1nzsy7z8i9a"; }) 131 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1wkvqsxf23nmaf4mldlc19pvzpnc7jmbinmdsbh4a12h2m8wr9hq"; }) 132 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0dmmp83w5hqd9jrwyjnm3n1rwjyhvdjwc07gd3m8i9hpbdglyjgc"; }) 133 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "1fyzrhn46wg99yvmpsp3hq5yjxvgza7y5xkfpxsg1qkwlxxyj39l"; }) 134 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "0s3fvj2bhn5iyzasn0d89lfln2j0ksm4zhkr1jz9jmadk0xdf46q"; }) 135 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "14mdp9hamh85vyd318qnxjj8vrnr79hflh19i02kd1l8d3k4gcwb"; }) 136 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "05mz3qb3833rmhwca6xic6wvzvnq7sz4pi3n4sfyz6jnjg87zp1x"; }) 137 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "039ljiz5lf8kc185nhy2mfz7nl34rczj8dxiq7d4j2q193blk1ws"; }) 138 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1dddrd8z1lq7v69nsjnpr1vlw14gkwwflcag8mggqxj1wp0jri6g"; }) 139 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0gv7rnl5qvnzly6fa90i5fsd3mxh2sbay35h0dicplzps8d9c436"; }) 140 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0x86m6gr1zb0i1wg67snin5zzlvg7xhr5gbc2hklzjgs1b8rq03w"; }) 141 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "1424vq65cpz81fkq717ibjk608v7lac4yi8cnfi5rc9a5bzzwiw5"; }) 142 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1ghg3pywy83qpgq4wmf28mfsl8njvnm959irv4h2in4dfpvg6d07"; }) 143 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1jg1l6x0dawx5ysa9m1j11a1iqm5q1wridg4qm1dgg99fchc6mfz"; }) 144 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1k3nkpj49w5092rjfwvjwgdks3sqdljjzrhgqlfhs99yyfl4vymd"; }) 145 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "0q2j765hr9dwwmamrdq6jq1pngnk82zmwpqsnqw4djf9gbphgb4v"; }) 146 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "0k0bnangipr447dx3gbrd6wska4lkhzywcrs5vnpgnq8n6i7zs9j"; }) 147 - (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "8.0.0-preview.3.23174.8"; sha256 = "1vhsjwc7y0ax39lwj14hdrmw90bb62p369fnc8lf5pb1k88wr5ja"; }) 148 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "1d9qf3h9p5bpik2g3qd2vnh4hcz4vaw262nns8fkphzjvyn1rapj"; }) 149 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "0h0kfqbr23a625wq2ki363092rl8g0xmchwikh86327sfqm0i1qa"; }) 150 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "157z2sdmajf24w6y19k7qacqzdlchwzm97i49vzakpjf4rsrhl7l"; }) 151 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "00rv31rpfa28lhidzlbkbpvc8ij8akrgj2xc26hh63yqrkxw707n"; }) 152 - (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "8.0.0-preview.3.23174.8"; sha256 = "027s6fbk3qm3r39w545xlan5psp1vp7nyy1id4i94krz3r23jr9b"; }) 153 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "8.0.0-preview.3.23174.8"; sha256 = "1hg2ws6jbdjiwlnrqpqqd2crw4qn27whriqchxmzmnxprr857a2k"; }) 154 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1gipxwapdl6akscxws63fjr3cx2yz6pbh1pmndkaxgqal364j51a"; }) 155 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1n1x01wwvsdm9vb90kj4qx6wv9jra9jph6dbn8nfdk8ikv8jbyyh"; }) 156 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "06bmyjmwfq1xrbz6b4vsw1kxf97ylfgsipavgw8hxkmrn4ic7qw8"; }) 157 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1sx1l642yqlfmya6671iv7dbzzg2xsd8kwxzp0ylg294zg8zca33"; }) 158 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "0p307ck43xc50zhk3ygxgaqilvihp0w8xfgb1g08jw7h82k4fnad"; }) 159 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "8.0.0-preview.3.23174.8"; sha256 = "1181xp6vygjvxm3y3ymd0vnq0r67igy77mpby7gfh3yip5ii2j18"; }) 160 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "8.0.0-preview.3.23174.8"; sha256 = "10n3ybn0r0gyndl4yyp60sy6j2s1vc8qpx4ky9d6wv3id80bxfay"; }) 161 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "04xray0vlk2szcms9f8bm66vlaf275lwzxxfdqsr50glhlksn57q"; }) 162 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "1y0b2p4jjdzmicmbzpszs71480sfibmjsmqc52aqclvx5bqzdsvd"; }) 163 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "03i5jf7g8iwp6k5aglbxixkf018ja09jmyjld83f6x8skzc8s6i7"; }) 164 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "0yif5vv4z1z7sy6gh967p9gxiab6srmm94z7y0v69xyzqb9v1ni4"; }) 165 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0yk0bgs1lrmxdk5fmgdm312kalszvxdv7h3cl4pldqydc7y9pcmk"; }) 166 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.3.23174.8"; sha256 = "0b5qavnw7n3wi9k5qylq1kvby27svdhzd1lz4vja2i76idpsr18b"; }) 167 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.3.23174.8"; sha256 = "1biz7yqd04hx8pk67y2n16lrf3n6wy3pxhh5mx5j1mvp5rd4zd4y"; }) 168 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.3.23174.8"; sha256 = "1k31qi99a26vz4hbpk3qcvgz7wgr492y55sn1lgfl6v29lnicqg1"; }) 169 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "0rw21m9yn52iry60aprhy6c3l656kf9q70vxy0qf1xy87vyadaq9"; }) 170 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "07dv8xiqkzj21b2r6jav3d4nrb4i8drwa2l0ybramdyynll01687"; }) 171 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "0ywg0x5k3826jpajr972b75dzcxvgbl55nwa6v12v8pbi77bnw0m"; }) 172 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "1hag4kq25j0mfjc69v4l9vywjcmyp0ya945w34v681ww1akbgm5q"; }) 173 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "11swrs1zdvbkvs38xxaqbw928h92qj6hq47i8wmrjx56zcw44iwi"; }) 174 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "1wwkhz0y2040bqbgmh8dp6wj48yvq9irmnppfwamznxkqnysc79f"; }) 175 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.3.23174.8"; sha256 = "1pgwp4r2g209lri7fkv94jpgkxddh900pjb39808q7j4s59pn8xk"; }) 176 ]; 177 }; 178 }
··· 3 # v8.0 (preview) 4 { 5 aspnetcore_8_0 = buildAspNetCore { 6 + version = "8.0.0-preview.4.23260.4"; 7 srcs = { 8 x86_64-linux = { 9 + url = "https://download.visualstudio.microsoft.com/download/pr/bda9e867-46d3-416b-864f-5fb28658a8fd/c58375f59b0c0a9946a2be04617a7276/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-x64.tar.gz"; 10 + sha512 = "fa2f95d90dafc11e083904e5795a0f9011ccd135a94e64149795a4404a900f0962d2d8cb187db2e5d32e0d8ca55387626e7201ac0c8127fba0cb499eb5a78c61"; 11 }; 12 aarch64-linux = { 13 + url = "https://download.visualstudio.microsoft.com/download/pr/c9d4a334-d522-4439-a98a-0af0e7852621/9c3afe685d3e65a92d5c538afa211de7/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-arm64.tar.gz"; 14 + sha512 = "1224d2ebe38122380db54b8fbf5ce95a7666b2a2062a1f5da40a769e0ec859640ced391ca6cfabe21f5c0aef4a7b1722b324f361e898c9c8c4207198b0b390b5"; 15 }; 16 x86_64-darwin = { 17 + url = "https://download.visualstudio.microsoft.com/download/pr/6011ab96-f3be-414f-b13b-792aad1e383c/e78722ebae2ad81640e05286a30eb0c8/aspnetcore-runtime-8.0.0-preview.4.23260.4-osx-x64.tar.gz"; 18 + sha512 = "98cd0208733397e622afc725873983f8f4ee41cd5a7d1987f973e71b640aaa0210d99b4a3d2acffe3e1f016c5816998d06289d3ae509f9280078bb716962851a"; 19 }; 20 aarch64-darwin = { 21 + url = "https://download.visualstudio.microsoft.com/download/pr/5acf37f1-8232-4421-b4ae-41d635e2c8d1/3de8d329bb5d905e539f61a12d6091c9/aspnetcore-runtime-8.0.0-preview.4.23260.4-osx-arm64.tar.gz"; 22 + sha512 = "c0c248789f312e7430850ce53400e041ed550f3ac6eb30ca16a83c344c6110fdd34e7e92bf3c06ca083a4b5b8f01ba37542ed9136458f0d3e41a6cfab22ea5b7"; 23 }; 24 }; 25 }; 26 27 runtime_8_0 = buildNetRuntime { 28 + version = "8.0.0-preview.4.23259.5"; 29 srcs = { 30 x86_64-linux = { 31 + url = "https://download.visualstudio.microsoft.com/download/pr/7267fec0-ae12-4f40-9c3d-56da5fbf83e4/f64c2758980c1f908cbe089a6233bbe7/dotnet-runtime-8.0.0-preview.4.23259.5-linux-x64.tar.gz"; 32 + sha512 = "02544cc1109f3d7e3fc2065b42c7f1ddd4777ffd8765456c8422b6c4b815abf60cac56d69058c2bff7c7c680d47bc6bcd3e00678db818387b6d09ce9b42f64d0"; 33 }; 34 aarch64-linux = { 35 + url = "https://download.visualstudio.microsoft.com/download/pr/8fac5d3e-dd32-4b29-a187-1887a912e185/d350aabe412cb33d9c2f2cafbf7c9bed/dotnet-runtime-8.0.0-preview.4.23259.5-linux-arm64.tar.gz"; 36 + sha512 = "56beb8b362028eee4751081811b51a6f5a741736ca2de401a9a9178deaf0b0b8e3790e3175e953fe59140ad0b80700d0b75894d7326b996700d97ed667233394"; 37 }; 38 x86_64-darwin = { 39 + url = "https://download.visualstudio.microsoft.com/download/pr/636e676d-136c-4ad3-86c8-d4e86869832e/627c24b6a6753b0dee5af4a322f79155/dotnet-runtime-8.0.0-preview.4.23259.5-osx-x64.tar.gz"; 40 + sha512 = "117af68c68caa2fba04cdb9ef5d4df230d315e30069a7dd378ae413db4dfcb789730f91b2d9898f78e525bdaae6b2b5bf521d5255abda96be35a73ca0cab3ded"; 41 }; 42 aarch64-darwin = { 43 + url = "https://download.visualstudio.microsoft.com/download/pr/c0d0406b-3995-403d-b25c-6ad764291eaa/7f1d366577de292f32623bdf88a5dacf/dotnet-runtime-8.0.0-preview.4.23259.5-osx-arm64.tar.gz"; 44 + sha512 = "497dc9494c3aab67f60717598e6676650bde300170e1d78a14ffba955d76641b62852c64145b5358eca4a3c0b16dbb1dd8cf662c8b04df3202128d97e05ab8bd"; 45 }; 46 }; 47 }; 48 49 sdk_8_0 = buildNetSdk { 50 + version = "8.0.100-preview.4.23260.5"; 51 srcs = { 52 x86_64-linux = { 53 + url = "https://download.visualstudio.microsoft.com/download/pr/ae0534ab-1c49-4055-ba2a-b8159c4f94d2/3a5945c949d2eb141f8ce52096fca13c/dotnet-sdk-8.0.100-preview.4.23260.5-linux-x64.tar.gz"; 54 + sha512 = "1132220710d0e2deb97b58e0f439dfd86e965fc5347a2cc9aa3326ebdd98b21361fd6c019507a884927ee3b0053aa93bc0adfb67554ee5d9526c697ae9771551"; 55 }; 56 aarch64-linux = { 57 + url = "https://download.visualstudio.microsoft.com/download/pr/9de5d7d8-6062-4a61-b8bf-b1b61dd4b768/f23a336abc7548309acf01314ddc8904/dotnet-sdk-8.0.100-preview.4.23260.5-linux-arm64.tar.gz"; 58 + sha512 = "47d9d1a67b58223b749fc1ca176c4dbd7049d7437f0717a61a6b22923b9a4c243e4d101c655bc1db817e281e0272ad452f4af6fc60c51d98493d85253e7476db"; 59 }; 60 x86_64-darwin = { 61 + url = "https://download.visualstudio.microsoft.com/download/pr/78706993-4be4-46e0-8b14-48f295884a1b/39c2db8388ac84cdfe7e909bdde39384/dotnet-sdk-8.0.100-preview.4.23260.5-osx-x64.tar.gz"; 62 + sha512 = "be1a7cdde31cf018d4d3b1d6c8305330bfc44b5c2e515c3213d162ab227d902edba16a8e422ab1d5441c712b2e50480d1e9240e6a26a51421c794840baafbe23"; 63 }; 64 aarch64-darwin = { 65 + url = "https://download.visualstudio.microsoft.com/download/pr/2c6668f9-b531-427a-b3b5-5c9dc456c5b8/ef5ef0a8db2df07d12ef138e05fa2231/dotnet-sdk-8.0.100-preview.4.23260.5-osx-arm64.tar.gz"; 66 + sha512 = "d66f6a9008b707119b37e9d2fa746aaa126f5f87452f25aa4902f3e50d08844218e11a55ecafa731c88eaf9b5aef21d08f828064d722446719ba37e69940a813"; 67 }; 68 }; 69 packages = { fetchNuGet }: [ 70 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "8.0.0-preview.4.23260.4"; sha256 = "1d3iifh5cqdxf2gk45wna21z8amk7cml505daqkh1jgd50sp12n7"; }) 71 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "8.0.0-preview.4.23260.4"; sha256 = "0ziz2h08d75y4s8ifws6xr4y0jh74j5ccc4hhbzw19b57xdyvlbz"; }) 72 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "8.0.0-preview.4.23260.4"; sha256 = "15yvjnij8ij2zbnwcq9cqbxjch1rgzyadi0a295axcjn0jpgg0y9"; }) 73 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "8.0.0-preview.4.23260.4"; sha256 = "02x4k23r6g74fzm9fiiq1cmh1vdjv0i355pfnzfmnwyya1rim3j4"; }) 74 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "8.0.0-preview.4.23260.4"; sha256 = "1y88sr0yh8aypi34smxcy94djmvdkww0iq8cmk3sqccjxzyrfc8i"; }) 75 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "8.0.0-preview.4.23260.4"; sha256 = "0armm7x8v8cpa778xcq3iykwfhpnwcz21qhiaqrbc186hjgq1a2l"; }) 76 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "8.0.0-preview.4.23260.4"; sha256 = "1wx5iq5yd8wrcnk8hsy7bknc9vi24fdnmywqj49rkmnr51ya41d0"; }) 77 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "8.0.0-preview.4.23260.4"; sha256 = "0z442kryiaiq191knpqgyg73ialnbm1nxi62pdsarfia7wxlgqxz"; }) 78 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "8.0.0-preview.4.23260.4"; sha256 = "1sshh549dsv1brv4qwbkp4g8sz4z4gq56y6dk7hysjx4qdlv159q"; }) 79 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "8.0.0-preview.4.23260.4"; sha256 = "0xsg8fjqply0ah5h6rwq871j3yr85ksvakyfm140pjf594cxwgxh"; }) 80 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "8.0.0-preview.4.23260.4"; sha256 = "08x79vw0zw3153dpfrzm3fqfv36l7m55p7xlfqbn4c817fy10y52"; }) 81 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "8.0.0-preview.4.23260.4"; sha256 = "0n9s4q8w7glxp3dwkzf549rk010pjnxj08hqz4m0jhk81vnm7nqf"; }) 82 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "8.0.0-preview.4.23260.4"; sha256 = "07j59nbbakcw1npi6zk06fwbhp3rpd3n73drmyx9sk0j34mqrqs4"; }) 83 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "1f2xy2zqa8qjfd2dwgx1mcp0gpqvgzypppqk2sg3kbq879fis9ys"; }) 84 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "14j6ahm3arfi78m6kjacid7vrw0shjyqh90cdxq3s02s8y6xb4vg"; }) 85 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "0hncsby0gccfipsimgqp2n5ryzpd5940prds5rwvr8ncm2zzsikf"; }) 86 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "19pimns32v9gpx27gi53spzkr05r2d3cjg0cr1sydrp5xashvjws"; }) 87 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "15wx6bdk38a75llqbc7hw4gizqhlhmyvdr2c0n4jb7vq54b8vh7f"; }) 88 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1dg12c904pkd5khm1lqqxzmh1w1hpvi5rb136wm2jh2gri32wmzy"; }) 89 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "0m08mv9jhpglgalxn37m9acwyrhxjr2kk0cavpjq1nd7imlnhday"; }) 90 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1jchikr4h1snzg3ai4022m5wj9bfallxc2jb9pq0p0zcyr7gy7ig"; }) 91 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1cc8fhh90gh5wra50ys4bqs39qzp6kb477hci8smbflg3dww4l40"; }) 92 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "8.0.0-preview.4.23259.5"; sha256 = "1kv5pzzxhj2cpysxz9jbliz6yz146v9bwr6n9l6vgrayavmg5k5z"; }) 93 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "196kph47z4k92bdnqfgki2p9l20rcgj7ls5j609ig845wc2z4az5"; }) 94 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "0m238kwijlpx9y68w86svks7v90kxnr5ssfsaxn58iv2gll4fq2k"; }) 95 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "170r6xlc3jvvzn4vs1pihkwkw25vqx9940np30padm9r99yyp9bg"; }) 96 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1l8qsmi66b1nxdkyz93d9kb4lm3xc55648qdl66ny6sj2h32palj"; }) 97 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "06hs42ab2k7n7fmasg4nvxknwbv6ffslrd5c188jyfk1m23f12yx"; }) 98 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "13y8n0hk78l4qkh2h8rwd80knn9jid42q634bsgqalmlg1vplzy0"; }) 99 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "1ggfqw34pbywpvgjj6qmzv3qbi4i62l4c9xqwi4460z1nv6kxnhi"; }) 100 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "09jf4zahypzmy95h6asxzkrr7827vwdm83dwasydlzn9cal6xd1i"; }) 101 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1xgwxfqhdd0m8qh642bwazgridzrhzs220af6j2qkbyjgsvav4fr"; }) 102 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "8.0.0-preview.4.23259.5"; sha256 = "0wvkvaxr661xwr8ch03nlaiyn0ws2ly90yrv0qxvyz60z7b4mi8l"; }) 103 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "06wx5kk8zc2dbakwb6gfldxh57v2aiyvqnafr4clq14iw5pki4gc"; }) 104 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "13nlrvmjmwzfaf3r37pkdqsgvnby7hp2m7cwcx610vwsjaylyv43"; }) 105 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "09nnvqdhgyzp8smaz62a8c9v2awzzc0xxirjs5qiz4f87q76xnc5"; }) 106 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "0jvm3x2687z85acv6wc9pc2lgzifhz9n3kdsqbwj6djy6vjrhdii"; }) 107 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "03p2khg9x35zf9ws905l61mca4d16i19j8d33bm5igmaizf8hvis"; }) 108 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "04r92k2k7vlds0g6yb6slhmxwricl68gnfzddf7ajrvbz0skvpk8"; }) 109 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "1v2dlm8vw9k020lv3lm4g360wkf0nhlxdv8dfix1vl6nd1qr3njw"; }) 110 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "0qsrx612kjfpm6xd9a2l7a7qlfw9qmwrn6dnml622zb90nr37iab"; }) 111 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "0rlqs580jflv059w02bq2hmjdawshh376grwxr9vx1v76h38ll2n"; }) 112 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "0dxrv5ypinjx37yazi4zzzp6a712vj4fjlgrzq3h2w6hwz1gf5ay"; }) 113 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "0br19vniyn8z8g0b3njga1qzpkmsxk6zwdbafdjhw9pbd4vasx3l"; }) 114 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "1vbdnjdab7bxm3w3dabzpga3mgvp6ck6q0iiby789d4nq75zxi8y"; }) 115 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "00pfba98r89ny186rh2yjbx2nx40dx2payi13j8s63js7mim31an"; }) 116 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1r9finqxwsgqs7f1cvgfjg3ija9lmxnc7p4whaz5sy1lgzyh7wxv"; }) 117 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "167m64vvl9649wcp55ggyy1y6q2rhcn2g7pa0zrarl2fg74hda15"; }) 118 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "177kwd8qghvibxzhm9n4jmdxs4jdpav04gkc2jvqi4jmk9kfix1z"; }) 119 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1zgh1fz27bkz9gx813i87xawd9cpwwgch7npfr78csiv3ssqyxf0"; }) 120 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "0ms5r3lih96haz02n5qxv971igah6b00v9wmx6j4m7kk81y8jwsl"; }) 121 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "1qmxwx1c57ak6b9lb3rxglxxwm1bnlx2vlldwyq9pl5k5bp4ja77"; }) 122 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "0qvl27k2vqsxbpwswpbmx8z8r874nsjprcwkn1imcbrnlgrsw1yd"; }) 123 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "05ycd8gd7lacwh1v85m08zi820x144xzb9w4c5h2d46myhflx238"; }) 124 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "11p76kv9p9ml44y62j4lrqr4y4p75syf86cqjsghsx48b6hqavj4"; }) 125 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "08yhc2w6xmbx742f6n8w25iqa14a83khq80krqvr5wh6dfv0j2r3"; }) 126 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "1vkczbgajyyys550s62ysqvxgp1w4dl80wyxxa3x57502qrg9dh5"; }) 127 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1hvdpxjlf9h199xiyzp61ys8m7bnbdmyqqzf59qgidlfk7f4bzn6"; }) 128 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1xb2d07p00paym06scq8wmg9bvnzfkcgjqjcjqlbbx4d6y2cghpx"; }) 129 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "0xfg74za501byqzfsydagd59wbnknfrkj5p9l93f87vz147dpwgq"; }) 130 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "0x3hh1k17449rbz010qn8jw9j1r9yl931wr2rk6aci5c9l9c0c89"; }) 131 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "0vrkimk6dl096af256dm9qvhz0cawn37idmqhgyw0w5sq5vp340v"; }) 132 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1plbjhnh2sa2s9znwn5mkdic20ls755q81hh5zg5ma89q7c94c9n"; }) 133 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "1jx6kx7f44zj346q6gvly2slwkw8fplfjzwfr6ryjvzb2llhs4ng"; }) 134 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "0cqh3mfmbxnnsrlqaygrvd188nwzf7ik4a77ghv5i1s9jqlb1qyb"; }) 135 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "0gna1y8ygdr7r9j8sknk8gpb5j1fhmwckp1cdj8d9n2g8c8r26fc"; }) 136 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1d8654bzzbfmi0phgikrifwpdhh8xyymx2jwwxjhfww6nb3n3n2j"; }) 137 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "1qg9vzxw0wcn3j2m87rc5cllkfhqi089p8gxw4njic6dm5yxcr4h"; }) 138 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "1gz1gk2vjrz5cq65kipkv1k5y0x9q67qg4r26c6fb8s55l4f7wr5"; }) 139 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1czl0s1sm9wdcgscn0a9r9qb858yr0ak524vnghx81m87s4fl5l6"; }) 140 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "01cwnnwhhr12yqjkjz2fpqhsh9zmdvn95nxrh4x4qzylfs3brw3w"; }) 141 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "0n2m6j9izi668s0wa9pgjfafb7lka45sscgzspmzqc80syyr10lj"; }) 142 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "1s5fnq3ybvjpw1ddbk3mxx9vzq3s4l0wk9qm6373742c0bnv4k32"; }) 143 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1s9glkf7zbsdkc0zpvj7r0xkll2g0d6c2v8hw42qmpmb3lby9p0r"; }) 144 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "166jxayw2vx1iysxn8v1ql13x52fw8h4ivrnvziyw43wdk76xjdc"; }) 145 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "03x8cv14wsfizzj7fqmyqlbxdn1lkm49xq8jhyhfrrl936f27xd2"; }) 146 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "11y01apmjqf18phnzdy5pj62r43m10w1dis8b5sxkz55vsyk1znh"; }) 147 + (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "8.0.0-preview.4.23259.5"; sha256 = "1k221gbx12h9pqqb8zb45zjpy9rfffa7r9q4lx72zg47273rrpkj"; }) 148 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "0wyyp5f9vnbkqqb0xpxk2n6vcygd271hq6nbll3qrvg5ry9kn51l"; }) 149 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1vrcqhpjrmcl4rqpwb3mlgj6gpwwdfz615j4cv5yndwl6pcwi2c7"; }) 150 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "0rvwvrqiw0b7830i6vn4k6aj0x24bdbvsifg4f4bsd5gd7p8k7m9"; }) 151 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "12zkl0nar5jw69r8ajliv9nbqng07md168708758g39yzvrs33vb"; }) 152 + (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "8.0.0-preview.4.23259.5"; sha256 = "07p5svdm9i356m9z6qrsbmxjw57jxb5545hmyhipyhcy6yc935sw"; }) 153 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "8.0.0-preview.4.23259.5"; sha256 = "1qxxhpccfgvdkkxj5h8mmglh13gpaxis846gq2clx12x5wnhyc8f"; }) 154 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "017ypd8aa8m9zjv4irbi5p2334q6qfbnzn4wka9kq7m5r7psb3hh"; }) 155 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "0c1zjb4i0qw7zphhnziawbyflq281jyhs16mmpcx30gi4pmdxm6r"; }) 156 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "08ax6gyqyj71f20yx54qk8nzwy45k2dnsq3rrnffiyzpwnxsaj0z"; }) 157 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "8.0.0-preview.4.23259.5"; sha256 = "14bsjrb344ryhilnkq31pl5jlswpdm1lv8xlpdz1xpdfz1d50qj3"; }) 158 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "0i1w14i70rmxbg16dvgr6scg7ad4sdq1cch1cxrs32r195k6mx1l"; }) 159 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "8.0.0-preview.4.23259.5"; sha256 = "1sga9fgq97zpcws2akpkpm5qsaq0sl9xnqh77jc1fadrlvg7dkin"; }) 160 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "8.0.0-preview.4.23259.5"; sha256 = "1088ss3d0n3afhyi6k89w002wb0h08z3vwxx53fgkdjx1ivqh9hs"; }) 161 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "017nda21914ycdvp6ahzqvdiphaghj3aim8ywnjgrlbzi94x5r03"; }) 162 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1apdjkjm0f9cg3y9l1xqcmyvnkvqhsf3wdzl31cv7324w4p5wk9r"; }) 163 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "1xfh9j892q54n592q9pc5171xxn3p9mqk3c9l0p56wnn50gysvny"; }) 164 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "0sz1b0bba36w7nwvbzdfbcpic0pqv5x283gjbdpk7pf1khz39f3v"; }) 165 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "0pspdq0sny7kpfhc8knjsd8711vxnv0ipmg1dy1i2a0ynp5hgn3c"; }) 166 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.0-preview.4.23259.5"; sha256 = "1bac4a64fn80vdnl28qfpvqdkzd8n0k35hdpviwc076r0zib2idv"; }) 167 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.0-preview.4.23259.5"; sha256 = "1yv9fwrfykx2n3r2fkplbh344d7ja7d1hbygn2y4mhkkj2xxbpxp"; }) 168 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.0-preview.4.23259.5"; sha256 = "02wg6cd2vv1ibrlsdl8lkr69nn4h5jvkhdfd429rdkq4pyykm4qb"; }) 169 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "1b2h8aqb5sda22cpg1547ayvndlzc84y0b7jg5yy2qd6vv7sx9if"; }) 170 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "0m1kyayg1r8i6i1h9n6wran1f62m911vpqgp269gzda4ljb9h2vq"; }) 171 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "0f5ml8b84c218fvfwqa1nmr731wvy4sh8minik6kyv0dg0z9kikr"; }) 172 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "08lqhmz48szasi8klzwyssbbxvifaq6bgvnnvn5qxhpffl9kxsqj"; }) 173 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "057zpvsd67gp8lw826ljc1iyx8gp4i9nxx89n94j5jsvhd33v8ii"; }) 174 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "1nlii0clbwqs2gq72lhmf7hf52pia5mn996xvj2n9hsdj7h35ayd"; }) 175 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.0-preview.4.23259.5"; sha256 = "0rjrjcmns4875rq7qkfgbc4ybs8vcdsfscbkwsz426cgnxpsp8jk"; }) 176 ]; 177 }; 178 }
+6
pkgs/development/compilers/factor-lang/factor98.nix
··· 150 done)> $out/lib/factor/ld.so.cache 151 152 make -j$NIX_BUILD_CORES linux-x86-64 153 ./build.sh bootstrap 154 runHook postBuild 155 ''; ··· 214 license = licenses.bsd2; 215 maintainers = with maintainers; [ vrthra spacefrogg ]; 216 platforms = lib.intersectLists platforms.x86_64 platforms.linux; 217 }; 218 }
··· 150 done)> $out/lib/factor/ld.so.cache 151 152 make -j$NIX_BUILD_CORES linux-x86-64 153 + printf "First build from upstream boot image\n" >&2 154 + ./build.sh bootstrap 155 + printf "Rebuild boot image\n" >&2 156 + ./factor -script -e='"unix-x86.64" USING: system bootstrap.image memory ; make-image save 0 exit' 157 + printf "Second build from local boot image\n" >&2 158 ./build.sh bootstrap 159 runHook postBuild 160 ''; ··· 219 license = licenses.bsd2; 220 maintainers = with maintainers; [ vrthra spacefrogg ]; 221 platforms = lib.intersectLists platforms.x86_64 platforms.linux; 222 + mainProgram = "factor"; 223 }; 224 }
+3 -3
pkgs/development/compilers/open-watcom/v2.nix
··· 13 stdenv.mkDerivation rec { 14 pname = "${passthru.prettyName}-unwrapped"; 15 # nixpkgs-update: no auto update 16 - version = "unstable-2023-03-20"; 17 18 src = fetchFromGitHub { 19 owner = "open-watcom"; 20 repo = "open-watcom-v2"; 21 - rev = "d9181a345b9301a64380eb40d78c74c197a3fa1e"; 22 - sha256 = "sha256-2kT4OZJk6m6Z/XN2q17jXJPgAG4nD2U1+J5CZl4+tAs="; 23 }; 24 25 postPatch = ''
··· 13 stdenv.mkDerivation rec { 14 pname = "${passthru.prettyName}-unwrapped"; 15 # nixpkgs-update: no auto update 16 + version = "unstable-2023-05-17"; 17 18 src = fetchFromGitHub { 19 owner = "open-watcom"; 20 repo = "open-watcom-v2"; 21 + rev = "4053c858ac1f83a186704434bd16b6a6b8f4cf88"; 22 + sha256 = "sha256-o+cA5kqPow+ERCeWdA3UNKawF+EjuL87lPXUjFT/D1w="; 23 }; 24 25 postPatch = ''
-1
pkgs/development/compilers/roslyn/default.nix
··· 62 description = ".NET C# and Visual Basic compiler"; 63 homepage = "https://github.com/dotnet/roslyn"; 64 mainProgram = "csc"; 65 - platforms = platforms.linux; 66 license = licenses.mit; 67 maintainers = with maintainers; [ corngood ]; 68 };
··· 62 description = ".NET C# and Visual Basic compiler"; 63 homepage = "https://github.com/dotnet/roslyn"; 64 mainProgram = "csc"; 65 license = licenses.mit; 66 maintainers = with maintainers; [ corngood ]; 67 };
+3
pkgs/development/compilers/roslyn/deps.nix
··· 6 (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "3.1.10"; sha256 = "0xn4zh7shvijqlr03fqsmps6gz856isd9bg9rk4z2c4599ggal77"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.ref/3.1.10/microsoft.aspnetcore.app.ref.3.1.10.nupkg"; }) 7 (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "3.1.32"; sha256 = "00ha2sl4gvqv68mbrsizd6ngqy0vv6vamngzjxr338k1w7a276dx"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.runtime.linux-arm64/3.1.32/microsoft.aspnetcore.app.runtime.linux-arm64.3.1.32.nupkg"; }) 8 (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "3.1.32"; sha256 = "0ywz63q8vrdp25ix2j9b7h2jp5grc68hqfl64c6lqk26q9xwhp9r"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.runtime.linux-x64/3.1.32/microsoft.aspnetcore.app.runtime.linux-x64.3.1.32.nupkg"; }) 9 (fetchNuGet { pname = "Microsoft.Build.Framework"; version = "16.5.0"; sha256 = "1xgr02r7s9i6s70n237hss4yi9zicssia3zd2ny6s8vyxb7jpdyb"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.build.framework/16.5.0/microsoft.build.framework.16.5.0.nupkg"; }) 10 (fetchNuGet { pname = "Microsoft.Build.Tasks.Core"; version = "16.5.0"; sha256 = "08mpdcnjbjpsggfzb3plpmjg1jhx2j4zslm8m2p3icnrpw8swxz4"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.build.tasks.core/16.5.0/microsoft.build.tasks.core.16.5.0.nupkg"; }) 11 (fetchNuGet { pname = "Microsoft.Build.Tasks.Git"; version = "1.2.0-beta-22167-02"; sha256 = "1zb5vhlc9kzqbw22hg84hakhqms0aa7ghy585229hsf278rfh2sy"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.build.tasks.git/1.2.0-beta-22167-02/microsoft.build.tasks.git.1.2.0-beta-22167-02.nupkg"; }) ··· 22 (fetchNuGet { pname = "Microsoft.Net.Compilers.Toolset"; version = "4.2.0-1.final"; sha256 = "02zas22hj29gv2w7h74q786i0cvxffgwqai21ri0zj41nb2hwhyq"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.net.compilers.toolset/4.2.0-1.final/microsoft.net.compilers.toolset.4.2.0-1.final.nupkg"; }) 23 (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "3.1.32"; sha256 = "1zygp70xrk5zggs3q4a6yc6jfdwzcsjjsapqpwn6qyx35m69b72p"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-arm64/3.1.32/microsoft.netcore.app.host.linux-arm64.3.1.32.nupkg"; }) 24 (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "3.1.32"; sha256 = "08sar3s7j6z1q5prjmz2jrbsq5ms81mrsi1c1zbfrkplkfjpld3a"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-x64/3.1.32/microsoft.netcore.app.host.linux-x64.3.1.32.nupkg"; }) 25 (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "3.1.0"; sha256 = "08svsiilx9spvjamcnjswv0dlpdrgryhr3asdz7cvnl914gjzq4y"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.ref/3.1.0/microsoft.netcore.app.ref.3.1.0.nupkg"; }) 26 (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "3.1.32"; sha256 = "13pcn74z1swz73s72zjl07f118j35wacnzgk7kbjqn83nwgqdgvq"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.runtime.linux-arm64/3.1.32/microsoft.netcore.app.runtime.linux-arm64.3.1.32.nupkg"; }) 27 (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "3.1.32"; sha256 = "0mmc57dl8plrspdxwb7209wz29vhiwqds4nfbdfws7zg35yy70c7"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.runtime.linux-x64/3.1.32/microsoft.netcore.app.runtime.linux-x64.3.1.32.nupkg"; }) 28 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg"; }) 29 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"; }) 30 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.1"; sha256 = "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg"; })
··· 6 (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "3.1.10"; sha256 = "0xn4zh7shvijqlr03fqsmps6gz856isd9bg9rk4z2c4599ggal77"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.ref/3.1.10/microsoft.aspnetcore.app.ref.3.1.10.nupkg"; }) 7 (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "3.1.32"; sha256 = "00ha2sl4gvqv68mbrsizd6ngqy0vv6vamngzjxr338k1w7a276dx"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.runtime.linux-arm64/3.1.32/microsoft.aspnetcore.app.runtime.linux-arm64.3.1.32.nupkg"; }) 8 (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "3.1.32"; sha256 = "0ywz63q8vrdp25ix2j9b7h2jp5grc68hqfl64c6lqk26q9xwhp9r"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.runtime.linux-x64/3.1.32/microsoft.aspnetcore.app.runtime.linux-x64.3.1.32.nupkg"; }) 9 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "3.1.32"; sha256 = "1crk54a1wvj76s9gnh46pi7wk8ryympm9xh2jq4s4rpp329fqgic"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.aspnetcore.app.runtime.osx-x64/3.1.32/microsoft.aspnetcore.app.runtime.osx-x64.3.1.32.nupkg"; }) 10 (fetchNuGet { pname = "Microsoft.Build.Framework"; version = "16.5.0"; sha256 = "1xgr02r7s9i6s70n237hss4yi9zicssia3zd2ny6s8vyxb7jpdyb"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.build.framework/16.5.0/microsoft.build.framework.16.5.0.nupkg"; }) 11 (fetchNuGet { pname = "Microsoft.Build.Tasks.Core"; version = "16.5.0"; sha256 = "08mpdcnjbjpsggfzb3plpmjg1jhx2j4zslm8m2p3icnrpw8swxz4"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.build.tasks.core/16.5.0/microsoft.build.tasks.core.16.5.0.nupkg"; }) 12 (fetchNuGet { pname = "Microsoft.Build.Tasks.Git"; version = "1.2.0-beta-22167-02"; sha256 = "1zb5vhlc9kzqbw22hg84hakhqms0aa7ghy585229hsf278rfh2sy"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.build.tasks.git/1.2.0-beta-22167-02/microsoft.build.tasks.git.1.2.0-beta-22167-02.nupkg"; }) ··· 23 (fetchNuGet { pname = "Microsoft.Net.Compilers.Toolset"; version = "4.2.0-1.final"; sha256 = "02zas22hj29gv2w7h74q786i0cvxffgwqai21ri0zj41nb2hwhyq"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.net.compilers.toolset/4.2.0-1.final/microsoft.net.compilers.toolset.4.2.0-1.final.nupkg"; }) 24 (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "3.1.32"; sha256 = "1zygp70xrk5zggs3q4a6yc6jfdwzcsjjsapqpwn6qyx35m69b72p"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-arm64/3.1.32/microsoft.netcore.app.host.linux-arm64.3.1.32.nupkg"; }) 25 (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "3.1.32"; sha256 = "08sar3s7j6z1q5prjmz2jrbsq5ms81mrsi1c1zbfrkplkfjpld3a"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-x64/3.1.32/microsoft.netcore.app.host.linux-x64.3.1.32.nupkg"; }) 26 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "3.1.32"; sha256 = "186gjn8sbhp4z6pq8fw4g8nqk9dwyaplwvdz2y3fbbvg36lggsh0"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.osx-x64/3.1.32/microsoft.netcore.app.host.osx-x64.3.1.32.nupkg"; }) 27 (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "3.1.0"; sha256 = "08svsiilx9spvjamcnjswv0dlpdrgryhr3asdz7cvnl914gjzq4y"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.ref/3.1.0/microsoft.netcore.app.ref.3.1.0.nupkg"; }) 28 (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "3.1.32"; sha256 = "13pcn74z1swz73s72zjl07f118j35wacnzgk7kbjqn83nwgqdgvq"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.runtime.linux-arm64/3.1.32/microsoft.netcore.app.runtime.linux-arm64.3.1.32.nupkg"; }) 29 (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "3.1.32"; sha256 = "0mmc57dl8plrspdxwb7209wz29vhiwqds4nfbdfws7zg35yy70c7"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.runtime.linux-x64/3.1.32/microsoft.netcore.app.runtime.linux-x64.3.1.32.nupkg"; }) 30 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "3.1.32"; sha256 = "06bk39zcv27cwshjsxfg5d6wzkkzdhfk08sipdc7mr1s8pk7ihi1"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.runtime.osx-x64/3.1.32/microsoft.netcore.app.runtime.osx-x64.3.1.32.nupkg"; }) 31 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg"; }) 32 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"; }) 33 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.1"; sha256 = "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg"; })
+1 -1
pkgs/development/libraries/audio/libopenmpt/default.nix
··· 43 44 configureFlags = lib.optional (!usePulseAudio) "--without-pulseaudio"; 45 46 - doCheck = true; 47 48 postFixup = '' 49 moveToOutput share/doc $dev
··· 43 44 configureFlags = lib.optional (!usePulseAudio) "--without-pulseaudio"; 45 46 + doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; 47 48 postFixup = '' 49 moveToOutput share/doc $dev
+31
pkgs/development/libraries/cyrus-sasl-xoauth2/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, autoconf, libtool, automake, cyrus_sasl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "cyrus-sasl-xoauth2"; 5 + version = "0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "moriyoshi"; 9 + repo = "cyrus-sasl-xoauth2"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-lI8uKtVxrziQ8q/Ss+QTgg1xTObZUTAzjL3MYmtwyd8="; 12 + }; 13 + 14 + nativeBuildInputs = [ autoconf libtool automake ]; 15 + 16 + buildInputs = [ cyrus_sasl ]; 17 + 18 + preConfigure = "./autogen.sh"; 19 + 20 + configureFlags = [ 21 + "--with-cyrus-sasl=${placeholder "out"}" 22 + ]; 23 + 24 + meta = with lib; { 25 + homepage = "https://github.com/moriyoshi/cyrus-sasl-xoauth2"; 26 + description = "XOAUTH2 mechanism plugin for cyrus-sasl"; 27 + platforms = platforms.unix; 28 + license = licenses.mit; 29 + maintainers = with lib.maintainers; [ wentasah ]; 30 + }; 31 + }
+71
pkgs/development/libraries/libei/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchFromGitLab 5 + , attr 6 + , libevdev 7 + , libxkbcommon 8 + , meson 9 + , ninja 10 + , pkg-config 11 + , protobuf 12 + , protobufc 13 + , python3 14 + , python3Packages 15 + , systemd 16 + }: 17 + let 18 + munit = fetchFromGitHub { 19 + owner = "nemequ"; 20 + repo = "munit"; 21 + rev = "fbbdf1467eb0d04a6ee465def2e529e4c87f2118"; 22 + hash = "sha256-qm30C++rpLtxBhOABBzo+6WILSpKz2ibvUvoe8ku4ow="; 23 + }; 24 + in 25 + stdenv.mkDerivation rec { 26 + pname = "libei"; 27 + version = "0.99.1"; 28 + 29 + src = fetchFromGitLab { 30 + domain = "gitlab.freedesktop.org"; 31 + owner = "libinput"; 32 + repo = "libei"; 33 + rev = version; 34 + hash = "sha256-r/rkN2d8P30P/IL1YaLWWRbA5s3uVq5Fc/K1vhS31tw="; 35 + }; 36 + 37 + buildInputs = [ 38 + libevdev 39 + libxkbcommon 40 + protobuf 41 + protobufc 42 + systemd 43 + ]; 44 + nativeBuildInputs = [ 45 + attr 46 + meson 47 + ninja 48 + pkg-config 49 + python3 50 + ] ++ 51 + (with python3Packages; [ 52 + jinja2 53 + pytest 54 + python-dbusmock 55 + strenum 56 + structlog 57 + ]); 58 + 59 + postPatch = '' 60 + ln -s "${munit}" ./subprojects/munit 61 + patchShebangs ./proto/ei-scanner 62 + ''; 63 + 64 + meta = with lib; { 65 + description = "Library for Emulated Input"; 66 + homepage = "https://gitlab.freedesktop.org/libinput/libei"; 67 + license = licenses.mit; 68 + maintainers = [ maintainers.pedrohlc ]; 69 + platforms = platforms.linux; 70 + }; 71 + }
+2
pkgs/development/libraries/libngspice/default.nix
··· 37 "--enable-cider" 38 ]; 39 40 meta = with lib; { 41 description = "The Next Generation Spice (Electronic Circuit Simulator)"; 42 homepage = "http://ngspice.sourceforge.net";
··· 37 "--enable-cider" 38 ]; 39 40 + enableParallelBuilding = true; 41 + 42 meta = with lib; { 43 description = "The Next Generation Spice (Electronic Circuit Simulator)"; 44 homepage = "http://ngspice.sourceforge.net";
+6253
pkgs/development/libraries/matrix-sdk-crypto-nodejs/Cargo-beta.6.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "addr2line" 7 + version = "0.19.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "adler32" 22 + version = "1.2.0" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 25 + 26 + [[package]] 27 + name = "aead" 28 + version = "0.4.3" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 31 + dependencies = [ 32 + "generic-array", 33 + "rand_core 0.6.4", 34 + ] 35 + 36 + [[package]] 37 + name = "aes" 38 + version = "0.8.2" 39 + source = "registry+https://github.com/rust-lang/crates.io-index" 40 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 41 + dependencies = [ 42 + "cfg-if", 43 + "cipher 0.4.4", 44 + "cpufeatures", 45 + ] 46 + 47 + [[package]] 48 + name = "ahash" 49 + version = "0.7.6" 50 + source = "registry+https://github.com/rust-lang/crates.io-index" 51 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 52 + dependencies = [ 53 + "getrandom 0.2.9", 54 + "once_cell", 55 + "version_check", 56 + ] 57 + 58 + [[package]] 59 + name = "ahash" 60 + version = "0.8.3" 61 + source = "registry+https://github.com/rust-lang/crates.io-index" 62 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 63 + dependencies = [ 64 + "cfg-if", 65 + "getrandom 0.2.9", 66 + "once_cell", 67 + "version_check", 68 + ] 69 + 70 + [[package]] 71 + name = "aho-corasick" 72 + version = "1.0.1" 73 + source = "registry+https://github.com/rust-lang/crates.io-index" 74 + checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 75 + dependencies = [ 76 + "memchr", 77 + ] 78 + 79 + [[package]] 80 + name = "android_log-sys" 81 + version = "0.2.0" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "85965b6739a430150bdd138e2374a98af0c3ee0d030b3bb7fc3bddff58d0102e" 84 + 85 + [[package]] 86 + name = "android_system_properties" 87 + version = "0.1.5" 88 + source = "registry+https://github.com/rust-lang/crates.io-index" 89 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 90 + dependencies = [ 91 + "libc", 92 + ] 93 + 94 + [[package]] 95 + name = "anes" 96 + version = "0.1.6" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 99 + 100 + [[package]] 101 + name = "anstream" 102 + version = "0.3.0" 103 + source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "9e579a7752471abc2a8268df8b20005e3eadd975f585398f17efcfd8d4927371" 105 + dependencies = [ 106 + "anstyle", 107 + "anstyle-parse", 108 + "anstyle-query", 109 + "anstyle-wincon", 110 + "colorchoice", 111 + "is-terminal", 112 + "utf8parse", 113 + ] 114 + 115 + [[package]] 116 + name = "anstyle" 117 + version = "1.0.0" 118 + source = "registry+https://github.com/rust-lang/crates.io-index" 119 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 120 + 121 + [[package]] 122 + name = "anstyle-parse" 123 + version = "0.2.0" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 126 + dependencies = [ 127 + "utf8parse", 128 + ] 129 + 130 + [[package]] 131 + name = "anstyle-query" 132 + version = "1.0.0" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 135 + dependencies = [ 136 + "windows-sys 0.48.0", 137 + ] 138 + 139 + [[package]] 140 + name = "anstyle-wincon" 141 + version = "1.0.0" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + checksum = "4bcd8291a340dd8ac70e18878bc4501dd7b4ff970cfa21c207d36ece51ea88fd" 144 + dependencies = [ 145 + "anstyle", 146 + "windows-sys 0.48.0", 147 + ] 148 + 149 + [[package]] 150 + name = "anyhow" 151 + version = "1.0.70" 152 + source = "registry+https://github.com/rust-lang/crates.io-index" 153 + checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 154 + 155 + [[package]] 156 + name = "anymap2" 157 + version = "0.13.0" 158 + source = "registry+https://github.com/rust-lang/crates.io-index" 159 + checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" 160 + 161 + [[package]] 162 + name = "arrayref" 163 + version = "0.3.7" 164 + source = "registry+https://github.com/rust-lang/crates.io-index" 165 + checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 166 + 167 + [[package]] 168 + name = "arrayvec" 169 + version = "0.7.2" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 172 + dependencies = [ 173 + "serde", 174 + ] 175 + 176 + [[package]] 177 + name = "askama" 178 + version = "0.11.1" 179 + source = "registry+https://github.com/rust-lang/crates.io-index" 180 + checksum = "fb98f10f371286b177db5eeb9a6e5396609555686a35e1d4f7b9a9c6d8af0139" 181 + dependencies = [ 182 + "askama_derive", 183 + "askama_escape", 184 + "askama_shared", 185 + ] 186 + 187 + [[package]] 188 + name = "askama_derive" 189 + version = "0.11.2" 190 + source = "registry+https://github.com/rust-lang/crates.io-index" 191 + checksum = "87bf87e6e8b47264efa9bde63d6225c6276a52e05e91bf37eaa8afd0032d6b71" 192 + dependencies = [ 193 + "askama_shared", 194 + "proc-macro2", 195 + "syn 1.0.109", 196 + ] 197 + 198 + [[package]] 199 + name = "askama_escape" 200 + version = "0.10.3" 201 + source = "registry+https://github.com/rust-lang/crates.io-index" 202 + checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 203 + 204 + [[package]] 205 + name = "askama_shared" 206 + version = "0.12.2" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "bf722b94118a07fcbc6640190f247334027685d4e218b794dbfe17c32bf38ed0" 209 + dependencies = [ 210 + "askama_escape", 211 + "mime", 212 + "mime_guess", 213 + "nom", 214 + "proc-macro2", 215 + "quote", 216 + "serde", 217 + "syn 1.0.109", 218 + "toml 0.5.11", 219 + ] 220 + 221 + [[package]] 222 + name = "assert-json-diff" 223 + version = "2.0.2" 224 + source = "registry+https://github.com/rust-lang/crates.io-index" 225 + checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 226 + dependencies = [ 227 + "serde", 228 + "serde_json", 229 + ] 230 + 231 + [[package]] 232 + name = "assert_matches" 233 + version = "1.5.0" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 236 + 237 + [[package]] 238 + name = "assign" 239 + version = "1.1.1" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "5f093eed78becd229346bf859eec0aa4dd7ddde0757287b2b4107a1f09c80002" 242 + 243 + [[package]] 244 + name = "async-channel" 245 + version = "1.8.0" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 248 + dependencies = [ 249 + "concurrent-queue", 250 + "event-listener", 251 + "futures-core", 252 + ] 253 + 254 + [[package]] 255 + name = "async-compression" 256 + version = "0.3.15" 257 + source = "registry+https://github.com/rust-lang/crates.io-index" 258 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 259 + dependencies = [ 260 + "flate2", 261 + "futures-core", 262 + "memchr", 263 + "pin-project-lite", 264 + "tokio", 265 + ] 266 + 267 + [[package]] 268 + name = "async-executor" 269 + version = "1.5.1" 270 + source = "registry+https://github.com/rust-lang/crates.io-index" 271 + checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 272 + dependencies = [ 273 + "async-lock", 274 + "async-task", 275 + "concurrent-queue", 276 + "fastrand", 277 + "futures-lite", 278 + "slab", 279 + ] 280 + 281 + [[package]] 282 + name = "async-global-executor" 283 + version = "2.3.1" 284 + source = "registry+https://github.com/rust-lang/crates.io-index" 285 + checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 286 + dependencies = [ 287 + "async-channel", 288 + "async-executor", 289 + "async-io", 290 + "async-lock", 291 + "blocking", 292 + "futures-lite", 293 + "once_cell", 294 + ] 295 + 296 + [[package]] 297 + name = "async-io" 298 + version = "1.13.0" 299 + source = "registry+https://github.com/rust-lang/crates.io-index" 300 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 301 + dependencies = [ 302 + "async-lock", 303 + "autocfg", 304 + "cfg-if", 305 + "concurrent-queue", 306 + "futures-lite", 307 + "log", 308 + "parking", 309 + "polling", 310 + "rustix", 311 + "slab", 312 + "socket2", 313 + "waker-fn", 314 + ] 315 + 316 + [[package]] 317 + name = "async-lock" 318 + version = "2.7.0" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 321 + dependencies = [ 322 + "event-listener", 323 + ] 324 + 325 + [[package]] 326 + name = "async-process" 327 + version = "1.7.0" 328 + source = "registry+https://github.com/rust-lang/crates.io-index" 329 + checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 330 + dependencies = [ 331 + "async-io", 332 + "async-lock", 333 + "autocfg", 334 + "blocking", 335 + "cfg-if", 336 + "event-listener", 337 + "futures-lite", 338 + "rustix", 339 + "signal-hook", 340 + "windows-sys 0.48.0", 341 + ] 342 + 343 + [[package]] 344 + name = "async-std" 345 + version = "1.12.0" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 348 + dependencies = [ 349 + "async-channel", 350 + "async-global-executor", 351 + "async-io", 352 + "async-lock", 353 + "async-process", 354 + "crossbeam-utils", 355 + "futures-channel", 356 + "futures-core", 357 + "futures-io", 358 + "futures-lite", 359 + "gloo-timers", 360 + "kv-log-macro", 361 + "log", 362 + "memchr", 363 + "once_cell", 364 + "pin-project-lite", 365 + "pin-utils", 366 + "slab", 367 + "wasm-bindgen-futures", 368 + ] 369 + 370 + [[package]] 371 + name = "async-stream" 372 + version = "0.3.5" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 375 + dependencies = [ 376 + "async-stream-impl", 377 + "futures-core", 378 + "pin-project-lite", 379 + ] 380 + 381 + [[package]] 382 + name = "async-stream-impl" 383 + version = "0.3.5" 384 + source = "registry+https://github.com/rust-lang/crates.io-index" 385 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 386 + dependencies = [ 387 + "proc-macro2", 388 + "quote", 389 + "syn 2.0.15", 390 + ] 391 + 392 + [[package]] 393 + name = "async-task" 394 + version = "4.4.0" 395 + source = "registry+https://github.com/rust-lang/crates.io-index" 396 + checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 397 + 398 + [[package]] 399 + name = "async-trait" 400 + version = "0.1.68" 401 + source = "registry+https://github.com/rust-lang/crates.io-index" 402 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 403 + dependencies = [ 404 + "proc-macro2", 405 + "quote", 406 + "syn 2.0.15", 407 + ] 408 + 409 + [[package]] 410 + name = "atomic" 411 + version = "0.5.1" 412 + source = "registry+https://github.com/rust-lang/crates.io-index" 413 + checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c" 414 + dependencies = [ 415 + "autocfg", 416 + ] 417 + 418 + [[package]] 419 + name = "atomic-waker" 420 + version = "1.1.1" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 423 + 424 + [[package]] 425 + name = "atty" 426 + version = "0.2.14" 427 + source = "registry+https://github.com/rust-lang/crates.io-index" 428 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 429 + dependencies = [ 430 + "hermit-abi 0.1.19", 431 + "libc", 432 + "winapi", 433 + ] 434 + 435 + [[package]] 436 + name = "autocfg" 437 + version = "1.1.0" 438 + source = "registry+https://github.com/rust-lang/crates.io-index" 439 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 440 + 441 + [[package]] 442 + name = "axum" 443 + version = "0.6.16" 444 + source = "registry+https://github.com/rust-lang/crates.io-index" 445 + checksum = "113713495a32dd0ab52baf5c10044725aa3aec00b31beda84218e469029b72a3" 446 + dependencies = [ 447 + "async-trait", 448 + "axum-core", 449 + "bitflags 1.3.2", 450 + "bytes", 451 + "futures-util", 452 + "http", 453 + "http-body", 454 + "hyper", 455 + "itoa", 456 + "matchit", 457 + "memchr", 458 + "mime", 459 + "percent-encoding", 460 + "pin-project-lite", 461 + "rustversion", 462 + "serde", 463 + "serde_json", 464 + "serde_path_to_error", 465 + "sync_wrapper", 466 + "tower", 467 + "tower-layer", 468 + "tower-service", 469 + ] 470 + 471 + [[package]] 472 + name = "axum-core" 473 + version = "0.3.4" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 476 + dependencies = [ 477 + "async-trait", 478 + "bytes", 479 + "futures-util", 480 + "http", 481 + "http-body", 482 + "mime", 483 + "rustversion", 484 + "tower-layer", 485 + "tower-service", 486 + ] 487 + 488 + [[package]] 489 + name = "backoff" 490 + version = "0.4.0" 491 + source = "registry+https://github.com/rust-lang/crates.io-index" 492 + checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 493 + dependencies = [ 494 + "futures-core", 495 + "getrandom 0.2.9", 496 + "instant", 497 + "pin-project-lite", 498 + "rand 0.8.5", 499 + "tokio", 500 + ] 501 + 502 + [[package]] 503 + name = "backtrace" 504 + version = "0.3.67" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 507 + dependencies = [ 508 + "addr2line", 509 + "cc", 510 + "cfg-if", 511 + "libc", 512 + "miniz_oxide 0.6.2", 513 + "object", 514 + "rustc-demangle", 515 + ] 516 + 517 + [[package]] 518 + name = "base64" 519 + version = "0.13.1" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 522 + 523 + [[package]] 524 + name = "base64" 525 + version = "0.21.0" 526 + source = "registry+https://github.com/rust-lang/crates.io-index" 527 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 528 + 529 + [[package]] 530 + name = "base64ct" 531 + version = "1.6.0" 532 + source = "registry+https://github.com/rust-lang/crates.io-index" 533 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 534 + 535 + [[package]] 536 + name = "benchmarks" 537 + version = "1.0.0" 538 + dependencies = [ 539 + "criterion", 540 + "matrix-sdk-crypto", 541 + "matrix-sdk-sled", 542 + "matrix-sdk-test", 543 + "pprof", 544 + "ruma", 545 + "serde_json", 546 + "tempfile", 547 + "tokio", 548 + ] 549 + 550 + [[package]] 551 + name = "bincode" 552 + version = "1.3.3" 553 + source = "registry+https://github.com/rust-lang/crates.io-index" 554 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 555 + dependencies = [ 556 + "serde", 557 + ] 558 + 559 + [[package]] 560 + name = "bitflags" 561 + version = "1.3.2" 562 + source = "registry+https://github.com/rust-lang/crates.io-index" 563 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 564 + 565 + [[package]] 566 + name = "bitflags" 567 + version = "2.2.1" 568 + source = "registry+https://github.com/rust-lang/crates.io-index" 569 + checksum = "24a6904aef64d73cf10ab17ebace7befb918b82164785cb89907993be7f83813" 570 + 571 + [[package]] 572 + name = "bitmaps" 573 + version = "3.2.0" 574 + source = "registry+https://github.com/rust-lang/crates.io-index" 575 + checksum = "703642b98a00b3b90513279a8ede3fcfa479c126c5fb46e78f3051522f021403" 576 + 577 + [[package]] 578 + name = "blake3" 579 + version = "1.3.3" 580 + source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" 582 + dependencies = [ 583 + "arrayref", 584 + "arrayvec", 585 + "cc", 586 + "cfg-if", 587 + "constant_time_eq", 588 + "digest 0.10.6", 589 + ] 590 + 591 + [[package]] 592 + name = "block-buffer" 593 + version = "0.9.0" 594 + source = "registry+https://github.com/rust-lang/crates.io-index" 595 + checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 596 + dependencies = [ 597 + "generic-array", 598 + ] 599 + 600 + [[package]] 601 + name = "block-buffer" 602 + version = "0.10.4" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 605 + dependencies = [ 606 + "generic-array", 607 + ] 608 + 609 + [[package]] 610 + name = "block-padding" 611 + version = "0.3.3" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 614 + dependencies = [ 615 + "generic-array", 616 + ] 617 + 618 + [[package]] 619 + name = "blocking" 620 + version = "1.3.1" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 623 + dependencies = [ 624 + "async-channel", 625 + "async-lock", 626 + "async-task", 627 + "atomic-waker", 628 + "fastrand", 629 + "futures-lite", 630 + "log", 631 + ] 632 + 633 + [[package]] 634 + name = "bs58" 635 + version = "0.4.0" 636 + source = "registry+https://github.com/rust-lang/crates.io-index" 637 + checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" 638 + 639 + [[package]] 640 + name = "bumpalo" 641 + version = "3.12.1" 642 + source = "registry+https://github.com/rust-lang/crates.io-index" 643 + checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" 644 + 645 + [[package]] 646 + name = "bytemuck" 647 + version = "1.13.1" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 650 + 651 + [[package]] 652 + name = "byteorder" 653 + version = "1.4.3" 654 + source = "registry+https://github.com/rust-lang/crates.io-index" 655 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 656 + 657 + [[package]] 658 + name = "bytes" 659 + version = "1.4.0" 660 + source = "registry+https://github.com/rust-lang/crates.io-index" 661 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 662 + 663 + [[package]] 664 + name = "bytesize" 665 + version = "1.2.0" 666 + source = "registry+https://github.com/rust-lang/crates.io-index" 667 + checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5" 668 + 669 + [[package]] 670 + name = "camino" 671 + version = "1.1.4" 672 + source = "registry+https://github.com/rust-lang/crates.io-index" 673 + checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2" 674 + dependencies = [ 675 + "serde", 676 + ] 677 + 678 + [[package]] 679 + name = "cargo-platform" 680 + version = "0.1.2" 681 + source = "registry+https://github.com/rust-lang/crates.io-index" 682 + checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" 683 + dependencies = [ 684 + "serde", 685 + ] 686 + 687 + [[package]] 688 + name = "cargo_metadata" 689 + version = "0.15.4" 690 + source = "registry+https://github.com/rust-lang/crates.io-index" 691 + checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" 692 + dependencies = [ 693 + "camino", 694 + "cargo-platform", 695 + "semver", 696 + "serde", 697 + "serde_json", 698 + "thiserror", 699 + ] 700 + 701 + [[package]] 702 + name = "cast" 703 + version = "0.3.0" 704 + source = "registry+https://github.com/rust-lang/crates.io-index" 705 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 706 + 707 + [[package]] 708 + name = "cbc" 709 + version = "0.1.2" 710 + source = "registry+https://github.com/rust-lang/crates.io-index" 711 + checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 712 + dependencies = [ 713 + "cipher 0.4.4", 714 + ] 715 + 716 + [[package]] 717 + name = "cc" 718 + version = "1.0.79" 719 + source = "registry+https://github.com/rust-lang/crates.io-index" 720 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 721 + 722 + [[package]] 723 + name = "cfg-if" 724 + version = "1.0.0" 725 + source = "registry+https://github.com/rust-lang/crates.io-index" 726 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 727 + 728 + [[package]] 729 + name = "chacha20" 730 + version = "0.8.2" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" 733 + dependencies = [ 734 + "cfg-if", 735 + "cipher 0.3.0", 736 + "cpufeatures", 737 + "zeroize", 738 + ] 739 + 740 + [[package]] 741 + name = "chacha20poly1305" 742 + version = "0.9.1" 743 + source = "registry+https://github.com/rust-lang/crates.io-index" 744 + checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5" 745 + dependencies = [ 746 + "aead", 747 + "chacha20", 748 + "cipher 0.3.0", 749 + "poly1305", 750 + "zeroize", 751 + ] 752 + 753 + [[package]] 754 + name = "checked_int_cast" 755 + version = "1.0.0" 756 + source = "registry+https://github.com/rust-lang/crates.io-index" 757 + checksum = "17cc5e6b5ab06331c33589842070416baa137e8b0eb912b008cfd4a78ada7919" 758 + 759 + [[package]] 760 + name = "chrono" 761 + version = "0.4.24" 762 + source = "registry+https://github.com/rust-lang/crates.io-index" 763 + checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 764 + dependencies = [ 765 + "iana-time-zone", 766 + "js-sys", 767 + "num-integer", 768 + "num-traits", 769 + "time 0.1.45", 770 + "wasm-bindgen", 771 + "winapi", 772 + ] 773 + 774 + [[package]] 775 + name = "ciborium" 776 + version = "0.2.0" 777 + source = "registry+https://github.com/rust-lang/crates.io-index" 778 + checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 779 + dependencies = [ 780 + "ciborium-io", 781 + "ciborium-ll", 782 + "serde", 783 + ] 784 + 785 + [[package]] 786 + name = "ciborium-io" 787 + version = "0.2.0" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 790 + 791 + [[package]] 792 + name = "ciborium-ll" 793 + version = "0.2.0" 794 + source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 796 + dependencies = [ 797 + "ciborium-io", 798 + "half", 799 + ] 800 + 801 + [[package]] 802 + name = "cipher" 803 + version = "0.3.0" 804 + source = "registry+https://github.com/rust-lang/crates.io-index" 805 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 806 + dependencies = [ 807 + "generic-array", 808 + ] 809 + 810 + [[package]] 811 + name = "cipher" 812 + version = "0.4.4" 813 + source = "registry+https://github.com/rust-lang/crates.io-index" 814 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 815 + dependencies = [ 816 + "crypto-common", 817 + "inout", 818 + ] 819 + 820 + [[package]] 821 + name = "clap" 822 + version = "3.2.23" 823 + source = "registry+https://github.com/rust-lang/crates.io-index" 824 + checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 825 + dependencies = [ 826 + "atty", 827 + "bitflags 1.3.2", 828 + "clap_derive 3.2.18", 829 + "clap_lex 0.2.4", 830 + "indexmap", 831 + "once_cell", 832 + "strsim", 833 + "termcolor", 834 + "textwrap", 835 + ] 836 + 837 + [[package]] 838 + name = "clap" 839 + version = "4.2.4" 840 + source = "registry+https://github.com/rust-lang/crates.io-index" 841 + checksum = "956ac1f6381d8d82ab4684768f89c0ea3afe66925ceadb4eeb3fc452ffc55d62" 842 + dependencies = [ 843 + "clap_builder", 844 + "clap_derive 4.2.0", 845 + "once_cell", 846 + ] 847 + 848 + [[package]] 849 + name = "clap_builder" 850 + version = "4.2.4" 851 + source = "registry+https://github.com/rust-lang/crates.io-index" 852 + checksum = "84080e799e54cff944f4b4a4b0e71630b0e0443b25b985175c7dddc1a859b749" 853 + dependencies = [ 854 + "anstream", 855 + "anstyle", 856 + "bitflags 1.3.2", 857 + "clap_lex 0.4.1", 858 + "strsim", 859 + ] 860 + 861 + [[package]] 862 + name = "clap_derive" 863 + version = "3.2.18" 864 + source = "registry+https://github.com/rust-lang/crates.io-index" 865 + checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" 866 + dependencies = [ 867 + "heck", 868 + "proc-macro-error", 869 + "proc-macro2", 870 + "quote", 871 + "syn 1.0.109", 872 + ] 873 + 874 + [[package]] 875 + name = "clap_derive" 876 + version = "4.2.0" 877 + source = "registry+https://github.com/rust-lang/crates.io-index" 878 + checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" 879 + dependencies = [ 880 + "heck", 881 + "proc-macro2", 882 + "quote", 883 + "syn 2.0.15", 884 + ] 885 + 886 + [[package]] 887 + name = "clap_lex" 888 + version = "0.2.4" 889 + source = "registry+https://github.com/rust-lang/crates.io-index" 890 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 891 + dependencies = [ 892 + "os_str_bytes", 893 + ] 894 + 895 + [[package]] 896 + name = "clap_lex" 897 + version = "0.4.1" 898 + source = "registry+https://github.com/rust-lang/crates.io-index" 899 + checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 900 + 901 + [[package]] 902 + name = "cmake" 903 + version = "0.1.50" 904 + source = "registry+https://github.com/rust-lang/crates.io-index" 905 + checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 906 + dependencies = [ 907 + "cc", 908 + ] 909 + 910 + [[package]] 911 + name = "codespan-reporting" 912 + version = "0.11.1" 913 + source = "registry+https://github.com/rust-lang/crates.io-index" 914 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 915 + dependencies = [ 916 + "termcolor", 917 + "unicode-width", 918 + ] 919 + 920 + [[package]] 921 + name = "color_quant" 922 + version = "1.1.0" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 925 + 926 + [[package]] 927 + name = "colorchoice" 928 + version = "1.0.0" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 931 + 932 + [[package]] 933 + name = "concurrent-queue" 934 + version = "2.2.0" 935 + source = "registry+https://github.com/rust-lang/crates.io-index" 936 + checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 937 + dependencies = [ 938 + "crossbeam-utils", 939 + ] 940 + 941 + [[package]] 942 + name = "console_error_panic_hook" 943 + version = "0.1.7" 944 + source = "registry+https://github.com/rust-lang/crates.io-index" 945 + checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 946 + dependencies = [ 947 + "cfg-if", 948 + "wasm-bindgen", 949 + ] 950 + 951 + [[package]] 952 + name = "const-oid" 953 + version = "0.7.1" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" 956 + 957 + [[package]] 958 + name = "const_format" 959 + version = "0.2.30" 960 + source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "7309d9b4d3d2c0641e018d449232f2e28f1b22933c137f157d3dbc14228b8c0e" 962 + dependencies = [ 963 + "const_format_proc_macros", 964 + ] 965 + 966 + [[package]] 967 + name = "const_format_proc_macros" 968 + version = "0.2.29" 969 + source = "registry+https://github.com/rust-lang/crates.io-index" 970 + checksum = "d897f47bf7270cf70d370f8f98c1abb6d2d4cf60a6845d30e05bfb90c6568650" 971 + dependencies = [ 972 + "proc-macro2", 973 + "quote", 974 + "unicode-xid", 975 + ] 976 + 977 + [[package]] 978 + name = "constant_time_eq" 979 + version = "0.2.5" 980 + source = "registry+https://github.com/rust-lang/crates.io-index" 981 + checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b" 982 + 983 + [[package]] 984 + name = "convert_case" 985 + version = "0.6.0" 986 + source = "registry+https://github.com/rust-lang/crates.io-index" 987 + checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 988 + dependencies = [ 989 + "unicode-segmentation", 990 + ] 991 + 992 + [[package]] 993 + name = "core-foundation" 994 + version = "0.9.3" 995 + source = "registry+https://github.com/rust-lang/crates.io-index" 996 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 997 + dependencies = [ 998 + "core-foundation-sys", 999 + "libc", 1000 + ] 1001 + 1002 + [[package]] 1003 + name = "core-foundation-sys" 1004 + version = "0.8.4" 1005 + source = "registry+https://github.com/rust-lang/crates.io-index" 1006 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1007 + 1008 + [[package]] 1009 + name = "cpp_demangle" 1010 + version = "0.4.1" 1011 + source = "registry+https://github.com/rust-lang/crates.io-index" 1012 + checksum = "2c76f98bdfc7f66172e6c7065f981ebb576ffc903fe4c0561d9f0c2509226dc6" 1013 + dependencies = [ 1014 + "cfg-if", 1015 + ] 1016 + 1017 + [[package]] 1018 + name = "cpufeatures" 1019 + version = "0.2.7" 1020 + source = "registry+https://github.com/rust-lang/crates.io-index" 1021 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 1022 + dependencies = [ 1023 + "libc", 1024 + ] 1025 + 1026 + [[package]] 1027 + name = "crc32fast" 1028 + version = "1.3.2" 1029 + source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1031 + dependencies = [ 1032 + "cfg-if", 1033 + ] 1034 + 1035 + [[package]] 1036 + name = "criterion" 1037 + version = "0.4.0" 1038 + source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 1040 + dependencies = [ 1041 + "anes", 1042 + "atty", 1043 + "cast", 1044 + "ciborium", 1045 + "clap 3.2.23", 1046 + "criterion-plot", 1047 + "futures", 1048 + "itertools", 1049 + "lazy_static", 1050 + "num-traits", 1051 + "oorandom", 1052 + "plotters", 1053 + "rayon", 1054 + "regex", 1055 + "serde", 1056 + "serde_derive", 1057 + "serde_json", 1058 + "tinytemplate", 1059 + "tokio", 1060 + "walkdir", 1061 + ] 1062 + 1063 + [[package]] 1064 + name = "criterion-plot" 1065 + version = "0.5.0" 1066 + source = "registry+https://github.com/rust-lang/crates.io-index" 1067 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1068 + dependencies = [ 1069 + "cast", 1070 + "itertools", 1071 + ] 1072 + 1073 + [[package]] 1074 + name = "crossbeam-channel" 1075 + version = "0.5.8" 1076 + source = "registry+https://github.com/rust-lang/crates.io-index" 1077 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1078 + dependencies = [ 1079 + "cfg-if", 1080 + "crossbeam-utils", 1081 + ] 1082 + 1083 + [[package]] 1084 + name = "crossbeam-deque" 1085 + version = "0.8.3" 1086 + source = "registry+https://github.com/rust-lang/crates.io-index" 1087 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1088 + dependencies = [ 1089 + "cfg-if", 1090 + "crossbeam-epoch", 1091 + "crossbeam-utils", 1092 + ] 1093 + 1094 + [[package]] 1095 + name = "crossbeam-epoch" 1096 + version = "0.9.14" 1097 + source = "registry+https://github.com/rust-lang/crates.io-index" 1098 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 1099 + dependencies = [ 1100 + "autocfg", 1101 + "cfg-if", 1102 + "crossbeam-utils", 1103 + "memoffset", 1104 + "scopeguard", 1105 + ] 1106 + 1107 + [[package]] 1108 + name = "crossbeam-utils" 1109 + version = "0.8.15" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 1112 + dependencies = [ 1113 + "cfg-if", 1114 + ] 1115 + 1116 + [[package]] 1117 + name = "crypto-common" 1118 + version = "0.1.6" 1119 + source = "registry+https://github.com/rust-lang/crates.io-index" 1120 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1121 + dependencies = [ 1122 + "generic-array", 1123 + "typenum", 1124 + ] 1125 + 1126 + [[package]] 1127 + name = "ctor" 1128 + version = "0.1.26" 1129 + source = "registry+https://github.com/rust-lang/crates.io-index" 1130 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1131 + dependencies = [ 1132 + "quote", 1133 + "syn 1.0.109", 1134 + ] 1135 + 1136 + [[package]] 1137 + name = "ctor" 1138 + version = "0.2.0" 1139 + source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "dd4056f63fce3b82d852c3da92b08ea59959890813a7f4ce9c0ff85b10cf301b" 1141 + dependencies = [ 1142 + "quote", 1143 + "syn 2.0.15", 1144 + ] 1145 + 1146 + [[package]] 1147 + name = "ctr" 1148 + version = "0.9.2" 1149 + source = "registry+https://github.com/rust-lang/crates.io-index" 1150 + checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1151 + dependencies = [ 1152 + "cipher 0.4.4", 1153 + ] 1154 + 1155 + [[package]] 1156 + name = "curve25519-dalek" 1157 + version = "3.2.1" 1158 + source = "registry+https://github.com/rust-lang/crates.io-index" 1159 + checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0" 1160 + dependencies = [ 1161 + "byteorder", 1162 + "digest 0.9.0", 1163 + "rand_core 0.5.1", 1164 + "serde", 1165 + "subtle", 1166 + "zeroize", 1167 + ] 1168 + 1169 + [[package]] 1170 + name = "cxx" 1171 + version = "1.0.94" 1172 + source = "registry+https://github.com/rust-lang/crates.io-index" 1173 + checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93" 1174 + dependencies = [ 1175 + "cc", 1176 + "cxxbridge-flags", 1177 + "cxxbridge-macro", 1178 + "link-cplusplus", 1179 + ] 1180 + 1181 + [[package]] 1182 + name = "cxx-build" 1183 + version = "1.0.94" 1184 + source = "registry+https://github.com/rust-lang/crates.io-index" 1185 + checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b" 1186 + dependencies = [ 1187 + "cc", 1188 + "codespan-reporting", 1189 + "once_cell", 1190 + "proc-macro2", 1191 + "quote", 1192 + "scratch", 1193 + "syn 2.0.15", 1194 + ] 1195 + 1196 + [[package]] 1197 + name = "cxxbridge-flags" 1198 + version = "1.0.94" 1199 + source = "registry+https://github.com/rust-lang/crates.io-index" 1200 + checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb" 1201 + 1202 + [[package]] 1203 + name = "cxxbridge-macro" 1204 + version = "1.0.94" 1205 + source = "registry+https://github.com/rust-lang/crates.io-index" 1206 + checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" 1207 + dependencies = [ 1208 + "proc-macro2", 1209 + "quote", 1210 + "syn 2.0.15", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "dashmap" 1215 + version = "5.4.0" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 1218 + dependencies = [ 1219 + "cfg-if", 1220 + "hashbrown", 1221 + "lock_api", 1222 + "once_cell", 1223 + "parking_lot_core 0.9.7", 1224 + ] 1225 + 1226 + [[package]] 1227 + name = "deadpool" 1228 + version = "0.9.5" 1229 + source = "registry+https://github.com/rust-lang/crates.io-index" 1230 + checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" 1231 + dependencies = [ 1232 + "async-trait", 1233 + "deadpool-runtime", 1234 + "num_cpus", 1235 + "retain_mut", 1236 + "tokio", 1237 + ] 1238 + 1239 + [[package]] 1240 + name = "deadpool-runtime" 1241 + version = "0.1.2" 1242 + source = "registry+https://github.com/rust-lang/crates.io-index" 1243 + checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" 1244 + dependencies = [ 1245 + "tokio", 1246 + ] 1247 + 1248 + [[package]] 1249 + name = "deadpool-sqlite" 1250 + version = "0.5.0" 1251 + source = "registry+https://github.com/rust-lang/crates.io-index" 1252 + checksum = "e026821eaacbce25ff0d54405e4421d71656fcae3e4a9323461280fcda6dbc7d" 1253 + dependencies = [ 1254 + "deadpool", 1255 + "deadpool-sync", 1256 + "rusqlite", 1257 + ] 1258 + 1259 + [[package]] 1260 + name = "deadpool-sync" 1261 + version = "0.1.0" 1262 + source = "registry+https://github.com/rust-lang/crates.io-index" 1263 + checksum = "b1bea344b64b32537fde6e0f0179b1ede34d435636719dd40fe6a0f28218a61c" 1264 + dependencies = [ 1265 + "deadpool", 1266 + ] 1267 + 1268 + [[package]] 1269 + name = "debugid" 1270 + version = "0.8.0" 1271 + source = "registry+https://github.com/rust-lang/crates.io-index" 1272 + checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 1273 + dependencies = [ 1274 + "uuid", 1275 + ] 1276 + 1277 + [[package]] 1278 + name = "deflate" 1279 + version = "0.8.6" 1280 + source = "registry+https://github.com/rust-lang/crates.io-index" 1281 + checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" 1282 + dependencies = [ 1283 + "adler32", 1284 + "byteorder", 1285 + ] 1286 + 1287 + [[package]] 1288 + name = "der" 1289 + version = "0.5.1" 1290 + source = "registry+https://github.com/rust-lang/crates.io-index" 1291 + checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" 1292 + dependencies = [ 1293 + "const-oid", 1294 + ] 1295 + 1296 + [[package]] 1297 + name = "digest" 1298 + version = "0.9.0" 1299 + source = "registry+https://github.com/rust-lang/crates.io-index" 1300 + checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 1301 + dependencies = [ 1302 + "generic-array", 1303 + ] 1304 + 1305 + [[package]] 1306 + name = "digest" 1307 + version = "0.10.6" 1308 + source = "registry+https://github.com/rust-lang/crates.io-index" 1309 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1310 + dependencies = [ 1311 + "block-buffer 0.10.4", 1312 + "crypto-common", 1313 + "subtle", 1314 + ] 1315 + 1316 + [[package]] 1317 + name = "dirs" 1318 + version = "4.0.0" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1321 + dependencies = [ 1322 + "dirs-sys", 1323 + ] 1324 + 1325 + [[package]] 1326 + name = "dirs-sys" 1327 + version = "0.3.7" 1328 + source = "registry+https://github.com/rust-lang/crates.io-index" 1329 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1330 + dependencies = [ 1331 + "libc", 1332 + "redox_users", 1333 + "winapi", 1334 + ] 1335 + 1336 + [[package]] 1337 + name = "displaydoc" 1338 + version = "0.2.3" 1339 + source = "registry+https://github.com/rust-lang/crates.io-index" 1340 + checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 1341 + dependencies = [ 1342 + "proc-macro2", 1343 + "quote", 1344 + "syn 1.0.109", 1345 + ] 1346 + 1347 + [[package]] 1348 + name = "ed25519" 1349 + version = "1.5.3" 1350 + source = "registry+https://github.com/rust-lang/crates.io-index" 1351 + checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" 1352 + dependencies = [ 1353 + "serde", 1354 + "signature", 1355 + ] 1356 + 1357 + [[package]] 1358 + name = "ed25519-dalek" 1359 + version = "1.0.1" 1360 + source = "registry+https://github.com/rust-lang/crates.io-index" 1361 + checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" 1362 + dependencies = [ 1363 + "curve25519-dalek", 1364 + "ed25519", 1365 + "rand 0.7.3", 1366 + "serde", 1367 + "serde_bytes", 1368 + "sha2 0.9.9", 1369 + "zeroize", 1370 + ] 1371 + 1372 + [[package]] 1373 + name = "either" 1374 + version = "1.8.1" 1375 + source = "registry+https://github.com/rust-lang/crates.io-index" 1376 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1377 + 1378 + [[package]] 1379 + name = "encoding_rs" 1380 + version = "0.8.32" 1381 + source = "registry+https://github.com/rust-lang/crates.io-index" 1382 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1383 + dependencies = [ 1384 + "cfg-if", 1385 + ] 1386 + 1387 + [[package]] 1388 + name = "errno" 1389 + version = "0.3.1" 1390 + source = "registry+https://github.com/rust-lang/crates.io-index" 1391 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1392 + dependencies = [ 1393 + "errno-dragonfly", 1394 + "libc", 1395 + "windows-sys 0.48.0", 1396 + ] 1397 + 1398 + [[package]] 1399 + name = "errno-dragonfly" 1400 + version = "0.1.2" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1403 + dependencies = [ 1404 + "cc", 1405 + "libc", 1406 + ] 1407 + 1408 + [[package]] 1409 + name = "event-listener" 1410 + version = "2.5.3" 1411 + source = "registry+https://github.com/rust-lang/crates.io-index" 1412 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1413 + 1414 + [[package]] 1415 + name = "example-appservice-autojoin" 1416 + version = "0.1.0" 1417 + dependencies = [ 1418 + "anyhow", 1419 + "matrix-sdk-appservice", 1420 + "tokio", 1421 + "tracing", 1422 + "tracing-subscriber", 1423 + ] 1424 + 1425 + [[package]] 1426 + name = "example-autojoin" 1427 + version = "0.1.0" 1428 + dependencies = [ 1429 + "anyhow", 1430 + "matrix-sdk", 1431 + "tokio", 1432 + "tracing-subscriber", 1433 + ] 1434 + 1435 + [[package]] 1436 + name = "example-command-bot" 1437 + version = "0.1.0" 1438 + dependencies = [ 1439 + "anyhow", 1440 + "matrix-sdk", 1441 + "tokio", 1442 + "tracing-subscriber", 1443 + "url", 1444 + ] 1445 + 1446 + [[package]] 1447 + name = "example-cross-signing-bootstrap" 1448 + version = "0.1.0" 1449 + dependencies = [ 1450 + "anyhow", 1451 + "matrix-sdk", 1452 + "tokio", 1453 + "tracing-subscriber", 1454 + "url", 1455 + ] 1456 + 1457 + [[package]] 1458 + name = "example-custom-events" 1459 + version = "0.1.0" 1460 + dependencies = [ 1461 + "anyhow", 1462 + "dirs", 1463 + "matrix-sdk", 1464 + "serde", 1465 + "tokio", 1466 + "tracing-subscriber", 1467 + ] 1468 + 1469 + [[package]] 1470 + name = "example-emoji-verification" 1471 + version = "0.1.0" 1472 + dependencies = [ 1473 + "anyhow", 1474 + "clap 4.2.4", 1475 + "futures", 1476 + "matrix-sdk", 1477 + "tokio", 1478 + "tracing-subscriber", 1479 + "url", 1480 + ] 1481 + 1482 + [[package]] 1483 + name = "example-get-profiles" 1484 + version = "0.1.0" 1485 + dependencies = [ 1486 + "anyhow", 1487 + "matrix-sdk", 1488 + "tokio", 1489 + "tracing-subscriber", 1490 + "url", 1491 + ] 1492 + 1493 + [[package]] 1494 + name = "example-getting-started" 1495 + version = "0.1.0" 1496 + dependencies = [ 1497 + "anyhow", 1498 + "dirs", 1499 + "matrix-sdk", 1500 + "tokio", 1501 + "tracing-subscriber", 1502 + ] 1503 + 1504 + [[package]] 1505 + name = "example-image-bot" 1506 + version = "0.1.0" 1507 + dependencies = [ 1508 + "anyhow", 1509 + "matrix-sdk", 1510 + "mime", 1511 + "tokio", 1512 + "tracing-subscriber", 1513 + "url", 1514 + ] 1515 + 1516 + [[package]] 1517 + name = "example-login" 1518 + version = "0.1.0" 1519 + dependencies = [ 1520 + "anyhow", 1521 + "matrix-sdk", 1522 + "tokio", 1523 + "tracing-subscriber", 1524 + "url", 1525 + ] 1526 + 1527 + [[package]] 1528 + name = "example-persist-session" 1529 + version = "0.1.0" 1530 + dependencies = [ 1531 + "anyhow", 1532 + "dirs", 1533 + "matrix-sdk", 1534 + "rand 0.8.5", 1535 + "serde", 1536 + "serde_json", 1537 + "tokio", 1538 + "tracing-subscriber", 1539 + ] 1540 + 1541 + [[package]] 1542 + name = "example-timeline" 1543 + version = "0.1.0" 1544 + dependencies = [ 1545 + "anyhow", 1546 + "clap 4.2.4", 1547 + "futures", 1548 + "matrix-sdk", 1549 + "tokio", 1550 + "tracing-subscriber", 1551 + "url", 1552 + ] 1553 + 1554 + [[package]] 1555 + name = "extension-trait" 1556 + version = "1.0.2" 1557 + source = "registry+https://github.com/rust-lang/crates.io-index" 1558 + checksum = "dd65f1b59dd22d680c7a626cc4a000c1e03d241c51c3e034d2bc9f1e90734f9b" 1559 + dependencies = [ 1560 + "proc-macro2", 1561 + "quote", 1562 + "syn 2.0.15", 1563 + ] 1564 + 1565 + [[package]] 1566 + name = "eyeball" 1567 + version = "0.6.0" 1568 + source = "registry+https://github.com/rust-lang/crates.io-index" 1569 + checksum = "1015c5225a75e0ab3d325e934456d92fdd57f440e8c81d09018878d4f651cd46" 1570 + dependencies = [ 1571 + "futures-core", 1572 + "readlock", 1573 + ] 1574 + 1575 + [[package]] 1576 + name = "eyeball-im" 1577 + version = "0.2.0" 1578 + source = "registry+https://github.com/rust-lang/crates.io-index" 1579 + checksum = "29e6dff0ac9894dcc183064377dfeb4137bcffa9f9ec3dbc10f8e7fba34c0ac7" 1580 + dependencies = [ 1581 + "futures-core", 1582 + "imbl", 1583 + "tokio", 1584 + "tokio-stream", 1585 + ] 1586 + 1587 + [[package]] 1588 + name = "eyre" 1589 + version = "0.6.8" 1590 + source = "registry+https://github.com/rust-lang/crates.io-index" 1591 + checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" 1592 + dependencies = [ 1593 + "indenter", 1594 + "once_cell", 1595 + ] 1596 + 1597 + [[package]] 1598 + name = "fallible-iterator" 1599 + version = "0.2.0" 1600 + source = "registry+https://github.com/rust-lang/crates.io-index" 1601 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1602 + 1603 + [[package]] 1604 + name = "fallible-streaming-iterator" 1605 + version = "0.1.9" 1606 + source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1608 + 1609 + [[package]] 1610 + name = "fastrand" 1611 + version = "1.9.0" 1612 + source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1614 + dependencies = [ 1615 + "instant", 1616 + ] 1617 + 1618 + [[package]] 1619 + name = "fdeflate" 1620 + version = "0.3.0" 1621 + source = "registry+https://github.com/rust-lang/crates.io-index" 1622 + checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1623 + dependencies = [ 1624 + "simd-adler32", 1625 + ] 1626 + 1627 + [[package]] 1628 + name = "findshlibs" 1629 + version = "0.10.2" 1630 + source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 1632 + dependencies = [ 1633 + "cc", 1634 + "lazy_static", 1635 + "libc", 1636 + "winapi", 1637 + ] 1638 + 1639 + [[package]] 1640 + name = "fixedbitset" 1641 + version = "0.4.2" 1642 + source = "registry+https://github.com/rust-lang/crates.io-index" 1643 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1644 + 1645 + [[package]] 1646 + name = "flate2" 1647 + version = "1.0.25" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1650 + dependencies = [ 1651 + "crc32fast", 1652 + "miniz_oxide 0.6.2", 1653 + ] 1654 + 1655 + [[package]] 1656 + name = "fnv" 1657 + version = "1.0.7" 1658 + source = "registry+https://github.com/rust-lang/crates.io-index" 1659 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1660 + 1661 + [[package]] 1662 + name = "foreign-types" 1663 + version = "0.3.2" 1664 + source = "registry+https://github.com/rust-lang/crates.io-index" 1665 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1666 + dependencies = [ 1667 + "foreign-types-shared", 1668 + ] 1669 + 1670 + [[package]] 1671 + name = "foreign-types-shared" 1672 + version = "0.1.1" 1673 + source = "registry+https://github.com/rust-lang/crates.io-index" 1674 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1675 + 1676 + [[package]] 1677 + name = "form_urlencoded" 1678 + version = "1.1.0" 1679 + source = "registry+https://github.com/rust-lang/crates.io-index" 1680 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1681 + dependencies = [ 1682 + "percent-encoding", 1683 + ] 1684 + 1685 + [[package]] 1686 + name = "fs-err" 1687 + version = "2.9.0" 1688 + source = "registry+https://github.com/rust-lang/crates.io-index" 1689 + checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541" 1690 + 1691 + [[package]] 1692 + name = "fs2" 1693 + version = "0.4.3" 1694 + source = "registry+https://github.com/rust-lang/crates.io-index" 1695 + checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 1696 + dependencies = [ 1697 + "libc", 1698 + "winapi", 1699 + ] 1700 + 1701 + [[package]] 1702 + name = "fs_extra" 1703 + version = "1.3.0" 1704 + source = "registry+https://github.com/rust-lang/crates.io-index" 1705 + checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 1706 + 1707 + [[package]] 1708 + name = "futf" 1709 + version = "0.1.5" 1710 + source = "registry+https://github.com/rust-lang/crates.io-index" 1711 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1712 + dependencies = [ 1713 + "mac", 1714 + "new_debug_unreachable", 1715 + ] 1716 + 1717 + [[package]] 1718 + name = "futures" 1719 + version = "0.3.28" 1720 + source = "registry+https://github.com/rust-lang/crates.io-index" 1721 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1722 + dependencies = [ 1723 + "futures-channel", 1724 + "futures-core", 1725 + "futures-executor", 1726 + "futures-io", 1727 + "futures-sink", 1728 + "futures-task", 1729 + "futures-util", 1730 + ] 1731 + 1732 + [[package]] 1733 + name = "futures-channel" 1734 + version = "0.3.28" 1735 + source = "registry+https://github.com/rust-lang/crates.io-index" 1736 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1737 + dependencies = [ 1738 + "futures-core", 1739 + "futures-sink", 1740 + ] 1741 + 1742 + [[package]] 1743 + name = "futures-core" 1744 + version = "0.3.28" 1745 + source = "registry+https://github.com/rust-lang/crates.io-index" 1746 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1747 + 1748 + [[package]] 1749 + name = "futures-executor" 1750 + version = "0.3.28" 1751 + source = "registry+https://github.com/rust-lang/crates.io-index" 1752 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1753 + dependencies = [ 1754 + "futures-core", 1755 + "futures-task", 1756 + "futures-util", 1757 + ] 1758 + 1759 + [[package]] 1760 + name = "futures-io" 1761 + version = "0.3.28" 1762 + source = "registry+https://github.com/rust-lang/crates.io-index" 1763 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1764 + 1765 + [[package]] 1766 + name = "futures-lite" 1767 + version = "1.13.0" 1768 + source = "registry+https://github.com/rust-lang/crates.io-index" 1769 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1770 + dependencies = [ 1771 + "fastrand", 1772 + "futures-core", 1773 + "futures-io", 1774 + "memchr", 1775 + "parking", 1776 + "pin-project-lite", 1777 + "waker-fn", 1778 + ] 1779 + 1780 + [[package]] 1781 + name = "futures-macro" 1782 + version = "0.3.28" 1783 + source = "registry+https://github.com/rust-lang/crates.io-index" 1784 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1785 + dependencies = [ 1786 + "proc-macro2", 1787 + "quote", 1788 + "syn 2.0.15", 1789 + ] 1790 + 1791 + [[package]] 1792 + name = "futures-sink" 1793 + version = "0.3.28" 1794 + source = "registry+https://github.com/rust-lang/crates.io-index" 1795 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1796 + 1797 + [[package]] 1798 + name = "futures-task" 1799 + version = "0.3.28" 1800 + source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1802 + 1803 + [[package]] 1804 + name = "futures-timer" 1805 + version = "3.0.2" 1806 + source = "registry+https://github.com/rust-lang/crates.io-index" 1807 + checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 1808 + 1809 + [[package]] 1810 + name = "futures-util" 1811 + version = "0.3.28" 1812 + source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1814 + dependencies = [ 1815 + "futures-channel", 1816 + "futures-core", 1817 + "futures-io", 1818 + "futures-macro", 1819 + "futures-sink", 1820 + "futures-task", 1821 + "memchr", 1822 + "pin-project-lite", 1823 + "pin-utils", 1824 + "slab", 1825 + ] 1826 + 1827 + [[package]] 1828 + name = "fxhash" 1829 + version = "0.2.1" 1830 + source = "registry+https://github.com/rust-lang/crates.io-index" 1831 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1832 + dependencies = [ 1833 + "byteorder", 1834 + ] 1835 + 1836 + [[package]] 1837 + name = "generic-array" 1838 + version = "0.14.7" 1839 + source = "registry+https://github.com/rust-lang/crates.io-index" 1840 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1841 + dependencies = [ 1842 + "typenum", 1843 + "version_check", 1844 + ] 1845 + 1846 + [[package]] 1847 + name = "getrandom" 1848 + version = "0.1.16" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1851 + dependencies = [ 1852 + "cfg-if", 1853 + "js-sys", 1854 + "libc", 1855 + "wasi 0.9.0+wasi-snapshot-preview1", 1856 + "wasm-bindgen", 1857 + ] 1858 + 1859 + [[package]] 1860 + name = "getrandom" 1861 + version = "0.2.9" 1862 + source = "registry+https://github.com/rust-lang/crates.io-index" 1863 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 1864 + dependencies = [ 1865 + "cfg-if", 1866 + "js-sys", 1867 + "libc", 1868 + "wasi 0.11.0+wasi-snapshot-preview1", 1869 + "wasm-bindgen", 1870 + ] 1871 + 1872 + [[package]] 1873 + name = "gif" 1874 + version = "0.11.4" 1875 + source = "registry+https://github.com/rust-lang/crates.io-index" 1876 + checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06" 1877 + dependencies = [ 1878 + "color_quant", 1879 + "weezl", 1880 + ] 1881 + 1882 + [[package]] 1883 + name = "gif" 1884 + version = "0.12.0" 1885 + source = "registry+https://github.com/rust-lang/crates.io-index" 1886 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 1887 + dependencies = [ 1888 + "color_quant", 1889 + "weezl", 1890 + ] 1891 + 1892 + [[package]] 1893 + name = "gimli" 1894 + version = "0.27.2" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 1897 + 1898 + [[package]] 1899 + name = "glob" 1900 + version = "0.3.1" 1901 + source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1903 + 1904 + [[package]] 1905 + name = "gloo-timers" 1906 + version = "0.2.6" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1909 + dependencies = [ 1910 + "futures-channel", 1911 + "futures-core", 1912 + "js-sys", 1913 + "wasm-bindgen", 1914 + ] 1915 + 1916 + [[package]] 1917 + name = "gloo-utils" 1918 + version = "0.1.6" 1919 + source = "registry+https://github.com/rust-lang/crates.io-index" 1920 + checksum = "a8e8fc851e9c7b9852508bc6e3f690f452f474417e8545ec9857b7f7377036b5" 1921 + dependencies = [ 1922 + "js-sys", 1923 + "serde", 1924 + "serde_json", 1925 + "wasm-bindgen", 1926 + "web-sys", 1927 + ] 1928 + 1929 + [[package]] 1930 + name = "goblin" 1931 + version = "0.6.1" 1932 + source = "registry+https://github.com/rust-lang/crates.io-index" 1933 + checksum = "0d6b4de4a8eb6c46a8c77e1d3be942cb9a8bf073c22374578e5ba4b08ed0ff68" 1934 + dependencies = [ 1935 + "log", 1936 + "plain", 1937 + "scroll", 1938 + ] 1939 + 1940 + [[package]] 1941 + name = "h2" 1942 + version = "0.3.18" 1943 + source = "registry+https://github.com/rust-lang/crates.io-index" 1944 + checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" 1945 + dependencies = [ 1946 + "bytes", 1947 + "fnv", 1948 + "futures-core", 1949 + "futures-sink", 1950 + "futures-util", 1951 + "http", 1952 + "indexmap", 1953 + "slab", 1954 + "tokio", 1955 + "tokio-util", 1956 + "tracing", 1957 + ] 1958 + 1959 + [[package]] 1960 + name = "half" 1961 + version = "1.8.2" 1962 + source = "registry+https://github.com/rust-lang/crates.io-index" 1963 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1964 + 1965 + [[package]] 1966 + name = "hashbrown" 1967 + version = "0.12.3" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1970 + dependencies = [ 1971 + "ahash 0.7.6", 1972 + ] 1973 + 1974 + [[package]] 1975 + name = "hashlink" 1976 + version = "0.8.1" 1977 + source = "registry+https://github.com/rust-lang/crates.io-index" 1978 + checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" 1979 + dependencies = [ 1980 + "hashbrown", 1981 + ] 1982 + 1983 + [[package]] 1984 + name = "heck" 1985 + version = "0.4.1" 1986 + source = "registry+https://github.com/rust-lang/crates.io-index" 1987 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1988 + 1989 + [[package]] 1990 + name = "hermit-abi" 1991 + version = "0.1.19" 1992 + source = "registry+https://github.com/rust-lang/crates.io-index" 1993 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1994 + dependencies = [ 1995 + "libc", 1996 + ] 1997 + 1998 + [[package]] 1999 + name = "hermit-abi" 2000 + version = "0.2.6" 2001 + source = "registry+https://github.com/rust-lang/crates.io-index" 2002 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2003 + dependencies = [ 2004 + "libc", 2005 + ] 2006 + 2007 + [[package]] 2008 + name = "hermit-abi" 2009 + version = "0.3.1" 2010 + source = "registry+https://github.com/rust-lang/crates.io-index" 2011 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 2012 + 2013 + [[package]] 2014 + name = "hkdf" 2015 + version = "0.12.3" 2016 + source = "registry+https://github.com/rust-lang/crates.io-index" 2017 + checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 2018 + dependencies = [ 2019 + "hmac", 2020 + ] 2021 + 2022 + [[package]] 2023 + name = "hmac" 2024 + version = "0.12.1" 2025 + source = "registry+https://github.com/rust-lang/crates.io-index" 2026 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2027 + dependencies = [ 2028 + "digest 0.10.6", 2029 + ] 2030 + 2031 + [[package]] 2032 + name = "html5ever" 2033 + version = "0.26.0" 2034 + source = "registry+https://github.com/rust-lang/crates.io-index" 2035 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 2036 + dependencies = [ 2037 + "log", 2038 + "mac", 2039 + "markup5ever", 2040 + "proc-macro2", 2041 + "quote", 2042 + "syn 1.0.109", 2043 + ] 2044 + 2045 + [[package]] 2046 + name = "http" 2047 + version = "0.2.9" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2050 + dependencies = [ 2051 + "bytes", 2052 + "fnv", 2053 + "itoa", 2054 + ] 2055 + 2056 + [[package]] 2057 + name = "http-body" 2058 + version = "0.4.5" 2059 + source = "registry+https://github.com/rust-lang/crates.io-index" 2060 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2061 + dependencies = [ 2062 + "bytes", 2063 + "http", 2064 + "pin-project-lite", 2065 + ] 2066 + 2067 + [[package]] 2068 + name = "http-types" 2069 + version = "2.12.0" 2070 + source = "registry+https://github.com/rust-lang/crates.io-index" 2071 + checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 2072 + dependencies = [ 2073 + "anyhow", 2074 + "async-channel", 2075 + "base64 0.13.1", 2076 + "futures-lite", 2077 + "http", 2078 + "infer", 2079 + "pin-project-lite", 2080 + "rand 0.7.3", 2081 + "serde", 2082 + "serde_json", 2083 + "serde_qs", 2084 + "serde_urlencoded", 2085 + "url", 2086 + ] 2087 + 2088 + [[package]] 2089 + name = "httparse" 2090 + version = "1.8.0" 2091 + source = "registry+https://github.com/rust-lang/crates.io-index" 2092 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2093 + 2094 + [[package]] 2095 + name = "httpdate" 2096 + version = "1.0.2" 2097 + source = "registry+https://github.com/rust-lang/crates.io-index" 2098 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2099 + 2100 + [[package]] 2101 + name = "hyper" 2102 + version = "0.14.26" 2103 + source = "registry+https://github.com/rust-lang/crates.io-index" 2104 + checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" 2105 + dependencies = [ 2106 + "bytes", 2107 + "futures-channel", 2108 + "futures-core", 2109 + "futures-util", 2110 + "h2", 2111 + "http", 2112 + "http-body", 2113 + "httparse", 2114 + "httpdate", 2115 + "itoa", 2116 + "pin-project-lite", 2117 + "socket2", 2118 + "tokio", 2119 + "tower-service", 2120 + "tracing", 2121 + "want", 2122 + ] 2123 + 2124 + [[package]] 2125 + name = "hyper-rustls" 2126 + version = "0.23.2" 2127 + source = "registry+https://github.com/rust-lang/crates.io-index" 2128 + checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 2129 + dependencies = [ 2130 + "http", 2131 + "hyper", 2132 + "rustls", 2133 + "tokio", 2134 + "tokio-rustls", 2135 + ] 2136 + 2137 + [[package]] 2138 + name = "hyper-timeout" 2139 + version = "0.4.1" 2140 + source = "registry+https://github.com/rust-lang/crates.io-index" 2141 + checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 2142 + dependencies = [ 2143 + "hyper", 2144 + "pin-project-lite", 2145 + "tokio", 2146 + "tokio-io-timeout", 2147 + ] 2148 + 2149 + [[package]] 2150 + name = "hyper-tls" 2151 + version = "0.5.0" 2152 + source = "registry+https://github.com/rust-lang/crates.io-index" 2153 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2154 + dependencies = [ 2155 + "bytes", 2156 + "hyper", 2157 + "native-tls", 2158 + "tokio", 2159 + "tokio-native-tls", 2160 + ] 2161 + 2162 + [[package]] 2163 + name = "iana-time-zone" 2164 + version = "0.1.56" 2165 + source = "registry+https://github.com/rust-lang/crates.io-index" 2166 + checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 2167 + dependencies = [ 2168 + "android_system_properties", 2169 + "core-foundation-sys", 2170 + "iana-time-zone-haiku", 2171 + "js-sys", 2172 + "wasm-bindgen", 2173 + "windows", 2174 + ] 2175 + 2176 + [[package]] 2177 + name = "iana-time-zone-haiku" 2178 + version = "0.1.1" 2179 + source = "registry+https://github.com/rust-lang/crates.io-index" 2180 + checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 2181 + dependencies = [ 2182 + "cxx", 2183 + "cxx-build", 2184 + ] 2185 + 2186 + [[package]] 2187 + name = "idna" 2188 + version = "0.3.0" 2189 + source = "registry+https://github.com/rust-lang/crates.io-index" 2190 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2191 + dependencies = [ 2192 + "unicode-bidi", 2193 + "unicode-normalization", 2194 + ] 2195 + 2196 + [[package]] 2197 + name = "image" 2198 + version = "0.23.14" 2199 + source = "registry+https://github.com/rust-lang/crates.io-index" 2200 + checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1" 2201 + dependencies = [ 2202 + "bytemuck", 2203 + "byteorder", 2204 + "color_quant", 2205 + "gif 0.11.4", 2206 + "jpeg-decoder 0.1.22", 2207 + "num-iter", 2208 + "num-rational 0.3.2", 2209 + "num-traits", 2210 + "png 0.16.8", 2211 + "scoped_threadpool", 2212 + "tiff 0.6.1", 2213 + ] 2214 + 2215 + [[package]] 2216 + name = "image" 2217 + version = "0.24.6" 2218 + source = "registry+https://github.com/rust-lang/crates.io-index" 2219 + checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 2220 + dependencies = [ 2221 + "bytemuck", 2222 + "byteorder", 2223 + "color_quant", 2224 + "gif 0.12.0", 2225 + "jpeg-decoder 0.3.0", 2226 + "num-rational 0.4.1", 2227 + "num-traits", 2228 + "png 0.17.8", 2229 + "tiff 0.8.1", 2230 + ] 2231 + 2232 + [[package]] 2233 + name = "imbl" 2234 + version = "2.0.0" 2235 + source = "registry+https://github.com/rust-lang/crates.io-index" 2236 + checksum = "c2806b69cd9f4664844027b64465eacb444c67c1db9c778e341adff0c25cdb0d" 2237 + dependencies = [ 2238 + "bitmaps", 2239 + "imbl-sized-chunks", 2240 + "rand_core 0.6.4", 2241 + "rand_xoshiro", 2242 + "serde", 2243 + "version_check", 2244 + ] 2245 + 2246 + [[package]] 2247 + name = "imbl-sized-chunks" 2248 + version = "0.1.1" 2249 + source = "registry+https://github.com/rust-lang/crates.io-index" 2250 + checksum = "e6957ea0b2541c5ca561d3ef4538044af79f8a05a1eb3a3b148936aaceaa1076" 2251 + dependencies = [ 2252 + "bitmaps", 2253 + ] 2254 + 2255 + [[package]] 2256 + name = "indenter" 2257 + version = "0.3.3" 2258 + source = "registry+https://github.com/rust-lang/crates.io-index" 2259 + checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 2260 + 2261 + [[package]] 2262 + name = "indexed_db_futures" 2263 + version = "0.3.0" 2264 + source = "registry+https://github.com/rust-lang/crates.io-index" 2265 + checksum = "bfbcff6ae46750b15cc594bfd277b188cbddcfdc1817848f97f03f26f8625b9e" 2266 + dependencies = [ 2267 + "cfg-if", 2268 + "js-sys", 2269 + "uuid", 2270 + "wasm-bindgen", 2271 + "wasm-bindgen-futures", 2272 + "web-sys", 2273 + ] 2274 + 2275 + [[package]] 2276 + name = "indexmap" 2277 + version = "1.9.3" 2278 + source = "registry+https://github.com/rust-lang/crates.io-index" 2279 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2280 + dependencies = [ 2281 + "autocfg", 2282 + "hashbrown", 2283 + "serde", 2284 + ] 2285 + 2286 + [[package]] 2287 + name = "indoc" 2288 + version = "1.0.9" 2289 + source = "registry+https://github.com/rust-lang/crates.io-index" 2290 + checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 2291 + 2292 + [[package]] 2293 + name = "infer" 2294 + version = "0.2.3" 2295 + source = "registry+https://github.com/rust-lang/crates.io-index" 2296 + checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 2297 + 2298 + [[package]] 2299 + name = "inferno" 2300 + version = "0.11.15" 2301 + source = "registry+https://github.com/rust-lang/crates.io-index" 2302 + checksum = "2fb7c1b80a1dfa604bb4a649a5c5aeef3d913f7c520cb42b40e534e8a61bcdfc" 2303 + dependencies = [ 2304 + "ahash 0.8.3", 2305 + "indexmap", 2306 + "is-terminal", 2307 + "itoa", 2308 + "log", 2309 + "num-format", 2310 + "once_cell", 2311 + "quick-xml", 2312 + "rgb", 2313 + "str_stack", 2314 + ] 2315 + 2316 + [[package]] 2317 + name = "inout" 2318 + version = "0.1.3" 2319 + source = "registry+https://github.com/rust-lang/crates.io-index" 2320 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2321 + dependencies = [ 2322 + "block-padding", 2323 + "generic-array", 2324 + ] 2325 + 2326 + [[package]] 2327 + name = "instant" 2328 + version = "0.1.12" 2329 + source = "registry+https://github.com/rust-lang/crates.io-index" 2330 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2331 + dependencies = [ 2332 + "cfg-if", 2333 + "js-sys", 2334 + "wasm-bindgen", 2335 + "web-sys", 2336 + ] 2337 + 2338 + [[package]] 2339 + name = "io-lifetimes" 2340 + version = "1.0.10" 2341 + source = "registry+https://github.com/rust-lang/crates.io-index" 2342 + checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 2343 + dependencies = [ 2344 + "hermit-abi 0.3.1", 2345 + "libc", 2346 + "windows-sys 0.48.0", 2347 + ] 2348 + 2349 + [[package]] 2350 + name = "ipnet" 2351 + version = "2.7.2" 2352 + source = "registry+https://github.com/rust-lang/crates.io-index" 2353 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 2354 + 2355 + [[package]] 2356 + name = "is-terminal" 2357 + version = "0.4.7" 2358 + source = "registry+https://github.com/rust-lang/crates.io-index" 2359 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 2360 + dependencies = [ 2361 + "hermit-abi 0.3.1", 2362 + "io-lifetimes", 2363 + "rustix", 2364 + "windows-sys 0.48.0", 2365 + ] 2366 + 2367 + [[package]] 2368 + name = "itertools" 2369 + version = "0.10.5" 2370 + source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2372 + dependencies = [ 2373 + "either", 2374 + ] 2375 + 2376 + [[package]] 2377 + name = "itoa" 2378 + version = "1.0.6" 2379 + source = "registry+https://github.com/rust-lang/crates.io-index" 2380 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 2381 + 2382 + [[package]] 2383 + name = "jpeg-decoder" 2384 + version = "0.1.22" 2385 + source = "registry+https://github.com/rust-lang/crates.io-index" 2386 + checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2" 2387 + dependencies = [ 2388 + "rayon", 2389 + ] 2390 + 2391 + [[package]] 2392 + name = "jpeg-decoder" 2393 + version = "0.3.0" 2394 + source = "registry+https://github.com/rust-lang/crates.io-index" 2395 + checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2396 + dependencies = [ 2397 + "rayon", 2398 + ] 2399 + 2400 + [[package]] 2401 + name = "js-sys" 2402 + version = "0.3.61" 2403 + source = "registry+https://github.com/rust-lang/crates.io-index" 2404 + checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 2405 + dependencies = [ 2406 + "wasm-bindgen", 2407 + ] 2408 + 2409 + [[package]] 2410 + name = "js_int" 2411 + version = "0.2.2" 2412 + source = "registry+https://github.com/rust-lang/crates.io-index" 2413 + checksum = "d937f95470b270ce8b8950207715d71aa8e153c0d44c6684d59397ed4949160a" 2414 + dependencies = [ 2415 + "serde", 2416 + ] 2417 + 2418 + [[package]] 2419 + name = "js_option" 2420 + version = "0.1.1" 2421 + source = "registry+https://github.com/rust-lang/crates.io-index" 2422 + checksum = "68421373957a1593a767013698dbf206e2b221eefe97a44d98d18672ff38423c" 2423 + dependencies = [ 2424 + "serde", 2425 + ] 2426 + 2427 + [[package]] 2428 + name = "konst" 2429 + version = "0.2.19" 2430 + source = "registry+https://github.com/rust-lang/crates.io-index" 2431 + checksum = "330f0e13e6483b8c34885f7e6c9f19b1a7bd449c673fbb948a51c99d66ef74f4" 2432 + dependencies = [ 2433 + "konst_macro_rules", 2434 + "konst_proc_macros", 2435 + ] 2436 + 2437 + [[package]] 2438 + name = "konst_macro_rules" 2439 + version = "0.2.19" 2440 + source = "registry+https://github.com/rust-lang/crates.io-index" 2441 + checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" 2442 + 2443 + [[package]] 2444 + name = "konst_proc_macros" 2445 + version = "0.2.11" 2446 + source = "registry+https://github.com/rust-lang/crates.io-index" 2447 + checksum = "984e109462d46ad18314f10e392c286c3d47bce203088a09012de1015b45b737" 2448 + 2449 + [[package]] 2450 + name = "kv-log-macro" 2451 + version = "1.0.7" 2452 + source = "registry+https://github.com/rust-lang/crates.io-index" 2453 + checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 2454 + dependencies = [ 2455 + "log", 2456 + ] 2457 + 2458 + [[package]] 2459 + name = "lazy_static" 2460 + version = "1.4.0" 2461 + source = "registry+https://github.com/rust-lang/crates.io-index" 2462 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2463 + 2464 + [[package]] 2465 + name = "libc" 2466 + version = "0.2.142" 2467 + source = "registry+https://github.com/rust-lang/crates.io-index" 2468 + checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" 2469 + 2470 + [[package]] 2471 + name = "libloading" 2472 + version = "0.7.4" 2473 + source = "registry+https://github.com/rust-lang/crates.io-index" 2474 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2475 + dependencies = [ 2476 + "cfg-if", 2477 + "winapi", 2478 + ] 2479 + 2480 + [[package]] 2481 + name = "libm" 2482 + version = "0.2.6" 2483 + source = "registry+https://github.com/rust-lang/crates.io-index" 2484 + checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 2485 + 2486 + [[package]] 2487 + name = "libsqlite3-sys" 2488 + version = "0.25.2" 2489 + source = "registry+https://github.com/rust-lang/crates.io-index" 2490 + checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 2491 + dependencies = [ 2492 + "cc", 2493 + "pkg-config", 2494 + "vcpkg", 2495 + ] 2496 + 2497 + [[package]] 2498 + name = "link-cplusplus" 2499 + version = "1.0.8" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 2502 + dependencies = [ 2503 + "cc", 2504 + ] 2505 + 2506 + [[package]] 2507 + name = "linux-raw-sys" 2508 + version = "0.3.4" 2509 + source = "registry+https://github.com/rust-lang/crates.io-index" 2510 + checksum = "36eb31c1778188ae1e64398743890d0877fef36d11521ac60406b42016e8c2cf" 2511 + 2512 + [[package]] 2513 + name = "lock_api" 2514 + version = "0.4.9" 2515 + source = "registry+https://github.com/rust-lang/crates.io-index" 2516 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2517 + dependencies = [ 2518 + "autocfg", 2519 + "scopeguard", 2520 + ] 2521 + 2522 + [[package]] 2523 + name = "log" 2524 + version = "0.4.17" 2525 + source = "registry+https://github.com/rust-lang/crates.io-index" 2526 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2527 + dependencies = [ 2528 + "cfg-if", 2529 + "value-bag", 2530 + ] 2531 + 2532 + [[package]] 2533 + name = "log-panics" 2534 + version = "2.1.0" 2535 + source = "registry+https://github.com/rust-lang/crates.io-index" 2536 + checksum = "68f9dd8546191c1850ecf67d22f5ff00a935b890d0e84713159a55495cc2ac5f" 2537 + dependencies = [ 2538 + "backtrace", 2539 + "log", 2540 + ] 2541 + 2542 + [[package]] 2543 + name = "mac" 2544 + version = "0.1.1" 2545 + source = "registry+https://github.com/rust-lang/crates.io-index" 2546 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2547 + 2548 + [[package]] 2549 + name = "maplit" 2550 + version = "1.0.2" 2551 + source = "registry+https://github.com/rust-lang/crates.io-index" 2552 + checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 2553 + 2554 + [[package]] 2555 + name = "markup5ever" 2556 + version = "0.11.0" 2557 + source = "registry+https://github.com/rust-lang/crates.io-index" 2558 + checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2559 + dependencies = [ 2560 + "log", 2561 + "phf 0.10.1", 2562 + "phf_codegen", 2563 + "string_cache", 2564 + "string_cache_codegen", 2565 + "tendril", 2566 + ] 2567 + 2568 + [[package]] 2569 + name = "matchers" 2570 + version = "0.1.0" 2571 + source = "registry+https://github.com/rust-lang/crates.io-index" 2572 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2573 + dependencies = [ 2574 + "regex-automata", 2575 + ] 2576 + 2577 + [[package]] 2578 + name = "matchit" 2579 + version = "0.7.0" 2580 + source = "registry+https://github.com/rust-lang/crates.io-index" 2581 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 2582 + 2583 + [[package]] 2584 + name = "matrix-pickle" 2585 + version = "0.1.0" 2586 + source = "registry+https://github.com/rust-lang/crates.io-index" 2587 + checksum = "b18185b3f64cc8d44840dbf92d92aeb05c1ef97094f51a32c1afd36a4415d225" 2588 + dependencies = [ 2589 + "matrix-pickle-derive", 2590 + "thiserror", 2591 + ] 2592 + 2593 + [[package]] 2594 + name = "matrix-pickle-derive" 2595 + version = "0.1.0" 2596 + source = "registry+https://github.com/rust-lang/crates.io-index" 2597 + checksum = "cef08fbb48d0d5125d3885e422c426b5be84067c63ceb5d8b32f9130143f5b81" 2598 + dependencies = [ 2599 + "proc-macro-crate", 2600 + "proc-macro-error", 2601 + "proc-macro2", 2602 + "quote", 2603 + "syn 1.0.109", 2604 + ] 2605 + 2606 + [[package]] 2607 + name = "matrix-sdk" 2608 + version = "0.6.2" 2609 + dependencies = [ 2610 + "anyhow", 2611 + "anymap2", 2612 + "assert_matches", 2613 + "async-stream", 2614 + "async-trait", 2615 + "backoff", 2616 + "bytes", 2617 + "bytesize", 2618 + "chrono", 2619 + "ctor 0.2.0", 2620 + "dashmap", 2621 + "dirs", 2622 + "event-listener", 2623 + "eyeball", 2624 + "eyeball-im", 2625 + "eyre", 2626 + "futures", 2627 + "futures-core", 2628 + "futures-util", 2629 + "getrandom 0.2.9", 2630 + "gloo-timers", 2631 + "http", 2632 + "hyper", 2633 + "image 0.24.6", 2634 + "imbl", 2635 + "indexmap", 2636 + "matrix-sdk-base", 2637 + "matrix-sdk-common", 2638 + "matrix-sdk-indexeddb", 2639 + "matrix-sdk-sled", 2640 + "matrix-sdk-test", 2641 + "mime", 2642 + "mime_guess", 2643 + "once_cell", 2644 + "pin-project-lite", 2645 + "rand 0.8.5", 2646 + "reqwest", 2647 + "ruma", 2648 + "serde", 2649 + "serde_html_form", 2650 + "serde_json", 2651 + "tempfile", 2652 + "thiserror", 2653 + "tokio", 2654 + "tower", 2655 + "tracing", 2656 + "tracing-subscriber", 2657 + "url", 2658 + "uuid", 2659 + "wasm-bindgen-test", 2660 + "wiremock", 2661 + "zeroize", 2662 + ] 2663 + 2664 + [[package]] 2665 + name = "matrix-sdk-appservice" 2666 + version = "0.1.0" 2667 + dependencies = [ 2668 + "axum", 2669 + "dashmap", 2670 + "http", 2671 + "http-body", 2672 + "hyper", 2673 + "matrix-sdk", 2674 + "matrix-sdk-test", 2675 + "regex", 2676 + "ruma", 2677 + "serde", 2678 + "serde_html_form", 2679 + "serde_json", 2680 + "serde_yaml", 2681 + "thiserror", 2682 + "tokio", 2683 + "tower", 2684 + "tracing", 2685 + "tracing-subscriber", 2686 + "url", 2687 + "wiremock", 2688 + ] 2689 + 2690 + [[package]] 2691 + name = "matrix-sdk-base" 2692 + version = "0.6.1" 2693 + dependencies = [ 2694 + "assert_matches", 2695 + "assign", 2696 + "async-stream", 2697 + "async-trait", 2698 + "bitflags 2.2.1", 2699 + "ctor 0.2.0", 2700 + "dashmap", 2701 + "eyeball", 2702 + "futures", 2703 + "futures-core", 2704 + "futures-util", 2705 + "http", 2706 + "matrix-sdk-common", 2707 + "matrix-sdk-crypto", 2708 + "matrix-sdk-store-encryption", 2709 + "matrix-sdk-test", 2710 + "once_cell", 2711 + "ruma", 2712 + "serde", 2713 + "serde_json", 2714 + "thiserror", 2715 + "tokio", 2716 + "tracing", 2717 + "tracing-subscriber", 2718 + "wasm-bindgen-test", 2719 + "zeroize", 2720 + ] 2721 + 2722 + [[package]] 2723 + name = "matrix-sdk-common" 2724 + version = "0.6.0" 2725 + dependencies = [ 2726 + "futures-core", 2727 + "futures-util", 2728 + "gloo-timers", 2729 + "instant", 2730 + "matrix-sdk-test", 2731 + "ruma", 2732 + "serde", 2733 + "serde_json", 2734 + "tokio", 2735 + "wasm-bindgen-futures", 2736 + "wasm-bindgen-test", 2737 + ] 2738 + 2739 + [[package]] 2740 + name = "matrix-sdk-crypto" 2741 + version = "0.6.0" 2742 + dependencies = [ 2743 + "aes", 2744 + "anyhow", 2745 + "assert_matches", 2746 + "async-std", 2747 + "async-trait", 2748 + "atomic", 2749 + "base64 0.21.0", 2750 + "bs58", 2751 + "byteorder", 2752 + "cfg-if", 2753 + "ctor 0.2.0", 2754 + "ctr", 2755 + "dashmap", 2756 + "event-listener", 2757 + "eyeball", 2758 + "futures", 2759 + "futures-core", 2760 + "futures-util", 2761 + "hmac", 2762 + "http", 2763 + "indoc", 2764 + "itertools", 2765 + "matrix-sdk-common", 2766 + "matrix-sdk-qrcode", 2767 + "matrix-sdk-test", 2768 + "olm-rs", 2769 + "pbkdf2", 2770 + "proptest", 2771 + "rand 0.8.5", 2772 + "rmp-serde", 2773 + "ruma", 2774 + "serde", 2775 + "serde_json", 2776 + "sha2 0.10.6", 2777 + "thiserror", 2778 + "tokio", 2779 + "tokio-stream", 2780 + "tracing", 2781 + "tracing-subscriber", 2782 + "vodozemac", 2783 + "zeroize", 2784 + ] 2785 + 2786 + [[package]] 2787 + name = "matrix-sdk-crypto-ffi" 2788 + version = "0.1.0" 2789 + dependencies = [ 2790 + "anyhow", 2791 + "assert_matches", 2792 + "base64 0.21.0", 2793 + "futures-util", 2794 + "hmac", 2795 + "http", 2796 + "js_int", 2797 + "matrix-sdk-common", 2798 + "matrix-sdk-crypto", 2799 + "matrix-sdk-sqlite", 2800 + "pbkdf2", 2801 + "rand 0.8.5", 2802 + "ruma", 2803 + "serde", 2804 + "serde_json", 2805 + "sha2 0.10.6", 2806 + "tempfile", 2807 + "thiserror", 2808 + "tokio", 2809 + "tracing", 2810 + "tracing-subscriber", 2811 + "uniffi", 2812 + "vodozemac", 2813 + "zeroize", 2814 + ] 2815 + 2816 + [[package]] 2817 + name = "matrix-sdk-crypto-js" 2818 + version = "0.1.0-alpha.0" 2819 + dependencies = [ 2820 + "anyhow", 2821 + "console_error_panic_hook", 2822 + "futures-util", 2823 + "http", 2824 + "js-sys", 2825 + "matrix-sdk-common", 2826 + "matrix-sdk-crypto", 2827 + "matrix-sdk-indexeddb", 2828 + "matrix-sdk-qrcode", 2829 + "ruma", 2830 + "serde_json", 2831 + "tracing", 2832 + "tracing-subscriber", 2833 + "vodozemac", 2834 + "wasm-bindgen", 2835 + "wasm-bindgen-futures", 2836 + "zeroize", 2837 + ] 2838 + 2839 + [[package]] 2840 + name = "matrix-sdk-crypto-nodejs" 2841 + version = "0.6.0" 2842 + dependencies = [ 2843 + "http", 2844 + "matrix-sdk-common", 2845 + "matrix-sdk-crypto", 2846 + "matrix-sdk-sled", 2847 + "matrix-sdk-sqlite", 2848 + "napi", 2849 + "napi-build", 2850 + "napi-derive", 2851 + "ruma", 2852 + "serde_json", 2853 + "tracing-subscriber", 2854 + "vodozemac", 2855 + "zeroize", 2856 + ] 2857 + 2858 + [[package]] 2859 + name = "matrix-sdk-ffi" 2860 + version = "0.2.0" 2861 + dependencies = [ 2862 + "anyhow", 2863 + "base64 0.21.0", 2864 + "extension-trait", 2865 + "eyeball", 2866 + "eyeball-im", 2867 + "futures-core", 2868 + "futures-util", 2869 + "log-panics", 2870 + "matrix-sdk", 2871 + "matrix-sdk-sled", 2872 + "matrix-sdk-sqlite", 2873 + "mime", 2874 + "once_cell", 2875 + "opentelemetry", 2876 + "opentelemetry-otlp", 2877 + "ruma", 2878 + "sanitize-filename-reader-friendly", 2879 + "serde_json", 2880 + "thiserror", 2881 + "tokio", 2882 + "tokio-stream", 2883 + "tracing", 2884 + "tracing-android", 2885 + "tracing-core", 2886 + "tracing-opentelemetry", 2887 + "tracing-subscriber", 2888 + "uniffi", 2889 + "url", 2890 + "zeroize", 2891 + ] 2892 + 2893 + [[package]] 2894 + name = "matrix-sdk-indexeddb" 2895 + version = "0.2.0" 2896 + dependencies = [ 2897 + "anyhow", 2898 + "assert_matches", 2899 + "async-trait", 2900 + "base64 0.21.0", 2901 + "dashmap", 2902 + "getrandom 0.2.9", 2903 + "gloo-utils", 2904 + "indexed_db_futures", 2905 + "js-sys", 2906 + "matrix-sdk-base", 2907 + "matrix-sdk-common", 2908 + "matrix-sdk-crypto", 2909 + "matrix-sdk-store-encryption", 2910 + "matrix-sdk-test", 2911 + "ruma", 2912 + "serde", 2913 + "serde_json", 2914 + "thiserror", 2915 + "tokio", 2916 + "tracing", 2917 + "uuid", 2918 + "wasm-bindgen", 2919 + "wasm-bindgen-test", 2920 + "web-sys", 2921 + ] 2922 + 2923 + [[package]] 2924 + name = "matrix-sdk-integration-testing" 2925 + version = "0.1.0" 2926 + dependencies = [ 2927 + "anyhow", 2928 + "assign", 2929 + "ctor 0.2.0", 2930 + "matrix-sdk", 2931 + "once_cell", 2932 + "tempfile", 2933 + "tokio", 2934 + "tracing", 2935 + "tracing-subscriber", 2936 + ] 2937 + 2938 + [[package]] 2939 + name = "matrix-sdk-qrcode" 2940 + version = "0.4.0" 2941 + dependencies = [ 2942 + "base64 0.21.0", 2943 + "byteorder", 2944 + "image 0.23.14", 2945 + "qrcode", 2946 + "ruma-common", 2947 + "thiserror", 2948 + "vodozemac", 2949 + ] 2950 + 2951 + [[package]] 2952 + name = "matrix-sdk-sled" 2953 + version = "0.2.0" 2954 + dependencies = [ 2955 + "assert_matches", 2956 + "async-stream", 2957 + "async-trait", 2958 + "dashmap", 2959 + "fs_extra", 2960 + "futures-core", 2961 + "futures-util", 2962 + "glob", 2963 + "matrix-sdk-base", 2964 + "matrix-sdk-common", 2965 + "matrix-sdk-crypto", 2966 + "matrix-sdk-store-encryption", 2967 + "matrix-sdk-test", 2968 + "once_cell", 2969 + "ruma", 2970 + "serde", 2971 + "serde_json", 2972 + "sled", 2973 + "tempfile", 2974 + "thiserror", 2975 + "tokio", 2976 + "tracing", 2977 + ] 2978 + 2979 + [[package]] 2980 + name = "matrix-sdk-sqlite" 2981 + version = "0.1.0" 2982 + dependencies = [ 2983 + "assert_matches", 2984 + "async-stream", 2985 + "async-trait", 2986 + "ctor 0.2.0", 2987 + "dashmap", 2988 + "deadpool-sqlite", 2989 + "fs_extra", 2990 + "futures-core", 2991 + "futures-util", 2992 + "glob", 2993 + "matrix-sdk-base", 2994 + "matrix-sdk-common", 2995 + "matrix-sdk-crypto", 2996 + "matrix-sdk-store-encryption", 2997 + "matrix-sdk-test", 2998 + "once_cell", 2999 + "rmp-serde", 3000 + "ruma", 3001 + "rusqlite", 3002 + "serde", 3003 + "serde_json", 3004 + "tempfile", 3005 + "thiserror", 3006 + "tokio", 3007 + "tracing", 3008 + "tracing-subscriber", 3009 + "vodozemac", 3010 + ] 3011 + 3012 + [[package]] 3013 + name = "matrix-sdk-store-encryption" 3014 + version = "0.2.0" 3015 + dependencies = [ 3016 + "anyhow", 3017 + "blake3", 3018 + "chacha20poly1305", 3019 + "displaydoc", 3020 + "getrandom 0.2.9", 3021 + "hmac", 3022 + "pbkdf2", 3023 + "rand 0.8.5", 3024 + "rmp-serde", 3025 + "serde", 3026 + "serde_json", 3027 + "sha2 0.10.6", 3028 + "thiserror", 3029 + "zeroize", 3030 + ] 3031 + 3032 + [[package]] 3033 + name = "matrix-sdk-test" 3034 + version = "0.6.0" 3035 + dependencies = [ 3036 + "http", 3037 + "matrix-sdk-test-macros", 3038 + "once_cell", 3039 + "ruma", 3040 + "serde", 3041 + "serde_json", 3042 + "tokio", 3043 + "wasm-bindgen-test", 3044 + ] 3045 + 3046 + [[package]] 3047 + name = "matrix-sdk-test-macros" 3048 + version = "0.3.0" 3049 + dependencies = [ 3050 + "proc-macro2", 3051 + "quote", 3052 + "syn 1.0.109", 3053 + ] 3054 + 3055 + [[package]] 3056 + name = "memchr" 3057 + version = "2.5.0" 3058 + source = "registry+https://github.com/rust-lang/crates.io-index" 3059 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3060 + 3061 + [[package]] 3062 + name = "memmap2" 3063 + version = "0.5.10" 3064 + source = "registry+https://github.com/rust-lang/crates.io-index" 3065 + checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 3066 + dependencies = [ 3067 + "libc", 3068 + ] 3069 + 3070 + [[package]] 3071 + name = "memoffset" 3072 + version = "0.8.0" 3073 + source = "registry+https://github.com/rust-lang/crates.io-index" 3074 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 3075 + dependencies = [ 3076 + "autocfg", 3077 + ] 3078 + 3079 + [[package]] 3080 + name = "mime" 3081 + version = "0.3.17" 3082 + source = "registry+https://github.com/rust-lang/crates.io-index" 3083 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3084 + 3085 + [[package]] 3086 + name = "mime_guess" 3087 + version = "2.0.4" 3088 + source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 3090 + dependencies = [ 3091 + "mime", 3092 + "unicase", 3093 + ] 3094 + 3095 + [[package]] 3096 + name = "minimal-lexical" 3097 + version = "0.2.1" 3098 + source = "registry+https://github.com/rust-lang/crates.io-index" 3099 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3100 + 3101 + [[package]] 3102 + name = "miniz_oxide" 3103 + version = "0.3.7" 3104 + source = "registry+https://github.com/rust-lang/crates.io-index" 3105 + checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" 3106 + dependencies = [ 3107 + "adler32", 3108 + ] 3109 + 3110 + [[package]] 3111 + name = "miniz_oxide" 3112 + version = "0.4.4" 3113 + source = "registry+https://github.com/rust-lang/crates.io-index" 3114 + checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 3115 + dependencies = [ 3116 + "adler", 3117 + "autocfg", 3118 + ] 3119 + 3120 + [[package]] 3121 + name = "miniz_oxide" 3122 + version = "0.6.2" 3123 + source = "registry+https://github.com/rust-lang/crates.io-index" 3124 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 3125 + dependencies = [ 3126 + "adler", 3127 + ] 3128 + 3129 + [[package]] 3130 + name = "miniz_oxide" 3131 + version = "0.7.1" 3132 + source = "registry+https://github.com/rust-lang/crates.io-index" 3133 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3134 + dependencies = [ 3135 + "adler", 3136 + "simd-adler32", 3137 + ] 3138 + 3139 + [[package]] 3140 + name = "mio" 3141 + version = "0.8.6" 3142 + source = "registry+https://github.com/rust-lang/crates.io-index" 3143 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 3144 + dependencies = [ 3145 + "libc", 3146 + "log", 3147 + "wasi 0.11.0+wasi-snapshot-preview1", 3148 + "windows-sys 0.45.0", 3149 + ] 3150 + 3151 + [[package]] 3152 + name = "multimap" 3153 + version = "0.8.3" 3154 + source = "registry+https://github.com/rust-lang/crates.io-index" 3155 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 3156 + 3157 + [[package]] 3158 + name = "napi" 3159 + version = "2.12.5" 3160 + source = "registry+https://github.com/rust-lang/crates.io-index" 3161 + checksum = "69b29acdc6cc5c918c3eabd51d241b1c6dfa8914f3552fcfd76e1d7536934581" 3162 + dependencies = [ 3163 + "bitflags 2.2.1", 3164 + "ctor 0.2.0", 3165 + "napi-derive", 3166 + "napi-sys", 3167 + "once_cell", 3168 + "tokio", 3169 + ] 3170 + 3171 + [[package]] 3172 + name = "napi-build" 3173 + version = "2.0.1" 3174 + source = "registry+https://github.com/rust-lang/crates.io-index" 3175 + checksum = "882a73d9ef23e8dc2ebbffb6a6ae2ef467c0f18ac10711e4cc59c5485d41df0e" 3176 + 3177 + [[package]] 3178 + name = "napi-derive" 3179 + version = "2.12.3" 3180 + source = "registry+https://github.com/rust-lang/crates.io-index" 3181 + checksum = "af2ac63101a19228b0881694cac07468d642fd10e4f943a9c9feebeebf1a4787" 3182 + dependencies = [ 3183 + "convert_case", 3184 + "napi-derive-backend", 3185 + "proc-macro2", 3186 + "quote", 3187 + "syn 1.0.109", 3188 + ] 3189 + 3190 + [[package]] 3191 + name = "napi-derive-backend" 3192 + version = "1.0.49" 3193 + source = "registry+https://github.com/rust-lang/crates.io-index" 3194 + checksum = "0e32b5bc4d803e40b783b0aa3fe488eac8711cfaa4c5c9915293dfd3d0b99925" 3195 + dependencies = [ 3196 + "convert_case", 3197 + "once_cell", 3198 + "proc-macro2", 3199 + "quote", 3200 + "regex", 3201 + "semver", 3202 + "syn 1.0.109", 3203 + ] 3204 + 3205 + [[package]] 3206 + name = "napi-sys" 3207 + version = "2.2.3" 3208 + source = "registry+https://github.com/rust-lang/crates.io-index" 3209 + checksum = "166b5ef52a3ab5575047a9fe8d4a030cdd0f63c96f071cd6907674453b07bae3" 3210 + dependencies = [ 3211 + "libloading", 3212 + ] 3213 + 3214 + [[package]] 3215 + name = "native-tls" 3216 + version = "0.2.11" 3217 + source = "registry+https://github.com/rust-lang/crates.io-index" 3218 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 3219 + dependencies = [ 3220 + "lazy_static", 3221 + "libc", 3222 + "log", 3223 + "openssl", 3224 + "openssl-probe", 3225 + "openssl-sys", 3226 + "schannel", 3227 + "security-framework", 3228 + "security-framework-sys", 3229 + "tempfile", 3230 + ] 3231 + 3232 + [[package]] 3233 + name = "new_debug_unreachable" 3234 + version = "1.0.4" 3235 + source = "registry+https://github.com/rust-lang/crates.io-index" 3236 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 3237 + 3238 + [[package]] 3239 + name = "nix" 3240 + version = "0.26.2" 3241 + source = "registry+https://github.com/rust-lang/crates.io-index" 3242 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 3243 + dependencies = [ 3244 + "bitflags 1.3.2", 3245 + "cfg-if", 3246 + "libc", 3247 + "static_assertions", 3248 + ] 3249 + 3250 + [[package]] 3251 + name = "nom" 3252 + version = "7.1.3" 3253 + source = "registry+https://github.com/rust-lang/crates.io-index" 3254 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3255 + dependencies = [ 3256 + "memchr", 3257 + "minimal-lexical", 3258 + ] 3259 + 3260 + [[package]] 3261 + name = "nu-ansi-term" 3262 + version = "0.46.0" 3263 + source = "registry+https://github.com/rust-lang/crates.io-index" 3264 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 3265 + dependencies = [ 3266 + "overload", 3267 + "winapi", 3268 + ] 3269 + 3270 + [[package]] 3271 + name = "num-format" 3272 + version = "0.4.4" 3273 + source = "registry+https://github.com/rust-lang/crates.io-index" 3274 + checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 3275 + dependencies = [ 3276 + "arrayvec", 3277 + "itoa", 3278 + ] 3279 + 3280 + [[package]] 3281 + name = "num-integer" 3282 + version = "0.1.45" 3283 + source = "registry+https://github.com/rust-lang/crates.io-index" 3284 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3285 + dependencies = [ 3286 + "autocfg", 3287 + "num-traits", 3288 + ] 3289 + 3290 + [[package]] 3291 + name = "num-iter" 3292 + version = "0.1.43" 3293 + source = "registry+https://github.com/rust-lang/crates.io-index" 3294 + checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 3295 + dependencies = [ 3296 + "autocfg", 3297 + "num-integer", 3298 + "num-traits", 3299 + ] 3300 + 3301 + [[package]] 3302 + name = "num-rational" 3303 + version = "0.3.2" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" 3306 + dependencies = [ 3307 + "autocfg", 3308 + "num-integer", 3309 + "num-traits", 3310 + ] 3311 + 3312 + [[package]] 3313 + name = "num-rational" 3314 + version = "0.4.1" 3315 + source = "registry+https://github.com/rust-lang/crates.io-index" 3316 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 3317 + dependencies = [ 3318 + "autocfg", 3319 + "num-integer", 3320 + "num-traits", 3321 + ] 3322 + 3323 + [[package]] 3324 + name = "num-traits" 3325 + version = "0.2.15" 3326 + source = "registry+https://github.com/rust-lang/crates.io-index" 3327 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 3328 + dependencies = [ 3329 + "autocfg", 3330 + "libm", 3331 + ] 3332 + 3333 + [[package]] 3334 + name = "num_cpus" 3335 + version = "1.15.0" 3336 + source = "registry+https://github.com/rust-lang/crates.io-index" 3337 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 3338 + dependencies = [ 3339 + "hermit-abi 0.2.6", 3340 + "libc", 3341 + ] 3342 + 3343 + [[package]] 3344 + name = "object" 3345 + version = "0.30.3" 3346 + source = "registry+https://github.com/rust-lang/crates.io-index" 3347 + checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 3348 + dependencies = [ 3349 + "memchr", 3350 + ] 3351 + 3352 + [[package]] 3353 + name = "olm-rs" 3354 + version = "2.2.0" 3355 + source = "registry+https://github.com/rust-lang/crates.io-index" 3356 + checksum = "dd6c2c7054110ce4d7b4756d7b7fe507fea9413968ad0ef8f1d043d504aec725" 3357 + dependencies = [ 3358 + "getrandom 0.2.9", 3359 + "olm-sys", 3360 + "serde", 3361 + "serde_json", 3362 + "zeroize", 3363 + ] 3364 + 3365 + [[package]] 3366 + name = "olm-sys" 3367 + version = "1.3.2" 3368 + source = "registry+https://github.com/rust-lang/crates.io-index" 3369 + checksum = "2afecf25624989021f9f0f157f7152102fd147b89445d08449739f216002d339" 3370 + dependencies = [ 3371 + "cmake", 3372 + "fs_extra", 3373 + ] 3374 + 3375 + [[package]] 3376 + name = "once_cell" 3377 + version = "1.17.1" 3378 + source = "registry+https://github.com/rust-lang/crates.io-index" 3379 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 3380 + 3381 + [[package]] 3382 + name = "oorandom" 3383 + version = "11.1.3" 3384 + source = "registry+https://github.com/rust-lang/crates.io-index" 3385 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3386 + 3387 + [[package]] 3388 + name = "opaque-debug" 3389 + version = "0.3.0" 3390 + source = "registry+https://github.com/rust-lang/crates.io-index" 3391 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 3392 + 3393 + [[package]] 3394 + name = "openssl" 3395 + version = "0.10.51" 3396 + source = "registry+https://github.com/rust-lang/crates.io-index" 3397 + checksum = "97ea2d98598bf9ada7ea6ee8a30fb74f9156b63bbe495d64ec2b87c269d2dda3" 3398 + dependencies = [ 3399 + "bitflags 1.3.2", 3400 + "cfg-if", 3401 + "foreign-types", 3402 + "libc", 3403 + "once_cell", 3404 + "openssl-macros", 3405 + "openssl-sys", 3406 + ] 3407 + 3408 + [[package]] 3409 + name = "openssl-macros" 3410 + version = "0.1.1" 3411 + source = "registry+https://github.com/rust-lang/crates.io-index" 3412 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3413 + dependencies = [ 3414 + "proc-macro2", 3415 + "quote", 3416 + "syn 2.0.15", 3417 + ] 3418 + 3419 + [[package]] 3420 + name = "openssl-probe" 3421 + version = "0.1.5" 3422 + source = "registry+https://github.com/rust-lang/crates.io-index" 3423 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3424 + 3425 + [[package]] 3426 + name = "openssl-sys" 3427 + version = "0.9.86" 3428 + source = "registry+https://github.com/rust-lang/crates.io-index" 3429 + checksum = "992bac49bdbab4423199c654a5515bd2a6c6a23bf03f2dd3bdb7e5ae6259bc69" 3430 + dependencies = [ 3431 + "cc", 3432 + "libc", 3433 + "pkg-config", 3434 + "vcpkg", 3435 + ] 3436 + 3437 + [[package]] 3438 + name = "opentelemetry" 3439 + version = "0.18.0" 3440 + source = "registry+https://github.com/rust-lang/crates.io-index" 3441 + checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e" 3442 + dependencies = [ 3443 + "opentelemetry_api", 3444 + "opentelemetry_sdk", 3445 + ] 3446 + 3447 + [[package]] 3448 + name = "opentelemetry-http" 3449 + version = "0.7.0" 3450 + source = "registry+https://github.com/rust-lang/crates.io-index" 3451 + checksum = "1edc79add46364183ece1a4542592ca593e6421c60807232f5b8f7a31703825d" 3452 + dependencies = [ 3453 + "async-trait", 3454 + "bytes", 3455 + "http", 3456 + "opentelemetry_api", 3457 + "reqwest", 3458 + ] 3459 + 3460 + [[package]] 3461 + name = "opentelemetry-otlp" 3462 + version = "0.11.0" 3463 + source = "registry+https://github.com/rust-lang/crates.io-index" 3464 + checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde" 3465 + dependencies = [ 3466 + "async-trait", 3467 + "futures", 3468 + "futures-util", 3469 + "http", 3470 + "opentelemetry", 3471 + "opentelemetry-http", 3472 + "opentelemetry-proto", 3473 + "prost", 3474 + "reqwest", 3475 + "thiserror", 3476 + "tokio", 3477 + "tonic", 3478 + ] 3479 + 3480 + [[package]] 3481 + name = "opentelemetry-proto" 3482 + version = "0.1.0" 3483 + source = "registry+https://github.com/rust-lang/crates.io-index" 3484 + checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28" 3485 + dependencies = [ 3486 + "futures", 3487 + "futures-util", 3488 + "opentelemetry", 3489 + "prost", 3490 + "tonic", 3491 + "tonic-build", 3492 + ] 3493 + 3494 + [[package]] 3495 + name = "opentelemetry_api" 3496 + version = "0.18.0" 3497 + source = "registry+https://github.com/rust-lang/crates.io-index" 3498 + checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22" 3499 + dependencies = [ 3500 + "fnv", 3501 + "futures-channel", 3502 + "futures-util", 3503 + "indexmap", 3504 + "js-sys", 3505 + "once_cell", 3506 + "pin-project-lite", 3507 + "thiserror", 3508 + ] 3509 + 3510 + [[package]] 3511 + name = "opentelemetry_sdk" 3512 + version = "0.18.0" 3513 + source = "registry+https://github.com/rust-lang/crates.io-index" 3514 + checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113" 3515 + dependencies = [ 3516 + "async-trait", 3517 + "crossbeam-channel", 3518 + "dashmap", 3519 + "fnv", 3520 + "futures-channel", 3521 + "futures-executor", 3522 + "futures-util", 3523 + "once_cell", 3524 + "opentelemetry_api", 3525 + "percent-encoding", 3526 + "rand 0.8.5", 3527 + "thiserror", 3528 + "tokio", 3529 + "tokio-stream", 3530 + ] 3531 + 3532 + [[package]] 3533 + name = "os_str_bytes" 3534 + version = "6.5.0" 3535 + source = "registry+https://github.com/rust-lang/crates.io-index" 3536 + checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" 3537 + 3538 + [[package]] 3539 + name = "overload" 3540 + version = "0.1.1" 3541 + source = "registry+https://github.com/rust-lang/crates.io-index" 3542 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3543 + 3544 + [[package]] 3545 + name = "parking" 3546 + version = "2.1.0" 3547 + source = "registry+https://github.com/rust-lang/crates.io-index" 3548 + checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 3549 + 3550 + [[package]] 3551 + name = "parking_lot" 3552 + version = "0.11.2" 3553 + source = "registry+https://github.com/rust-lang/crates.io-index" 3554 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 3555 + dependencies = [ 3556 + "instant", 3557 + "lock_api", 3558 + "parking_lot_core 0.8.6", 3559 + ] 3560 + 3561 + [[package]] 3562 + name = "parking_lot" 3563 + version = "0.12.1" 3564 + source = "registry+https://github.com/rust-lang/crates.io-index" 3565 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3566 + dependencies = [ 3567 + "lock_api", 3568 + "parking_lot_core 0.9.7", 3569 + ] 3570 + 3571 + [[package]] 3572 + name = "parking_lot_core" 3573 + version = "0.8.6" 3574 + source = "registry+https://github.com/rust-lang/crates.io-index" 3575 + checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 3576 + dependencies = [ 3577 + "cfg-if", 3578 + "instant", 3579 + "libc", 3580 + "redox_syscall 0.2.16", 3581 + "smallvec", 3582 + "winapi", 3583 + ] 3584 + 3585 + [[package]] 3586 + name = "parking_lot_core" 3587 + version = "0.9.7" 3588 + source = "registry+https://github.com/rust-lang/crates.io-index" 3589 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 3590 + dependencies = [ 3591 + "cfg-if", 3592 + "libc", 3593 + "redox_syscall 0.2.16", 3594 + "smallvec", 3595 + "windows-sys 0.45.0", 3596 + ] 3597 + 3598 + [[package]] 3599 + name = "password-hash" 3600 + version = "0.4.2" 3601 + source = "registry+https://github.com/rust-lang/crates.io-index" 3602 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 3603 + dependencies = [ 3604 + "base64ct", 3605 + "rand_core 0.6.4", 3606 + "subtle", 3607 + ] 3608 + 3609 + [[package]] 3610 + name = "paste" 3611 + version = "1.0.12" 3612 + source = "registry+https://github.com/rust-lang/crates.io-index" 3613 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 3614 + 3615 + [[package]] 3616 + name = "pbkdf2" 3617 + version = "0.11.0" 3618 + source = "registry+https://github.com/rust-lang/crates.io-index" 3619 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 3620 + dependencies = [ 3621 + "digest 0.10.6", 3622 + "hmac", 3623 + "password-hash", 3624 + "sha2 0.10.6", 3625 + ] 3626 + 3627 + [[package]] 3628 + name = "percent-encoding" 3629 + version = "2.2.0" 3630 + source = "registry+https://github.com/rust-lang/crates.io-index" 3631 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 3632 + 3633 + [[package]] 3634 + name = "petgraph" 3635 + version = "0.6.3" 3636 + source = "registry+https://github.com/rust-lang/crates.io-index" 3637 + checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 3638 + dependencies = [ 3639 + "fixedbitset", 3640 + "indexmap", 3641 + ] 3642 + 3643 + [[package]] 3644 + name = "phf" 3645 + version = "0.10.1" 3646 + source = "registry+https://github.com/rust-lang/crates.io-index" 3647 + checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 3648 + dependencies = [ 3649 + "phf_shared 0.10.0", 3650 + ] 3651 + 3652 + [[package]] 3653 + name = "phf" 3654 + version = "0.11.1" 3655 + source = "registry+https://github.com/rust-lang/crates.io-index" 3656 + checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 3657 + dependencies = [ 3658 + "phf_macros", 3659 + "phf_shared 0.11.1", 3660 + ] 3661 + 3662 + [[package]] 3663 + name = "phf_codegen" 3664 + version = "0.10.0" 3665 + source = "registry+https://github.com/rust-lang/crates.io-index" 3666 + checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 3667 + dependencies = [ 3668 + "phf_generator 0.10.0", 3669 + "phf_shared 0.10.0", 3670 + ] 3671 + 3672 + [[package]] 3673 + name = "phf_generator" 3674 + version = "0.10.0" 3675 + source = "registry+https://github.com/rust-lang/crates.io-index" 3676 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 3677 + dependencies = [ 3678 + "phf_shared 0.10.0", 3679 + "rand 0.8.5", 3680 + ] 3681 + 3682 + [[package]] 3683 + name = "phf_generator" 3684 + version = "0.11.1" 3685 + source = "registry+https://github.com/rust-lang/crates.io-index" 3686 + checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 3687 + dependencies = [ 3688 + "phf_shared 0.11.1", 3689 + "rand 0.8.5", 3690 + ] 3691 + 3692 + [[package]] 3693 + name = "phf_macros" 3694 + version = "0.11.1" 3695 + source = "registry+https://github.com/rust-lang/crates.io-index" 3696 + checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" 3697 + dependencies = [ 3698 + "phf_generator 0.11.1", 3699 + "phf_shared 0.11.1", 3700 + "proc-macro2", 3701 + "quote", 3702 + "syn 1.0.109", 3703 + ] 3704 + 3705 + [[package]] 3706 + name = "phf_shared" 3707 + version = "0.10.0" 3708 + source = "registry+https://github.com/rust-lang/crates.io-index" 3709 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 3710 + dependencies = [ 3711 + "siphasher", 3712 + ] 3713 + 3714 + [[package]] 3715 + name = "phf_shared" 3716 + version = "0.11.1" 3717 + source = "registry+https://github.com/rust-lang/crates.io-index" 3718 + checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 3719 + dependencies = [ 3720 + "siphasher", 3721 + ] 3722 + 3723 + [[package]] 3724 + name = "pin-project" 3725 + version = "1.0.12" 3726 + source = "registry+https://github.com/rust-lang/crates.io-index" 3727 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 3728 + dependencies = [ 3729 + "pin-project-internal", 3730 + ] 3731 + 3732 + [[package]] 3733 + name = "pin-project-internal" 3734 + version = "1.0.12" 3735 + source = "registry+https://github.com/rust-lang/crates.io-index" 3736 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 3737 + dependencies = [ 3738 + "proc-macro2", 3739 + "quote", 3740 + "syn 1.0.109", 3741 + ] 3742 + 3743 + [[package]] 3744 + name = "pin-project-lite" 3745 + version = "0.2.9" 3746 + source = "registry+https://github.com/rust-lang/crates.io-index" 3747 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3748 + 3749 + [[package]] 3750 + name = "pin-utils" 3751 + version = "0.1.0" 3752 + source = "registry+https://github.com/rust-lang/crates.io-index" 3753 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3754 + 3755 + [[package]] 3756 + name = "pkcs7" 3757 + version = "0.3.0" 3758 + source = "registry+https://github.com/rust-lang/crates.io-index" 3759 + checksum = "1f7364e6d0e236473de91e042395d71e0e64715f99a60620b014a4a4c7d1619b" 3760 + dependencies = [ 3761 + "der", 3762 + "spki", 3763 + ] 3764 + 3765 + [[package]] 3766 + name = "pkg-config" 3767 + version = "0.3.26" 3768 + source = "registry+https://github.com/rust-lang/crates.io-index" 3769 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 3770 + 3771 + [[package]] 3772 + name = "plain" 3773 + version = "0.2.3" 3774 + source = "registry+https://github.com/rust-lang/crates.io-index" 3775 + checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 3776 + 3777 + [[package]] 3778 + name = "plotters" 3779 + version = "0.3.4" 3780 + source = "registry+https://github.com/rust-lang/crates.io-index" 3781 + checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 3782 + dependencies = [ 3783 + "num-traits", 3784 + "plotters-backend", 3785 + "plotters-svg", 3786 + "wasm-bindgen", 3787 + "web-sys", 3788 + ] 3789 + 3790 + [[package]] 3791 + name = "plotters-backend" 3792 + version = "0.3.4" 3793 + source = "registry+https://github.com/rust-lang/crates.io-index" 3794 + checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 3795 + 3796 + [[package]] 3797 + name = "plotters-svg" 3798 + version = "0.3.3" 3799 + source = "registry+https://github.com/rust-lang/crates.io-index" 3800 + checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 3801 + dependencies = [ 3802 + "plotters-backend", 3803 + ] 3804 + 3805 + [[package]] 3806 + name = "png" 3807 + version = "0.16.8" 3808 + source = "registry+https://github.com/rust-lang/crates.io-index" 3809 + checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" 3810 + dependencies = [ 3811 + "bitflags 1.3.2", 3812 + "crc32fast", 3813 + "deflate", 3814 + "miniz_oxide 0.3.7", 3815 + ] 3816 + 3817 + [[package]] 3818 + name = "png" 3819 + version = "0.17.8" 3820 + source = "registry+https://github.com/rust-lang/crates.io-index" 3821 + checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa" 3822 + dependencies = [ 3823 + "bitflags 1.3.2", 3824 + "crc32fast", 3825 + "fdeflate", 3826 + "flate2", 3827 + "miniz_oxide 0.7.1", 3828 + ] 3829 + 3830 + [[package]] 3831 + name = "polling" 3832 + version = "2.8.0" 3833 + source = "registry+https://github.com/rust-lang/crates.io-index" 3834 + checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 3835 + dependencies = [ 3836 + "autocfg", 3837 + "bitflags 1.3.2", 3838 + "cfg-if", 3839 + "concurrent-queue", 3840 + "libc", 3841 + "log", 3842 + "pin-project-lite", 3843 + "windows-sys 0.48.0", 3844 + ] 3845 + 3846 + [[package]] 3847 + name = "poly1305" 3848 + version = "0.7.2" 3849 + source = "registry+https://github.com/rust-lang/crates.io-index" 3850 + checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede" 3851 + dependencies = [ 3852 + "cpufeatures", 3853 + "opaque-debug", 3854 + "universal-hash", 3855 + ] 3856 + 3857 + [[package]] 3858 + name = "pprof" 3859 + version = "0.11.1" 3860 + source = "registry+https://github.com/rust-lang/crates.io-index" 3861 + checksum = "196ded5d4be535690899a4631cc9f18cdc41b7ebf24a79400f46f48e49a11059" 3862 + dependencies = [ 3863 + "backtrace", 3864 + "cfg-if", 3865 + "criterion", 3866 + "findshlibs", 3867 + "inferno", 3868 + "libc", 3869 + "log", 3870 + "nix", 3871 + "once_cell", 3872 + "parking_lot 0.12.1", 3873 + "smallvec", 3874 + "symbolic-demangle", 3875 + "tempfile", 3876 + "thiserror", 3877 + ] 3878 + 3879 + [[package]] 3880 + name = "ppv-lite86" 3881 + version = "0.2.17" 3882 + source = "registry+https://github.com/rust-lang/crates.io-index" 3883 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3884 + 3885 + [[package]] 3886 + name = "precomputed-hash" 3887 + version = "0.1.1" 3888 + source = "registry+https://github.com/rust-lang/crates.io-index" 3889 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3890 + 3891 + [[package]] 3892 + name = "prettyplease" 3893 + version = "0.1.25" 3894 + source = "registry+https://github.com/rust-lang/crates.io-index" 3895 + checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 3896 + dependencies = [ 3897 + "proc-macro2", 3898 + "syn 1.0.109", 3899 + ] 3900 + 3901 + [[package]] 3902 + name = "proc-macro-crate" 3903 + version = "1.3.1" 3904 + source = "registry+https://github.com/rust-lang/crates.io-index" 3905 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3906 + dependencies = [ 3907 + "once_cell", 3908 + "toml_edit", 3909 + ] 3910 + 3911 + [[package]] 3912 + name = "proc-macro-error" 3913 + version = "1.0.4" 3914 + source = "registry+https://github.com/rust-lang/crates.io-index" 3915 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3916 + dependencies = [ 3917 + "proc-macro-error-attr", 3918 + "proc-macro2", 3919 + "quote", 3920 + "syn 1.0.109", 3921 + "version_check", 3922 + ] 3923 + 3924 + [[package]] 3925 + name = "proc-macro-error-attr" 3926 + version = "1.0.4" 3927 + source = "registry+https://github.com/rust-lang/crates.io-index" 3928 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3929 + dependencies = [ 3930 + "proc-macro2", 3931 + "quote", 3932 + "version_check", 3933 + ] 3934 + 3935 + [[package]] 3936 + name = "proc-macro2" 3937 + version = "1.0.56" 3938 + source = "registry+https://github.com/rust-lang/crates.io-index" 3939 + checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 3940 + dependencies = [ 3941 + "unicode-ident", 3942 + ] 3943 + 3944 + [[package]] 3945 + name = "proptest" 3946 + version = "1.1.0" 3947 + source = "registry+https://github.com/rust-lang/crates.io-index" 3948 + checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70" 3949 + dependencies = [ 3950 + "bitflags 1.3.2", 3951 + "byteorder", 3952 + "lazy_static", 3953 + "num-traits", 3954 + "quick-error", 3955 + "rand 0.8.5", 3956 + "rand_chacha 0.3.1", 3957 + "rand_xorshift", 3958 + "regex-syntax 0.6.29", 3959 + "unarray", 3960 + ] 3961 + 3962 + [[package]] 3963 + name = "prost" 3964 + version = "0.11.9" 3965 + source = "registry+https://github.com/rust-lang/crates.io-index" 3966 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 3967 + dependencies = [ 3968 + "bytes", 3969 + "prost-derive", 3970 + ] 3971 + 3972 + [[package]] 3973 + name = "prost-build" 3974 + version = "0.11.9" 3975 + source = "registry+https://github.com/rust-lang/crates.io-index" 3976 + checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" 3977 + dependencies = [ 3978 + "bytes", 3979 + "heck", 3980 + "itertools", 3981 + "lazy_static", 3982 + "log", 3983 + "multimap", 3984 + "petgraph", 3985 + "prettyplease", 3986 + "prost", 3987 + "prost-types", 3988 + "regex", 3989 + "syn 1.0.109", 3990 + "tempfile", 3991 + "which", 3992 + ] 3993 + 3994 + [[package]] 3995 + name = "prost-derive" 3996 + version = "0.11.9" 3997 + source = "registry+https://github.com/rust-lang/crates.io-index" 3998 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 3999 + dependencies = [ 4000 + "anyhow", 4001 + "itertools", 4002 + "proc-macro2", 4003 + "quote", 4004 + "syn 1.0.109", 4005 + ] 4006 + 4007 + [[package]] 4008 + name = "prost-types" 4009 + version = "0.11.9" 4010 + source = "registry+https://github.com/rust-lang/crates.io-index" 4011 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 4012 + dependencies = [ 4013 + "prost", 4014 + ] 4015 + 4016 + [[package]] 4017 + name = "pulldown-cmark" 4018 + version = "0.9.2" 4019 + source = "registry+https://github.com/rust-lang/crates.io-index" 4020 + checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" 4021 + dependencies = [ 4022 + "bitflags 1.3.2", 4023 + "memchr", 4024 + "unicase", 4025 + ] 4026 + 4027 + [[package]] 4028 + name = "qrcode" 4029 + version = "0.12.0" 4030 + source = "registry+https://github.com/rust-lang/crates.io-index" 4031 + checksum = "16d2f1455f3630c6e5107b4f2b94e74d76dea80736de0981fd27644216cff57f" 4032 + dependencies = [ 4033 + "checked_int_cast", 4034 + "image 0.23.14", 4035 + ] 4036 + 4037 + [[package]] 4038 + name = "quick-error" 4039 + version = "2.0.1" 4040 + source = "registry+https://github.com/rust-lang/crates.io-index" 4041 + checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 4042 + 4043 + [[package]] 4044 + name = "quick-xml" 4045 + version = "0.26.0" 4046 + source = "registry+https://github.com/rust-lang/crates.io-index" 4047 + checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" 4048 + dependencies = [ 4049 + "memchr", 4050 + ] 4051 + 4052 + [[package]] 4053 + name = "quote" 4054 + version = "1.0.26" 4055 + source = "registry+https://github.com/rust-lang/crates.io-index" 4056 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 4057 + dependencies = [ 4058 + "proc-macro2", 4059 + ] 4060 + 4061 + [[package]] 4062 + name = "rand" 4063 + version = "0.7.3" 4064 + source = "registry+https://github.com/rust-lang/crates.io-index" 4065 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 4066 + dependencies = [ 4067 + "getrandom 0.1.16", 4068 + "libc", 4069 + "rand_chacha 0.2.2", 4070 + "rand_core 0.5.1", 4071 + "rand_hc", 4072 + ] 4073 + 4074 + [[package]] 4075 + name = "rand" 4076 + version = "0.8.5" 4077 + source = "registry+https://github.com/rust-lang/crates.io-index" 4078 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4079 + dependencies = [ 4080 + "libc", 4081 + "rand_chacha 0.3.1", 4082 + "rand_core 0.6.4", 4083 + ] 4084 + 4085 + [[package]] 4086 + name = "rand_chacha" 4087 + version = "0.2.2" 4088 + source = "registry+https://github.com/rust-lang/crates.io-index" 4089 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 4090 + dependencies = [ 4091 + "ppv-lite86", 4092 + "rand_core 0.5.1", 4093 + ] 4094 + 4095 + [[package]] 4096 + name = "rand_chacha" 4097 + version = "0.3.1" 4098 + source = "registry+https://github.com/rust-lang/crates.io-index" 4099 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4100 + dependencies = [ 4101 + "ppv-lite86", 4102 + "rand_core 0.6.4", 4103 + ] 4104 + 4105 + [[package]] 4106 + name = "rand_core" 4107 + version = "0.5.1" 4108 + source = "registry+https://github.com/rust-lang/crates.io-index" 4109 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 4110 + dependencies = [ 4111 + "getrandom 0.1.16", 4112 + ] 4113 + 4114 + [[package]] 4115 + name = "rand_core" 4116 + version = "0.6.4" 4117 + source = "registry+https://github.com/rust-lang/crates.io-index" 4118 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4119 + dependencies = [ 4120 + "getrandom 0.2.9", 4121 + ] 4122 + 4123 + [[package]] 4124 + name = "rand_hc" 4125 + version = "0.2.0" 4126 + source = "registry+https://github.com/rust-lang/crates.io-index" 4127 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 4128 + dependencies = [ 4129 + "rand_core 0.5.1", 4130 + ] 4131 + 4132 + [[package]] 4133 + name = "rand_xorshift" 4134 + version = "0.3.0" 4135 + source = "registry+https://github.com/rust-lang/crates.io-index" 4136 + checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 4137 + dependencies = [ 4138 + "rand_core 0.6.4", 4139 + ] 4140 + 4141 + [[package]] 4142 + name = "rand_xoshiro" 4143 + version = "0.6.0" 4144 + source = "registry+https://github.com/rust-lang/crates.io-index" 4145 + checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" 4146 + dependencies = [ 4147 + "rand_core 0.6.4", 4148 + ] 4149 + 4150 + [[package]] 4151 + name = "rayon" 4152 + version = "1.7.0" 4153 + source = "registry+https://github.com/rust-lang/crates.io-index" 4154 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 4155 + dependencies = [ 4156 + "either", 4157 + "rayon-core", 4158 + ] 4159 + 4160 + [[package]] 4161 + name = "rayon-core" 4162 + version = "1.11.0" 4163 + source = "registry+https://github.com/rust-lang/crates.io-index" 4164 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 4165 + dependencies = [ 4166 + "crossbeam-channel", 4167 + "crossbeam-deque", 4168 + "crossbeam-utils", 4169 + "num_cpus", 4170 + ] 4171 + 4172 + [[package]] 4173 + name = "readlock" 4174 + version = "0.1.5" 4175 + source = "registry+https://github.com/rust-lang/crates.io-index" 4176 + checksum = "ed5b7f359207e69e1395440120fa3b07c59bb92c4ec077804cd10d7ebbe4c01a" 4177 + 4178 + [[package]] 4179 + name = "redox_syscall" 4180 + version = "0.2.16" 4181 + source = "registry+https://github.com/rust-lang/crates.io-index" 4182 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 4183 + dependencies = [ 4184 + "bitflags 1.3.2", 4185 + ] 4186 + 4187 + [[package]] 4188 + name = "redox_syscall" 4189 + version = "0.3.5" 4190 + source = "registry+https://github.com/rust-lang/crates.io-index" 4191 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 4192 + dependencies = [ 4193 + "bitflags 1.3.2", 4194 + ] 4195 + 4196 + [[package]] 4197 + name = "redox_users" 4198 + version = "0.4.3" 4199 + source = "registry+https://github.com/rust-lang/crates.io-index" 4200 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 4201 + dependencies = [ 4202 + "getrandom 0.2.9", 4203 + "redox_syscall 0.2.16", 4204 + "thiserror", 4205 + ] 4206 + 4207 + [[package]] 4208 + name = "regex" 4209 + version = "1.8.1" 4210 + source = "registry+https://github.com/rust-lang/crates.io-index" 4211 + checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 4212 + dependencies = [ 4213 + "aho-corasick", 4214 + "memchr", 4215 + "regex-syntax 0.7.1", 4216 + ] 4217 + 4218 + [[package]] 4219 + name = "regex-automata" 4220 + version = "0.1.10" 4221 + source = "registry+https://github.com/rust-lang/crates.io-index" 4222 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 4223 + dependencies = [ 4224 + "regex-syntax 0.6.29", 4225 + ] 4226 + 4227 + [[package]] 4228 + name = "regex-syntax" 4229 + version = "0.6.29" 4230 + source = "registry+https://github.com/rust-lang/crates.io-index" 4231 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 4232 + 4233 + [[package]] 4234 + name = "regex-syntax" 4235 + version = "0.7.1" 4236 + source = "registry+https://github.com/rust-lang/crates.io-index" 4237 + checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 4238 + 4239 + [[package]] 4240 + name = "reqwest" 4241 + version = "0.11.16" 4242 + source = "registry+https://github.com/rust-lang/crates.io-index" 4243 + checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 4244 + dependencies = [ 4245 + "async-compression", 4246 + "base64 0.21.0", 4247 + "bytes", 4248 + "encoding_rs", 4249 + "futures-core", 4250 + "futures-util", 4251 + "h2", 4252 + "http", 4253 + "http-body", 4254 + "hyper", 4255 + "hyper-rustls", 4256 + "hyper-tls", 4257 + "ipnet", 4258 + "js-sys", 4259 + "log", 4260 + "mime", 4261 + "native-tls", 4262 + "once_cell", 4263 + "percent-encoding", 4264 + "pin-project-lite", 4265 + "rustls", 4266 + "rustls-pemfile", 4267 + "serde", 4268 + "serde_json", 4269 + "serde_urlencoded", 4270 + "tokio", 4271 + "tokio-native-tls", 4272 + "tokio-rustls", 4273 + "tokio-socks", 4274 + "tokio-util", 4275 + "tower-service", 4276 + "url", 4277 + "wasm-bindgen", 4278 + "wasm-bindgen-futures", 4279 + "web-sys", 4280 + "webpki-roots", 4281 + "winreg", 4282 + ] 4283 + 4284 + [[package]] 4285 + name = "retain_mut" 4286 + version = "0.1.9" 4287 + source = "registry+https://github.com/rust-lang/crates.io-index" 4288 + checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" 4289 + 4290 + [[package]] 4291 + name = "rgb" 4292 + version = "0.8.36" 4293 + source = "registry+https://github.com/rust-lang/crates.io-index" 4294 + checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 4295 + dependencies = [ 4296 + "bytemuck", 4297 + ] 4298 + 4299 + [[package]] 4300 + name = "ring" 4301 + version = "0.16.20" 4302 + source = "registry+https://github.com/rust-lang/crates.io-index" 4303 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 4304 + dependencies = [ 4305 + "cc", 4306 + "libc", 4307 + "once_cell", 4308 + "spin", 4309 + "untrusted", 4310 + "web-sys", 4311 + "winapi", 4312 + ] 4313 + 4314 + [[package]] 4315 + name = "rmp" 4316 + version = "0.8.11" 4317 + source = "registry+https://github.com/rust-lang/crates.io-index" 4318 + checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" 4319 + dependencies = [ 4320 + "byteorder", 4321 + "num-traits", 4322 + "paste", 4323 + ] 4324 + 4325 + [[package]] 4326 + name = "rmp-serde" 4327 + version = "1.1.1" 4328 + source = "registry+https://github.com/rust-lang/crates.io-index" 4329 + checksum = "c5b13be192e0220b8afb7222aa5813cb62cc269ebb5cac346ca6487681d2913e" 4330 + dependencies = [ 4331 + "byteorder", 4332 + "rmp", 4333 + "serde", 4334 + ] 4335 + 4336 + [[package]] 4337 + name = "ruma" 4338 + version = "0.8.2" 4339 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4340 + dependencies = [ 4341 + "assign", 4342 + "js_int", 4343 + "js_option", 4344 + "ruma-appservice-api", 4345 + "ruma-client-api", 4346 + "ruma-common", 4347 + "ruma-federation-api", 4348 + "ruma-push-gateway-api", 4349 + ] 4350 + 4351 + [[package]] 4352 + name = "ruma-appservice-api" 4353 + version = "0.8.1" 4354 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4355 + dependencies = [ 4356 + "js_int", 4357 + "ruma-common", 4358 + "serde", 4359 + "serde_json", 4360 + ] 4361 + 4362 + [[package]] 4363 + name = "ruma-client-api" 4364 + version = "0.16.2" 4365 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4366 + dependencies = [ 4367 + "assign", 4368 + "bytes", 4369 + "http", 4370 + "js_int", 4371 + "js_option", 4372 + "maplit", 4373 + "ruma-common", 4374 + "serde", 4375 + "serde_html_form", 4376 + "serde_json", 4377 + ] 4378 + 4379 + [[package]] 4380 + name = "ruma-common" 4381 + version = "0.11.3" 4382 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4383 + dependencies = [ 4384 + "base64 0.21.0", 4385 + "bytes", 4386 + "form_urlencoded", 4387 + "getrandom 0.2.9", 4388 + "html5ever", 4389 + "http", 4390 + "indexmap", 4391 + "js-sys", 4392 + "js_int", 4393 + "js_option", 4394 + "konst", 4395 + "percent-encoding", 4396 + "phf 0.11.1", 4397 + "pulldown-cmark", 4398 + "rand 0.8.5", 4399 + "regex", 4400 + "ruma-identifiers-validation", 4401 + "ruma-macros", 4402 + "serde", 4403 + "serde_html_form", 4404 + "serde_json", 4405 + "thiserror", 4406 + "tracing", 4407 + "url", 4408 + "uuid", 4409 + "wildmatch", 4410 + ] 4411 + 4412 + [[package]] 4413 + name = "ruma-federation-api" 4414 + version = "0.7.1" 4415 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4416 + dependencies = [ 4417 + "js_int", 4418 + "ruma-common", 4419 + "serde", 4420 + "serde_json", 4421 + ] 4422 + 4423 + [[package]] 4424 + name = "ruma-identifiers-validation" 4425 + version = "0.9.1" 4426 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4427 + dependencies = [ 4428 + "js_int", 4429 + "thiserror", 4430 + ] 4431 + 4432 + [[package]] 4433 + name = "ruma-macros" 4434 + version = "0.11.3" 4435 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4436 + dependencies = [ 4437 + "once_cell", 4438 + "proc-macro-crate", 4439 + "proc-macro2", 4440 + "quote", 4441 + "ruma-identifiers-validation", 4442 + "serde", 4443 + "syn 1.0.109", 4444 + "toml 0.7.3", 4445 + ] 4446 + 4447 + [[package]] 4448 + name = "ruma-push-gateway-api" 4449 + version = "0.7.1" 4450 + source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945" 4451 + dependencies = [ 4452 + "js_int", 4453 + "ruma-common", 4454 + "serde", 4455 + "serde_json", 4456 + ] 4457 + 4458 + [[package]] 4459 + name = "rusqlite" 4460 + version = "0.28.0" 4461 + source = "registry+https://github.com/rust-lang/crates.io-index" 4462 + checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" 4463 + dependencies = [ 4464 + "bitflags 1.3.2", 4465 + "fallible-iterator", 4466 + "fallible-streaming-iterator", 4467 + "hashlink", 4468 + "libsqlite3-sys", 4469 + "smallvec", 4470 + ] 4471 + 4472 + [[package]] 4473 + name = "rustc-demangle" 4474 + version = "0.1.23" 4475 + source = "registry+https://github.com/rust-lang/crates.io-index" 4476 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 4477 + 4478 + [[package]] 4479 + name = "rustix" 4480 + version = "0.37.14" 4481 + source = "registry+https://github.com/rust-lang/crates.io-index" 4482 + checksum = "d9b864d3c18a5785a05953adeed93e2dca37ed30f18e69bba9f30079d51f363f" 4483 + dependencies = [ 4484 + "bitflags 1.3.2", 4485 + "errno", 4486 + "io-lifetimes", 4487 + "libc", 4488 + "linux-raw-sys", 4489 + "windows-sys 0.48.0", 4490 + ] 4491 + 4492 + [[package]] 4493 + name = "rustls" 4494 + version = "0.20.8" 4495 + source = "registry+https://github.com/rust-lang/crates.io-index" 4496 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 4497 + dependencies = [ 4498 + "log", 4499 + "ring", 4500 + "sct", 4501 + "webpki", 4502 + ] 4503 + 4504 + [[package]] 4505 + name = "rustls-pemfile" 4506 + version = "1.0.2" 4507 + source = "registry+https://github.com/rust-lang/crates.io-index" 4508 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 4509 + dependencies = [ 4510 + "base64 0.21.0", 4511 + ] 4512 + 4513 + [[package]] 4514 + name = "rustversion" 4515 + version = "1.0.12" 4516 + source = "registry+https://github.com/rust-lang/crates.io-index" 4517 + checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 4518 + 4519 + [[package]] 4520 + name = "ryu" 4521 + version = "1.0.13" 4522 + source = "registry+https://github.com/rust-lang/crates.io-index" 4523 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 4524 + 4525 + [[package]] 4526 + name = "same-file" 4527 + version = "1.0.6" 4528 + source = "registry+https://github.com/rust-lang/crates.io-index" 4529 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4530 + dependencies = [ 4531 + "winapi-util", 4532 + ] 4533 + 4534 + [[package]] 4535 + name = "sanitize-filename-reader-friendly" 4536 + version = "2.2.1" 4537 + source = "registry+https://github.com/rust-lang/crates.io-index" 4538 + checksum = "b750e71aac86f4b238844ac9416e7339a8de1225eb1ebe5fba89890f634c46bf" 4539 + dependencies = [ 4540 + "const_format", 4541 + ] 4542 + 4543 + [[package]] 4544 + name = "schannel" 4545 + version = "0.1.21" 4546 + source = "registry+https://github.com/rust-lang/crates.io-index" 4547 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 4548 + dependencies = [ 4549 + "windows-sys 0.42.0", 4550 + ] 4551 + 4552 + [[package]] 4553 + name = "scoped-tls" 4554 + version = "1.0.1" 4555 + source = "registry+https://github.com/rust-lang/crates.io-index" 4556 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 4557 + 4558 + [[package]] 4559 + name = "scoped_threadpool" 4560 + version = "0.1.9" 4561 + source = "registry+https://github.com/rust-lang/crates.io-index" 4562 + checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" 4563 + 4564 + [[package]] 4565 + name = "scopeguard" 4566 + version = "1.1.0" 4567 + source = "registry+https://github.com/rust-lang/crates.io-index" 4568 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 4569 + 4570 + [[package]] 4571 + name = "scratch" 4572 + version = "1.0.5" 4573 + source = "registry+https://github.com/rust-lang/crates.io-index" 4574 + checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" 4575 + 4576 + [[package]] 4577 + name = "scroll" 4578 + version = "0.11.0" 4579 + source = "registry+https://github.com/rust-lang/crates.io-index" 4580 + checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da" 4581 + dependencies = [ 4582 + "scroll_derive", 4583 + ] 4584 + 4585 + [[package]] 4586 + name = "scroll_derive" 4587 + version = "0.11.0" 4588 + source = "registry+https://github.com/rust-lang/crates.io-index" 4589 + checksum = "bdbda6ac5cd1321e724fa9cee216f3a61885889b896f073b8f82322789c5250e" 4590 + dependencies = [ 4591 + "proc-macro2", 4592 + "quote", 4593 + "syn 1.0.109", 4594 + ] 4595 + 4596 + [[package]] 4597 + name = "sct" 4598 + version = "0.7.0" 4599 + source = "registry+https://github.com/rust-lang/crates.io-index" 4600 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 4601 + dependencies = [ 4602 + "ring", 4603 + "untrusted", 4604 + ] 4605 + 4606 + [[package]] 4607 + name = "security-framework" 4608 + version = "2.8.2" 4609 + source = "registry+https://github.com/rust-lang/crates.io-index" 4610 + checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 4611 + dependencies = [ 4612 + "bitflags 1.3.2", 4613 + "core-foundation", 4614 + "core-foundation-sys", 4615 + "libc", 4616 + "security-framework-sys", 4617 + ] 4618 + 4619 + [[package]] 4620 + name = "security-framework-sys" 4621 + version = "2.8.0" 4622 + source = "registry+https://github.com/rust-lang/crates.io-index" 4623 + checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 4624 + dependencies = [ 4625 + "core-foundation-sys", 4626 + "libc", 4627 + ] 4628 + 4629 + [[package]] 4630 + name = "semver" 4631 + version = "1.0.17" 4632 + source = "registry+https://github.com/rust-lang/crates.io-index" 4633 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 4634 + dependencies = [ 4635 + "serde", 4636 + ] 4637 + 4638 + [[package]] 4639 + name = "serde" 4640 + version = "1.0.160" 4641 + source = "registry+https://github.com/rust-lang/crates.io-index" 4642 + checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" 4643 + dependencies = [ 4644 + "serde_derive", 4645 + ] 4646 + 4647 + [[package]] 4648 + name = "serde_bytes" 4649 + version = "0.11.9" 4650 + source = "registry+https://github.com/rust-lang/crates.io-index" 4651 + checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" 4652 + dependencies = [ 4653 + "serde", 4654 + ] 4655 + 4656 + [[package]] 4657 + name = "serde_derive" 4658 + version = "1.0.160" 4659 + source = "registry+https://github.com/rust-lang/crates.io-index" 4660 + checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" 4661 + dependencies = [ 4662 + "proc-macro2", 4663 + "quote", 4664 + "syn 2.0.15", 4665 + ] 4666 + 4667 + [[package]] 4668 + name = "serde_html_form" 4669 + version = "0.2.0" 4670 + source = "registry+https://github.com/rust-lang/crates.io-index" 4671 + checksum = "53192e38d5c88564b924dbe9b60865ecbb71b81d38c4e61c817cffd3e36ef696" 4672 + dependencies = [ 4673 + "form_urlencoded", 4674 + "indexmap", 4675 + "itoa", 4676 + "ryu", 4677 + "serde", 4678 + ] 4679 + 4680 + [[package]] 4681 + name = "serde_json" 4682 + version = "1.0.96" 4683 + source = "registry+https://github.com/rust-lang/crates.io-index" 4684 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 4685 + dependencies = [ 4686 + "itoa", 4687 + "ryu", 4688 + "serde", 4689 + ] 4690 + 4691 + [[package]] 4692 + name = "serde_path_to_error" 4693 + version = "0.1.11" 4694 + source = "registry+https://github.com/rust-lang/crates.io-index" 4695 + checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 4696 + dependencies = [ 4697 + "serde", 4698 + ] 4699 + 4700 + [[package]] 4701 + name = "serde_qs" 4702 + version = "0.8.5" 4703 + source = "registry+https://github.com/rust-lang/crates.io-index" 4704 + checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 4705 + dependencies = [ 4706 + "percent-encoding", 4707 + "serde", 4708 + "thiserror", 4709 + ] 4710 + 4711 + [[package]] 4712 + name = "serde_spanned" 4713 + version = "0.6.1" 4714 + source = "registry+https://github.com/rust-lang/crates.io-index" 4715 + checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 4716 + dependencies = [ 4717 + "serde", 4718 + ] 4719 + 4720 + [[package]] 4721 + name = "serde_urlencoded" 4722 + version = "0.7.1" 4723 + source = "registry+https://github.com/rust-lang/crates.io-index" 4724 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4725 + dependencies = [ 4726 + "form_urlencoded", 4727 + "itoa", 4728 + "ryu", 4729 + "serde", 4730 + ] 4731 + 4732 + [[package]] 4733 + name = "serde_yaml" 4734 + version = "0.9.21" 4735 + source = "registry+https://github.com/rust-lang/crates.io-index" 4736 + checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" 4737 + dependencies = [ 4738 + "indexmap", 4739 + "itoa", 4740 + "ryu", 4741 + "serde", 4742 + "unsafe-libyaml", 4743 + ] 4744 + 4745 + [[package]] 4746 + name = "sha2" 4747 + version = "0.9.9" 4748 + source = "registry+https://github.com/rust-lang/crates.io-index" 4749 + checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 4750 + dependencies = [ 4751 + "block-buffer 0.9.0", 4752 + "cfg-if", 4753 + "cpufeatures", 4754 + "digest 0.9.0", 4755 + "opaque-debug", 4756 + ] 4757 + 4758 + [[package]] 4759 + name = "sha2" 4760 + version = "0.10.6" 4761 + source = "registry+https://github.com/rust-lang/crates.io-index" 4762 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 4763 + dependencies = [ 4764 + "cfg-if", 4765 + "cpufeatures", 4766 + "digest 0.10.6", 4767 + ] 4768 + 4769 + [[package]] 4770 + name = "sharded-slab" 4771 + version = "0.1.4" 4772 + source = "registry+https://github.com/rust-lang/crates.io-index" 4773 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 4774 + dependencies = [ 4775 + "lazy_static", 4776 + ] 4777 + 4778 + [[package]] 4779 + name = "signal-hook" 4780 + version = "0.3.15" 4781 + source = "registry+https://github.com/rust-lang/crates.io-index" 4782 + checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 4783 + dependencies = [ 4784 + "libc", 4785 + "signal-hook-registry", 4786 + ] 4787 + 4788 + [[package]] 4789 + name = "signal-hook-registry" 4790 + version = "1.4.1" 4791 + source = "registry+https://github.com/rust-lang/crates.io-index" 4792 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4793 + dependencies = [ 4794 + "libc", 4795 + ] 4796 + 4797 + [[package]] 4798 + name = "signature" 4799 + version = "1.6.4" 4800 + source = "registry+https://github.com/rust-lang/crates.io-index" 4801 + checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 4802 + 4803 + [[package]] 4804 + name = "simd-adler32" 4805 + version = "0.3.5" 4806 + source = "registry+https://github.com/rust-lang/crates.io-index" 4807 + checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 4808 + 4809 + [[package]] 4810 + name = "siphasher" 4811 + version = "0.3.10" 4812 + source = "registry+https://github.com/rust-lang/crates.io-index" 4813 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 4814 + 4815 + [[package]] 4816 + name = "slab" 4817 + version = "0.4.8" 4818 + source = "registry+https://github.com/rust-lang/crates.io-index" 4819 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 4820 + dependencies = [ 4821 + "autocfg", 4822 + ] 4823 + 4824 + [[package]] 4825 + name = "sled" 4826 + version = "0.34.7" 4827 + source = "registry+https://github.com/rust-lang/crates.io-index" 4828 + checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935" 4829 + dependencies = [ 4830 + "crc32fast", 4831 + "crossbeam-epoch", 4832 + "crossbeam-utils", 4833 + "fs2", 4834 + "fxhash", 4835 + "libc", 4836 + "log", 4837 + "parking_lot 0.11.2", 4838 + ] 4839 + 4840 + [[package]] 4841 + name = "sliding-sync-integration-test" 4842 + version = "0.1.0" 4843 + dependencies = [ 4844 + "anyhow", 4845 + "assert_matches", 4846 + "eyeball", 4847 + "eyeball-im", 4848 + "futures", 4849 + "matrix-sdk", 4850 + "matrix-sdk-integration-testing", 4851 + "tokio", 4852 + "uuid", 4853 + ] 4854 + 4855 + [[package]] 4856 + name = "smallvec" 4857 + version = "1.10.0" 4858 + source = "registry+https://github.com/rust-lang/crates.io-index" 4859 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 4860 + 4861 + [[package]] 4862 + name = "socket2" 4863 + version = "0.4.9" 4864 + source = "registry+https://github.com/rust-lang/crates.io-index" 4865 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 4866 + dependencies = [ 4867 + "libc", 4868 + "winapi", 4869 + ] 4870 + 4871 + [[package]] 4872 + name = "spin" 4873 + version = "0.5.2" 4874 + source = "registry+https://github.com/rust-lang/crates.io-index" 4875 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4876 + 4877 + [[package]] 4878 + name = "spki" 4879 + version = "0.5.4" 4880 + source = "registry+https://github.com/rust-lang/crates.io-index" 4881 + checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27" 4882 + dependencies = [ 4883 + "der", 4884 + ] 4885 + 4886 + [[package]] 4887 + name = "stable_deref_trait" 4888 + version = "1.2.0" 4889 + source = "registry+https://github.com/rust-lang/crates.io-index" 4890 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 4891 + 4892 + [[package]] 4893 + name = "static_assertions" 4894 + version = "1.1.0" 4895 + source = "registry+https://github.com/rust-lang/crates.io-index" 4896 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4897 + 4898 + [[package]] 4899 + name = "str_stack" 4900 + version = "0.1.0" 4901 + source = "registry+https://github.com/rust-lang/crates.io-index" 4902 + checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb" 4903 + 4904 + [[package]] 4905 + name = "string_cache" 4906 + version = "0.8.7" 4907 + source = "registry+https://github.com/rust-lang/crates.io-index" 4908 + checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 4909 + dependencies = [ 4910 + "new_debug_unreachable", 4911 + "once_cell", 4912 + "parking_lot 0.12.1", 4913 + "phf_shared 0.10.0", 4914 + "precomputed-hash", 4915 + "serde", 4916 + ] 4917 + 4918 + [[package]] 4919 + name = "string_cache_codegen" 4920 + version = "0.5.2" 4921 + source = "registry+https://github.com/rust-lang/crates.io-index" 4922 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 4923 + dependencies = [ 4924 + "phf_generator 0.10.0", 4925 + "phf_shared 0.10.0", 4926 + "proc-macro2", 4927 + "quote", 4928 + ] 4929 + 4930 + [[package]] 4931 + name = "strsim" 4932 + version = "0.10.0" 4933 + source = "registry+https://github.com/rust-lang/crates.io-index" 4934 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4935 + 4936 + [[package]] 4937 + name = "subtle" 4938 + version = "2.4.1" 4939 + source = "registry+https://github.com/rust-lang/crates.io-index" 4940 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 4941 + 4942 + [[package]] 4943 + name = "symbolic-common" 4944 + version = "10.2.1" 4945 + source = "registry+https://github.com/rust-lang/crates.io-index" 4946 + checksum = "1b55cdc318ede251d0957f07afe5fed912119b8c1bc5a7804151826db999e737" 4947 + dependencies = [ 4948 + "debugid", 4949 + "memmap2", 4950 + "stable_deref_trait", 4951 + "uuid", 4952 + ] 4953 + 4954 + [[package]] 4955 + name = "symbolic-demangle" 4956 + version = "10.2.1" 4957 + source = "registry+https://github.com/rust-lang/crates.io-index" 4958 + checksum = "79be897be8a483a81fff6a3a4e195b4ac838ef73ca42d348b3f722da9902e489" 4959 + dependencies = [ 4960 + "cpp_demangle", 4961 + "rustc-demangle", 4962 + "symbolic-common", 4963 + ] 4964 + 4965 + [[package]] 4966 + name = "syn" 4967 + version = "1.0.109" 4968 + source = "registry+https://github.com/rust-lang/crates.io-index" 4969 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4970 + dependencies = [ 4971 + "proc-macro2", 4972 + "quote", 4973 + "unicode-ident", 4974 + ] 4975 + 4976 + [[package]] 4977 + name = "syn" 4978 + version = "2.0.15" 4979 + source = "registry+https://github.com/rust-lang/crates.io-index" 4980 + checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 4981 + dependencies = [ 4982 + "proc-macro2", 4983 + "quote", 4984 + "unicode-ident", 4985 + ] 4986 + 4987 + [[package]] 4988 + name = "sync_wrapper" 4989 + version = "0.1.2" 4990 + source = "registry+https://github.com/rust-lang/crates.io-index" 4991 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4992 + 4993 + [[package]] 4994 + name = "tempfile" 4995 + version = "3.5.0" 4996 + source = "registry+https://github.com/rust-lang/crates.io-index" 4997 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 4998 + dependencies = [ 4999 + "cfg-if", 5000 + "fastrand", 5001 + "redox_syscall 0.3.5", 5002 + "rustix", 5003 + "windows-sys 0.45.0", 5004 + ] 5005 + 5006 + [[package]] 5007 + name = "tendril" 5008 + version = "0.4.3" 5009 + source = "registry+https://github.com/rust-lang/crates.io-index" 5010 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 5011 + dependencies = [ 5012 + "futf", 5013 + "mac", 5014 + "utf-8", 5015 + ] 5016 + 5017 + [[package]] 5018 + name = "termcolor" 5019 + version = "1.2.0" 5020 + source = "registry+https://github.com/rust-lang/crates.io-index" 5021 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 5022 + dependencies = [ 5023 + "winapi-util", 5024 + ] 5025 + 5026 + [[package]] 5027 + name = "textwrap" 5028 + version = "0.16.0" 5029 + source = "registry+https://github.com/rust-lang/crates.io-index" 5030 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 5031 + 5032 + [[package]] 5033 + name = "thiserror" 5034 + version = "1.0.40" 5035 + source = "registry+https://github.com/rust-lang/crates.io-index" 5036 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 5037 + dependencies = [ 5038 + "thiserror-impl", 5039 + ] 5040 + 5041 + [[package]] 5042 + name = "thiserror-impl" 5043 + version = "1.0.40" 5044 + source = "registry+https://github.com/rust-lang/crates.io-index" 5045 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 5046 + dependencies = [ 5047 + "proc-macro2", 5048 + "quote", 5049 + "syn 2.0.15", 5050 + ] 5051 + 5052 + [[package]] 5053 + name = "thread_local" 5054 + version = "1.1.7" 5055 + source = "registry+https://github.com/rust-lang/crates.io-index" 5056 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 5057 + dependencies = [ 5058 + "cfg-if", 5059 + "once_cell", 5060 + ] 5061 + 5062 + [[package]] 5063 + name = "tiff" 5064 + version = "0.6.1" 5065 + source = "registry+https://github.com/rust-lang/crates.io-index" 5066 + checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437" 5067 + dependencies = [ 5068 + "jpeg-decoder 0.1.22", 5069 + "miniz_oxide 0.4.4", 5070 + "weezl", 5071 + ] 5072 + 5073 + [[package]] 5074 + name = "tiff" 5075 + version = "0.8.1" 5076 + source = "registry+https://github.com/rust-lang/crates.io-index" 5077 + checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471" 5078 + dependencies = [ 5079 + "flate2", 5080 + "jpeg-decoder 0.3.0", 5081 + "weezl", 5082 + ] 5083 + 5084 + [[package]] 5085 + name = "time" 5086 + version = "0.1.45" 5087 + source = "registry+https://github.com/rust-lang/crates.io-index" 5088 + checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 5089 + dependencies = [ 5090 + "libc", 5091 + "wasi 0.10.0+wasi-snapshot-preview1", 5092 + "winapi", 5093 + ] 5094 + 5095 + [[package]] 5096 + name = "time" 5097 + version = "0.3.20" 5098 + source = "registry+https://github.com/rust-lang/crates.io-index" 5099 + checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 5100 + dependencies = [ 5101 + "itoa", 5102 + "serde", 5103 + "time-core", 5104 + "time-macros", 5105 + ] 5106 + 5107 + [[package]] 5108 + name = "time-core" 5109 + version = "0.1.0" 5110 + source = "registry+https://github.com/rust-lang/crates.io-index" 5111 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 5112 + 5113 + [[package]] 5114 + name = "time-macros" 5115 + version = "0.2.8" 5116 + source = "registry+https://github.com/rust-lang/crates.io-index" 5117 + checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 5118 + dependencies = [ 5119 + "time-core", 5120 + ] 5121 + 5122 + [[package]] 5123 + name = "tinytemplate" 5124 + version = "1.2.1" 5125 + source = "registry+https://github.com/rust-lang/crates.io-index" 5126 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 5127 + dependencies = [ 5128 + "serde", 5129 + "serde_json", 5130 + ] 5131 + 5132 + [[package]] 5133 + name = "tinyvec" 5134 + version = "1.6.0" 5135 + source = "registry+https://github.com/rust-lang/crates.io-index" 5136 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 5137 + dependencies = [ 5138 + "tinyvec_macros", 5139 + ] 5140 + 5141 + [[package]] 5142 + name = "tinyvec_macros" 5143 + version = "0.1.1" 5144 + source = "registry+https://github.com/rust-lang/crates.io-index" 5145 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5146 + 5147 + [[package]] 5148 + name = "tokio" 5149 + version = "1.27.0" 5150 + source = "registry+https://github.com/rust-lang/crates.io-index" 5151 + checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 5152 + dependencies = [ 5153 + "autocfg", 5154 + "bytes", 5155 + "libc", 5156 + "mio", 5157 + "num_cpus", 5158 + "pin-project-lite", 5159 + "socket2", 5160 + "tokio-macros", 5161 + "windows-sys 0.45.0", 5162 + ] 5163 + 5164 + [[package]] 5165 + name = "tokio-io-timeout" 5166 + version = "1.2.0" 5167 + source = "registry+https://github.com/rust-lang/crates.io-index" 5168 + checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 5169 + dependencies = [ 5170 + "pin-project-lite", 5171 + "tokio", 5172 + ] 5173 + 5174 + [[package]] 5175 + name = "tokio-macros" 5176 + version = "2.0.0" 5177 + source = "registry+https://github.com/rust-lang/crates.io-index" 5178 + checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" 5179 + dependencies = [ 5180 + "proc-macro2", 5181 + "quote", 5182 + "syn 2.0.15", 5183 + ] 5184 + 5185 + [[package]] 5186 + name = "tokio-native-tls" 5187 + version = "0.3.1" 5188 + source = "registry+https://github.com/rust-lang/crates.io-index" 5189 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 5190 + dependencies = [ 5191 + "native-tls", 5192 + "tokio", 5193 + ] 5194 + 5195 + [[package]] 5196 + name = "tokio-rustls" 5197 + version = "0.23.4" 5198 + source = "registry+https://github.com/rust-lang/crates.io-index" 5199 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 5200 + dependencies = [ 5201 + "rustls", 5202 + "tokio", 5203 + "webpki", 5204 + ] 5205 + 5206 + [[package]] 5207 + name = "tokio-socks" 5208 + version = "0.5.1" 5209 + source = "registry+https://github.com/rust-lang/crates.io-index" 5210 + checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 5211 + dependencies = [ 5212 + "either", 5213 + "futures-util", 5214 + "thiserror", 5215 + "tokio", 5216 + ] 5217 + 5218 + [[package]] 5219 + name = "tokio-stream" 5220 + version = "0.1.12" 5221 + source = "registry+https://github.com/rust-lang/crates.io-index" 5222 + checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313" 5223 + dependencies = [ 5224 + "futures-core", 5225 + "pin-project-lite", 5226 + "tokio", 5227 + "tokio-util", 5228 + ] 5229 + 5230 + [[package]] 5231 + name = "tokio-util" 5232 + version = "0.7.7" 5233 + source = "registry+https://github.com/rust-lang/crates.io-index" 5234 + checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 5235 + dependencies = [ 5236 + "bytes", 5237 + "futures-core", 5238 + "futures-sink", 5239 + "pin-project-lite", 5240 + "tokio", 5241 + "tracing", 5242 + ] 5243 + 5244 + [[package]] 5245 + name = "toml" 5246 + version = "0.5.11" 5247 + source = "registry+https://github.com/rust-lang/crates.io-index" 5248 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 5249 + dependencies = [ 5250 + "serde", 5251 + ] 5252 + 5253 + [[package]] 5254 + name = "toml" 5255 + version = "0.7.3" 5256 + source = "registry+https://github.com/rust-lang/crates.io-index" 5257 + checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 5258 + dependencies = [ 5259 + "serde", 5260 + "serde_spanned", 5261 + "toml_datetime", 5262 + "toml_edit", 5263 + ] 5264 + 5265 + [[package]] 5266 + name = "toml_datetime" 5267 + version = "0.6.1" 5268 + source = "registry+https://github.com/rust-lang/crates.io-index" 5269 + checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 5270 + dependencies = [ 5271 + "serde", 5272 + ] 5273 + 5274 + [[package]] 5275 + name = "toml_edit" 5276 + version = "0.19.8" 5277 + source = "registry+https://github.com/rust-lang/crates.io-index" 5278 + checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 5279 + dependencies = [ 5280 + "indexmap", 5281 + "serde", 5282 + "serde_spanned", 5283 + "toml_datetime", 5284 + "winnow", 5285 + ] 5286 + 5287 + [[package]] 5288 + name = "tonic" 5289 + version = "0.8.3" 5290 + source = "registry+https://github.com/rust-lang/crates.io-index" 5291 + checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb" 5292 + dependencies = [ 5293 + "async-stream", 5294 + "async-trait", 5295 + "axum", 5296 + "base64 0.13.1", 5297 + "bytes", 5298 + "futures-core", 5299 + "futures-util", 5300 + "h2", 5301 + "http", 5302 + "http-body", 5303 + "hyper", 5304 + "hyper-timeout", 5305 + "percent-encoding", 5306 + "pin-project", 5307 + "prost", 5308 + "prost-derive", 5309 + "tokio", 5310 + "tokio-stream", 5311 + "tokio-util", 5312 + "tower", 5313 + "tower-layer", 5314 + "tower-service", 5315 + "tracing", 5316 + "tracing-futures", 5317 + ] 5318 + 5319 + [[package]] 5320 + name = "tonic-build" 5321 + version = "0.8.4" 5322 + source = "registry+https://github.com/rust-lang/crates.io-index" 5323 + checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4" 5324 + dependencies = [ 5325 + "prettyplease", 5326 + "proc-macro2", 5327 + "prost-build", 5328 + "quote", 5329 + "syn 1.0.109", 5330 + ] 5331 + 5332 + [[package]] 5333 + name = "tower" 5334 + version = "0.4.13" 5335 + source = "registry+https://github.com/rust-lang/crates.io-index" 5336 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 5337 + dependencies = [ 5338 + "futures-core", 5339 + "futures-util", 5340 + "indexmap", 5341 + "pin-project", 5342 + "pin-project-lite", 5343 + "rand 0.8.5", 5344 + "slab", 5345 + "tokio", 5346 + "tokio-util", 5347 + "tower-layer", 5348 + "tower-service", 5349 + "tracing", 5350 + ] 5351 + 5352 + [[package]] 5353 + name = "tower-layer" 5354 + version = "0.3.2" 5355 + source = "registry+https://github.com/rust-lang/crates.io-index" 5356 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 5357 + 5358 + [[package]] 5359 + name = "tower-service" 5360 + version = "0.3.2" 5361 + source = "registry+https://github.com/rust-lang/crates.io-index" 5362 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 5363 + 5364 + [[package]] 5365 + name = "tracing" 5366 + version = "0.1.37" 5367 + source = "registry+https://github.com/rust-lang/crates.io-index" 5368 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 5369 + dependencies = [ 5370 + "cfg-if", 5371 + "log", 5372 + "pin-project-lite", 5373 + "tracing-attributes", 5374 + "tracing-core", 5375 + ] 5376 + 5377 + [[package]] 5378 + name = "tracing-android" 5379 + version = "0.2.0" 5380 + source = "registry+https://github.com/rust-lang/crates.io-index" 5381 + checksum = "12612be8f868a09c0ceae7113ff26afe79d81a24473a393cb9120ece162e86c0" 5382 + dependencies = [ 5383 + "android_log-sys", 5384 + "tracing", 5385 + "tracing-subscriber", 5386 + ] 5387 + 5388 + [[package]] 5389 + name = "tracing-attributes" 5390 + version = "0.1.23" 5391 + source = "registry+https://github.com/rust-lang/crates.io-index" 5392 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 5393 + dependencies = [ 5394 + "proc-macro2", 5395 + "quote", 5396 + "syn 1.0.109", 5397 + ] 5398 + 5399 + [[package]] 5400 + name = "tracing-core" 5401 + version = "0.1.30" 5402 + source = "registry+https://github.com/rust-lang/crates.io-index" 5403 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 5404 + dependencies = [ 5405 + "once_cell", 5406 + "valuable", 5407 + ] 5408 + 5409 + [[package]] 5410 + name = "tracing-futures" 5411 + version = "0.2.5" 5412 + source = "registry+https://github.com/rust-lang/crates.io-index" 5413 + checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 5414 + dependencies = [ 5415 + "pin-project", 5416 + "tracing", 5417 + ] 5418 + 5419 + [[package]] 5420 + name = "tracing-log" 5421 + version = "0.1.3" 5422 + source = "registry+https://github.com/rust-lang/crates.io-index" 5423 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 5424 + dependencies = [ 5425 + "lazy_static", 5426 + "log", 5427 + "tracing-core", 5428 + ] 5429 + 5430 + [[package]] 5431 + name = "tracing-opentelemetry" 5432 + version = "0.18.0" 5433 + source = "registry+https://github.com/rust-lang/crates.io-index" 5434 + checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de" 5435 + dependencies = [ 5436 + "once_cell", 5437 + "opentelemetry", 5438 + "tracing", 5439 + "tracing-core", 5440 + "tracing-log", 5441 + "tracing-subscriber", 5442 + ] 5443 + 5444 + [[package]] 5445 + name = "tracing-subscriber" 5446 + version = "0.3.17" 5447 + source = "registry+https://github.com/rust-lang/crates.io-index" 5448 + checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 5449 + dependencies = [ 5450 + "matchers", 5451 + "nu-ansi-term", 5452 + "once_cell", 5453 + "regex", 5454 + "sharded-slab", 5455 + "smallvec", 5456 + "thread_local", 5457 + "time 0.3.20", 5458 + "tracing", 5459 + "tracing-core", 5460 + "tracing-log", 5461 + ] 5462 + 5463 + [[package]] 5464 + name = "try-lock" 5465 + version = "0.2.4" 5466 + source = "registry+https://github.com/rust-lang/crates.io-index" 5467 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 5468 + 5469 + [[package]] 5470 + name = "typenum" 5471 + version = "1.16.0" 5472 + source = "registry+https://github.com/rust-lang/crates.io-index" 5473 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 5474 + 5475 + [[package]] 5476 + name = "unarray" 5477 + version = "0.1.4" 5478 + source = "registry+https://github.com/rust-lang/crates.io-index" 5479 + checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 5480 + 5481 + [[package]] 5482 + name = "unicase" 5483 + version = "2.6.0" 5484 + source = "registry+https://github.com/rust-lang/crates.io-index" 5485 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 5486 + dependencies = [ 5487 + "version_check", 5488 + ] 5489 + 5490 + [[package]] 5491 + name = "unicode-bidi" 5492 + version = "0.3.13" 5493 + source = "registry+https://github.com/rust-lang/crates.io-index" 5494 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 5495 + 5496 + [[package]] 5497 + name = "unicode-ident" 5498 + version = "1.0.8" 5499 + source = "registry+https://github.com/rust-lang/crates.io-index" 5500 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 5501 + 5502 + [[package]] 5503 + name = "unicode-normalization" 5504 + version = "0.1.22" 5505 + source = "registry+https://github.com/rust-lang/crates.io-index" 5506 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5507 + dependencies = [ 5508 + "tinyvec", 5509 + ] 5510 + 5511 + [[package]] 5512 + name = "unicode-segmentation" 5513 + version = "1.10.1" 5514 + source = "registry+https://github.com/rust-lang/crates.io-index" 5515 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 5516 + 5517 + [[package]] 5518 + name = "unicode-width" 5519 + version = "0.1.10" 5520 + source = "registry+https://github.com/rust-lang/crates.io-index" 5521 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 5522 + 5523 + [[package]] 5524 + name = "unicode-xid" 5525 + version = "0.2.4" 5526 + source = "registry+https://github.com/rust-lang/crates.io-index" 5527 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5528 + 5529 + [[package]] 5530 + name = "uniffi" 5531 + version = "0.23.0" 5532 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5533 + dependencies = [ 5534 + "anyhow", 5535 + "camino", 5536 + "clap 3.2.23", 5537 + "uniffi_bindgen", 5538 + "uniffi_build", 5539 + "uniffi_core", 5540 + "uniffi_macros", 5541 + ] 5542 + 5543 + [[package]] 5544 + name = "uniffi-bindgen" 5545 + version = "0.1.0" 5546 + dependencies = [ 5547 + "uniffi", 5548 + ] 5549 + 5550 + [[package]] 5551 + name = "uniffi_bindgen" 5552 + version = "0.23.0" 5553 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5554 + dependencies = [ 5555 + "anyhow", 5556 + "askama", 5557 + "camino", 5558 + "fs-err", 5559 + "glob", 5560 + "goblin", 5561 + "heck", 5562 + "once_cell", 5563 + "paste", 5564 + "serde", 5565 + "serde_json", 5566 + "toml 0.5.11", 5567 + "uniffi_meta", 5568 + "uniffi_testing", 5569 + "weedle2", 5570 + ] 5571 + 5572 + [[package]] 5573 + name = "uniffi_build" 5574 + version = "0.23.0" 5575 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5576 + dependencies = [ 5577 + "anyhow", 5578 + "camino", 5579 + "uniffi_bindgen", 5580 + ] 5581 + 5582 + [[package]] 5583 + name = "uniffi_checksum_derive" 5584 + version = "0.23.0" 5585 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5586 + dependencies = [ 5587 + "quote", 5588 + "syn 1.0.109", 5589 + ] 5590 + 5591 + [[package]] 5592 + name = "uniffi_core" 5593 + version = "0.23.0" 5594 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5595 + dependencies = [ 5596 + "anyhow", 5597 + "bytes", 5598 + "camino", 5599 + "cargo_metadata", 5600 + "log", 5601 + "once_cell", 5602 + "paste", 5603 + "static_assertions", 5604 + ] 5605 + 5606 + [[package]] 5607 + name = "uniffi_macros" 5608 + version = "0.23.0" 5609 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5610 + dependencies = [ 5611 + "bincode", 5612 + "camino", 5613 + "fs-err", 5614 + "once_cell", 5615 + "proc-macro2", 5616 + "quote", 5617 + "serde", 5618 + "syn 1.0.109", 5619 + "toml 0.5.11", 5620 + "uniffi_build", 5621 + "uniffi_meta", 5622 + ] 5623 + 5624 + [[package]] 5625 + name = "uniffi_meta" 5626 + version = "0.23.0" 5627 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5628 + dependencies = [ 5629 + "anyhow", 5630 + "bytes", 5631 + "serde", 5632 + "siphasher", 5633 + "uniffi_checksum_derive", 5634 + "uniffi_core", 5635 + ] 5636 + 5637 + [[package]] 5638 + name = "uniffi_testing" 5639 + version = "0.23.0" 5640 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5641 + dependencies = [ 5642 + "anyhow", 5643 + "camino", 5644 + "cargo_metadata", 5645 + "fs-err", 5646 + "once_cell", 5647 + "serde", 5648 + "serde_json", 5649 + ] 5650 + 5651 + [[package]] 5652 + name = "universal-hash" 5653 + version = "0.4.1" 5654 + source = "registry+https://github.com/rust-lang/crates.io-index" 5655 + checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 5656 + dependencies = [ 5657 + "generic-array", 5658 + "subtle", 5659 + ] 5660 + 5661 + [[package]] 5662 + name = "unsafe-libyaml" 5663 + version = "0.2.8" 5664 + source = "registry+https://github.com/rust-lang/crates.io-index" 5665 + checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6" 5666 + 5667 + [[package]] 5668 + name = "untrusted" 5669 + version = "0.7.1" 5670 + source = "registry+https://github.com/rust-lang/crates.io-index" 5671 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 5672 + 5673 + [[package]] 5674 + name = "url" 5675 + version = "2.3.1" 5676 + source = "registry+https://github.com/rust-lang/crates.io-index" 5677 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 5678 + dependencies = [ 5679 + "form_urlencoded", 5680 + "idna", 5681 + "percent-encoding", 5682 + "serde", 5683 + ] 5684 + 5685 + [[package]] 5686 + name = "utf-8" 5687 + version = "0.7.6" 5688 + source = "registry+https://github.com/rust-lang/crates.io-index" 5689 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 5690 + 5691 + [[package]] 5692 + name = "utf8parse" 5693 + version = "0.2.1" 5694 + source = "registry+https://github.com/rust-lang/crates.io-index" 5695 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5696 + 5697 + [[package]] 5698 + name = "uuid" 5699 + version = "1.3.1" 5700 + source = "registry+https://github.com/rust-lang/crates.io-index" 5701 + checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb" 5702 + dependencies = [ 5703 + "getrandom 0.2.9", 5704 + "wasm-bindgen", 5705 + ] 5706 + 5707 + [[package]] 5708 + name = "valuable" 5709 + version = "0.1.0" 5710 + source = "registry+https://github.com/rust-lang/crates.io-index" 5711 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 5712 + 5713 + [[package]] 5714 + name = "value-bag" 5715 + version = "1.0.0-alpha.9" 5716 + source = "registry+https://github.com/rust-lang/crates.io-index" 5717 + checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" 5718 + dependencies = [ 5719 + "ctor 0.1.26", 5720 + "version_check", 5721 + ] 5722 + 5723 + [[package]] 5724 + name = "vcpkg" 5725 + version = "0.2.15" 5726 + source = "registry+https://github.com/rust-lang/crates.io-index" 5727 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5728 + 5729 + [[package]] 5730 + name = "version_check" 5731 + version = "0.9.4" 5732 + source = "registry+https://github.com/rust-lang/crates.io-index" 5733 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5734 + 5735 + [[package]] 5736 + name = "vodozemac" 5737 + version = "0.3.0" 5738 + source = "git+https://github.com/matrix-org/vodozemac?rev=fb609ca1e4df5a7a818490ae86ac694119e41e71#fb609ca1e4df5a7a818490ae86ac694119e41e71" 5739 + dependencies = [ 5740 + "aes", 5741 + "arrayvec", 5742 + "base64 0.13.1", 5743 + "cbc", 5744 + "ed25519-dalek", 5745 + "hkdf", 5746 + "hmac", 5747 + "matrix-pickle", 5748 + "pkcs7", 5749 + "prost", 5750 + "rand 0.7.3", 5751 + "serde", 5752 + "serde_json", 5753 + "sha2 0.10.6", 5754 + "subtle", 5755 + "thiserror", 5756 + "x25519-dalek", 5757 + "zeroize", 5758 + ] 5759 + 5760 + [[package]] 5761 + name = "waker-fn" 5762 + version = "1.1.0" 5763 + source = "registry+https://github.com/rust-lang/crates.io-index" 5764 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 5765 + 5766 + [[package]] 5767 + name = "walkdir" 5768 + version = "2.3.3" 5769 + source = "registry+https://github.com/rust-lang/crates.io-index" 5770 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 5771 + dependencies = [ 5772 + "same-file", 5773 + "winapi-util", 5774 + ] 5775 + 5776 + [[package]] 5777 + name = "want" 5778 + version = "0.3.0" 5779 + source = "registry+https://github.com/rust-lang/crates.io-index" 5780 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 5781 + dependencies = [ 5782 + "log", 5783 + "try-lock", 5784 + ] 5785 + 5786 + [[package]] 5787 + name = "wasi" 5788 + version = "0.9.0+wasi-snapshot-preview1" 5789 + source = "registry+https://github.com/rust-lang/crates.io-index" 5790 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 5791 + 5792 + [[package]] 5793 + name = "wasi" 5794 + version = "0.10.0+wasi-snapshot-preview1" 5795 + source = "registry+https://github.com/rust-lang/crates.io-index" 5796 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 5797 + 5798 + [[package]] 5799 + name = "wasi" 5800 + version = "0.11.0+wasi-snapshot-preview1" 5801 + source = "registry+https://github.com/rust-lang/crates.io-index" 5802 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5803 + 5804 + [[package]] 5805 + name = "wasm-bindgen" 5806 + version = "0.2.84" 5807 + source = "registry+https://github.com/rust-lang/crates.io-index" 5808 + checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 5809 + dependencies = [ 5810 + "cfg-if", 5811 + "wasm-bindgen-macro", 5812 + ] 5813 + 5814 + [[package]] 5815 + name = "wasm-bindgen-backend" 5816 + version = "0.2.84" 5817 + source = "registry+https://github.com/rust-lang/crates.io-index" 5818 + checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 5819 + dependencies = [ 5820 + "bumpalo", 5821 + "log", 5822 + "once_cell", 5823 + "proc-macro2", 5824 + "quote", 5825 + "syn 1.0.109", 5826 + "wasm-bindgen-shared", 5827 + ] 5828 + 5829 + [[package]] 5830 + name = "wasm-bindgen-futures" 5831 + version = "0.4.34" 5832 + source = "registry+https://github.com/rust-lang/crates.io-index" 5833 + checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 5834 + dependencies = [ 5835 + "cfg-if", 5836 + "js-sys", 5837 + "wasm-bindgen", 5838 + "web-sys", 5839 + ] 5840 + 5841 + [[package]] 5842 + name = "wasm-bindgen-macro" 5843 + version = "0.2.84" 5844 + source = "registry+https://github.com/rust-lang/crates.io-index" 5845 + checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 5846 + dependencies = [ 5847 + "quote", 5848 + "wasm-bindgen-macro-support", 5849 + ] 5850 + 5851 + [[package]] 5852 + name = "wasm-bindgen-macro-support" 5853 + version = "0.2.84" 5854 + source = "registry+https://github.com/rust-lang/crates.io-index" 5855 + checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 5856 + dependencies = [ 5857 + "proc-macro2", 5858 + "quote", 5859 + "syn 1.0.109", 5860 + "wasm-bindgen-backend", 5861 + "wasm-bindgen-shared", 5862 + ] 5863 + 5864 + [[package]] 5865 + name = "wasm-bindgen-shared" 5866 + version = "0.2.84" 5867 + source = "registry+https://github.com/rust-lang/crates.io-index" 5868 + checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 5869 + 5870 + [[package]] 5871 + name = "wasm-bindgen-test" 5872 + version = "0.3.34" 5873 + source = "registry+https://github.com/rust-lang/crates.io-index" 5874 + checksum = "6db36fc0f9fb209e88fb3642590ae0205bb5a56216dabd963ba15879fe53a30b" 5875 + dependencies = [ 5876 + "console_error_panic_hook", 5877 + "js-sys", 5878 + "scoped-tls", 5879 + "wasm-bindgen", 5880 + "wasm-bindgen-futures", 5881 + "wasm-bindgen-test-macro", 5882 + ] 5883 + 5884 + [[package]] 5885 + name = "wasm-bindgen-test-macro" 5886 + version = "0.3.34" 5887 + source = "registry+https://github.com/rust-lang/crates.io-index" 5888 + checksum = "0734759ae6b3b1717d661fe4f016efcfb9828f5edb4520c18eaee05af3b43be9" 5889 + dependencies = [ 5890 + "proc-macro2", 5891 + "quote", 5892 + ] 5893 + 5894 + [[package]] 5895 + name = "wasm-command-bot" 5896 + version = "0.1.0" 5897 + dependencies = [ 5898 + "console_error_panic_hook", 5899 + "matrix-sdk", 5900 + "url", 5901 + "wasm-bindgen", 5902 + "wasm-bindgen-futures", 5903 + "wasm-bindgen-test", 5904 + "web-sys", 5905 + ] 5906 + 5907 + [[package]] 5908 + name = "web-sys" 5909 + version = "0.3.61" 5910 + source = "registry+https://github.com/rust-lang/crates.io-index" 5911 + checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 5912 + dependencies = [ 5913 + "js-sys", 5914 + "wasm-bindgen", 5915 + ] 5916 + 5917 + [[package]] 5918 + name = "webpki" 5919 + version = "0.22.0" 5920 + source = "registry+https://github.com/rust-lang/crates.io-index" 5921 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 5922 + dependencies = [ 5923 + "ring", 5924 + "untrusted", 5925 + ] 5926 + 5927 + [[package]] 5928 + name = "webpki-roots" 5929 + version = "0.22.6" 5930 + source = "registry+https://github.com/rust-lang/crates.io-index" 5931 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 5932 + dependencies = [ 5933 + "webpki", 5934 + ] 5935 + 5936 + [[package]] 5937 + name = "weedle2" 5938 + version = "4.0.0" 5939 + source = "git+https://github.com/mozilla/uniffi-rs?rev=aa91307b6ac27aae6d5c7ad971b762df952d2745#aa91307b6ac27aae6d5c7ad971b762df952d2745" 5940 + dependencies = [ 5941 + "nom", 5942 + ] 5943 + 5944 + [[package]] 5945 + name = "weezl" 5946 + version = "0.1.7" 5947 + source = "registry+https://github.com/rust-lang/crates.io-index" 5948 + checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 5949 + 5950 + [[package]] 5951 + name = "which" 5952 + version = "4.4.0" 5953 + source = "registry+https://github.com/rust-lang/crates.io-index" 5954 + checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 5955 + dependencies = [ 5956 + "either", 5957 + "libc", 5958 + "once_cell", 5959 + ] 5960 + 5961 + [[package]] 5962 + name = "wildmatch" 5963 + version = "2.1.1" 5964 + source = "registry+https://github.com/rust-lang/crates.io-index" 5965 + checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86" 5966 + 5967 + [[package]] 5968 + name = "winapi" 5969 + version = "0.3.9" 5970 + source = "registry+https://github.com/rust-lang/crates.io-index" 5971 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5972 + dependencies = [ 5973 + "winapi-i686-pc-windows-gnu", 5974 + "winapi-x86_64-pc-windows-gnu", 5975 + ] 5976 + 5977 + [[package]] 5978 + name = "winapi-i686-pc-windows-gnu" 5979 + version = "0.4.0" 5980 + source = "registry+https://github.com/rust-lang/crates.io-index" 5981 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5982 + 5983 + [[package]] 5984 + name = "winapi-util" 5985 + version = "0.1.5" 5986 + source = "registry+https://github.com/rust-lang/crates.io-index" 5987 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 5988 + dependencies = [ 5989 + "winapi", 5990 + ] 5991 + 5992 + [[package]] 5993 + name = "winapi-x86_64-pc-windows-gnu" 5994 + version = "0.4.0" 5995 + source = "registry+https://github.com/rust-lang/crates.io-index" 5996 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5997 + 5998 + [[package]] 5999 + name = "windows" 6000 + version = "0.48.0" 6001 + source = "registry+https://github.com/rust-lang/crates.io-index" 6002 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 6003 + dependencies = [ 6004 + "windows-targets 0.48.0", 6005 + ] 6006 + 6007 + [[package]] 6008 + name = "windows-sys" 6009 + version = "0.42.0" 6010 + source = "registry+https://github.com/rust-lang/crates.io-index" 6011 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 6012 + dependencies = [ 6013 + "windows_aarch64_gnullvm 0.42.2", 6014 + "windows_aarch64_msvc 0.42.2", 6015 + "windows_i686_gnu 0.42.2", 6016 + "windows_i686_msvc 0.42.2", 6017 + "windows_x86_64_gnu 0.42.2", 6018 + "windows_x86_64_gnullvm 0.42.2", 6019 + "windows_x86_64_msvc 0.42.2", 6020 + ] 6021 + 6022 + [[package]] 6023 + name = "windows-sys" 6024 + version = "0.45.0" 6025 + source = "registry+https://github.com/rust-lang/crates.io-index" 6026 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 6027 + dependencies = [ 6028 + "windows-targets 0.42.2", 6029 + ] 6030 + 6031 + [[package]] 6032 + name = "windows-sys" 6033 + version = "0.48.0" 6034 + source = "registry+https://github.com/rust-lang/crates.io-index" 6035 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6036 + dependencies = [ 6037 + "windows-targets 0.48.0", 6038 + ] 6039 + 6040 + [[package]] 6041 + name = "windows-targets" 6042 + version = "0.42.2" 6043 + source = "registry+https://github.com/rust-lang/crates.io-index" 6044 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 6045 + dependencies = [ 6046 + "windows_aarch64_gnullvm 0.42.2", 6047 + "windows_aarch64_msvc 0.42.2", 6048 + "windows_i686_gnu 0.42.2", 6049 + "windows_i686_msvc 0.42.2", 6050 + "windows_x86_64_gnu 0.42.2", 6051 + "windows_x86_64_gnullvm 0.42.2", 6052 + "windows_x86_64_msvc 0.42.2", 6053 + ] 6054 + 6055 + [[package]] 6056 + name = "windows-targets" 6057 + version = "0.48.0" 6058 + source = "registry+https://github.com/rust-lang/crates.io-index" 6059 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 6060 + dependencies = [ 6061 + "windows_aarch64_gnullvm 0.48.0", 6062 + "windows_aarch64_msvc 0.48.0", 6063 + "windows_i686_gnu 0.48.0", 6064 + "windows_i686_msvc 0.48.0", 6065 + "windows_x86_64_gnu 0.48.0", 6066 + "windows_x86_64_gnullvm 0.48.0", 6067 + "windows_x86_64_msvc 0.48.0", 6068 + ] 6069 + 6070 + [[package]] 6071 + name = "windows_aarch64_gnullvm" 6072 + version = "0.42.2" 6073 + source = "registry+https://github.com/rust-lang/crates.io-index" 6074 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 6075 + 6076 + [[package]] 6077 + name = "windows_aarch64_gnullvm" 6078 + version = "0.48.0" 6079 + source = "registry+https://github.com/rust-lang/crates.io-index" 6080 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 6081 + 6082 + [[package]] 6083 + name = "windows_aarch64_msvc" 6084 + version = "0.42.2" 6085 + source = "registry+https://github.com/rust-lang/crates.io-index" 6086 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 6087 + 6088 + [[package]] 6089 + name = "windows_aarch64_msvc" 6090 + version = "0.48.0" 6091 + source = "registry+https://github.com/rust-lang/crates.io-index" 6092 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 6093 + 6094 + [[package]] 6095 + name = "windows_i686_gnu" 6096 + version = "0.42.2" 6097 + source = "registry+https://github.com/rust-lang/crates.io-index" 6098 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 6099 + 6100 + [[package]] 6101 + name = "windows_i686_gnu" 6102 + version = "0.48.0" 6103 + source = "registry+https://github.com/rust-lang/crates.io-index" 6104 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 6105 + 6106 + [[package]] 6107 + name = "windows_i686_msvc" 6108 + version = "0.42.2" 6109 + source = "registry+https://github.com/rust-lang/crates.io-index" 6110 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 6111 + 6112 + [[package]] 6113 + name = "windows_i686_msvc" 6114 + version = "0.48.0" 6115 + source = "registry+https://github.com/rust-lang/crates.io-index" 6116 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 6117 + 6118 + [[package]] 6119 + name = "windows_x86_64_gnu" 6120 + version = "0.42.2" 6121 + source = "registry+https://github.com/rust-lang/crates.io-index" 6122 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 6123 + 6124 + [[package]] 6125 + name = "windows_x86_64_gnu" 6126 + version = "0.48.0" 6127 + source = "registry+https://github.com/rust-lang/crates.io-index" 6128 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 6129 + 6130 + [[package]] 6131 + name = "windows_x86_64_gnullvm" 6132 + version = "0.42.2" 6133 + source = "registry+https://github.com/rust-lang/crates.io-index" 6134 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 6135 + 6136 + [[package]] 6137 + name = "windows_x86_64_gnullvm" 6138 + version = "0.48.0" 6139 + source = "registry+https://github.com/rust-lang/crates.io-index" 6140 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 6141 + 6142 + [[package]] 6143 + name = "windows_x86_64_msvc" 6144 + version = "0.42.2" 6145 + source = "registry+https://github.com/rust-lang/crates.io-index" 6146 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 6147 + 6148 + [[package]] 6149 + name = "windows_x86_64_msvc" 6150 + version = "0.48.0" 6151 + source = "registry+https://github.com/rust-lang/crates.io-index" 6152 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 6153 + 6154 + [[package]] 6155 + name = "winnow" 6156 + version = "0.4.1" 6157 + source = "registry+https://github.com/rust-lang/crates.io-index" 6158 + checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" 6159 + dependencies = [ 6160 + "memchr", 6161 + ] 6162 + 6163 + [[package]] 6164 + name = "winreg" 6165 + version = "0.10.1" 6166 + source = "registry+https://github.com/rust-lang/crates.io-index" 6167 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 6168 + dependencies = [ 6169 + "winapi", 6170 + ] 6171 + 6172 + [[package]] 6173 + name = "wiremock" 6174 + version = "0.5.18" 6175 + source = "registry+https://github.com/rust-lang/crates.io-index" 6176 + checksum = "bd7b0b5b253ebc0240d6aac6dd671c495c467420577bf634d3064ae7e6fa2b4c" 6177 + dependencies = [ 6178 + "assert-json-diff", 6179 + "async-trait", 6180 + "base64 0.21.0", 6181 + "deadpool", 6182 + "futures", 6183 + "futures-timer", 6184 + "http-types", 6185 + "hyper", 6186 + "log", 6187 + "once_cell", 6188 + "regex", 6189 + "serde", 6190 + "serde_json", 6191 + "tokio", 6192 + ] 6193 + 6194 + [[package]] 6195 + name = "x25519-dalek" 6196 + version = "1.2.0" 6197 + source = "registry+https://github.com/rust-lang/crates.io-index" 6198 + checksum = "2392b6b94a576b4e2bf3c5b2757d63f10ada8020a2e4d08ac849ebcf6ea8e077" 6199 + dependencies = [ 6200 + "curve25519-dalek", 6201 + "rand_core 0.5.1", 6202 + "serde", 6203 + "zeroize", 6204 + ] 6205 + 6206 + [[package]] 6207 + name = "xshell" 6208 + version = "0.1.17" 6209 + source = "registry+https://github.com/rust-lang/crates.io-index" 6210 + checksum = "eaad2035244c56da05573d4d7fda5f903c60a5f35b9110e157a14a1df45a9f14" 6211 + dependencies = [ 6212 + "xshell-macros", 6213 + ] 6214 + 6215 + [[package]] 6216 + name = "xshell-macros" 6217 + version = "0.1.17" 6218 + source = "registry+https://github.com/rust-lang/crates.io-index" 6219 + checksum = "4916a4a3cad759e499a3620523bf9545cc162d7a06163727dde97ce9aaa4cf39" 6220 + 6221 + [[package]] 6222 + name = "xtask" 6223 + version = "0.1.0" 6224 + dependencies = [ 6225 + "camino", 6226 + "clap 4.2.4", 6227 + "fs_extra", 6228 + "serde", 6229 + "serde_json", 6230 + "uniffi", 6231 + "uniffi_bindgen", 6232 + "xshell", 6233 + ] 6234 + 6235 + [[package]] 6236 + name = "zeroize" 6237 + version = "1.3.0" 6238 + source = "registry+https://github.com/rust-lang/crates.io-index" 6239 + checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd" 6240 + dependencies = [ 6241 + "zeroize_derive", 6242 + ] 6243 + 6244 + [[package]] 6245 + name = "zeroize_derive" 6246 + version = "1.4.2" 6247 + source = "registry+https://github.com/rust-lang/crates.io-index" 6248 + checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 6249 + dependencies = [ 6250 + "proc-macro2", 6251 + "quote", 6252 + "syn 2.0.15", 6253 + ]
pkgs/development/libraries/matrix-sdk-crypto-nodejs/Cargo.lock pkgs/development/libraries/matrix-sdk-crypto-nodejs/Cargo-beta.3.lock
+13
pkgs/development/libraries/matrix-sdk-crypto-nodejs/beta3.nix
···
··· 1 + import ./generic.nix { 2 + version = "0.1.0-beta.3"; 3 + hash = "sha256-0p+1cMn9PU+Jk2JW7G+sdzxhMaI3gEAk5w2nm05oBSU="; 4 + outputHashes = { 5 + "uniffi-0.21.0" = "sha256-blKCfCsSNtr8NtO7Let7VJ/9oGuW9Eu8j9A6/oHUcP0="; 6 + }; 7 + cargoLock = ./Cargo-beta.3.lock; 8 + patches = [ 9 + # This is needed because two versions of indexed_db_futures are present (which will fail to vendor, see https://github.com/rust-lang/cargo/issues/10310). 10 + # (matrix-sdk-crypto-nodejs doesn't use this dependency, we only need to remove it to vendor the dependencies successfully.) 11 + ./remove-duplicate-dependency.patch 12 + ]; 13 + }
+9 -63
pkgs/development/libraries/matrix-sdk-crypto-nodejs/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 2 - , cargo, rustPlatform, rustc, napi-rs-cli, nodejs, libiconv 3 - }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "matrix-sdk-crypto-nodejs"; 7 - version = "0.1.0-beta.3"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "matrix-org"; 11 - repo = "matrix-rust-sdk"; 12 - rev = "${pname}-v${version}"; 13 - hash = "sha256-0p+1cMn9PU+Jk2JW7G+sdzxhMaI3gEAk5w2nm05oBSU="; 14 - }; 15 - 16 - patches = [ 17 - # This is needed because two versions of indexed_db_futures are present (which will fail to vendor, see https://github.com/rust-lang/cargo/issues/10310). 18 - # (matrix-sdk-crypto-nodejs doesn't use this dependency, we only need to remove it to vendor the dependencies successfully.) 19 - ./remove-duplicate-dependency.patch 20 - ]; 21 - 22 - cargoDeps = rustPlatform.importCargoLock { 23 - lockFile = ./Cargo.lock; 24 - outputHashes = { 25 - "uniffi-0.21.0" = "sha256-blKCfCsSNtr8NtO7Let7VJ/9oGuW9Eu8j9A6/oHUcP0="; 26 - }; 27 - }; 28 - 29 - nativeBuildInputs = [ 30 - rustPlatform.cargoSetupHook 31 - cargo 32 - rustc 33 - napi-rs-cli 34 - nodejs 35 - ]; 36 - 37 - buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 38 - 39 - buildPhase = '' 40 - runHook preBuild 41 - 42 - cd bindings/${pname} 43 - npm run release-build --offline 44 - 45 - runHook postBuild 46 - ''; 47 - 48 - installPhase = '' 49 - runHook preInstall 50 - 51 - local -r outPath="$out/lib/node_modules/@matrix-org/${pname}" 52 - mkdir -p "$outPath" 53 - cp package.json index.js index.d.ts matrix-sdk-crypto.*.node "$outPath" 54 - 55 - runHook postInstall 56 - ''; 57 - 58 - meta = with lib; { 59 - description = "A no-network-IO implementation of a state machine that handles E2EE for Matrix clients"; 60 - homepage = "https://github.com/matrix-org/matrix-rust-sdk/tree/${src.rev}/bindings/matrix-sdk-crypto-nodejs"; 61 - license = licenses.asl20; 62 - maintainers = with maintainers; [ winter ]; 63 - inherit (nodejs.meta) platforms; 64 }; 65 }
··· 1 + import ./generic.nix { 2 + version = "0.1.0-beta.6"; 3 + hash = "sha256-0oLk7yq/XELS0GkeZj7PxY3KKXfzws0djF3KmxYisY0="; 4 + outputHashes = { 5 + "ruma-0.8.2" = "sha256-bKvcElIVugj+gZZhPFPGfCqva4fo1IqW/e9gf+q/Tfw="; 6 + "uniffi-0.23.0" = "sha256-4WUp3PQm3ZgqHNMvz9+PBtNAeiq6m4PBViwXpQDglLk="; 7 + "vodozemac-0.3.0" = "sha256-tAimsVD8SZmlVybb7HvRffwlNsfb7gLWGCplmwbLIVE="; 8 }; 9 + cargoLock = ./Cargo-beta.6.lock; 10 + patches = []; 11 }
+60
pkgs/development/libraries/matrix-sdk-crypto-nodejs/generic.nix
···
··· 1 + { version, hash, outputHashes, cargoLock, patches }: 2 + 3 + { lib, stdenv, fetchFromGitHub 4 + , cargo, rustPlatform, rustc, napi-rs-cli, nodejs, libiconv 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "matrix-sdk-crypto-nodejs"; 9 + inherit version patches; 10 + 11 + src = fetchFromGitHub { 12 + owner = "matrix-org"; 13 + repo = "matrix-rust-sdk"; 14 + rev = "${pname}-v${version}"; 15 + inherit hash; 16 + }; 17 + 18 + 19 + cargoDeps = rustPlatform.importCargoLock { 20 + lockFile = cargoLock; 21 + inherit outputHashes; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + rustPlatform.cargoSetupHook 26 + cargo 27 + rustc 28 + napi-rs-cli 29 + nodejs 30 + ]; 31 + 32 + buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 33 + 34 + buildPhase = '' 35 + runHook preBuild 36 + 37 + cd bindings/${pname} 38 + npm run release-build --offline 39 + 40 + runHook postBuild 41 + ''; 42 + 43 + installPhase = '' 44 + runHook preInstall 45 + 46 + local -r outPath="$out/lib/node_modules/@matrix-org/${pname}" 47 + mkdir -p "$outPath" 48 + cp package.json index.js index.d.ts matrix-sdk-crypto.*.node "$outPath" 49 + 50 + runHook postInstall 51 + ''; 52 + 53 + meta = with lib; { 54 + description = "A no-network-IO implementation of a state machine that handles E2EE for Matrix clients"; 55 + homepage = "https://github.com/matrix-org/matrix-rust-sdk/tree/${src.rev}/bindings/matrix-sdk-crypto-nodejs"; 56 + license = licenses.asl20; 57 + maintainers = with maintainers; [ winter ]; 58 + inherit (nodejs.meta) platforms; 59 + }; 60 + }
+32
pkgs/development/libraries/mustache-tcl/default.nix
···
··· 1 + { lib, fetchFromGitHub, tcl, tcllib }: 2 + 3 + tcl.mkTclDerivation rec { 4 + pname = "mustache-tcl"; 5 + version = "1.1.3.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ianka"; 9 + repo = "mustache.tcl"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-apM57LEZ0Y9hXcEPWrKYOoTVtP5QSqiaQrjTHQc3pc4="; 12 + }; 13 + 14 + buildInputs = [ 15 + tcllib 16 + ]; 17 + 18 + unpackPhase = '' 19 + mkdir -p $out/lib/mustache-tcl 20 + cp $src/mustache.tcl $out/lib/mustache-tcl/mustache.tcl 21 + cp $src/pkgIndex.tcl $out/lib/mustache-tcl/pkgIndex.tcl 22 + ''; 23 + 24 + meta = with lib; { 25 + homepage = "https://github.com/ianka/mustache.tcl"; 26 + description = "Tcl implementation of the mustache templating language"; 27 + license = licenses.bsd2; 28 + platforms = platforms.all; 29 + maintainers = with maintainers; [ nat-418 ]; 30 + }; 31 + } 32 +
+3 -6
pkgs/development/libraries/open62541/default.nix
··· 31 32 stdenv.mkDerivation (finalAttrs: { 33 pname = "open62541"; 34 - version = "1.3.5"; 35 36 src = fetchFromGitHub { 37 owner = "open62541"; 38 repo = "open62541"; 39 rev = "v${finalAttrs.version}"; 40 - sha256 = "sha256-X0kdMKSqKAJvmrd1YcYe1mJpFONqPCALA09xwd6o7BQ="; 41 fetchSubmodules = true; 42 }; 43 ··· 90 91 preCheck = let 92 disabledTests = 93 - lib.optionals (withEncryption == "mbedtls") [ 94 - "encryption_basic128rsa15" 95 - ] 96 - ++ lib.optionals withPubSub [ 97 # "Cannot set socket option IP_ADD_MEMBERSHIP" 98 "pubsub_publish" 99 "check_pubsub_get_state"
··· 31 32 stdenv.mkDerivation (finalAttrs: { 33 pname = "open62541"; 34 + version = "1.3.6"; 35 36 src = fetchFromGitHub { 37 owner = "open62541"; 38 repo = "open62541"; 39 rev = "v${finalAttrs.version}"; 40 + hash = "sha256-cmD01D49pHEHN0QQtE5RXv0YZ/MPIWnubeUY6BH4DrU="; 41 fetchSubmodules = true; 42 }; 43 ··· 90 91 preCheck = let 92 disabledTests = 93 + lib.optionals withPubSub [ 94 # "Cannot set socket option IP_ADD_MEMBERSHIP" 95 "pubsub_publish" 96 "check_pubsub_get_state"
+93
pkgs/development/libraries/qt-5/5.15/default.nix
··· 52 # prevent headaches from stale qmlcache data 53 ./qtdeclarative-default-disable-qmlcache.patch 54 ]; 55 qtscript = [ ./qtscript.patch ]; 56 qtserialport = [ ./qtserialport.patch ]; 57 qtsystems = [ ··· 167 inherit gstreamer gst-plugins-base; 168 }; 169 qtnetworkauth = callPackage ../modules/qtnetworkauth.nix {}; 170 qtpositioning = callPackage ../modules/qtpositioning.nix {}; 171 qtquick1 = null; 172 qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {};
··· 52 # prevent headaches from stale qmlcache data 53 ./qtdeclarative-default-disable-qmlcache.patch 54 ]; 55 + qtpim = [ 56 + ## Upstream patches after the Qt6 transition that apply without problems & fix bugs 57 + 58 + # Fixes QList -> QSet conversion 59 + (fetchpatch { 60 + url = "https://github.com/qt/qtpim/commit/f337e281e28904741a3b1ac23d15c3a83ef2bbc9.patch"; 61 + hash = "sha256-zlxD45JnbhIgdJxMmGxGMUBcQPcgzpu3s4bLX939jL0="; 62 + }) 63 + # Fixes invalid syntax from a previous bad patch in tests 64 + (fetchpatch { 65 + url = "https://github.com/qt/qtpim/commit/2aefdd8bd28a4decf9ef8381f5b255f39f1ee90c.patch"; 66 + hash = "sha256-mg93QF3hi50igw1/Ok7fEs9iCaN6co1+p2/5fQtxTmc="; 67 + }) 68 + # Unit test account for QList index change 69 + (fetchpatch { 70 + url = "https://github.com/qt/qtpim/commit/79b41af6a4117f5efb0298289e20c30b4d0b0b2e.patch"; 71 + hash = "sha256-u+cLl4lu6r2+j5GAiasqbB6/OZPz5A6GpSB33vd/VBg="; 72 + }) 73 + # Remove invalid method overload which confuses the QML engine 74 + (fetchpatch { 75 + url = "https://github.com/qt/qtpim/commit/5679a6141c76ae7d64c3acc8a87b1adb048289e0.patch"; 76 + hash = "sha256-z8f8kLhC9CqBOfGPL8W9KJq7MwALAAicXfRkHiQEVJ4="; 77 + }) 78 + # Specify enum flag type properly in unit test 79 + (fetchpatch { 80 + url = "https://github.com/qt/qtpim/commit/a43cc24e57db8d3c3939fa540d67da3294dcfc5c.patch"; 81 + hash = "sha256-SsYkxX6prxi8VRZr4az+wqawcRN8tR3UuIFswJL+3T4="; 82 + }) 83 + # Update qHash methods to return size_t instead of uint 84 + (fetchpatch { 85 + url = "https://github.com/qt/qtpim/commit/9c698155d82fc2b68a87c59d0443c33f9085b117.patch"; 86 + hash = "sha256-rb8D8taaglhQikYSAPrtLvazgIw8Nga/a9+J21k8gIo="; 87 + }) 88 + # Mark virtual methods with override keyword 89 + (fetchpatch { 90 + url = "https://github.com/qt/qtpim/commit/f34cf2ff2b0f428d5b8a70763b29088075ebbd1c.patch"; 91 + hash = "sha256-tNPOEVpx1eqHx5T23ueW32KxMQ/SB+TBCJ4PZ6SA3LI="; 92 + }) 93 + # Fix calendardemo example 94 + (fetchpatch { 95 + url = "https://github.com/qt/qtpim/commit/a66590d473753bc49105d3132fb9e4150c92a14a.patch"; 96 + hash = "sha256-RPRtGQ24NQYewnv6+IqYITpwD/XxuK68a1iKgFmKm3c="; 97 + }) 98 + # Make the tests pass on big endian systems 99 + (fetchpatch { 100 + url = "https://github.com/qt/qtpim/commit/7802f038ed1391078e27fa3f37d785a69314537b.patch"; 101 + hash = "sha256-hogUXyPXjGE0q53PWOjiQbQ2YzOsvrJ7mo9djGIbjVQ="; 102 + }) 103 + # Fix some deprecated QChar constructor issues in unit tests 104 + (fetchpatch { 105 + url = "https://github.com/qt/qtpim/commit/114615812dcf9398c957b0833e860befe15f840f.patch"; 106 + hash = "sha256-yZ1qs8y5DSq8FDXRPyuSPRIzjEUTWAhpVide/b+xaLQ="; 107 + }) 108 + # Accessors should be const 109 + (fetchpatch { 110 + url = "https://github.com/qt/qtpim/commit/a2bf7cdf05c264b5dd2560f799760b5508f154e4.patch"; 111 + hash = "sha256-+YfPrKyOKnPkqFokwW/aDsEivg4TzdJwQpDdAtM+rQE="; 112 + }) 113 + # Enforce detail access constraints in contact operations by default 114 + (fetchpatch { 115 + url = "https://github.com/qt/qtpim/commit/8765a35233aa21a932ee92bbbb92a5f8edd4dc68.patch"; 116 + hash = "sha256-vp/enerVecEXz4zyxQ66DG+fVVWxI4bYnLj92qaaqNk="; 117 + }) 118 + # Fixes broken file generation, which breaks reverse dependencies that try to find one of its modules 119 + (fetchpatch { 120 + url = "https://github.com/qt/qtpim/commit/4b2bdce30bd0629c9dc0567af6eeaa1d038f3152.patch"; 121 + hash = "sha256-2dXhkZyxPvY2KQq2veerAlpXkpU5/FeArWRlm1aOcEY="; 122 + }) 123 + 124 + ## Patches that haven't been upstreamed 125 + 126 + # Fix tst_QContactManager::compareVariant_data test 127 + (fetchpatch { 128 + url = "https://salsa.debian.org/qt-kde-team/qt/qtpim/-/raw/360682f88457b5ae7c92f32f574e51ccc5edbea0/debian/patches/1001_fix-qtdatetime-null-comparison.patch"; 129 + hash = "sha256-k/rO9QjwSlRChwFTZLkxDjZWqFkua4FNbaNf1bJKLxc="; 130 + }) 131 + # Avoid crash while parsing vCards from different threads 132 + (fetchpatch { 133 + url = "https://salsa.debian.org/qt-kde-team/qt/qtpim/-/raw/360682f88457b5ae7c92f32f574e51ccc5edbea0/debian/patches/1002_Avoid-crash-while-parsing-vcards-from-different-threads.patch"; 134 + hash = "sha256-zhayAoWgcmKosEGVBy2k6a2e6BxyVwfGX18tBbzqEk8="; 135 + }) 136 + # Adapt to JSON parser behavior change in Qt 5.15 137 + (fetchpatch { 138 + url = "https://salsa.debian.org/qt-kde-team/qt/qtpim/-/raw/360682f88457b5ae7c92f32f574e51ccc5edbea0/debian/patches/1003_adapt_to_json_parser_change.patch"; 139 + hash = "sha256-qAIa48hmDd8vMH/ywqW+22vISKai76XnjgFuB+tQbIU="; 140 + }) 141 + # Fix version being 0.0.0 142 + (fetchpatch { 143 + url = "https://salsa.debian.org/qt-kde-team/qt/qtpim/-/raw/360682f88457b5ae7c92f32f574e51ccc5edbea0/debian/patches/2000_revert_module_version.patch"; 144 + hash = "sha256-6wg/eVu9J83yvIO428U1FX3otz58tAy6pCvp7fqOBKU="; 145 + }) 146 + ]; 147 qtscript = [ ./qtscript.patch ]; 148 qtserialport = [ ./qtserialport.patch ]; 149 qtsystems = [ ··· 259 inherit gstreamer gst-plugins-base; 260 }; 261 qtnetworkauth = callPackage ../modules/qtnetworkauth.nix {}; 262 + qtpim = callPackage ../modules/qtpim.nix {}; 263 qtpositioning = callPackage ../modules/qtpositioning.nix {}; 264 qtquick1 = null; 265 qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {};
+12
pkgs/development/libraries/qt-5/5.15/srcs.nix
··· 22 in 23 lib.mapAttrs mk (lib.importJSON ./srcs-generated.json) 24 // { 25 # Has no kde/5.15 branch 26 qtpositioning = rec { 27 version = "5.15.2";
··· 22 in 23 lib.mapAttrs mk (lib.importJSON ./srcs-generated.json) 24 // { 25 + # qtpim has no official releases 26 + qtpim = { 27 + version = "unstable-2020-11-02"; 28 + src = fetchFromGitHub { 29 + owner = "qt"; 30 + repo = "qtpim"; 31 + # Last commit before Qt5 support was broken 32 + rev = "f9a8f0fc914c040d48bbd0ef52d7a68eea175a98"; 33 + hash = "sha256-/1g+vvHjuRLB1vsm41MrHbBZ+88Udca0iEcbz0Q1BNQ="; 34 + }; 35 + }; 36 + 37 # Has no kde/5.15 branch 38 qtpositioning = rec { 39 version = "5.15.2";
+27
pkgs/development/libraries/qt-5/modules/qtpim.nix
···
··· 1 + { qtModule 2 + , lib 3 + , qtbase 4 + , qtdeclarative 5 + }: 6 + 7 + qtModule { 8 + pname = "qtpim"; 9 + 10 + outputs = [ 11 + "out" 12 + "dev" 13 + ]; 14 + 15 + qtInputs = [ 16 + qtbase 17 + qtdeclarative 18 + ]; 19 + 20 + qmakeFlags = [ 21 + "CONFIG+=git_build" 22 + ]; 23 + 24 + meta = { 25 + maintainers = with lib.maintainers; [ OPNA2608 ]; 26 + }; 27 + }
+2
pkgs/development/libraries/unixODBCDrivers/default.nix
··· 52 ''; 53 54 cmakeFlags = [ 55 "-DWITH_OPENSSL=ON" 56 # on darwin this defaults to ON but we want to build against unixODBC 57 "-DWITH_IODBC=OFF"
··· 52 ''; 53 54 cmakeFlags = [ 55 + "-DODBC_LIB_DIR=${lib.getLib unixODBC}/lib" 56 + "-DODBC_INCLUDE_DIR=${lib.getDev unixODBC}/include" 57 "-DWITH_OPENSSL=ON" 58 # on darwin this defaults to ON but we want to build against unixODBC 59 "-DWITH_IODBC=OFF"
+2 -2
pkgs/development/python-modules/enaml/default.nix
··· 11 , setuptools 12 , setuptools-scm 13 , pythonOlder 14 - , sip_4 15 }: 16 17 buildPythonPackage rec { ··· 43 pegen 44 ply 45 qtpy 46 - sip_4 47 ]; 48 49 # qt bindings cannot be found during tests
··· 11 , setuptools 12 , setuptools-scm 13 , pythonOlder 14 + , sip 15 }: 16 17 buildPythonPackage rec { ··· 43 pegen 44 ply 45 qtpy 46 + sip 47 ]; 48 49 # qt bindings cannot be found during tests
+2 -2
pkgs/development/python-modules/ezyrb/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "ezyrb"; 17 - version = "1.3.0.post2302"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "mathLab"; 24 repo = "EZyRB"; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-ZVmQnxqLHKr275Xx0lOID3BZZFTmn/PMHpYhBFSxT7I="; 27 }; 28 29 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "ezyrb"; 17 + version = "1.3.0.post2305"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "mathLab"; 24 repo = "EZyRB"; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-uYwLz5NY+8lO8hZnAhqv+5PlcCSm6OOFWra47pwQhxg="; 27 }; 28 29 propagatedBuildInputs = [
+15 -18
pkgs/development/python-modules/pymanopt/default.nix
··· 5 , scipy 6 , torch 7 , autograd 8 - , nose2 9 , matplotlib 10 - , tensorflow 11 }: 12 13 buildPythonPackage rec { 14 pname = "pymanopt"; 15 version = "2.1.1"; 16 17 src = fetchFromGitHub { 18 owner = pname; ··· 22 }; 23 24 propagatedBuildInputs = [ numpy scipy torch ]; 25 - nativeCheckInputs = [ nose2 autograd matplotlib tensorflow ]; 26 27 - checkPhase = '' 28 - runHook preCheck 29 30 - # upstream themselves seem unsure about the robustness of these 31 - # tests - see https://github.com/pymanopt/pymanopt/issues/219 32 - grep -lr 'test_second_order_function_approximation' tests/ | while read -r fn ; do 33 - substituteInPlace "$fn" \ 34 - --replace \ 35 - 'test_second_order_function_approximation' \ 36 - 'dont_test_second_order_function_approximation' 37 - done 38 - 39 - nose2 tests -v 40 - 41 - runHook postCheck 42 - ''; 43 44 pythonImportsCheck = [ "pymanopt" ]; 45 ··· 48 homepage = "https://www.pymanopt.org/"; 49 license = lib.licenses.bsd3; 50 maintainers = with lib.maintainers; [ yl3dy ]; 51 }; 52 }
··· 5 , scipy 6 , torch 7 , autograd 8 , matplotlib 9 + , pytestCheckHook 10 }: 11 12 buildPythonPackage rec { 13 pname = "pymanopt"; 14 version = "2.1.1"; 15 + format = "setuptools"; 16 17 src = fetchFromGitHub { 18 owner = pname; ··· 22 }; 23 24 propagatedBuildInputs = [ numpy scipy torch ]; 25 + nativeCheckInputs = [ autograd matplotlib pytestCheckHook ]; 26 27 + preCheck = '' 28 + substituteInPlace "tests/conftest.py" \ 29 + --replace "import tensorflow as tf" "" 30 + substituteInPlace "tests/conftest.py" \ 31 + --replace "tf.random.set_seed(seed)" "" 32 + ''; 33 34 + disabledTestPaths = [ 35 + "tests/test_examples.py" 36 + "tests/backends/test_tensorflow.py" 37 + "tests/test_problem.py" 38 + ]; 39 40 pythonImportsCheck = [ "pymanopt" ]; 41 ··· 44 homepage = "https://www.pymanopt.org/"; 45 license = lib.licenses.bsd3; 46 maintainers = with lib.maintainers; [ yl3dy ]; 47 + broken = lib.versionAtLeast scipy.version "1.10.0"; 48 }; 49 }
+1
pkgs/development/python-modules/tasklib/default.nix
··· 1 { lib 2 , pythonPackages 3 , taskwarrior 4 , writeShellScriptBin 5 }:
··· 1 { lib 2 , pythonPackages 3 + , fetchPypi 4 , taskwarrior 5 , writeShellScriptBin 6 }:
+1
pkgs/development/tools/agda-pkg/default.nix
··· 1 { lib 2 , python3Packages 3 }: 4 5 with python3Packages;
··· 1 { lib 2 , python3Packages 3 + , fetchPypi 4 }: 5 6 with python3Packages;
+10 -2
pkgs/development/tools/build-managers/msbuild/default.nix
··· 21 </configuration> 22 ''; 23 24 in 25 26 stdenv.mkDerivation rec { ··· 78 mv artifacts/msbuild artifacts/mono-msbuild 79 chmod +x artifacts/mono-msbuild/MSBuild.dll 80 81 - ln -s $(find ${dotnet-sdk} -name libhostfxr.so) artifacts/mono-msbuild/SdkResolvers/Microsoft.DotNet.MSBuildSdkResolver/ 82 83 # overwrite the file 84 echo "#!${stdenv.shell}" > eng/common/dotnet-install.sh 85 echo "#!${stdenv.shell}" > mono/build/get_sdk_files.sh 86 87 mkdir -p mono/dotnet-overlay/msbuild-bin 88 cp ${dotnet-sdk}/sdk/*/{Microsoft.NETCoreSdk.BundledVersions.props,RuntimeIdentifierGraph.json} mono/dotnet-overlay/msbuild-bin ··· 102 --set-default MONO_GC_PARAMS "nursery-size=64m" \ 103 --add-flags "$out/lib/mono/msbuild/15.0/bin/MSBuild.dll" 104 105 - ln -s $(find ${dotnet-sdk} -name libhostfxr.so) $out/lib/mono/msbuild/Current/bin/SdkResolvers/Microsoft.DotNet.MSBuildSdkResolver/ 106 ''; 107 108 doInstallCheck = true;
··· 21 </configuration> 22 ''; 23 24 + inherit (stdenv.hostPlatform.extensions) sharedLibrary; 25 + 26 in 27 28 stdenv.mkDerivation rec { ··· 80 mv artifacts/msbuild artifacts/mono-msbuild 81 chmod +x artifacts/mono-msbuild/MSBuild.dll 82 83 + # The provided libhostfxr.dylib is for x86_64-darwin, so we remove it 84 + rm artifacts/mono-msbuild/SdkResolvers/Microsoft.DotNet.MSBuildSdkResolver/libhostfxr.dylib 85 + 86 + ln -s $(find ${dotnet-sdk} -name libhostfxr${sharedLibrary}) artifacts/mono-msbuild/SdkResolvers/Microsoft.DotNet.MSBuildSdkResolver/ 87 88 # overwrite the file 89 echo "#!${stdenv.shell}" > eng/common/dotnet-install.sh 90 echo "#!${stdenv.shell}" > mono/build/get_sdk_files.sh 91 + 92 + # Prevent msbuild from downloading a new libhostfxr 93 + echo "#!${stdenv.shell}" > mono/build/extract_and_copy_hostfxr.sh 94 95 mkdir -p mono/dotnet-overlay/msbuild-bin 96 cp ${dotnet-sdk}/sdk/*/{Microsoft.NETCoreSdk.BundledVersions.props,RuntimeIdentifierGraph.json} mono/dotnet-overlay/msbuild-bin ··· 110 --set-default MONO_GC_PARAMS "nursery-size=64m" \ 111 --add-flags "$out/lib/mono/msbuild/15.0/bin/MSBuild.dll" 112 113 + ln -s $(find ${dotnet-sdk} -name libhostfxr${sharedLibrary}) $out/lib/mono/msbuild/Current/bin/SdkResolvers/Microsoft.DotNet.MSBuildSdkResolver/ 114 ''; 115 116 doInstallCheck = true;
+3 -3
pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
··· 1 { lib, buildGoModule, fetchFromGitLab, fetchurl, bash }: 2 3 let 4 - version = "15.11.0"; 5 in 6 buildGoModule rec { 7 inherit version; ··· 17 # For patchShebangs 18 buildInputs = [ bash ]; 19 20 - vendorHash = "sha256-4eSfNo5S/eottEN4AptGJq6pBDHkNud0Nj5GrqutADM="; 21 22 src = fetchFromGitLab { 23 owner = "gitlab-org"; 24 repo = "gitlab-runner"; 25 rev = "v${version}"; 26 - sha256 = "sha256-S4KdEepNWv8J5+r/GT8+8kAKU5fq2iwQU+qyoCY1s0o="; 27 }; 28 29 patches = [
··· 1 { lib, buildGoModule, fetchFromGitLab, fetchurl, bash }: 2 3 let 4 + version = "16.0.1"; 5 in 6 buildGoModule rec { 7 inherit version; ··· 17 # For patchShebangs 18 buildInputs = [ bash ]; 19 20 + vendorHash = "sha256-2z9mB/Dd5sLB2OgwfxUJ5Jfk6cWPc7TfS4WLaUeYDUg="; 21 22 src = fetchFromGitLab { 23 owner = "gitlab-org"; 24 repo = "gitlab-runner"; 25 rev = "v${version}"; 26 + sha256 = "sha256-IGMZKrGtDyXj6SIiuoM7NE5MHfRUeVHI4YUNGVNIXw0="; 27 }; 28 29 patches = [
+1 -1
pkgs/development/tools/mbed-cli/default.nix
··· 1 - { lib, python3Packages, git, mercurial }: 2 3 with python3Packages; 4
··· 1 + { lib, python3Packages, fetchPypi, git, mercurial }: 2 3 with python3Packages; 4
+1 -1
pkgs/development/tools/pew/default.nix
··· 1 - { lib, python3 }: 2 3 with python3.pkgs; 4
··· 1 + { lib, python3, fetchPypi }: 2 3 with python3.pkgs; 4
+1
pkgs/development/tools/pipenv/default.nix
··· 1 { lib 2 , stdenv 3 , python3 4 , installShellFiles 5 }: 6
··· 1 { lib 2 , stdenv 3 , python3 4 + , fetchPypi 5 , installShellFiles 6 }: 7
+1 -1
pkgs/development/tools/rdbtools/default.nix
··· 1 - { lib, python }: 2 3 with python.pkgs; 4
··· 1 + { lib, python, fetchPypi }: 2 3 with python.pkgs; 4
+1
pkgs/development/tools/reno/default.nix
··· 2 , git 3 , gnupg1 4 , python3Packages 5 }: 6 7 with python3Packages; buildPythonApplication rec {
··· 2 , git 3 , gnupg1 4 , python3Packages 5 + , fetchPypi 6 }: 7 8 with python3Packages; buildPythonApplication rec {
+261 -383
pkgs/development/tools/rust/cargo-edit/Cargo.lock
··· 77 78 [[package]] 79 name = "anyhow" 80 - version = "1.0.68" 81 source = "registry+https://github.com/rust-lang/crates.io-index" 82 - checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 83 84 [[package]] 85 name = "assert_cmd" ··· 132 133 [[package]] 134 name = "base16ct" 135 - version = "0.1.1" 136 source = "registry+https://github.com/rust-lang/crates.io-index" 137 - checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 138 139 [[package]] 140 name = "base64" ··· 144 145 [[package]] 146 name = "base64ct" 147 - version = "1.5.3" 148 source = "registry+https://github.com/rust-lang/crates.io-index" 149 - checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 150 151 [[package]] 152 name = "bitflags" ··· 156 157 [[package]] 158 name = "block-buffer" 159 - version = "0.10.3" 160 source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 162 dependencies = [ 163 "generic-array", 164 ] 165 166 [[package]] 167 name = "bstr" 168 - version = "1.1.0" 169 source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b" 171 dependencies = [ 172 "memchr", 173 "once_cell", ··· 177 178 [[package]] 179 name = "bumpalo" 180 - version = "3.12.0" 181 source = "registry+https://github.com/rust-lang/crates.io-index" 182 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 183 184 [[package]] 185 name = "byteorder" ··· 188 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 189 190 [[package]] 191 - name = "bytes" 192 - version = "1.3.0" 193 - source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" 195 - 196 - [[package]] 197 name = "camino" 198 - version = "1.1.2" 199 source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055" 201 dependencies = [ 202 "serde", 203 ] 204 205 [[package]] 206 name = "cargo-edit" 207 - version = "0.11.11" 208 dependencies = [ 209 "anyhow", 210 "assert_cmd", ··· 218 "dunce", 219 "env_proxy", 220 "git2", 221 - "hex 0.4.3", 222 "home", 223 "indexmap", 224 "native-tls", ··· 233 "subprocess", 234 "termcolor", 235 "toml", 236 - "toml_edit 0.19.8", 237 "trycmd", 238 "ureq", 239 "url", ··· 251 [[package]] 252 name = "cargo-test-macro" 253 version = "0.1.0" 254 - source = "git+https://github.com/rust-lang/cargo#3c5af6bed9a1a243a693e8e22ee2486bd5b82a6c" 255 256 [[package]] 257 name = "cargo-test-support" 258 version = "0.1.0" 259 - source = "git+https://github.com/rust-lang/cargo#3c5af6bed9a1a243a693e8e22ee2486bd5b82a6c" 260 dependencies = [ 261 "anyhow", 262 "cargo-test-macro", ··· 275 "tar", 276 "termcolor", 277 "time", 278 - "toml_edit 0.15.0", 279 "url", 280 - "winapi", 281 ] 282 283 [[package]] 284 name = "cargo-util" 285 - version = "0.2.3" 286 - source = "git+https://github.com/rust-lang/cargo#3c5af6bed9a1a243a693e8e22ee2486bd5b82a6c" 287 dependencies = [ 288 "anyhow", 289 "core-foundation", 290 - "crypto-hash", 291 "filetime", 292 - "hex 0.4.3", 293 "jobserver", 294 "libc", 295 "log", 296 "miow", 297 "same-file", 298 "shell-escape", 299 "tempfile", 300 "walkdir", 301 - "winapi", 302 ] 303 304 [[package]] ··· 317 318 [[package]] 319 name = "cc" 320 - version = "1.0.78" 321 source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 323 dependencies = [ 324 "jobserver", 325 ] ··· 332 333 [[package]] 334 name = "clap" 335 - version = "4.2.7" 336 source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938" 338 dependencies = [ 339 "clap_builder", 340 "clap_derive", ··· 343 344 [[package]] 345 name = "clap_builder" 346 - version = "4.2.7" 347 source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd" 349 dependencies = [ 350 "anstream", 351 "anstyle", ··· 357 358 [[package]] 359 name = "clap_derive" 360 - version = "4.2.0" 361 source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" 363 dependencies = [ 364 "heck", 365 "proc-macro2", 366 "quote", 367 - "syn 2.0.15", 368 ] 369 370 [[package]] 371 name = "clap_lex" 372 - version = "0.4.1" 373 source = "registry+https://github.com/rust-lang/crates.io-index" 374 - checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 375 376 [[package]] 377 name = "colorchoice" ··· 380 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 381 382 [[package]] 383 - name = "combine" 384 - version = "4.6.6" 385 - source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 387 - dependencies = [ 388 - "bytes", 389 - "memchr", 390 - ] 391 - 392 - [[package]] 393 - name = "commoncrypto" 394 - version = "0.2.0" 395 - source = "registry+https://github.com/rust-lang/crates.io-index" 396 - checksum = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007" 397 - dependencies = [ 398 - "commoncrypto-sys", 399 - ] 400 - 401 - [[package]] 402 - name = "commoncrypto-sys" 403 - version = "0.2.0" 404 - source = "registry+https://github.com/rust-lang/crates.io-index" 405 - checksum = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2" 406 - dependencies = [ 407 - "libc", 408 - ] 409 - 410 - [[package]] 411 name = "concolor-control" 412 version = "0.0.7" 413 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 426 427 [[package]] 428 name = "const-oid" 429 - version = "0.9.1" 430 source = "registry+https://github.com/rust-lang/crates.io-index" 431 - checksum = "cec318a675afcb6a1ea1d4340e2d377e56e47c266f28043ceccbf4412ddfdd3b" 432 433 [[package]] 434 name = "content_inspector" ··· 451 452 [[package]] 453 name = "core-foundation-sys" 454 - version = "0.8.3" 455 source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 457 458 [[package]] 459 name = "cpufeatures" 460 - version = "0.2.5" 461 source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 463 dependencies = [ 464 "libc", 465 ] 466 467 [[package]] 468 name = "crates-index" 469 - version = "0.19.8" 470 source = "registry+https://github.com/rust-lang/crates.io-index" 471 - checksum = "514c516c828544009e3b5842dd087a3fa4506d9674e26d0cbfc152f3f2a178c1" 472 dependencies = [ 473 "git2", 474 - "hex 0.4.3", 475 "home", 476 "memchr", 477 "num_cpus", ··· 487 488 [[package]] 489 name = "crates-io" 490 - version = "0.35.1" 491 - source = "git+https://github.com/rust-lang/cargo#3c5af6bed9a1a243a693e8e22ee2486bd5b82a6c" 492 dependencies = [ 493 "anyhow", 494 "curl", ··· 509 510 [[package]] 511 name = "crossbeam-channel" 512 - version = "0.5.6" 513 source = "registry+https://github.com/rust-lang/crates.io-index" 514 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 515 dependencies = [ 516 "cfg-if", 517 "crossbeam-utils", ··· 519 520 [[package]] 521 name = "crossbeam-deque" 522 - version = "0.8.2" 523 source = "registry+https://github.com/rust-lang/crates.io-index" 524 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 525 dependencies = [ 526 "cfg-if", 527 "crossbeam-epoch", ··· 530 531 [[package]] 532 name = "crossbeam-epoch" 533 - version = "0.9.13" 534 source = "registry+https://github.com/rust-lang/crates.io-index" 535 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 536 dependencies = [ 537 "autocfg", 538 "cfg-if", ··· 543 544 [[package]] 545 name = "crossbeam-utils" 546 - version = "0.8.14" 547 source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 549 dependencies = [ 550 "cfg-if", 551 ] 552 553 [[package]] 554 name = "crypto-bigint" 555 - version = "0.4.9" 556 source = "registry+https://github.com/rust-lang/crates.io-index" 557 - checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 558 dependencies = [ 559 "generic-array", 560 "rand_core", ··· 573 ] 574 575 [[package]] 576 - name = "crypto-hash" 577 - version = "0.3.4" 578 - source = "registry+https://github.com/rust-lang/crates.io-index" 579 - checksum = "8a77162240fd97248d19a564a565eb563a3f592b386e4136fb300909e67dddca" 580 - dependencies = [ 581 - "commoncrypto", 582 - "hex 0.3.2", 583 - "openssl", 584 - "winapi", 585 - ] 586 - 587 - [[package]] 588 name = "ct-codecs" 589 version = "1.1.1" 590 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 607 608 [[package]] 609 name = "curl-sys" 610 - version = "0.4.59+curl-7.86.0" 611 source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "6cfce34829f448b08f55b7db6d0009e23e2e86a34e8c2b366269bf5799b4a407" 613 dependencies = [ 614 "cc", 615 "libc", ··· 622 623 [[package]] 624 name = "der" 625 - version = "0.6.1" 626 source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 628 dependencies = [ 629 "const-oid", 630 "pem-rfc7468", ··· 639 640 [[package]] 641 name = "digest" 642 - version = "0.10.6" 643 source = "registry+https://github.com/rust-lang/crates.io-index" 644 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 645 dependencies = [ 646 "block-buffer", 647 "crypto-common", 648 "subtle", 649 ] ··· 656 657 [[package]] 658 name = "dunce" 659 - version = "1.0.3" 660 source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c" 662 663 [[package]] 664 name = "ecdsa" 665 - version = "0.14.8" 666 source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 668 dependencies = [ 669 "der", 670 "elliptic-curve", 671 "rfc6979", 672 "signature", ··· 683 684 [[package]] 685 name = "either" 686 - version = "1.8.0" 687 source = "registry+https://github.com/rust-lang/crates.io-index" 688 - checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 689 690 [[package]] 691 name = "elliptic-curve" 692 - version = "0.12.3" 693 source = "registry+https://github.com/rust-lang/crates.io-index" 694 - checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 695 dependencies = [ 696 "base16ct", 697 "crypto-bigint", 698 - "der", 699 "digest", 700 "ff", 701 "generic-array", ··· 721 722 [[package]] 723 name = "errno" 724 - version = "0.2.8" 725 - source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 727 - dependencies = [ 728 - "errno-dragonfly", 729 - "libc", 730 - "winapi", 731 - ] 732 - 733 - [[package]] 734 - name = "errno" 735 version = "0.3.1" 736 source = "registry+https://github.com/rust-lang/crates.io-index" 737 checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" ··· 753 754 [[package]] 755 name = "fastrand" 756 - version = "1.8.0" 757 source = "registry+https://github.com/rust-lang/crates.io-index" 758 - checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 759 dependencies = [ 760 "instant", 761 ] 762 763 [[package]] 764 name = "ff" 765 - version = "0.12.1" 766 source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 768 dependencies = [ 769 "rand_core", 770 "subtle", ··· 772 773 [[package]] 774 name = "fiat-crypto" 775 - version = "0.1.17" 776 source = "registry+https://github.com/rust-lang/crates.io-index" 777 - checksum = "a214f5bb88731d436478f3ae1f8a277b62124089ba9fb67f4f93fb100ef73c90" 778 779 [[package]] 780 name = "filetime" 781 - version = "0.2.19" 782 source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9" 784 dependencies = [ 785 "cfg-if", 786 "libc", 787 - "redox_syscall", 788 - "windows-sys 0.42.0", 789 ] 790 791 [[package]] 792 name = "flate2" 793 - version = "1.0.25" 794 source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 796 dependencies = [ 797 "crc32fast", 798 "libz-sys", ··· 840 841 [[package]] 842 name = "generic-array" 843 - version = "0.14.6" 844 source = "registry+https://github.com/rust-lang/crates.io-index" 845 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 846 dependencies = [ 847 "typenum", 848 "version_check", 849 ] 850 851 [[package]] 852 name = "getrandom" 853 - version = "0.2.8" 854 source = "registry+https://github.com/rust-lang/crates.io-index" 855 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 856 dependencies = [ 857 "cfg-if", 858 "js-sys", ··· 863 864 [[package]] 865 name = "git2" 866 - version = "0.16.1" 867 source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "ccf7f68c2995f392c49fffb4f95ae2c873297830eb25c6bc4c114ce8f4562acc" 869 dependencies = [ 870 "bitflags", 871 "libc", ··· 908 909 [[package]] 910 name = "group" 911 - version = "0.12.1" 912 source = "registry+https://github.com/rust-lang/crates.io-index" 913 - checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 914 dependencies = [ 915 "ff", 916 "rand_core", ··· 925 926 [[package]] 927 name = "heck" 928 - version = "0.4.0" 929 source = "registry+https://github.com/rust-lang/crates.io-index" 930 - checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 931 932 [[package]] 933 name = "hermit-abi" ··· 952 version = "0.3.1" 953 source = "registry+https://github.com/rust-lang/crates.io-index" 954 checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 955 - 956 - [[package]] 957 - name = "hex" 958 - version = "0.3.2" 959 - source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" 961 962 [[package]] 963 name = "hex" ··· 1040 1041 [[package]] 1042 name = "indexmap" 1043 - version = "1.9.2" 1044 source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 1046 dependencies = [ 1047 "autocfg", 1048 "hashbrown", ··· 1059 1060 [[package]] 1061 name = "io-lifetimes" 1062 - version = "1.0.4" 1063 source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e" 1065 dependencies = [ 1066 "libc", 1067 - "windows-sys 0.42.0", 1068 ] 1069 1070 [[package]] ··· 1075 dependencies = [ 1076 "hermit-abi 0.3.1", 1077 "io-lifetimes", 1078 - "rustix 0.37.3", 1079 "windows-sys 0.48.0", 1080 ] 1081 ··· 1090 1091 [[package]] 1092 name = "itoa" 1093 - version = "1.0.5" 1094 source = "registry+https://github.com/rust-lang/crates.io-index" 1095 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 1096 1097 [[package]] 1098 name = "jobserver" 1099 - version = "0.1.25" 1100 source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" 1102 dependencies = [ 1103 "libc", 1104 ] 1105 1106 [[package]] 1107 name = "js-sys" 1108 - version = "0.3.60" 1109 source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1111 dependencies = [ 1112 "wasm-bindgen", 1113 ] 1114 1115 [[package]] 1116 - name = "kstring" 1117 - version = "2.0.0" 1118 - source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747" 1120 - dependencies = [ 1121 - "static_assertions", 1122 - ] 1123 - 1124 - [[package]] 1125 name = "lazy_static" 1126 version = "1.4.0" 1127 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1129 1130 [[package]] 1131 name = "libc" 1132 - version = "0.2.139" 1133 source = "registry+https://github.com/rust-lang/crates.io-index" 1134 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 1135 1136 [[package]] 1137 name = "libgit2-sys" 1138 - version = "0.14.2+1.5.1" 1139 source = "registry+https://github.com/rust-lang/crates.io-index" 1140 - checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4" 1141 dependencies = [ 1142 "cc", 1143 "libc", ··· 1149 1150 [[package]] 1151 name = "libssh2-sys" 1152 - version = "0.2.23" 1153 source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca" 1155 dependencies = [ 1156 "cc", 1157 "libc", ··· 1163 1164 [[package]] 1165 name = "libz-sys" 1166 - version = "1.1.8" 1167 source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 1169 dependencies = [ 1170 "cc", 1171 "libc", ··· 1175 1176 [[package]] 1177 name = "linux-raw-sys" 1178 - version = "0.1.4" 1179 - source = "registry+https://github.com/rust-lang/crates.io-index" 1180 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1181 - 1182 - [[package]] 1183 - name = "linux-raw-sys" 1184 - version = "0.3.7" 1185 source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 1187 1188 [[package]] 1189 name = "log" ··· 1202 1203 [[package]] 1204 name = "memoffset" 1205 - version = "0.7.1" 1206 source = "registry+https://github.com/rust-lang/crates.io-index" 1207 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1208 dependencies = [ 1209 "autocfg", 1210 ] 1211 1212 [[package]] 1213 name = "miniz_oxide" 1214 - version = "0.6.2" 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1216 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1217 dependencies = [ 1218 "adler", 1219 ] ··· 1272 1273 [[package]] 1274 name = "once_cell" 1275 - version = "1.17.0" 1276 source = "registry+https://github.com/rust-lang/crates.io-index" 1277 - checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 1278 1279 [[package]] 1280 name = "openssl" 1281 - version = "0.10.45" 1282 source = "registry+https://github.com/rust-lang/crates.io-index" 1283 - checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 1284 dependencies = [ 1285 "bitflags", 1286 "cfg-if", ··· 1293 1294 [[package]] 1295 name = "openssl-macros" 1296 - version = "0.1.0" 1297 source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1299 dependencies = [ 1300 "proc-macro2", 1301 "quote", 1302 - "syn 1.0.107", 1303 ] 1304 1305 [[package]] ··· 1310 1311 [[package]] 1312 name = "openssl-src" 1313 - version = "111.24.0+1.1.1s" 1314 source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "3498f259dab01178c6228c6b00dcef0ed2a2d5e20d648c017861227773ea4abd" 1316 dependencies = [ 1317 "cc", 1318 ] 1319 1320 [[package]] 1321 name = "openssl-sys" 1322 - version = "0.9.80" 1323 source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 1325 dependencies = [ 1326 - "autocfg", 1327 "cc", 1328 "libc", 1329 "openssl-src", ··· 1333 1334 [[package]] 1335 name = "orion" 1336 - version = "0.17.3" 1337 source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "f2baf7fd2e326e3895c681176788dd227fcd8369350e53c570592d8563fecbb6" 1339 dependencies = [ 1340 "fiat-crypto", 1341 "subtle", ··· 1344 1345 [[package]] 1346 name = "os_pipe" 1347 - version = "1.1.2" 1348 source = "registry+https://github.com/rust-lang/crates.io-index" 1349 - checksum = "c6a252f1f8c11e84b3ab59d7a488e48e4478a93937e027076638c49536204639" 1350 dependencies = [ 1351 "libc", 1352 - "windows-sys 0.42.0", 1353 ] 1354 1355 [[package]] 1356 name = "p384" 1357 - version = "0.11.2" 1358 source = "registry+https://github.com/rust-lang/crates.io-index" 1359 - checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" 1360 dependencies = [ 1361 "ecdsa", 1362 "elliptic-curve", 1363 "sha2", 1364 ] 1365 1366 [[package]] 1367 name = "pasetors" 1368 - version = "0.6.5" 1369 source = "registry+https://github.com/rust-lang/crates.io-index" 1370 - checksum = "ed20c4c21d893414f42e0cbfebe8a8036b5ae9b0264611fb6504e395eda6ceec" 1371 dependencies = [ 1372 "ct-codecs", 1373 "ed25519-compact", ··· 1392 1393 [[package]] 1394 name = "pem-rfc7468" 1395 - version = "0.6.0" 1396 source = "registry+https://github.com/rust-lang/crates.io-index" 1397 - checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" 1398 dependencies = [ 1399 "base64ct", 1400 ] ··· 1407 1408 [[package]] 1409 name = "pkcs8" 1410 - version = "0.9.0" 1411 source = "registry+https://github.com/rust-lang/crates.io-index" 1412 - checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 1413 dependencies = [ 1414 "der", 1415 "spki", ··· 1417 1418 [[package]] 1419 name = "pkg-config" 1420 - version = "0.3.26" 1421 source = "registry+https://github.com/rust-lang/crates.io-index" 1422 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 1423 1424 [[package]] 1425 name = "predicates" ··· 1444 1445 [[package]] 1446 name = "predicates-tree" 1447 - version = "1.0.7" 1448 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d" 1450 dependencies = [ 1451 "predicates-core", 1452 "termtree", 1453 ] 1454 1455 [[package]] 1456 name = "proc-macro2" 1457 - version = "1.0.56" 1458 source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 1460 dependencies = [ 1461 "unicode-ident", 1462 ] ··· 1506 version = "0.2.16" 1507 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1509 dependencies = [ 1510 "bitflags", 1511 ] 1512 1513 [[package]] 1514 name = "regex" 1515 - version = "1.8.1" 1516 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 - checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 1518 dependencies = [ 1519 "aho-corasick 1.0.1", 1520 "memchr", ··· 1529 1530 [[package]] 1531 name = "regex-syntax" 1532 - version = "0.7.1" 1533 - source = "registry+https://github.com/rust-lang/crates.io-index" 1534 - checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 1535 - 1536 - [[package]] 1537 - name = "remove_dir_all" 1538 - version = "0.5.3" 1539 source = "registry+https://github.com/rust-lang/crates.io-index" 1540 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1541 - dependencies = [ 1542 - "winapi", 1543 - ] 1544 1545 [[package]] 1546 name = "rfc6979" 1547 - version = "0.3.1" 1548 source = "registry+https://github.com/rust-lang/crates.io-index" 1549 - checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 1550 dependencies = [ 1551 - "crypto-bigint", 1552 "hmac", 1553 - "zeroize", 1554 ] 1555 1556 [[package]] ··· 1576 1577 [[package]] 1578 name = "rustix" 1579 - version = "0.36.7" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03" 1582 - dependencies = [ 1583 - "bitflags", 1584 - "errno 0.2.8", 1585 - "io-lifetimes", 1586 - "libc", 1587 - "linux-raw-sys 0.1.4", 1588 - "windows-sys 0.42.0", 1589 - ] 1590 - 1591 - [[package]] 1592 - name = "rustix" 1593 - version = "0.37.3" 1594 source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "62b24138615de35e32031d041a09032ef3487a616d901ca4db224e7d557efae2" 1596 dependencies = [ 1597 "bitflags", 1598 - "errno 0.3.1", 1599 "io-lifetimes", 1600 "libc", 1601 - "linux-raw-sys 0.3.7", 1602 - "windows-sys 0.45.0", 1603 ] 1604 1605 [[package]] ··· 1616 1617 [[package]] 1618 name = "ryu" 1619 - version = "1.0.12" 1620 source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 1622 1623 [[package]] 1624 name = "same-file" ··· 1656 1657 [[package]] 1658 name = "sec1" 1659 - version = "0.3.0" 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 - checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 1662 dependencies = [ 1663 "base16ct", 1664 "der", ··· 1670 1671 [[package]] 1672 name = "security-framework" 1673 - version = "2.8.1" 1674 source = "registry+https://github.com/rust-lang/crates.io-index" 1675 - checksum = "7c4437699b6d34972de58652c68b98cb5b53a4199ab126db8e20ec8ded29a721" 1676 dependencies = [ 1677 "bitflags", 1678 "core-foundation", ··· 1717 dependencies = [ 1718 "proc-macro2", 1719 "quote", 1720 - "syn 2.0.15", 1721 ] 1722 1723 [[package]] ··· 1733 1734 [[package]] 1735 name = "serde_spanned" 1736 - version = "0.6.1" 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 1739 dependencies = [ 1740 "serde", 1741 ] ··· 1765 1766 [[package]] 1767 name = "signature" 1768 - version = "1.6.4" 1769 source = "registry+https://github.com/rust-lang/crates.io-index" 1770 - checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 1771 dependencies = [ 1772 "digest", 1773 "rand_core", ··· 1821 1822 [[package]] 1823 name = "socket2" 1824 - version = "0.4.7" 1825 source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 1827 dependencies = [ 1828 "libc", 1829 "winapi", ··· 1848 1849 [[package]] 1850 name = "spki" 1851 - version = "0.6.0" 1852 source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 1854 dependencies = [ 1855 "base64ct", 1856 "der", 1857 ] 1858 1859 [[package]] 1860 - name = "static_assertions" 1861 - version = "1.1.0" 1862 - source = "registry+https://github.com/rust-lang/crates.io-index" 1863 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1864 - 1865 - [[package]] 1866 name = "strsim" 1867 version = "0.10.0" 1868 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1886 1887 [[package]] 1888 name = "syn" 1889 - version = "1.0.107" 1890 source = "registry+https://github.com/rust-lang/crates.io-index" 1891 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 1892 - dependencies = [ 1893 - "proc-macro2", 1894 - "quote", 1895 - "unicode-ident", 1896 - ] 1897 - 1898 - [[package]] 1899 - name = "syn" 1900 - version = "2.0.15" 1901 - source = "registry+https://github.com/rust-lang/crates.io-index" 1902 - checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 1903 dependencies = [ 1904 "proc-macro2", 1905 "quote", ··· 1918 1919 [[package]] 1920 name = "tempfile" 1921 - version = "3.3.0" 1922 source = "registry+https://github.com/rust-lang/crates.io-index" 1923 - checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1924 dependencies = [ 1925 "cfg-if", 1926 "fastrand", 1927 - "libc", 1928 - "redox_syscall", 1929 - "remove_dir_all", 1930 - "winapi", 1931 ] 1932 1933 [[package]] ··· 1941 1942 [[package]] 1943 name = "terminal_size" 1944 - version = "0.2.3" 1945 source = "registry+https://github.com/rust-lang/crates.io-index" 1946 - checksum = "cb20089a8ba2b69debd491f8d2d023761cbf196e999218c591fa1e7e15a21907" 1947 dependencies = [ 1948 - "rustix 0.36.7", 1949 - "windows-sys 0.42.0", 1950 ] 1951 1952 [[package]] 1953 name = "termtree" 1954 - version = "0.4.0" 1955 source = "registry+https://github.com/rust-lang/crates.io-index" 1956 - checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" 1957 1958 [[package]] 1959 name = "thiserror" 1960 - version = "1.0.38" 1961 source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 1963 dependencies = [ 1964 "thiserror-impl", 1965 ] 1966 1967 [[package]] 1968 name = "thiserror-impl" 1969 - version = "1.0.38" 1970 source = "registry+https://github.com/rust-lang/crates.io-index" 1971 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 1972 dependencies = [ 1973 "proc-macro2", 1974 "quote", 1975 - "syn 1.0.107", 1976 ] 1977 1978 [[package]] 1979 name = "thread_local" 1980 - version = "1.1.4" 1981 source = "registry+https://github.com/rust-lang/crates.io-index" 1982 - checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 1983 dependencies = [ 1984 "once_cell", 1985 ] 1986 1987 [[package]] 1988 name = "time" 1989 - version = "0.3.17" 1990 source = "registry+https://github.com/rust-lang/crates.io-index" 1991 - checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 1992 dependencies = [ 1993 "itoa", 1994 "serde", ··· 1998 1999 [[package]] 2000 name = "time-core" 2001 - version = "0.1.0" 2002 source = "registry+https://github.com/rust-lang/crates.io-index" 2003 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 2004 2005 [[package]] 2006 name = "time-macros" 2007 - version = "0.2.6" 2008 source = "registry+https://github.com/rust-lang/crates.io-index" 2009 - checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 2010 dependencies = [ 2011 "time-core", 2012 ] ··· 2022 2023 [[package]] 2024 name = "tinyvec_macros" 2025 - version = "0.1.0" 2026 source = "registry+https://github.com/rust-lang/crates.io-index" 2027 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2028 2029 [[package]] 2030 name = "toml" 2031 - version = "0.7.3" 2032 source = "registry+https://github.com/rust-lang/crates.io-index" 2033 - checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 2034 dependencies = [ 2035 "serde", 2036 "serde_spanned", 2037 - "toml_datetime 0.6.1", 2038 - "toml_edit 0.19.8", 2039 ] 2040 2041 [[package]] 2042 name = "toml_datetime" 2043 - version = "0.5.1" 2044 - source = "registry+https://github.com/rust-lang/crates.io-index" 2045 - checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5" 2046 - dependencies = [ 2047 - "serde", 2048 - ] 2049 - 2050 - [[package]] 2051 - name = "toml_datetime" 2052 - version = "0.6.1" 2053 - source = "registry+https://github.com/rust-lang/crates.io-index" 2054 - checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 2055 - dependencies = [ 2056 - "serde", 2057 - ] 2058 - 2059 - [[package]] 2060 - name = "toml_edit" 2061 - version = "0.15.0" 2062 source = "registry+https://github.com/rust-lang/crates.io-index" 2063 - checksum = "b1541ba70885967e662f69d31ab3aeca7b1aaecfcd58679590b893e9239c3646" 2064 dependencies = [ 2065 - "combine", 2066 - "indexmap", 2067 - "itertools", 2068 - "kstring", 2069 "serde", 2070 - "toml_datetime 0.5.1", 2071 ] 2072 2073 [[package]] 2074 name = "toml_edit" 2075 - version = "0.19.8" 2076 source = "registry+https://github.com/rust-lang/crates.io-index" 2077 - checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 2078 dependencies = [ 2079 "indexmap", 2080 "serde", 2081 "serde_spanned", 2082 - "toml_datetime 0.6.1", 2083 "winnow", 2084 ] 2085 ··· 2096 "serde", 2097 "shlex", 2098 "snapbox", 2099 - "toml_edit 0.19.8", 2100 ] 2101 2102 [[package]] ··· 2107 2108 [[package]] 2109 name = "unicode-bidi" 2110 - version = "0.3.10" 2111 source = "registry+https://github.com/rust-lang/crates.io-index" 2112 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 2113 2114 [[package]] 2115 name = "unicode-ident" 2116 - version = "1.0.6" 2117 source = "registry+https://github.com/rust-lang/crates.io-index" 2118 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 2119 2120 [[package]] 2121 name = "unicode-normalization" ··· 2191 2192 [[package]] 2193 name = "walkdir" 2194 - version = "2.3.2" 2195 source = "registry+https://github.com/rust-lang/crates.io-index" 2196 - checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2197 dependencies = [ 2198 "same-file", 2199 - "winapi", 2200 "winapi-util", 2201 ] 2202 ··· 2208 2209 [[package]] 2210 name = "wasm-bindgen" 2211 - version = "0.2.83" 2212 source = "registry+https://github.com/rust-lang/crates.io-index" 2213 - checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 2214 dependencies = [ 2215 "cfg-if", 2216 "wasm-bindgen-macro", ··· 2218 2219 [[package]] 2220 name = "wasm-bindgen-backend" 2221 - version = "0.2.83" 2222 source = "registry+https://github.com/rust-lang/crates.io-index" 2223 - checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 2224 dependencies = [ 2225 "bumpalo", 2226 "log", 2227 "once_cell", 2228 "proc-macro2", 2229 "quote", 2230 - "syn 1.0.107", 2231 "wasm-bindgen-shared", 2232 ] 2233 2234 [[package]] 2235 name = "wasm-bindgen-macro" 2236 - version = "0.2.83" 2237 source = "registry+https://github.com/rust-lang/crates.io-index" 2238 - checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 2239 dependencies = [ 2240 "quote", 2241 "wasm-bindgen-macro-support", ··· 2243 2244 [[package]] 2245 name = "wasm-bindgen-macro-support" 2246 - version = "0.2.83" 2247 source = "registry+https://github.com/rust-lang/crates.io-index" 2248 - checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 2249 dependencies = [ 2250 "proc-macro2", 2251 "quote", 2252 - "syn 1.0.107", 2253 "wasm-bindgen-backend", 2254 "wasm-bindgen-shared", 2255 ] 2256 2257 [[package]] 2258 name = "wasm-bindgen-shared" 2259 - version = "0.2.83" 2260 source = "registry+https://github.com/rust-lang/crates.io-index" 2261 - checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 2262 2263 [[package]] 2264 name = "web-sys" 2265 - version = "0.3.60" 2266 source = "registry+https://github.com/rust-lang/crates.io-index" 2267 - checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 2268 dependencies = [ 2269 "js-sys", 2270 "wasm-bindgen", ··· 2478 2479 [[package]] 2480 name = "zeroize" 2481 - version = "1.5.7" 2482 source = "registry+https://github.com/rust-lang/crates.io-index" 2483 - checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
··· 77 78 [[package]] 79 name = "anyhow" 80 + version = "1.0.71" 81 source = "registry+https://github.com/rust-lang/crates.io-index" 82 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 83 84 [[package]] 85 name = "assert_cmd" ··· 132 133 [[package]] 134 name = "base16ct" 135 + version = "0.2.0" 136 source = "registry+https://github.com/rust-lang/crates.io-index" 137 + checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 138 139 [[package]] 140 name = "base64" ··· 144 145 [[package]] 146 name = "base64ct" 147 + version = "1.6.0" 148 source = "registry+https://github.com/rust-lang/crates.io-index" 149 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 150 151 [[package]] 152 name = "bitflags" ··· 156 157 [[package]] 158 name = "block-buffer" 159 + version = "0.10.4" 160 source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 162 dependencies = [ 163 "generic-array", 164 ] 165 166 [[package]] 167 name = "bstr" 168 + version = "1.4.0" 169 source = "registry+https://github.com/rust-lang/crates.io-index" 170 + checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 171 dependencies = [ 172 "memchr", 173 "once_cell", ··· 177 178 [[package]] 179 name = "bumpalo" 180 + version = "3.13.0" 181 source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 183 184 [[package]] 185 name = "byteorder" ··· 188 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 189 190 [[package]] 191 name = "camino" 192 + version = "1.1.4" 193 source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2" 195 dependencies = [ 196 "serde", 197 ] 198 199 [[package]] 200 name = "cargo-edit" 201 + version = "0.12.0" 202 dependencies = [ 203 "anyhow", 204 "assert_cmd", ··· 212 "dunce", 213 "env_proxy", 214 "git2", 215 + "hex", 216 "home", 217 "indexmap", 218 "native-tls", ··· 227 "subprocess", 228 "termcolor", 229 "toml", 230 + "toml_edit", 231 "trycmd", 232 "ureq", 233 "url", ··· 245 [[package]] 246 name = "cargo-test-macro" 247 version = "0.1.0" 248 + source = "git+https://github.com/rust-lang/cargo#13413c64ff88dd6c2824e9eb9374fc5f10895d28" 249 250 [[package]] 251 name = "cargo-test-support" 252 version = "0.1.0" 253 + source = "git+https://github.com/rust-lang/cargo#13413c64ff88dd6c2824e9eb9374fc5f10895d28" 254 dependencies = [ 255 "anyhow", 256 "cargo-test-macro", ··· 269 "tar", 270 "termcolor", 271 "time", 272 + "toml", 273 "url", 274 + "windows-sys 0.48.0", 275 ] 276 277 [[package]] 278 name = "cargo-util" 279 + version = "0.2.4" 280 + source = "git+https://github.com/rust-lang/cargo#13413c64ff88dd6c2824e9eb9374fc5f10895d28" 281 dependencies = [ 282 "anyhow", 283 "core-foundation", 284 "filetime", 285 + "hex", 286 "jobserver", 287 "libc", 288 "log", 289 "miow", 290 "same-file", 291 + "sha2", 292 "shell-escape", 293 "tempfile", 294 "walkdir", 295 + "windows-sys 0.48.0", 296 ] 297 298 [[package]] ··· 311 312 [[package]] 313 name = "cc" 314 + version = "1.0.79" 315 source = "registry+https://github.com/rust-lang/crates.io-index" 316 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 317 dependencies = [ 318 "jobserver", 319 ] ··· 326 327 [[package]] 328 name = "clap" 329 + version = "4.3.0" 330 source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" 332 dependencies = [ 333 "clap_builder", 334 "clap_derive", ··· 337 338 [[package]] 339 name = "clap_builder" 340 + version = "4.3.0" 341 source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" 343 dependencies = [ 344 "anstream", 345 "anstyle", ··· 351 352 [[package]] 353 name = "clap_derive" 354 + version = "4.3.0" 355 source = "registry+https://github.com/rust-lang/crates.io-index" 356 + checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b" 357 dependencies = [ 358 "heck", 359 "proc-macro2", 360 "quote", 361 + "syn", 362 ] 363 364 [[package]] 365 name = "clap_lex" 366 + version = "0.5.0" 367 source = "registry+https://github.com/rust-lang/crates.io-index" 368 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 369 370 [[package]] 371 name = "colorchoice" ··· 374 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 375 376 [[package]] 377 name = "concolor-control" 378 version = "0.0.7" 379 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 392 393 [[package]] 394 name = "const-oid" 395 + version = "0.9.2" 396 source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913" 398 399 [[package]] 400 name = "content_inspector" ··· 417 418 [[package]] 419 name = "core-foundation-sys" 420 + version = "0.8.4" 421 source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 423 424 [[package]] 425 name = "cpufeatures" 426 + version = "0.2.7" 427 source = "registry+https://github.com/rust-lang/crates.io-index" 428 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 429 dependencies = [ 430 "libc", 431 ] 432 433 [[package]] 434 name = "crates-index" 435 + version = "0.19.10" 436 source = "registry+https://github.com/rust-lang/crates.io-index" 437 + checksum = "65aa5fcd68f892b56202f15a18a53308b2d489b728958dbce48d2d1f3bbaa685" 438 dependencies = [ 439 "git2", 440 + "hex", 441 "home", 442 "memchr", 443 "num_cpus", ··· 453 454 [[package]] 455 name = "crates-io" 456 + version = "0.36.1" 457 + source = "git+https://github.com/rust-lang/cargo#13413c64ff88dd6c2824e9eb9374fc5f10895d28" 458 dependencies = [ 459 "anyhow", 460 "curl", ··· 475 476 [[package]] 477 name = "crossbeam-channel" 478 + version = "0.5.8" 479 source = "registry+https://github.com/rust-lang/crates.io-index" 480 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 481 dependencies = [ 482 "cfg-if", 483 "crossbeam-utils", ··· 485 486 [[package]] 487 name = "crossbeam-deque" 488 + version = "0.8.3" 489 source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 491 dependencies = [ 492 "cfg-if", 493 "crossbeam-epoch", ··· 496 497 [[package]] 498 name = "crossbeam-epoch" 499 + version = "0.9.14" 500 source = "registry+https://github.com/rust-lang/crates.io-index" 501 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 502 dependencies = [ 503 "autocfg", 504 "cfg-if", ··· 509 510 [[package]] 511 name = "crossbeam-utils" 512 + version = "0.8.15" 513 source = "registry+https://github.com/rust-lang/crates.io-index" 514 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 515 dependencies = [ 516 "cfg-if", 517 ] 518 519 [[package]] 520 name = "crypto-bigint" 521 + version = "0.5.1" 522 source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "7c2538c4e68e52548bacb3e83ac549f903d44f011ac9d5abb5e132e67d0808f7" 524 dependencies = [ 525 "generic-array", 526 "rand_core", ··· 539 ] 540 541 [[package]] 542 name = "ct-codecs" 543 version = "1.1.1" 544 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 561 562 [[package]] 563 name = "curl-sys" 564 + version = "0.4.61+curl-8.0.1" 565 source = "registry+https://github.com/rust-lang/crates.io-index" 566 + checksum = "14d05c10f541ae6f3bc5b3d923c20001f47db7d5f0b2bc6ad16490133842db79" 567 dependencies = [ 568 "cc", 569 "libc", ··· 576 577 [[package]] 578 name = "der" 579 + version = "0.7.4" 580 source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "86b14af2045fa69ed2b7a48934bebb842d0f33e73e96e78766ecb14bb5347a11" 582 dependencies = [ 583 "const-oid", 584 "pem-rfc7468", ··· 593 594 [[package]] 595 name = "digest" 596 + version = "0.10.7" 597 source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 599 dependencies = [ 600 "block-buffer", 601 + "const-oid", 602 "crypto-common", 603 "subtle", 604 ] ··· 611 612 [[package]] 613 name = "dunce" 614 + version = "1.0.4" 615 source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 617 618 [[package]] 619 name = "ecdsa" 620 + version = "0.16.6" 621 source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "a48e5d537b8a30c0b023116d981b16334be1485af7ca68db3a2b7024cbc957fd" 623 dependencies = [ 624 "der", 625 + "digest", 626 "elliptic-curve", 627 "rfc6979", 628 "signature", ··· 639 640 [[package]] 641 name = "either" 642 + version = "1.8.1" 643 source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 645 646 [[package]] 647 name = "elliptic-curve" 648 + version = "0.13.4" 649 source = "registry+https://github.com/rust-lang/crates.io-index" 650 + checksum = "75c71eaa367f2e5d556414a8eea812bc62985c879748d6403edabd9cb03f16e7" 651 dependencies = [ 652 "base16ct", 653 "crypto-bigint", 654 "digest", 655 "ff", 656 "generic-array", ··· 676 677 [[package]] 678 name = "errno" 679 version = "0.3.1" 680 source = "registry+https://github.com/rust-lang/crates.io-index" 681 checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" ··· 697 698 [[package]] 699 name = "fastrand" 700 + version = "1.9.0" 701 source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 703 dependencies = [ 704 "instant", 705 ] 706 707 [[package]] 708 name = "ff" 709 + version = "0.13.0" 710 source = "registry+https://github.com/rust-lang/crates.io-index" 711 + checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 712 dependencies = [ 713 "rand_core", 714 "subtle", ··· 716 717 [[package]] 718 name = "fiat-crypto" 719 + version = "0.1.20" 720 source = "registry+https://github.com/rust-lang/crates.io-index" 721 + checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77" 722 723 [[package]] 724 name = "filetime" 725 + version = "0.2.21" 726 source = "registry+https://github.com/rust-lang/crates.io-index" 727 + checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 728 dependencies = [ 729 "cfg-if", 730 "libc", 731 + "redox_syscall 0.2.16", 732 + "windows-sys 0.48.0", 733 ] 734 735 [[package]] 736 name = "flate2" 737 + version = "1.0.26" 738 source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 740 dependencies = [ 741 "crc32fast", 742 "libz-sys", ··· 784 785 [[package]] 786 name = "generic-array" 787 + version = "0.14.7" 788 source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 790 dependencies = [ 791 "typenum", 792 "version_check", 793 + "zeroize", 794 ] 795 796 [[package]] 797 name = "getrandom" 798 + version = "0.2.9" 799 source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 801 dependencies = [ 802 "cfg-if", 803 "js-sys", ··· 808 809 [[package]] 810 name = "git2" 811 + version = "0.17.1" 812 source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "8b7905cdfe33d31a88bb2e8419ddd054451f5432d1da9eaf2ac7804ee1ea12d5" 814 dependencies = [ 815 "bitflags", 816 "libc", ··· 853 854 [[package]] 855 name = "group" 856 + version = "0.13.0" 857 source = "registry+https://github.com/rust-lang/crates.io-index" 858 + checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 859 dependencies = [ 860 "ff", 861 "rand_core", ··· 870 871 [[package]] 872 name = "heck" 873 + version = "0.4.1" 874 source = "registry+https://github.com/rust-lang/crates.io-index" 875 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 876 877 [[package]] 878 name = "hermit-abi" ··· 897 version = "0.3.1" 898 source = "registry+https://github.com/rust-lang/crates.io-index" 899 checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 900 901 [[package]] 902 name = "hex" ··· 979 980 [[package]] 981 name = "indexmap" 982 + version = "1.9.3" 983 source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 985 dependencies = [ 986 "autocfg", 987 "hashbrown", ··· 998 999 [[package]] 1000 name = "io-lifetimes" 1001 + version = "1.0.10" 1002 source = "registry+https://github.com/rust-lang/crates.io-index" 1003 + checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 1004 dependencies = [ 1005 + "hermit-abi 0.3.1", 1006 "libc", 1007 + "windows-sys 0.48.0", 1008 ] 1009 1010 [[package]] ··· 1015 dependencies = [ 1016 "hermit-abi 0.3.1", 1017 "io-lifetimes", 1018 + "rustix", 1019 "windows-sys 0.48.0", 1020 ] 1021 ··· 1030 1031 [[package]] 1032 name = "itoa" 1033 + version = "1.0.6" 1034 source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1036 1037 [[package]] 1038 name = "jobserver" 1039 + version = "0.1.26" 1040 source = "registry+https://github.com/rust-lang/crates.io-index" 1041 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1042 dependencies = [ 1043 "libc", 1044 ] 1045 1046 [[package]] 1047 name = "js-sys" 1048 + version = "0.3.63" 1049 source = "registry+https://github.com/rust-lang/crates.io-index" 1050 + checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 1051 dependencies = [ 1052 "wasm-bindgen", 1053 ] 1054 1055 [[package]] 1056 name = "lazy_static" 1057 version = "1.4.0" 1058 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1060 1061 [[package]] 1062 name = "libc" 1063 + version = "0.2.144" 1064 source = "registry+https://github.com/rust-lang/crates.io-index" 1065 + checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 1066 1067 [[package]] 1068 name = "libgit2-sys" 1069 + version = "0.15.1+1.6.4" 1070 source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "fb4577bde8cdfc7d6a2a4bcb7b049598597de33ffd337276e9c7db6cd4a2cee7" 1072 dependencies = [ 1073 "cc", 1074 "libc", ··· 1080 1081 [[package]] 1082 name = "libssh2-sys" 1083 + version = "0.3.0" 1084 source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" 1086 dependencies = [ 1087 "cc", 1088 "libc", ··· 1094 1095 [[package]] 1096 name = "libz-sys" 1097 + version = "1.1.9" 1098 source = "registry+https://github.com/rust-lang/crates.io-index" 1099 + checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 1100 dependencies = [ 1101 "cc", 1102 "libc", ··· 1106 1107 [[package]] 1108 name = "linux-raw-sys" 1109 + version = "0.3.8" 1110 source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1112 1113 [[package]] 1114 name = "log" ··· 1127 1128 [[package]] 1129 name = "memoffset" 1130 + version = "0.8.0" 1131 source = "registry+https://github.com/rust-lang/crates.io-index" 1132 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1133 dependencies = [ 1134 "autocfg", 1135 ] 1136 1137 [[package]] 1138 name = "miniz_oxide" 1139 + version = "0.7.1" 1140 source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1142 dependencies = [ 1143 "adler", 1144 ] ··· 1197 1198 [[package]] 1199 name = "once_cell" 1200 + version = "1.17.1" 1201 source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1203 1204 [[package]] 1205 name = "openssl" 1206 + version = "0.10.52" 1207 source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 1209 dependencies = [ 1210 "bitflags", 1211 "cfg-if", ··· 1218 1219 [[package]] 1220 name = "openssl-macros" 1221 + version = "0.1.1" 1222 source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1224 dependencies = [ 1225 "proc-macro2", 1226 "quote", 1227 + "syn", 1228 ] 1229 1230 [[package]] ··· 1235 1236 [[package]] 1237 name = "openssl-src" 1238 + version = "111.25.3+1.1.1t" 1239 source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "924757a6a226bf60da5f7dd0311a34d2b52283dd82ddeb103208ddc66362f80c" 1241 dependencies = [ 1242 "cc", 1243 ] 1244 1245 [[package]] 1246 name = "openssl-sys" 1247 + version = "0.9.87" 1248 source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 1250 dependencies = [ 1251 "cc", 1252 "libc", 1253 "openssl-src", ··· 1257 1258 [[package]] 1259 name = "orion" 1260 + version = "0.17.4" 1261 source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "cbe74a766292f94f7e69db5a7bf010eadd944f24186c463fe578a7e637582066" 1263 dependencies = [ 1264 "fiat-crypto", 1265 "subtle", ··· 1268 1269 [[package]] 1270 name = "os_pipe" 1271 + version = "1.1.4" 1272 source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 1274 dependencies = [ 1275 "libc", 1276 + "windows-sys 0.48.0", 1277 ] 1278 1279 [[package]] 1280 name = "p384" 1281 + version = "0.13.0" 1282 source = "registry+https://github.com/rust-lang/crates.io-index" 1283 + checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 1284 dependencies = [ 1285 "ecdsa", 1286 "elliptic-curve", 1287 + "primeorder", 1288 "sha2", 1289 ] 1290 1291 [[package]] 1292 name = "pasetors" 1293 + version = "0.6.6" 1294 source = "registry+https://github.com/rust-lang/crates.io-index" 1295 + checksum = "824bf633b85dc1dece2eb07161627ba5d90a951597cd5dbf8d85f4d82b7aea69" 1296 dependencies = [ 1297 "ct-codecs", 1298 "ed25519-compact", ··· 1317 1318 [[package]] 1319 name = "pem-rfc7468" 1320 + version = "0.7.0" 1321 source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1323 dependencies = [ 1324 "base64ct", 1325 ] ··· 1332 1333 [[package]] 1334 name = "pkcs8" 1335 + version = "0.10.2" 1336 source = "registry+https://github.com/rust-lang/crates.io-index" 1337 + checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1338 dependencies = [ 1339 "der", 1340 "spki", ··· 1342 1343 [[package]] 1344 name = "pkg-config" 1345 + version = "0.3.27" 1346 source = "registry+https://github.com/rust-lang/crates.io-index" 1347 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1348 1349 [[package]] 1350 name = "predicates" ··· 1369 1370 [[package]] 1371 name = "predicates-tree" 1372 + version = "1.0.8" 1373 source = "registry+https://github.com/rust-lang/crates.io-index" 1374 + checksum = "2cfd78a1cd6926a74e7f263eb466b765c79409b176be05c3676fac27df378e96" 1375 dependencies = [ 1376 "predicates-core", 1377 "termtree", 1378 ] 1379 1380 [[package]] 1381 + name = "primeorder" 1382 + version = "0.13.1" 1383 + source = "registry+https://github.com/rust-lang/crates.io-index" 1384 + checksum = "cf8d3875361e28f7753baefef104386e7aa47642c93023356d97fdef4003bfb5" 1385 + dependencies = [ 1386 + "elliptic-curve", 1387 + ] 1388 + 1389 + [[package]] 1390 name = "proc-macro2" 1391 + version = "1.0.58" 1392 source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 1394 dependencies = [ 1395 "unicode-ident", 1396 ] ··· 1440 version = "0.2.16" 1441 source = "registry+https://github.com/rust-lang/crates.io-index" 1442 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1443 + dependencies = [ 1444 + "bitflags", 1445 + ] 1446 + 1447 + [[package]] 1448 + name = "redox_syscall" 1449 + version = "0.3.5" 1450 + source = "registry+https://github.com/rust-lang/crates.io-index" 1451 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1452 dependencies = [ 1453 "bitflags", 1454 ] 1455 1456 [[package]] 1457 name = "regex" 1458 + version = "1.8.2" 1459 source = "registry+https://github.com/rust-lang/crates.io-index" 1460 + checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974" 1461 dependencies = [ 1462 "aho-corasick 1.0.1", 1463 "memchr", ··· 1472 1473 [[package]] 1474 name = "regex-syntax" 1475 + version = "0.7.2" 1476 source = "registry+https://github.com/rust-lang/crates.io-index" 1477 + checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 1478 1479 [[package]] 1480 name = "rfc6979" 1481 + version = "0.4.0" 1482 source = "registry+https://github.com/rust-lang/crates.io-index" 1483 + checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 1484 dependencies = [ 1485 "hmac", 1486 + "subtle", 1487 ] 1488 1489 [[package]] ··· 1509 1510 [[package]] 1511 name = "rustix" 1512 + version = "0.37.19" 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 + checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 1515 dependencies = [ 1516 "bitflags", 1517 + "errno", 1518 "io-lifetimes", 1519 "libc", 1520 + "linux-raw-sys", 1521 + "windows-sys 0.48.0", 1522 ] 1523 1524 [[package]] ··· 1535 1536 [[package]] 1537 name = "ryu" 1538 + version = "1.0.13" 1539 source = "registry+https://github.com/rust-lang/crates.io-index" 1540 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1541 1542 [[package]] 1543 name = "same-file" ··· 1575 1576 [[package]] 1577 name = "sec1" 1578 + version = "0.7.2" 1579 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 + checksum = "f0aec48e813d6b90b15f0b8948af3c63483992dee44c03e9930b3eebdabe046e" 1581 dependencies = [ 1582 "base16ct", 1583 "der", ··· 1589 1590 [[package]] 1591 name = "security-framework" 1592 + version = "2.8.2" 1593 source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 1595 dependencies = [ 1596 "bitflags", 1597 "core-foundation", ··· 1636 dependencies = [ 1637 "proc-macro2", 1638 "quote", 1639 + "syn", 1640 ] 1641 1642 [[package]] ··· 1652 1653 [[package]] 1654 name = "serde_spanned" 1655 + version = "0.6.2" 1656 source = "registry+https://github.com/rust-lang/crates.io-index" 1657 + checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" 1658 dependencies = [ 1659 "serde", 1660 ] ··· 1684 1685 [[package]] 1686 name = "signature" 1687 + version = "2.1.0" 1688 source = "registry+https://github.com/rust-lang/crates.io-index" 1689 + checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" 1690 dependencies = [ 1691 "digest", 1692 "rand_core", ··· 1740 1741 [[package]] 1742 name = "socket2" 1743 + version = "0.4.9" 1744 source = "registry+https://github.com/rust-lang/crates.io-index" 1745 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1746 dependencies = [ 1747 "libc", 1748 "winapi", ··· 1767 1768 [[package]] 1769 name = "spki" 1770 + version = "0.7.1" 1771 source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "37a5be806ab6f127c3da44b7378837ebf01dadca8510a0e572460216b228bd0e" 1773 dependencies = [ 1774 "base64ct", 1775 "der", 1776 ] 1777 1778 [[package]] 1779 name = "strsim" 1780 version = "0.10.0" 1781 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1799 1800 [[package]] 1801 name = "syn" 1802 + version = "2.0.16" 1803 source = "registry+https://github.com/rust-lang/crates.io-index" 1804 + checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 1805 dependencies = [ 1806 "proc-macro2", 1807 "quote", ··· 1820 1821 [[package]] 1822 name = "tempfile" 1823 + version = "3.5.0" 1824 source = "registry+https://github.com/rust-lang/crates.io-index" 1825 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 1826 dependencies = [ 1827 "cfg-if", 1828 "fastrand", 1829 + "redox_syscall 0.3.5", 1830 + "rustix", 1831 + "windows-sys 0.45.0", 1832 ] 1833 1834 [[package]] ··· 1842 1843 [[package]] 1844 name = "terminal_size" 1845 + version = "0.2.6" 1846 source = "registry+https://github.com/rust-lang/crates.io-index" 1847 + checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 1848 dependencies = [ 1849 + "rustix", 1850 + "windows-sys 0.48.0", 1851 ] 1852 1853 [[package]] 1854 name = "termtree" 1855 + version = "0.4.1" 1856 source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 1858 1859 [[package]] 1860 name = "thiserror" 1861 + version = "1.0.40" 1862 source = "registry+https://github.com/rust-lang/crates.io-index" 1863 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 1864 dependencies = [ 1865 "thiserror-impl", 1866 ] 1867 1868 [[package]] 1869 name = "thiserror-impl" 1870 + version = "1.0.40" 1871 source = "registry+https://github.com/rust-lang/crates.io-index" 1872 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 1873 dependencies = [ 1874 "proc-macro2", 1875 "quote", 1876 + "syn", 1877 ] 1878 1879 [[package]] 1880 name = "thread_local" 1881 + version = "1.1.7" 1882 source = "registry+https://github.com/rust-lang/crates.io-index" 1883 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1884 dependencies = [ 1885 + "cfg-if", 1886 "once_cell", 1887 ] 1888 1889 [[package]] 1890 name = "time" 1891 + version = "0.3.21" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" 1894 dependencies = [ 1895 "itoa", 1896 "serde", ··· 1900 1901 [[package]] 1902 name = "time-core" 1903 + version = "0.1.1" 1904 source = "registry+https://github.com/rust-lang/crates.io-index" 1905 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 1906 1907 [[package]] 1908 name = "time-macros" 1909 + version = "0.2.9" 1910 source = "registry+https://github.com/rust-lang/crates.io-index" 1911 + checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 1912 dependencies = [ 1913 "time-core", 1914 ] ··· 1924 1925 [[package]] 1926 name = "tinyvec_macros" 1927 + version = "0.1.1" 1928 source = "registry+https://github.com/rust-lang/crates.io-index" 1929 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1930 1931 [[package]] 1932 name = "toml" 1933 + version = "0.7.4" 1934 source = "registry+https://github.com/rust-lang/crates.io-index" 1935 + checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" 1936 dependencies = [ 1937 "serde", 1938 "serde_spanned", 1939 + "toml_datetime", 1940 + "toml_edit", 1941 ] 1942 1943 [[package]] 1944 name = "toml_datetime" 1945 + version = "0.6.2" 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 1948 dependencies = [ 1949 "serde", 1950 ] 1951 1952 [[package]] 1953 name = "toml_edit" 1954 + version = "0.19.9" 1955 source = "registry+https://github.com/rust-lang/crates.io-index" 1956 + checksum = "92d964908cec0d030b812013af25a0e57fddfadb1e066ecc6681d86253129d4f" 1957 dependencies = [ 1958 "indexmap", 1959 "serde", 1960 "serde_spanned", 1961 + "toml_datetime", 1962 "winnow", 1963 ] 1964 ··· 1975 "serde", 1976 "shlex", 1977 "snapbox", 1978 + "toml_edit", 1979 ] 1980 1981 [[package]] ··· 1986 1987 [[package]] 1988 name = "unicode-bidi" 1989 + version = "0.3.13" 1990 source = "registry+https://github.com/rust-lang/crates.io-index" 1991 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1992 1993 [[package]] 1994 name = "unicode-ident" 1995 + version = "1.0.8" 1996 source = "registry+https://github.com/rust-lang/crates.io-index" 1997 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 1998 1999 [[package]] 2000 name = "unicode-normalization" ··· 2070 2071 [[package]] 2072 name = "walkdir" 2073 + version = "2.3.3" 2074 source = "registry+https://github.com/rust-lang/crates.io-index" 2075 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 2076 dependencies = [ 2077 "same-file", 2078 "winapi-util", 2079 ] 2080 ··· 2086 2087 [[package]] 2088 name = "wasm-bindgen" 2089 + version = "0.2.86" 2090 source = "registry+https://github.com/rust-lang/crates.io-index" 2091 + checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 2092 dependencies = [ 2093 "cfg-if", 2094 "wasm-bindgen-macro", ··· 2096 2097 [[package]] 2098 name = "wasm-bindgen-backend" 2099 + version = "0.2.86" 2100 source = "registry+https://github.com/rust-lang/crates.io-index" 2101 + checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 2102 dependencies = [ 2103 "bumpalo", 2104 "log", 2105 "once_cell", 2106 "proc-macro2", 2107 "quote", 2108 + "syn", 2109 "wasm-bindgen-shared", 2110 ] 2111 2112 [[package]] 2113 name = "wasm-bindgen-macro" 2114 + version = "0.2.86" 2115 source = "registry+https://github.com/rust-lang/crates.io-index" 2116 + checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 2117 dependencies = [ 2118 "quote", 2119 "wasm-bindgen-macro-support", ··· 2121 2122 [[package]] 2123 name = "wasm-bindgen-macro-support" 2124 + version = "0.2.86" 2125 source = "registry+https://github.com/rust-lang/crates.io-index" 2126 + checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 2127 dependencies = [ 2128 "proc-macro2", 2129 "quote", 2130 + "syn", 2131 "wasm-bindgen-backend", 2132 "wasm-bindgen-shared", 2133 ] 2134 2135 [[package]] 2136 name = "wasm-bindgen-shared" 2137 + version = "0.2.86" 2138 source = "registry+https://github.com/rust-lang/crates.io-index" 2139 + checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 2140 2141 [[package]] 2142 name = "web-sys" 2143 + version = "0.3.61" 2144 source = "registry+https://github.com/rust-lang/crates.io-index" 2145 + checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 2146 dependencies = [ 2147 "js-sys", 2148 "wasm-bindgen", ··· 2356 2357 [[package]] 2358 name = "zeroize" 2359 + version = "1.6.0" 2360 source = "registry+https://github.com/rust-lang/crates.io-index" 2361 + checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
+3 -3
pkgs/development/tools/rust/cargo-edit/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "cargo-edit"; 13 - version = "0.11.11"; 14 15 src = fetchFromGitHub { 16 owner = "killercup"; 17 repo = pname; 18 rev = "v${version}"; 19 - hash = "sha256-pxlwCeGOH0uqPdDJ7zIXFIRBuHwyByZ5r1VWzluvz10="; 20 }; 21 22 cargoLock = { 23 lockFile = ./Cargo.lock; 24 outputHashes = { 25 - "cargo-test-macro-0.1.0" = "sha256-nlFhe1q0D60dljAi6pFNaz+ssju2Ymtx/PNUl5kJmWo="; 26 }; 27 }; 28
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "cargo-edit"; 13 + version = "0.12.0"; 14 15 src = fetchFromGitHub { 16 owner = "killercup"; 17 repo = pname; 18 rev = "v${version}"; 19 + hash = "sha256-OUo007XP2B9F8ACTauiA6uls9b3KS5iq15bJDPYCONU="; 20 }; 21 22 cargoLock = { 23 lockFile = ./Cargo.lock; 24 outputHashes = { 25 + "cargo-test-macro-0.1.0" = "sha256-hzoQmgvAerIoz7qoT3iyY6kHnt3g1Pv4FaJoqQYU2zE="; 26 }; 27 }; 28
+1 -1
pkgs/development/tools/vcstool/default.nix
··· 1 - { lib, python3Packages 2 , git, breezy, subversion }: 3 4 with python3Packages;
··· 1 + { lib, python3Packages, fetchPypi 2 , git, breezy, subversion }: 3 4 with python3Packages;
+3 -4
pkgs/games/ddnet/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , fetchpatch 5 , cargo 6 , cmake 7 , ninja ··· 35 36 stdenv.mkDerivation rec { 37 pname = "ddnet"; 38 - version = "16.9"; 39 40 src = fetchFromGitHub { 41 owner = "ddnet"; 42 repo = pname; 43 rev = version; 44 - hash = "sha256-DOP2v82346YQtL55Ix0gn9cTpvbO1ooeCIGRpgEMFpA="; 45 }; 46 47 cargoDeps = rustPlatform.fetchCargoTarball { 48 name = "${pname}-${version}"; 49 inherit src; 50 - hash = "sha256-xTB8wg4PIdg7MB3545zN83/41fUsqFE2Sk5aTXrGhps="; 51 }; 52 53 nativeBuildInputs = [
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , cargo 5 , cmake 6 , ninja ··· 34 35 stdenv.mkDerivation rec { 36 pname = "ddnet"; 37 + version = "17.0"; 38 39 src = fetchFromGitHub { 40 owner = "ddnet"; 41 repo = pname; 42 rev = version; 43 + hash = "sha256-boFXzARVG2At92j9gSavteAQ8qTjgJ91hIefVr/e6og="; 44 }; 45 46 cargoDeps = rustPlatform.fetchCargoTarball { 47 name = "${pname}-${version}"; 48 inherit src; 49 + hash = "sha256-3itblnHlY1L8g/EGCi1BIWGD6INOpnvLCwJ7zL7KV4w="; 50 }; 51 52 nativeBuildInputs = [
+2 -2
pkgs/games/jazz2/game.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "jazz2"; 19 - version = "1.8.0"; 20 21 src = fetchFromGitHub { 22 owner = "deathkiller"; 23 repo = "jazz2-native"; 24 rev = version; 25 - sha256 = "fi1waoLAcnZB0lX+8+wQFoBYOSvVXYK3JKiu81GGF4U="; 26 }; 27 28 patches = [ ./nocontent.patch ];
··· 16 17 stdenv.mkDerivation rec { 18 pname = "jazz2"; 19 + version = "1.9.1"; 20 21 src = fetchFromGitHub { 22 owner = "deathkiller"; 23 repo = "jazz2-native"; 24 rev = version; 25 + sha256 = "75CGpFEdk+vFrlGC20Ciniw6CHBmP43TsCQmb4r70DI="; 26 }; 27 28 patches = [ ./nocontent.patch ];
+4
pkgs/os-specific/linux/firmware/raspberrypi-wireless/default.nix
··· 37 # Bluetooth firmware 38 cp -rv "$NIX_BUILD_TOP/bluez-firmware/broadcom/." "$out/lib/firmware/brcm" 39 40 runHook postInstall 41 ''; 42
··· 37 # Bluetooth firmware 38 cp -rv "$NIX_BUILD_TOP/bluez-firmware/broadcom/." "$out/lib/firmware/brcm" 39 40 + # brcmfmac43455-stdio.bin is a symlink to the non-existent path: ../cypress/cyfmac43455-stdio.bin. 41 + # See https://github.com/RPi-Distro/firmware-nonfree/issues/26 42 + ln -s "./cyfmac43455-sdio-standard.bin" "$out/lib/firmware/cypress/cyfmac43455-sdio.bin" 43 + 44 runHook postInstall 45 ''; 46
+1 -1
pkgs/servers/geospatial/mapproxy/default.nix
··· 1 { lib 2 - , pkgs 3 , python3 4 }: 5 6 with python3.pkgs;
··· 1 { lib 2 , python3 3 + , fetchPypi 4 }: 5 6 with python3.pkgs;
+4 -4
pkgs/servers/hbase/default.nix
··· 39 in 40 { 41 hbase_2_4 = common { 42 - version = "2.4.16"; 43 - hash = "sha256-vMuTqS2bXFRcCsZ7bOaNLVGyOG38HhL8WlCq2MFmAaE="; 44 tests.standalone = nixosTests.hbase_2_4; 45 }; 46 hbase_2_5 = common { 47 - version = "2.5.3"; 48 - hash = "sha256-h08jnDQaakpkYFHHn9qeg4JCSBtwRjv42qKLpyOVdsI="; 49 tests.standalone = nixosTests.hbase2; 50 }; 51 hbase_3_0 = common {
··· 39 in 40 { 41 hbase_2_4 = common { 42 + version = "2.4.17"; 43 + hash = "sha256-1JT57kpp+dqoXY5ZZig1nHDtSqvfLjEWviu73J7hKj0="; 44 tests.standalone = nixosTests.hbase_2_4; 45 }; 46 hbase_2_5 = common { 47 + version = "2.5.4"; 48 + hash = "sha256-/7kp0f/K8DCeFheDPzs2ZFqcnZwQtH1rrMx+UMbQ7TM="; 49 tests.standalone = nixosTests.hbase2; 50 }; 51 hbase_3_0 = common {
+2 -2
pkgs/servers/janus-gateway/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "janus-gateway"; 18 - version = "1.1.3"; 19 20 src = fetchFromGitHub { 21 owner = "meetecho"; 22 repo = pname; 23 rev = "v${version}"; 24 - sha256 = "sha256-2UlIpxixTl16VG6lgcfk+9LXSWn0jV1IfIkCeV/SO5w="; 25 }; 26 27 nativeBuildInputs = [ autoreconfHook pkg-config gengetopt ];
··· 15 16 stdenv.mkDerivation rec { 17 pname = "janus-gateway"; 18 + version = "1.1.4"; 19 20 src = fetchFromGitHub { 21 owner = "meetecho"; 22 repo = pname; 23 rev = "v${version}"; 24 + sha256 = "sha256-kvaO2g4QF6LYZcxv39yXkwY9iZVenJio8oOlRLLH2Kk="; 25 }; 26 27 nativeBuildInputs = [ autoreconfHook pkg-config gengetopt ];
+1
pkgs/servers/mail/mailman/hyperkitty.nix
··· 1 { lib 2 , python3 3 , fetchpatch 4 }: 5
··· 1 { lib 2 , python3 3 + , fetchPypi 4 , fetchpatch 5 }: 6
+1
pkgs/servers/mail/mailman/mailman-hyperkitty.nix
··· 1 { lib 2 , python3 3 , mailman 4 }: 5
··· 1 { lib 2 , python3 3 + , fetchPypi 4 , mailman 5 }: 6
+1
pkgs/servers/mail/mailman/package.nix
··· 1 { lib 2 , fetchpatch 3 , python3 4 , docutils 5 , sphinx 6 , postfix
··· 1 { lib 2 , fetchpatch 3 , python3 4 + , fetchPypi 5 , docutils 6 , sphinx 7 , postfix
+1 -1
pkgs/servers/mail/mailman/postorius.nix
··· 1 - { lib, python3 }: 2 3 with python3.pkgs; 4
··· 1 + { lib, python3, fetchPypi }: 2 3 with python3.pkgs; 4
+1 -1
pkgs/servers/mail/mailman/web.nix
··· 1 - { lib, python3 2 , sassc, hyperkitty, postorius 3 }: 4
··· 1 + { lib, python3, fetchPypi 2 , sassc, hyperkitty, postorius 3 }: 4
+13 -12
pkgs/servers/matrix-synapse/matrix-hookshot/package.json
··· 1 { 2 "name": "matrix-hookshot", 3 - "version": "3.2.0", 4 "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", 5 "main": "lib/app.js", 6 "repository": "https://github.com/matrix-org/matrix-hookshot", ··· 10 "name": "matrix-hookshot-rs" 11 }, 12 "engines": { 13 - "node": ">=16" 14 }, 15 "scripts": { 16 "build:web": "vite build", ··· 30 "start:app": "node --require source-map-support/register lib/App/BridgeApp.js", 31 "start:webhooks": "node --require source-map-support/register lib/App/GithubWebhookApp.js", 32 "start:matrixsender": "node --require source-map-support/register lib/App/MatrixSenderApp.js", 33 "test": "mocha -r ts-node/register tests/init.ts tests/*.ts tests/**/*.ts", 34 "test:cover": "nyc --reporter=lcov --reporter=text yarn test", 35 "lint": "yarn run lint:js && yarn run lint:rs", 36 "lint:js": "eslint -c .eslintrc.js 'src/**/*.ts' 'tests/**/*.ts' 'web/**/*.ts' 'web/**/*.tsx'", 37 "lint:rs": "cargo fmt --all -- --check", 38 "generate-default-config": "ts-node src/Config/Defaults.ts --config > config.sample.yml", 39 "validate-config": "ts-node src/Config/Config.ts" 40 }, ··· 53 "ioredis": "^5.2.3", 54 "jira-client": "^8.0.0", 55 "markdown-it": "^12.3.2", 56 - "matrix-appservice-bridge": "^6.0.0", 57 - "matrix-bot-sdk": "npm:@vector-im/matrix-bot-sdk@^0.6.3-element.0", 58 "matrix-widget-api": "^1.0.0", 59 "micromatch": "^4.0.4", 60 "mime": "^3.0.0", ··· 63 "p-queue": "^6.6.2", 64 "prom-client": "^14.0.1", 65 "reflect-metadata": "^0.1.13", 66 - "rss-parser": "^3.12.0", 67 "source-map-support": "^0.5.21", 68 "string-argv": "^0.3.1", 69 "tiny-typed-emitter": "^2.1.0", 70 - "vm2": "^3.9.11", 71 "winston": "^3.3.3", 72 - "xml2js": "^0.4.23", 73 - "yaml": "^1.10.2" 74 }, 75 "devDependencies": { 76 "@codemirror/lang-javascript": "^6.0.2", 77 "@napi-rs/cli": "^2.2.0", 78 "@preact/preset-vite": "^2.2.0", 79 - "@tsconfig/node16": "^1.0.3", 80 "@types/ajv": "^1.0.0", 81 "@types/chai": "^4.2.22", 82 "@types/cors": "^2.8.12", ··· 86 "@types/micromatch": "^4.0.1", 87 "@types/mime": "^2.0.3", 88 "@types/mocha": "^9.0.0", 89 - "@types/node": "^16", 90 "@types/node-emoji": "^1.8.1", 91 "@types/uuid": "^8.3.3", 92 "@types/xml2js": "^0.4.11", 93 "@typescript-eslint/eslint-plugin": "^5.4.0", 94 "@typescript-eslint/parser": "^5.4.0", 95 "@uiw/react-codemirror": "^4.12.3", ··· 102 "preact": "^10.5.15", 103 "rimraf": "^3.0.2", 104 "sass": "^1.51.0", 105 - "ts-node": "^10.4.0", 106 - "typescript": "^4.5.2", 107 "vite": "^4.1.4", 108 "vite-svg-loader": "^4.0.0" 109 }
··· 1 { 2 "name": "matrix-hookshot", 3 + "version": "4.0.0", 4 "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", 5 "main": "lib/app.js", 6 "repository": "https://github.com/matrix-org/matrix-hookshot", ··· 10 "name": "matrix-hookshot-rs" 11 }, 12 "engines": { 13 + "node": ">=18" 14 }, 15 "scripts": { 16 "build:web": "vite build", ··· 30 "start:app": "node --require source-map-support/register lib/App/BridgeApp.js", 31 "start:webhooks": "node --require source-map-support/register lib/App/GithubWebhookApp.js", 32 "start:matrixsender": "node --require source-map-support/register lib/App/MatrixSenderApp.js", 33 + "start:resetcrypto": "node --require source-map-support/register lib/App/ResetCryptoStore.js", 34 "test": "mocha -r ts-node/register tests/init.ts tests/*.ts tests/**/*.ts", 35 "test:cover": "nyc --reporter=lcov --reporter=text yarn test", 36 "lint": "yarn run lint:js && yarn run lint:rs", 37 "lint:js": "eslint -c .eslintrc.js 'src/**/*.ts' 'tests/**/*.ts' 'web/**/*.ts' 'web/**/*.tsx'", 38 "lint:rs": "cargo fmt --all -- --check", 39 + "lint:rs:apply": "cargo fmt --all", 40 "generate-default-config": "ts-node src/Config/Defaults.ts --config > config.sample.yml", 41 "validate-config": "ts-node src/Config/Config.ts" 42 }, ··· 55 "ioredis": "^5.2.3", 56 "jira-client": "^8.0.0", 57 "markdown-it": "^12.3.2", 58 + "matrix-appservice-bridge": "^9.0.0", 59 + "matrix-bot-sdk": "npm:@vector-im/matrix-bot-sdk@^0.6.6-element.1", 60 "matrix-widget-api": "^1.0.0", 61 "micromatch": "^4.0.4", 62 "mime": "^3.0.0", ··· 65 "p-queue": "^6.6.2", 66 "prom-client": "^14.0.1", 67 "reflect-metadata": "^0.1.13", 68 "source-map-support": "^0.5.21", 69 "string-argv": "^0.3.1", 70 "tiny-typed-emitter": "^2.1.0", 71 + "vm2": "^3.9.17", 72 "winston": "^3.3.3", 73 + "xml2js": "^0.5.0", 74 + "yaml": "^2.2.2" 75 }, 76 "devDependencies": { 77 "@codemirror/lang-javascript": "^6.0.2", 78 "@napi-rs/cli": "^2.2.0", 79 "@preact/preset-vite": "^2.2.0", 80 + "@tsconfig/node18": "^2.0.0", 81 "@types/ajv": "^1.0.0", 82 "@types/chai": "^4.2.22", 83 "@types/cors": "^2.8.12", ··· 87 "@types/micromatch": "^4.0.1", 88 "@types/mime": "^2.0.3", 89 "@types/mocha": "^9.0.0", 90 "@types/node-emoji": "^1.8.1", 91 "@types/uuid": "^8.3.3", 92 "@types/xml2js": "^0.4.11", 93 + "@types/node": "18", 94 "@typescript-eslint/eslint-plugin": "^5.4.0", 95 "@typescript-eslint/parser": "^5.4.0", 96 "@uiw/react-codemirror": "^4.12.3", ··· 103 "preact": "^10.5.15", 104 "rimraf": "^3.0.2", 105 "sass": "^1.51.0", 106 + "ts-node": "^10.9.1", 107 + "typescript": "^5.0.4", 108 "vite": "^4.1.4", 109 "vite-svg-loader": "^4.0.0" 110 }
+4 -4
pkgs/servers/matrix-synapse/matrix-hookshot/pin.json
··· 1 { 2 - "version": "3.2.0", 3 - "srcHash": "7u3JT7BFoJB95vlpKagMgWzoJg0vPYX4CEoqANW0FL4=", 4 - "yarnHash": "0ivizv90wrbz583xjvbakv6vg782h7pjm5zbm8wb9qkpnj735avz", 5 - "cargoHash": "CVJoDaQzyMJUaCx7MQg/bQHVicbkmwNpwncLSbWQwbA=" 6 }
··· 1 { 2 + "version": "4.0.0", 3 + "srcHash": "imZMYp1bgt5N8hPO6S4V133DoPCQoJ5TnMCG905qT1s=", 4 + "yarnHash": "0rnb7i6v7pz2wywjrj0nb2c9am94pbxin1jiykj5p6czmzw289kl", 5 + "cargoHash": "ldz5b7bC7qWRMVDixA4d5ls5Y1ONvElruRC+/TgQWr8=" 6 }
+11
pkgs/servers/mir/default.nix
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 , gitUpdater 5 , cmake 6 , pkg-config ··· 56 rev = "v${version}"; 57 hash = "sha256-Ip8p4mjcgmZQJTU4MNvWkTTtSJc+cCL3x1mMDFlZrVY="; 58 }; 59 60 postPatch = '' 61 # Fix scripts that get run in tests
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 + , fetchpatch 5 , gitUpdater 6 , cmake 7 , pkg-config ··· 57 rev = "v${version}"; 58 hash = "sha256-Ip8p4mjcgmZQJTU4MNvWkTTtSJc+cCL3x1mMDFlZrVY="; 59 }; 60 + 61 + patches = [ 62 + # Fixes Mir being able to drop first input device on launch 63 + # Drop when https://github.com/MirServer/mir/issues/2837 fixed in a release 64 + (fetchpatch { 65 + name = "0001-mir-Simplify_probing_of_evdev_input_platform.patch"; 66 + url = "https://github.com/MirServer/mir/commit/7787cfa721934bb43d3255218e7c92e700923fcb.patch"; 67 + hash = "sha256-9C9qcmngd+K8EAcyOYUJFTdFDu1Nt1MM7Y9TRNOXFB4="; 68 + }) 69 + ]; 70 71 postPatch = '' 72 # Fix scripts that get run in tests
+8 -1
pkgs/servers/sftpgo/default.nix
··· 2 , buildGoModule 3 , fetchFromGitHub 4 , installShellFiles 5 }: 6 7 buildGoModule rec { ··· 38 --bash <($out/bin/sftpgo gen completion bash) \ 39 --zsh <($out/bin/sftpgo gen completion zsh) \ 40 --fish <($out/bin/sftpgo gen completion fish) 41 ''; 42 43 meta = with lib; { 44 homepage = "https://github.com/drakkan/sftpgo"; ··· 52 Google Cloud Storage, Azure Blob Storage, SFTP. 53 ''; 54 license = licenses.agpl3Only; 55 - maintainers = with maintainers; [ thenonameguy ]; 56 }; 57 }
··· 2 , buildGoModule 3 , fetchFromGitHub 4 , installShellFiles 5 + , nixosTests 6 }: 7 8 buildGoModule rec { ··· 39 --bash <($out/bin/sftpgo gen completion bash) \ 40 --zsh <($out/bin/sftpgo gen completion zsh) \ 41 --fish <($out/bin/sftpgo gen completion fish) 42 + 43 + shareDirectory="$out/share/sftpgo" 44 + mkdir -p "$shareDirectory" 45 + cp -r ./{openapi,static,templates} "$shareDirectory" 46 ''; 47 + 48 + passthru.tests = nixosTests.sftpgo; 49 50 meta = with lib; { 51 homepage = "https://github.com/drakkan/sftpgo"; ··· 59 Google Cloud Storage, Azure Blob Storage, SFTP. 60 ''; 61 license = licenses.agpl3Only; 62 + maintainers = with maintainers; [ thenonameguy yayayayaka ]; 63 }; 64 }
+6 -1
pkgs/servers/snac2/default.nix
··· 24 25 makeFlags = [ "PREFIX=$(out)" ]; 26 27 passthru = { 28 tests.version = testers.testVersion { 29 package = snac2; ··· 38 changelog = "https://codeberg.org/grunfink/snac2/src/tag/${version}/RELEASE_NOTES.md"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ misuzu ]; 41 - platforms = platforms.linux; 42 mainProgram = "snac"; 43 }; 44 }
··· 24 25 makeFlags = [ "PREFIX=$(out)" ]; 26 27 + env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.isDarwin [ 28 + "-Dst_mtim=st_mtimespec" 29 + "-Dst_ctim=st_ctimespec" 30 + ]); 31 + 32 passthru = { 33 tests.version = testers.testVersion { 34 package = snac2; ··· 43 changelog = "https://codeberg.org/grunfink/snac2/src/tag/${version}/RELEASE_NOTES.md"; 44 license = licenses.mit; 45 maintainers = with maintainers; [ misuzu ]; 46 + platforms = platforms.unix; 47 mainProgram = "snac"; 48 }; 49 }
+1
pkgs/tools/admin/awscli/default.nix
··· 1 { lib 2 , python3 3 , fetchFromGitHub 4 , groff 5 , less 6 }:
··· 1 { lib 2 , python3 3 , fetchFromGitHub 4 + , fetchPypi 5 , groff 6 , less 7 }:
+1 -1
pkgs/tools/admin/chkcrontab/default.nix
··· 1 - { python3, lib }: 2 3 with python3.pkgs; 4
··· 1 + { lib, python3, fetchPypi }: 2 3 with python3.pkgs; 4
+60
pkgs/tools/admin/granted/default.nix
···
··· 1 + { bash 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , fish 5 + , lib 6 + , makeWrapper 7 + , xdg-utils 8 + }: 9 + 10 + buildGoModule rec { 11 + pname = "granted"; 12 + version = "0.11.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "common-fate"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "sha256-m6cFAX8FMyv9H1IKm6meWu2yNEZz4g1Q+h2rRijYJsc="; 19 + }; 20 + 21 + vendorSha256 = "sha256-8BPntTgd7QqO2T3vyWXC1z5yE/ovg3D3iilnislqV30="; 22 + 23 + nativeBuildInputs = [ makeWrapper ]; 24 + 25 + ldflags = [ 26 + "-s" 27 + "-w" 28 + "-X github.com/common-fate/granted/internal/build.Version=v${version}" 29 + "-X github.com/common-fate/granted/internal/build.Commit=${src.rev}" 30 + "-X github.com/common-fate/granted/internal/build.Date=1970-01-01-00:00:01" 31 + "-X github.com/common-fate/granted/internal/build.BuiltBy=Nix" 32 + ]; 33 + 34 + subPackages = [ 35 + "cmd/granted" 36 + ]; 37 + 38 + postInstall = '' 39 + # Install shell script 40 + install -Dm755 $src/scripts/assume $out/bin/assume 41 + substituteInPlace $out/bin/assume \ 42 + --replace /bin/bash ${bash}/bin/bash 43 + 44 + wrapProgram $out/bin/assume \ 45 + --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} 46 + 47 + # Install fish script 48 + install -Dm755 $src/scripts/assume.fish $out/share/assume.fish 49 + substituteInPlace $out/share/assume.fish \ 50 + --replace /bin/fish ${fish}/bin/fish 51 + ''; 52 + 53 + meta = with lib; { 54 + description = "The easiest way to access your cloud."; 55 + homepage = "https://github.com/common-fate/granted"; 56 + changelog = "https://github.com/common-fate/granted/releases/tag/${version}"; 57 + license = licenses.mit; 58 + maintainers = [ maintainers.ivankovnatsky ]; 59 + }; 60 + }
+1 -1
pkgs/tools/admin/iredis/default.nix
··· 1 - { lib, python3Packages }: 2 3 with python3Packages; 4
··· 1 + { lib, python3Packages, fetchPypi }: 2 3 with python3Packages; 4
+1
pkgs/tools/admin/mycli/default.nix
··· 1 { lib 2 , python3 3 , glibcLocales 4 }: 5
··· 1 { lib 2 , python3 3 + , fetchPypi 4 , glibcLocales 5 }: 6
+10
pkgs/tools/filesystems/stratisd/default.nix
··· 76 lvm2 77 ]; 78 79 EXECUTABLES_PATHS = lib.makeBinPath ([ 80 xfsprogs 81 thin-provisioning-tools ··· 97 98 # remove files for supporting dracut 99 postInstall = '' 100 rm -r "$out/lib/dracut" 101 rm -r "$out/lib/systemd/system-generators" 102 '';
··· 76 lvm2 77 ]; 78 79 + outputs = ["out" "initrd"]; 80 + 81 EXECUTABLES_PATHS = lib.makeBinPath ([ 82 xfsprogs 83 thin-provisioning-tools ··· 99 100 # remove files for supporting dracut 101 postInstall = '' 102 + mkdir -p "$initrd/bin" 103 + cp "dracut/90stratis/stratis-rootfs-setup" "$initrd/bin" 104 + mkdir -p "$initrd/lib/systemd/system" 105 + substitute "dracut/90stratis/stratisd-min.service" "$initrd/lib/systemd/system/stratisd-min.service" \ 106 + --replace /usr "$out" \ 107 + --replace mkdir "${coreutils}/bin/mkdir" 108 + mkdir -p "$initrd/lib/udev/rules.d" 109 + cp udev/61-stratisd.rules "$initrd/lib/udev/rules.d" 110 rm -r "$out/lib/dracut" 111 rm -r "$out/lib/systemd/system-generators" 112 '';
+22 -2
pkgs/tools/graphics/gmic-qt/default.nix
··· 3 , fetchzip 4 , cimg 5 , cmake 6 , curl 7 , fftw 8 , gimp 9 , gimpPlugins 10 , gmic 11 , graphicsmagick 12 , libjpeg 13 , libpng 14 , libtiff 15 , ninja 16 - , nix-update-script 17 , opencv3 18 , openexr 19 , pkg-config 20 , qtbase 21 , qttools 22 , wrapQtAppsHook 23 , zlib 24 , variant ? "standalone" 25 }: ··· 108 inherit cimg gmic; 109 }; 110 111 - updateScript = nix-update-script { }; 112 }; 113 114 meta = {
··· 3 , fetchzip 4 , cimg 5 , cmake 6 + , coreutils 7 , curl 8 , fftw 9 , gimp 10 , gimpPlugins 11 , gmic 12 + , gnugrep 13 + , gnused 14 , graphicsmagick 15 , libjpeg 16 , libpng 17 , libtiff 18 , ninja 19 + , nix-update 20 , opencv3 21 , openexr 22 , pkg-config 23 , qtbase 24 , qttools 25 , wrapQtAppsHook 26 + , writeShellScript 27 , zlib 28 , variant ? "standalone" 29 }: ··· 112 inherit cimg gmic; 113 }; 114 115 + updateScript = writeShellScript "gmic-qt-update-script" '' 116 + set -euo pipefail 117 + 118 + export PATH="${lib.makeBinPath [ coreutils curl gnugrep gnused nix-update ]}:$PATH" 119 + 120 + latestVersion=$(curl 'https://gmic.eu/files/source/' \ 121 + | grep -E 'gmic_[^"]+\.tar\.gz' \ 122 + | sed -E 's/.+<a href="gmic_([^"]+)\.tar\.gz".+/\1/g' \ 123 + | sort --numeric-sort --reverse | head -n1) 124 + 125 + if [[ '${finalAttrs.version}' = "$latestVersion" ]]; then 126 + echo "The new version same as the old version." 127 + exit 0 128 + fi 129 + 130 + nix-update --version "$latestVersion" 131 + ''; 132 }; 133 134 meta = {
+1 -1
pkgs/tools/misc/adafruit-ampy/default.nix
··· 1 - { lib, python3 }: 2 3 with python3.pkgs; 4
··· 1 + { lib, python3, fetchPypi }: 2 3 with python3.pkgs; 4
+3 -2
pkgs/tools/misc/bepasty/default.nix
··· 1 - { python3 2 - , lib 3 }: 4 5 let
··· 1 + { lib 2 + , python3 3 + , fetchPypi 4 }: 5 6 let
+1
pkgs/tools/misc/bkyml/default.nix
··· 1 { lib 2 , python3 3 }: 4 5 with python3.pkgs;
··· 1 { lib 2 , python3 3 + , fetchPypi 4 }: 5 6 with python3.pkgs;
+2 -2
pkgs/tools/misc/esphome/default.nix
··· 16 in 17 python.pkgs.buildPythonApplication rec { 18 pname = "esphome"; 19 - version = "2023.5.3"; 20 format = "setuptools"; 21 22 src = fetchFromGitHub { 23 owner = pname; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-1j8XS9hyQpN/3ERpbJ4EfVIBBB7UC6J5bWUVtLMuG4U="; 27 }; 28 29 postPatch = ''
··· 16 in 17 python.pkgs.buildPythonApplication rec { 18 pname = "esphome"; 19 + version = "2023.5.4"; 20 format = "setuptools"; 21 22 src = fetchFromGitHub { 23 owner = pname; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 + hash = "sha256-TjPlvp4neGWgPTpvG/I0JGVw8qK/wxa3qC65PvZH9OA="; 27 }; 28 29 postPatch = ''
+3 -3
pkgs/tools/misc/fzf/default.nix
··· 24 in 25 buildGoModule rec { 26 pname = "fzf"; 27 - version = "0.40.0"; 28 29 src = fetchFromGitHub { 30 owner = "junegunn"; 31 repo = pname; 32 rev = version; 33 - hash = "sha256-1+s4AqvDfeTxZcM3w2VPUY1oSStNBXs0x//t3X7/zAw="; 34 }; 35 36 - vendorHash = "sha256-SSz4oHUgfMRbvpdIl1xepfckef1HDA1y646FWnyBp6o="; 37 38 outputs = [ "out" "man" ]; 39
··· 24 in 25 buildGoModule rec { 26 pname = "fzf"; 27 + version = "0.41.0"; 28 29 src = fetchFromGitHub { 30 owner = "junegunn"; 31 repo = pname; 32 rev = version; 33 + hash = "sha256-NUaGuRfXtt/kY4u5uxM30Blg+ngkcvS2/2rcGP/WNtE="; 34 }; 35 36 + vendorHash = "sha256-O6OjBbrVAxDQd27ar2mmFkU1XyVM2C8SJWJ54rgaf2s="; 37 38 outputs = [ "out" "man" ]; 39
+2 -2
pkgs/tools/misc/graylog/5.0.nix
··· 2 let 3 buildGraylog = callPackage ./graylog.nix {}; 4 in buildGraylog { 5 - version = "5.0.6"; 6 - sha256 = "sha256-GOxiGx2BU4x4A9W0k94gqXlhRwoixm0WK0UZN+LXkyQ="; 7 maintainers = [ lib.maintainers.f2k1de ]; 8 license = lib.licenses.sspl; 9 }
··· 2 let 3 buildGraylog = callPackage ./graylog.nix {}; 4 in buildGraylog { 5 + version = "5.0.7"; 6 + sha256 = "sha256-wGw7j1vBa0xcoyfrK7xlLGKElF1SV2ijn+uQ8COj87Y="; 7 maintainers = [ lib.maintainers.f2k1de ]; 8 license = lib.licenses.sspl; 9 }
+1 -1
pkgs/tools/misc/pipreqs/default.nix
··· 1 - { lib, python3 }: 2 3 with python3.pkgs; 4
··· 1 + { lib, python3, fetchPypi }: 2 3 with python3.pkgs; 4
+1
pkgs/tools/misc/wlc/default.nix
··· 1 { lib 2 , python3 3 }: 4 5 with python3.pkgs;
··· 1 { lib 2 , python3 3 + , fetchPypi 4 }: 5 6 with python3.pkgs;
+6 -8
pkgs/tools/misc/wootility/default.nix
··· 5 , udev 6 , wooting-udev-rules 7 }: 8 - let 9 - pname = "wootility"; 10 - version = "3.5.12"; 11 - in 12 appimageTools.wrapType2 rec { 13 - name = "${pname}-${version}"; 14 15 src = fetchurl { 16 - url = "https://s3.eu-west-2.amazonaws.com/wooting-update/wootility-linux-latest/wootility-${version}.AppImage"; 17 - sha256 = "13bhckk25fzq9r9cdsg3yqjd4kn47asqdx8kw0in8iky4ri41vnc"; 18 }; 19 20 profile = '' ··· 28 wooting-udev-rules 29 xorg.libxkbfile 30 ]); 31 - extraInstallCommands = "mv $out/bin/{${name},${pname}}"; 32 33 meta = with lib; { 34 homepage = "https://wooting.io/wootility";
··· 5 , udev 6 , wooting-udev-rules 7 }: 8 + 9 appimageTools.wrapType2 rec { 10 + pname = "wootility"; 11 + version = "4.5.0"; 12 13 src = fetchurl { 14 + url = "https://s3.eu-west-2.amazonaws.com/wooting-update/wootility-lekker-linux-latest/wootility-lekker-${version}.AppImage"; 15 + sha256 = "sha256-5V1OpQZk234iKXOlpoXCbWPyixXkrWT8KkrGB92lPro="; 16 }; 17 18 profile = '' ··· 26 wooting-udev-rules 27 xorg.libxkbfile 28 ]); 29 + extraInstallCommands = "mv $out/bin/{${pname}-${version},${pname}}"; 30 31 meta = with lib; { 32 homepage = "https://wooting.io/wootility";
+1 -1
pkgs/tools/misc/yutto/default.nix
··· 1 { lib 2 , python3 3 , ffmpeg 4 - , makeWrapper 5 , nix-update-script 6 }: 7
··· 1 { lib 2 , python3 3 + , fetchPypi 4 , ffmpeg 5 , nix-update-script 6 }: 7
+1 -1
pkgs/tools/networking/mutt-ics/default.nix
··· 1 - { lib, python3 }: 2 3 with python3.pkgs; buildPythonApplication rec { 4 pname = "mutt-ics";
··· 1 + { lib, python3, fetchPypi }: 2 3 with python3.pkgs; buildPythonApplication rec { 4 pname = "mutt-ics";
+1 -1
pkgs/tools/networking/nyx/default.nix
··· 1 - { lib, python3Packages }: 2 3 with python3Packages; 4
··· 1 + { lib, python3Packages, fetchPypi }: 2 3 with python3Packages; 4
+1 -1
pkgs/tools/networking/pirate-get/default.nix
··· 1 - { lib, python3Packages }: 2 3 with python3Packages; 4
··· 1 + { lib, python3Packages, fetchPypi }: 2 3 with python3Packages; 4
+22 -9
pkgs/tools/networking/xrootd/default.nix
··· 16 , systemd 17 , voms 18 , zlib 19 - , enableTests ? stdenv.isLinux 20 # If not null, the builder will 21 # move "$out/etc" to "$out/etc.orig" and symlink "$out/etc" to externalEtc. 22 , externalEtc ? "/etc" 23 }: 24 25 - stdenv.mkDerivation rec { 26 pname = "xrootd"; 27 version = "5.5.5"; 28 29 src = fetchFromGitHub { 30 owner = "xrootd"; 31 repo = "xrootd"; 32 - rev = "v${version}"; 33 fetchSubmodules = true; 34 hash = "sha256-SLmxv8opN7z4V07S9kLGo8HG7Ql62iZQLtf3zGemwA8="; 35 }; 36 37 outputs = [ "bin" "out" "dev" "man" ]; 38 39 - passthru.tests = lib.optionalAttrs enableTests { 40 - test-runner = callPackage ./test-runner.nix { }; 41 - }; 42 43 nativeBuildInputs = [ 44 cmake ··· 60 systemd 61 voms 62 ] 63 - ++ lib.optionals enableTests [ 64 cppunit 65 ]; 66 ··· 84 install -m 644 -t "$out/lib/systemd/system" ../packaging/common/*.service ../packaging/common/*.socket 85 ''; 86 87 - cmakeFlags = lib.optionals enableTests [ 88 "-DENABLE_TESTS=TRUE" 89 ]; 90 ··· 100 platforms = platforms.all; 101 maintainers = with maintainers; [ ShamrockLee ]; 102 }; 103 - }
··· 16 , systemd 17 , voms 18 , zlib 19 + # Build bin/test-runner 20 + , enableTestRunner ? true 21 # If not null, the builder will 22 # move "$out/etc" to "$out/etc.orig" and symlink "$out/etc" to externalEtc. 23 , externalEtc ? "/etc" 24 }: 25 26 + stdenv.mkDerivation (finalAttrs: { 27 pname = "xrootd"; 28 version = "5.5.5"; 29 30 src = fetchFromGitHub { 31 owner = "xrootd"; 32 repo = "xrootd"; 33 + rev = "v${finalAttrs.version}"; 34 fetchSubmodules = true; 35 hash = "sha256-SLmxv8opN7z4V07S9kLGo8HG7Ql62iZQLtf3zGemwA8="; 36 }; 37 38 outputs = [ "bin" "out" "dev" "man" ]; 39 40 + passthru.fetchxrd = callPackage ./fetchxrd.nix { xrootd = finalAttrs.finalPackage; }; 41 + passthru.tests = 42 + lib.optionalAttrs stdenv.hostPlatform.isLinux { 43 + test-runner = callPackage ./test-runner.nix { xrootd = finalAttrs.finalPackage; }; 44 + } // { 45 + test-xrdcp = finalAttrs.passthru.fetchxrd { 46 + pname = "xrootd-test-xrdcp"; 47 + # Use the the bin output hash of xrootd as version to ensure that 48 + # the test gets rebuild everytime xrootd gets rebuild 49 + version = finalAttrs.version + "-" + builtins.substring (builtins.stringLength builtins.storeDir + 1) 32 "${finalAttrs.finalPackage}"; 50 + url = "root://eospublic.cern.ch//eos/opendata/alice/2010/LHC10h/000138275/ESD/0000/AliESDs.root"; 51 + hash = "sha256-tIcs2oi+8u/Qr+P7AAaPTbQT+DEt26gEdc4VNerlEHY="; 52 + }; 53 + } 54 + ; 55 56 nativeBuildInputs = [ 57 cmake ··· 73 systemd 74 voms 75 ] 76 + ++ lib.optionals enableTestRunner [ 77 cppunit 78 ]; 79 ··· 97 install -m 644 -t "$out/lib/systemd/system" ../packaging/common/*.service ../packaging/common/*.socket 98 ''; 99 100 + cmakeFlags = lib.optionals enableTestRunner [ 101 "-DENABLE_TESTS=TRUE" 102 ]; 103 ··· 113 platforms = platforms.all; 114 maintainers = with maintainers; [ ShamrockLee ]; 115 }; 116 + })
+42
pkgs/tools/networking/xrootd/fetchxrd.nix
···
··· 1 + { lib 2 + , runCommandLocal 3 + , buildPlatform 4 + , xrootd 5 + }: 6 + 7 + { name ? "" 8 + , pname ? "" 9 + , version ? "" 10 + , urls ? [ ] 11 + , url ? if urls == [ ] then abort "Expect either non-empty `urls` or `url`" else builtins.head urls 12 + , hash ? lib.fakeHash 13 + }: 14 + 15 + (runCommandLocal name 16 + { 17 + nativeBuildInputs = [ xrootd ]; 18 + outputHashAlgo = null; 19 + outputHashMode = "flat"; 20 + outputHash = hash; 21 + inherit url; 22 + urls = if urls == [ ] then lib.singleton url else urls; 23 + } 24 + # Set [DY]LD_LIBRARY_PATH to workaround #169677 25 + # TODO: Remove the library path after #200830 get merged 26 + '' 27 + for u in $urls; do 28 + ${lib.optionalString buildPlatform.isDarwin "DY"}LD_LIBRARY_PATH=${lib.makeLibraryPath [ xrootd ]} xrdcp --force "$u" "$out" 29 + ret=$? 30 + (( ret != 0 )) || break 31 + done 32 + if (( ret )); then 33 + echo "xrdcp failed trying to download any of the urls" >&2 34 + exit $ret 35 + fi 36 + '').overrideAttrs (finalAttrs: prevAttrs: 37 + if (pname != "" && version != "") then { 38 + inherit pname version; 39 + name = with finalAttrs; "${pname}-${version}"; 40 + } else { 41 + name = if (name != "") then name else (baseNameOf finalAttrs.url); 42 + })
+1 -1
pkgs/tools/package-management/pdm/default.nix
··· 1 - { lib, python3, fetchFromGitHub, fetchurl }: 2 let 3 python = python3.override { 4 # override resolvelib due to
··· 1 + { lib, python3, fetchFromGitHub, fetchPypi }: 2 let 3 python = python3.override { 4 # override resolvelib due to
+50
pkgs/tools/security/noseyparker/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , cmake 6 + , pkg-config 7 + , openssl 8 + , hyperscan 9 + }: 10 + 11 + rustPlatform.buildRustPackage rec { 12 + pname = "noseyparker"; 13 + version = "0.12.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "praetorian-inc"; 17 + repo = "noseyparker"; 18 + rev = "v${version}"; 19 + hash = "sha256-qop6KjTFPQ5o1kPEVPP0AfDfr8w/JP3YmC+sb5OUbDY="; 20 + }; 21 + 22 + cargoHash = "sha256-ZtoJO/R11qTFYAE6G7AVCpnYZ3JGrxtVSXvCm0W8DAA="; 23 + 24 + postPatch = '' 25 + # disabledTests (network, failing) 26 + rm tests/test_noseyparker_github.rs 27 + rm tests/test_noseyparker_scan.rs 28 + ''; 29 + 30 + nativeBuildInputs = [ 31 + cmake 32 + pkg-config 33 + ]; 34 + buildInputs = [ 35 + openssl 36 + hyperscan 37 + ]; 38 + 39 + OPENSSL_NO_VENDOR = 1; 40 + 41 + meta = with lib; { 42 + description = "Find secrets and sensitive information in textual data"; 43 + homepage = "https://github.com/praetorian-inc/noseyparker"; 44 + changelog = "https://github.com/praetorian-inc/noseyparker/blob/v${version}/CHANGELOG.md"; 45 + license = licenses.asl20; 46 + maintainers = with maintainers; [ _0x4A6F ]; 47 + # limited by hyperscan 48 + platforms = [ "x86_64-linux" ]; 49 + }; 50 + }
+3 -3
pkgs/tools/security/pynitrokey/default.nix
··· 1 - { python3Packages, lib, nrfutil, libnitrokey }: 2 3 with python3Packages; 4 5 buildPythonApplication rec { 6 pname = "pynitrokey"; 7 - version = "0.4.36"; 8 format = "flit"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - hash = "sha256-Y+6T1iUp9TVYbAjpXVHozC6WT061r0VYv/ifu8lcN6E="; 13 }; 14 15 propagatedBuildInputs = [
··· 1 + { lib, python3Packages, fetchPypi, nrfutil, libnitrokey }: 2 3 with python3Packages; 4 5 buildPythonApplication rec { 6 pname = "pynitrokey"; 7 + version = "0.4.37"; 8 format = "flit"; 9 10 src = fetchPypi { 11 inherit pname version; 12 + hash = "sha256-KoZym1b+E0P3kRt0PTm9wCX4nO31isDIwEq38xMgDDU="; 13 }; 14 15 propagatedBuildInputs = [
+26 -3
pkgs/top-level/all-packages.nix
··· 9346 9347 matrix-appservice-irc = callPackage ../servers/matrix-synapse/matrix-appservice-irc { }; 9348 9349 - matrix-appservice-slack = callPackage ../servers/matrix-synapse/matrix-appservice-slack { }; 9350 9351 - matrix-appservice-discord = callPackage ../servers/matrix-appservice-discord { }; 9352 9353 matrix-corporal = callPackage ../servers/matrix-corporal { }; 9354 ··· 9453 9454 ministat = callPackage ../tools/misc/ministat { }; 9455 9456 - mjolnir = callPackage ../servers/mjolnir { }; 9457 9458 mmutils = callPackage ../tools/X11/mmutils { }; 9459 ··· 9981 }; 9982 9983 matrix-sdk-crypto-nodejs = callPackage ../development/libraries/matrix-sdk-crypto-nodejs { }; 9984 9985 email = callPackage ../tools/networking/email { }; 9986 ··· 20073 cyrus_sasl = callPackage ../development/libraries/cyrus-sasl { 20074 libkrb5 = if stdenv.isFreeBSD then heimdal else libkrb5; 20075 }; 20076 20077 # Make bdb5 the default as it is the last release under the custom 20078 # bsd-like license ··· 20850 20851 pgweb = callPackage ../development/tools/database/pgweb { }; 20852 20853 grantlee = callPackage ../development/libraries/grantlee { }; 20854 20855 gsasl = callPackage ../development/libraries/gsasl { }; ··· 21728 libebur128 = callPackage ../development/libraries/libebur128 { }; 21729 21730 libedit = callPackage ../development/libraries/libedit { }; 21731 21732 libelf = callPackage ../development/libraries/libelf { }; 21733 ··· 25695 25696 nix-tour = callPackage ../applications/misc/nix-tour { }; 25697 25698 nosqli = callPackage ../tools/security/nosqli { }; 25699 25700 nsd = callPackage ../servers/dns/nsd (config.nsd or {}); ··· 28551 28552 mustache-spec = callPackage ../data/documentation/mustache-spec { }; 28553 28554 mustache-go = callPackage ../development/tools/mustache-go { }; 28555 28556 mustache-hpp = callPackage ../development/libraries/mustache-hpp { }; ··· 28666 }; 28667 28668 papirus-folders = callPackage ../data/misc/papirus-folders { }; 28669 28670 plasma-overdose-kde-theme = callPackage ../data/themes/plasma-overdose-kde-theme { }; 28671 ··· 32664 32665 mailspring = callPackage ../applications/networking/mailreaders/mailspring { }; 32666 32667 mm = callPackage ../applications/networking/instant-messengers/mm { }; 32668 32669 mm-common = callPackage ../development/libraries/mm-common { }; ··· 32706 } // (callPackage ../applications/video/mpv/scripts/occivink.nix {})); 32707 32708 open-in-mpv = callPackage ../applications/video/open-in-mpv { }; 32709 32710 mrpeach = callPackage ../applications/audio/pd-plugins/mrpeach { }; 32711
··· 9346 9347 matrix-appservice-irc = callPackage ../servers/matrix-synapse/matrix-appservice-irc { }; 9348 9349 + matrix-appservice-slack = callPackage ../servers/matrix-synapse/matrix-appservice-slack { 9350 + matrix-sdk-crypto-nodejs = matrix-sdk-crypto-nodejs-0_1_0-beta_3; 9351 + }; 9352 9353 + matrix-appservice-discord = callPackage ../servers/matrix-appservice-discord { 9354 + matrix-sdk-crypto-nodejs = matrix-sdk-crypto-nodejs-0_1_0-beta_3; 9355 + }; 9356 9357 matrix-corporal = callPackage ../servers/matrix-corporal { }; 9358 ··· 9457 9458 ministat = callPackage ../tools/misc/ministat { }; 9459 9460 + mjolnir = callPackage ../servers/mjolnir { 9461 + matrix-sdk-crypto-nodejs = matrix-sdk-crypto-nodejs-0_1_0-beta_3; 9462 + }; 9463 9464 mmutils = callPackage ../tools/X11/mmutils { }; 9465 ··· 9987 }; 9988 9989 matrix-sdk-crypto-nodejs = callPackage ../development/libraries/matrix-sdk-crypto-nodejs { }; 9990 + matrix-sdk-crypto-nodejs-0_1_0-beta_3 = callPackage ../development/libraries/matrix-sdk-crypto-nodejs/beta3.nix { }; 9991 9992 email = callPackage ../tools/networking/email { }; 9993 ··· 20080 cyrus_sasl = callPackage ../development/libraries/cyrus-sasl { 20081 libkrb5 = if stdenv.isFreeBSD then heimdal else libkrb5; 20082 }; 20083 + 20084 + cyrus-sasl-xoauth2 = callPackage ../development/libraries/cyrus-sasl-xoauth2 { }; 20085 20086 # Make bdb5 the default as it is the last release under the custom 20087 # bsd-like license ··· 20859 20860 pgweb = callPackage ../development/tools/database/pgweb { }; 20861 20862 + granted = callPackage ../tools/admin/granted { }; 20863 + 20864 grantlee = callPackage ../development/libraries/grantlee { }; 20865 20866 gsasl = callPackage ../development/libraries/gsasl { }; ··· 21739 libebur128 = callPackage ../development/libraries/libebur128 { }; 21740 21741 libedit = callPackage ../development/libraries/libedit { }; 21742 + 21743 + libei = callPackage ../development/libraries/libei { }; 21744 21745 libelf = callPackage ../development/libraries/libelf { }; 21746 ··· 25708 25709 nix-tour = callPackage ../applications/misc/nix-tour { }; 25710 25711 + noseyparker = callPackage ../tools/security/noseyparker { }; 25712 + 25713 nosqli = callPackage ../tools/security/nosqli { }; 25714 25715 nsd = callPackage ../servers/dns/nsd (config.nsd or {}); ··· 28566 28567 mustache-spec = callPackage ../data/documentation/mustache-spec { }; 28568 28569 + mustache-tcl = callPackage ../development/libraries/mustache-tcl { }; 28570 + 28571 mustache-go = callPackage ../development/tools/mustache-go { }; 28572 28573 mustache-hpp = callPackage ../development/libraries/mustache-hpp { }; ··· 28683 }; 28684 28685 papirus-folders = callPackage ../data/misc/papirus-folders { }; 28686 + 28687 + papirus-nord = callPackage ../data/icons/papirus-nord { }; 28688 28689 plasma-overdose-kde-theme = callPackage ../data/themes/plasma-overdose-kde-theme { }; 28690 ··· 32683 32684 mailspring = callPackage ../applications/networking/mailreaders/mailspring { }; 32685 32686 + memento = libsForQt5.callPackage ../applications/video/memento { }; 32687 + 32688 mm = callPackage ../applications/networking/instant-messengers/mm { }; 32689 32690 mm-common = callPackage ../development/libraries/mm-common { }; ··· 32727 } // (callPackage ../applications/video/mpv/scripts/occivink.nix {})); 32728 32729 open-in-mpv = callPackage ../applications/video/open-in-mpv { }; 32730 + 32731 + mpv-shim-default-shaders = callPackage ../applications/video/mpv-shim-default-shaders { }; 32732 32733 mrpeach = callPackage ../applications/audio/pd-plugins/mrpeach { }; 32734